Skip to content

Commit ad3d6c7

Browse files
committed
Trust tier copy: Few gates instead of Rare prompts
1 parent 7c198d7 commit ad3d6c7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/autonomy_tiers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func autonomyTierDescription(level engine.AutonomyLevel) string {
5858
case engine.AutonomyFull:
5959
return "Auto shell — risky ops ask first"
6060
case engine.AutonomyYOLO:
61-
return "Rare prompts — trust this session"
61+
return "Few gates — trust this session"
6262
default:
6363
return "Auto edits — shell asks first"
6464
}

cmd/autonomy_tiers_copy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func TestAutonomyTierDescriptions_PlainLanguage(t *testing.T) {
1515
{engine.AutonomyBasic, []string{"Look only", "shell ask"}},
1616
{engine.AutonomySemi, []string{"Auto edits", "shell asks"}},
1717
{engine.AutonomyFull, []string{"Auto shell", "risky"}},
18-
{engine.AutonomyYOLO, []string{"Rare prompts", "trust"}},
18+
{engine.AutonomyYOLO, []string{"Few gates", "trust"}},
1919
}
2020
for _, tc := range cases {
2121
desc := autonomyTierDescription(tc.level)

0 commit comments

Comments
 (0)