@@ -116,8 +116,8 @@ test("implement skill is a sequential Skywalker spawn recipe without a false 4-c
116116 const skill = await Bun . file ( join ( pluginRoot , "skills/implement/SKILL.md" ) ) . text ( ) ;
117117 expect ( skill ) . toContain ( "You are Skywalker" ) ;
118118 expect ( skill ) . toContain ( 'task(agent="greybeard")' ) ;
119- expect ( skill ) . toContain ( 'task(agent="build ")' ) ;
120- expect ( skill ) . toContain ( 'task(agent="critique ")' ) ;
119+ expect ( skill ) . toContain ( 'task(agent="builder ")' ) ;
120+ expect ( skill ) . toContain ( 'task(agent="critic ")' ) ;
121121 expect ( skill ) . toContain ( "Do not invent a worker-count or fan-out ceiling" ) ;
122122 expect ( skill ) . toContain ( "Close the loop" ) ;
123123 expect ( skill ) . not . toContain ( "once or twice" ) ;
@@ -141,18 +141,18 @@ test("style skill is guidance, not ceremony or tool-contract restatement", async
141141 expect ( skill ) . not . toContain ( "## Acknowledgment" ) ;
142142} ) ;
143143
144- test ( "review skill routes critique /neckbeard/greybeard via task or spawn_agent/wait_agents" , async ( ) => {
144+ test ( "review skill routes critic /neckbeard/greybeard via task or spawn_agent/wait_agents" , async ( ) => {
145145 const skill = await Bun . file ( join ( pluginRoot , "skills/review/SKILL.md" ) ) . text ( ) ;
146146 expect ( skill ) . toContain ( "task(agent=" ) ;
147147 expect ( skill ) . toContain ( "spawn_agent" ) ;
148148 expect ( skill ) . toContain ( "wait_agents" ) ;
149149 expect ( skill ) . toContain ( "returned `agent_id`" ) ;
150- expect ( skill ) . toContain ( "critique " ) ;
150+ expect ( skill ) . toContain ( "critic " ) ;
151151 expect ( skill ) . toContain ( "neckbeard" ) ;
152152 expect ( skill ) . toContain ( "greybeard" ) ;
153153 expect ( skill ) . toContain ( "Do not implement fixes" ) ;
154154 expect ( skill ) . toContain ( "Findings only" ) ;
155- expect ( skill ) . not . toContain ( 'task(agent="critique ")' ) ;
155+ expect ( skill ) . not . toContain ( 'task(agent="critic ")' ) ;
156156 expect ( skill ) . not . toContain ( 'task(agent="neckbeard")' ) ;
157157 expect ( skill ) . not . toContain ( 'task(agent="greybeard")' ) ;
158158} ) ;
0 commit comments