pi-crew 0.1.30 → 0.1.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +80 -27
  3. package/agents/analyst.md +11 -11
  4. package/agents/critic.md +11 -11
  5. package/agents/executor.md +11 -11
  6. package/agents/explorer.md +11 -11
  7. package/agents/planner.md +11 -11
  8. package/agents/reviewer.md +11 -11
  9. package/agents/security-reviewer.md +11 -11
  10. package/agents/test-engineer.md +11 -11
  11. package/agents/verifier.md +11 -11
  12. package/agents/writer.md +11 -11
  13. package/docs/architecture.md +173 -164
  14. package/docs/refactor-tasks-phase3.md +394 -394
  15. package/docs/refactor-tasks-phase4.md +564 -564
  16. package/docs/refactor-tasks-phase5.md +402 -402
  17. package/docs/refactor-tasks-phase6.md +662 -662
  18. package/docs/research-extension-examples.md +297 -0
  19. package/docs/research-extension-system.md +324 -0
  20. package/docs/research-optimization-plan.md +548 -0
  21. package/docs/research-pi-coding-agent.md +357 -0
  22. package/docs/resource-formats.md +4 -3
  23. package/docs/runtime-flow.md +148 -148
  24. package/docs/source-runtime-refactor-map.md +83 -83
  25. package/docs/usage.md +3 -3
  26. package/index.ts +6 -6
  27. package/package.json +1 -1
  28. package/schema.json +53 -1
  29. package/skills/git-master/SKILL.md +24 -19
  30. package/skills/read-only-explorer/SKILL.md +26 -21
  31. package/skills/safe-bash/SKILL.md +21 -16
  32. package/skills/task-packet/SKILL.md +28 -23
  33. package/skills/verify-evidence/SKILL.md +27 -22
  34. package/src/agents/agent-serializer.ts +34 -34
  35. package/src/agents/discover-agents.ts +102 -102
  36. package/src/config/config.ts +14 -1
  37. package/src/config/defaults.ts +3 -2
  38. package/src/extension/cross-extension-rpc.ts +82 -82
  39. package/src/extension/import-index.ts +4 -3
  40. package/src/extension/management.ts +2 -2
  41. package/src/extension/project-init.ts +9 -7
  42. package/src/extension/register.ts +63 -0
  43. package/src/extension/registration/artifact-cleanup.ts +15 -14
  44. package/src/extension/registration/commands.ts +208 -208
  45. package/src/extension/registration/compaction-guard.ts +125 -0
  46. package/src/extension/registration/subagent-tools.ts +27 -8
  47. package/src/extension/registration/team-tool.ts +61 -44
  48. package/src/extension/result-watcher.ts +98 -98
  49. package/src/extension/run-import.ts +4 -4
  50. package/src/extension/run-index.ts +14 -14
  51. package/src/extension/run-maintenance.ts +24 -24
  52. package/src/extension/team-tool/api.ts +3 -0
  53. package/src/extension/team-tool/cancel.ts +31 -31
  54. package/src/extension/team-tool/doctor.ts +179 -178
  55. package/src/extension/team-tool/inspect.ts +41 -41
  56. package/src/extension/team-tool/lifecycle-actions.ts +79 -79
  57. package/src/extension/team-tool/plan.ts +19 -19
  58. package/src/extension/team-tool/status.ts +73 -73
  59. package/src/prompt/prompt-runtime.ts +68 -68
  60. package/src/runtime/agent-control.ts +64 -64
  61. package/src/runtime/agent-memory.ts +72 -72
  62. package/src/runtime/agent-observability.ts +113 -113
  63. package/src/runtime/async-marker.ts +26 -26
  64. package/src/runtime/background-runner.ts +53 -53
  65. package/src/runtime/crew-agent-runtime.ts +58 -58
  66. package/src/runtime/direct-run.ts +35 -35
  67. package/src/runtime/foreground-control.ts +82 -82
  68. package/src/runtime/green-contract.ts +46 -46
  69. package/src/runtime/group-join.ts +88 -88
  70. package/src/runtime/live-agent-control.ts +78 -78
  71. package/src/runtime/live-agent-manager.ts +85 -85
  72. package/src/runtime/live-control-realtime.ts +36 -36
  73. package/src/runtime/live-session-runtime.ts +299 -299
  74. package/src/runtime/manifest-cache.ts +212 -214
  75. package/src/runtime/model-fallback.ts +261 -261
  76. package/src/runtime/parallel-research.ts +44 -44
  77. package/src/runtime/parallel-utils.ts +99 -99
  78. package/src/runtime/pi-json-output.ts +111 -111
  79. package/src/runtime/pi-spawn.ts +96 -96
  80. package/src/runtime/policy-engine.ts +78 -78
  81. package/src/runtime/post-exit-stdio-guard.ts +86 -86
  82. package/src/runtime/process-status.ts +56 -56
  83. package/src/runtime/progress-event-coalescer.ts +43 -43
  84. package/src/runtime/recovery-recipes.ts +74 -74
  85. package/src/runtime/role-permission.ts +39 -39
  86. package/src/runtime/session-usage.ts +79 -79
  87. package/src/runtime/sidechain-output.ts +28 -28
  88. package/src/runtime/subagent-manager.ts +29 -2
  89. package/src/runtime/task-display.ts +38 -38
  90. package/src/runtime/task-output-context.ts +106 -106
  91. package/src/runtime/task-packet.ts +84 -84
  92. package/src/runtime/task-runner/live-executor.ts +98 -98
  93. package/src/runtime/task-runner/progress.ts +111 -111
  94. package/src/runtime/task-runner/prompt-builder.ts +72 -72
  95. package/src/runtime/task-runner/result-utils.ts +14 -14
  96. package/src/runtime/task-runner/state-helpers.ts +22 -22
  97. package/src/runtime/worker-heartbeat.ts +21 -21
  98. package/src/runtime/worker-startup.ts +57 -57
  99. package/src/schema/config-schema.ts +12 -0
  100. package/src/schema/team-tool-schema.ts +100 -100
  101. package/src/state/artifact-store.ts +108 -108
  102. package/src/state/contracts.ts +105 -105
  103. package/src/state/jsonl-writer.ts +77 -77
  104. package/src/state/state-store.ts +8 -9
  105. package/src/state/task-claims.ts +42 -42
  106. package/src/state/types.ts +180 -180
  107. package/src/state/usage.ts +29 -29
  108. package/src/subagents/async-entry.ts +1 -1
  109. package/src/subagents/index.ts +3 -3
  110. package/src/subagents/live/control.ts +1 -1
  111. package/src/subagents/live/manager.ts +1 -1
  112. package/src/subagents/live/realtime.ts +1 -1
  113. package/src/subagents/live/session-runtime.ts +1 -1
  114. package/src/subagents/manager.ts +1 -1
  115. package/src/subagents/spawn.ts +1 -1
  116. package/src/teams/discover-teams.ts +2 -2
  117. package/src/teams/team-serializer.ts +36 -36
  118. package/src/types/diff.d.ts +18 -0
  119. package/src/ui/crew-footer.ts +101 -101
  120. package/src/ui/crew-select-list.ts +111 -111
  121. package/src/ui/crew-widget.ts +285 -285
  122. package/src/ui/dynamic-border.ts +25 -25
  123. package/src/ui/layout-primitives.ts +106 -106
  124. package/src/ui/loaders.ts +158 -158
  125. package/src/ui/mascot.ts +441 -441
  126. package/src/ui/powerbar-publisher.ts +94 -94
  127. package/src/ui/render-diff.ts +119 -119
  128. package/src/ui/run-dashboard.ts +372 -372
  129. package/src/ui/status-colors.ts +54 -54
  130. package/src/ui/syntax-highlight.ts +116 -116
  131. package/src/ui/transcript-viewer.ts +302 -302
  132. package/src/utils/completion-dedupe.ts +63 -63
  133. package/src/utils/file-coalescer.ts +84 -84
  134. package/src/utils/frontmatter.ts +36 -36
  135. package/src/utils/fs-watch.ts +31 -31
  136. package/src/utils/git.ts +262 -262
  137. package/src/utils/ids.ts +12 -12
  138. package/src/utils/names.ts +26 -26
  139. package/src/utils/paths.ts +34 -7
  140. package/src/utils/sleep.ts +32 -32
  141. package/src/utils/timings.ts +31 -31
  142. package/src/utils/visual.ts +159 -159
  143. package/src/workflows/discover-workflows.ts +2 -2
  144. package/src/workflows/validate-workflow.ts +40 -40
  145. package/src/worktree/branch-freshness.ts +45 -45
  146. package/src/worktree/cleanup.ts +71 -69
  147. package/src/worktree/worktree-manager.ts +3 -1
  148. package/teams/default.team.md +12 -12
  149. package/teams/fast-fix.team.md +11 -11
  150. package/teams/implementation.team.md +18 -18
  151. package/teams/parallel-research.team.md +14 -14
  152. package/teams/research.team.md +11 -11
  153. package/teams/review.team.md +12 -12
  154. package/workflows/default.workflow.md +29 -29
  155. package/workflows/fast-fix.workflow.md +22 -22
  156. package/workflows/implementation.workflow.md +38 -38
  157. package/workflows/parallel-research.workflow.md +46 -46
  158. package/workflows/research.workflow.md +22 -22
  159. package/workflows/review.workflow.md +30 -30
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.1.31
6
+
7
+ ### Fixed
8
+
9
+ - Added required Agent Skills frontmatter (`name` and `description`) to built-in coding skills so Pi loads them without conflicts.
10
+ - Tightened built-in skill package coverage to require standards-compliant frontmatter.
11
+
12
+ ## 0.1.30
13
+
5
14
  ### Added
6
15
 
7
16
  - Added Phase 6 async hardening: jiti loader resolution/fail-fast, async startup marker files, and early background-runner exit detection.
package/README.md CHANGED
@@ -132,9 +132,12 @@ User config path:
132
132
  Project config path:
133
133
 
134
134
  ```text
135
- .pi/teams/config.json
135
+ .crew/config.json # default (new projects)
136
+ .pi/teams/config.json # legacy (when the repo already has .pi/)
136
137
  ```
137
138
 
139
+ The project root is auto-detected by walking up from the current directory and stopping at any of: `.git`, `.pi`, `.crew`, `.hg`, `.svn`, `.factory`, `.omc`, or any common manifest file (`package.json`, `pyproject.toml`, `Cargo.toml`, `go.mod`, `pom.xml`, `composer.json`, `build.gradle[.kts]`). If the project already has a `.pi/` directory, pi-crew reuses it under `.pi/teams/` to avoid creating a parallel layout; otherwise it uses `.crew/`.
140
+
138
141
  Config merge priority:
139
142
 
140
143
  ```text
@@ -179,6 +182,11 @@ Supported config:
179
182
  "showModel": true,
180
183
  "showTokens": true,
181
184
  "showTools": true
185
+ },
186
+ "tools": {
187
+ "enableClaudeStyleAliases": true,
188
+ "enableSteer": true,
189
+ "terminateOnForeground": false
182
190
  }
183
191
  }
184
192
  ```
@@ -186,6 +194,7 @@ Supported config:
186
194
  Safety notes:
187
195
 
188
196
  - Foreground child-process runs continue in the Pi extension process and return control to chat immediately, so large workflows do not block the interactive session. They are interrupted on session shutdown. Use `async: true` only for intentionally detached runs that may survive the current session.
197
+ - `tools.terminateOnForeground` is an opt-in power-user setting. When true, foreground `Agent`/`crew_agent` calls return with `terminate: true` after the child result is available, saving one follow-up LLM turn. Default is false so the assistant can still summarize raw worker output.
189
198
 
190
199
  UI notes:
191
200
 
@@ -454,12 +463,20 @@ User resources:
454
463
  ~/.pi/agent/workflows/*.workflow.md
455
464
  ```
456
465
 
457
- Project resources:
466
+ Project resources (new default layout):
467
+
468
+ ```text
469
+ .crew/agents/*.md
470
+ .crew/teams/*.team.md
471
+ .crew/workflows/*.workflow.md
472
+ ```
473
+
474
+ Legacy layout (when `.pi/` already exists in the repo):
458
475
 
459
476
  ```text
460
- .pi/agents/*.md
461
- .pi/teams/*.team.md
462
- .pi/workflows/*.workflow.md
477
+ .pi/teams/agents/*.md
478
+ .pi/teams/teams/*.team.md
479
+ .pi/teams/workflows/*.workflow.md
463
480
  ```
464
481
 
465
482
  Discovery priority:
@@ -525,33 +542,41 @@ review
525
542
 
526
543
  ## State layout
527
544
 
528
- Project-local state is preferred when the cwd has `.git` or `.pi`; otherwise user-global state is used.
545
+ Project-local state is preferred when the cwd is inside a recognised project (any of the markers listed in the Config section above). Otherwise pi-crew falls back to user-global state.
529
546
 
530
- Typical project-local state:
547
+ The project state root (`<crewRoot>` below) resolves to:
531
548
 
532
549
  ```text
533
- .pi/teams/state/runs/{runId}/manifest.json
534
- .pi/teams/state/runs/{runId}/tasks.json
535
- .pi/teams/state/runs/{runId}/events.jsonl
536
- .pi/teams/artifacts/{runId}/...
537
- .pi/teams/worktrees/{runId}/{taskId}
538
- .pi/teams/imports/{runId}/run-export.json
550
+ <repoRoot>/.crew/ # default, used for new projects
551
+ <repoRoot>/.pi/teams/ # legacy reuse when .pi/ already exists
552
+ ```
553
+
554
+ Typical project-local state (`<crewRoot>` is one of the two paths above):
555
+
556
+ ```text
557
+ <crewRoot>/state/runs/{runId}/manifest.json
558
+ <crewRoot>/state/runs/{runId}/tasks.json
559
+ <crewRoot>/state/runs/{runId}/events.jsonl
560
+ <crewRoot>/artifacts/{runId}/...
561
+ <crewRoot>/worktrees/{runId}/{taskId}
562
+ <crewRoot>/imports/{runId}/run-export.json
539
563
  ```
540
564
 
541
565
  Mailbox state:
542
566
 
543
567
  ```text
544
- .pi/teams/state/runs/{runId}/mailbox/inbox.jsonl
545
- .pi/teams/state/runs/{runId}/mailbox/outbox.jsonl
546
- .pi/teams/state/runs/{runId}/mailbox/delivery.json
547
- .pi/teams/state/runs/{runId}/mailbox/tasks/{taskId}/inbox.jsonl
548
- .pi/teams/state/runs/{runId}/mailbox/tasks/{taskId}/outbox.jsonl
568
+ <crewRoot>/state/runs/{runId}/mailbox/inbox.jsonl
569
+ <crewRoot>/state/runs/{runId}/mailbox/outbox.jsonl
570
+ <crewRoot>/state/runs/{runId}/mailbox/delivery.json
571
+ <crewRoot>/state/runs/{runId}/mailbox/tasks/{taskId}/inbox.jsonl
572
+ <crewRoot>/state/runs/{runId}/mailbox/tasks/{taskId}/outbox.jsonl
549
573
  ```
550
574
 
551
- User-global fallback:
575
+ User-global fallback (shared with other Pi tools):
552
576
 
553
577
  ```text
554
- ~/.pi/agent/extensions/pi-crew/runs/...
578
+ ~/.pi/agent/extensions/pi-crew/state/runs/...
579
+ ~/.pi/agent/extensions/pi-crew/artifacts/...
555
580
  ~/.pi/agent/extensions/pi-crew/imports/...
556
581
  ```
557
582
 
@@ -570,18 +595,34 @@ Optionally copy builtin resources:
570
595
  /team-init --copy-builtins --overwrite
571
596
  ```
572
597
 
573
- Created directories:
598
+ Created directories (new projects):
574
599
 
575
600
  ```text
576
- .pi/agents/
577
- .pi/teams/
578
- .pi/workflows/
601
+ .crew/agents/
602
+ .crew/teams/
603
+ .crew/workflows/
604
+ .crew/imports/
605
+ ```
606
+
607
+ If the project already has `.pi/`, the legacy layout is initialised instead:
608
+
609
+ ```text
610
+ .pi/teams/agents/
611
+ .pi/teams/teams/
612
+ .pi/teams/workflows/
579
613
  .pi/teams/imports/
580
614
  ```
581
615
 
582
- `.gitignore` entries:
616
+ `.gitignore` entries are written for whichever layout is active, e.g.:
583
617
 
584
618
  ```text
619
+ # new layout
620
+ .crew/state/
621
+ .crew/artifacts/
622
+ .crew/worktrees/
623
+ .crew/imports/
624
+
625
+ # legacy layout
585
626
  .pi/teams/state/
586
627
  .pi/teams/artifacts/
587
628
  .pi/teams/worktrees/
@@ -597,14 +638,26 @@ Export writes:
597
638
  {artifactsRoot}/export/run-export.md
598
639
  ```
599
640
 
600
- Import stores bundles under:
641
+ Import stores bundles under (new layout):
642
+
643
+ ```text
644
+ .crew/imports/{runId}/run-export.json
645
+ .crew/imports/{runId}/README.md
646
+ ```
647
+
648
+ or under the legacy layout when `.pi/` already exists:
601
649
 
602
650
  ```text
603
651
  .pi/teams/imports/{runId}/run-export.json
604
652
  .pi/teams/imports/{runId}/README.md
605
653
  ```
606
654
 
607
- or user-global imports with `--user`.
655
+ or user-global imports with `--user`:
656
+
657
+ ```text
658
+ ~/.pi/agent/extensions/pi-crew/imports/{runId}/run-export.json
659
+ ~/.pi/agent/extensions/pi-crew/imports/{runId}/README.md
660
+ ```
608
661
 
609
662
  ## Doctor and validation
610
663
 
package/agents/analyst.md CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- name: analyst
3
- description: Analyze requirements, ambiguity, and hidden constraints
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls
9
- ---
10
-
11
- You are a requirements analyst. Identify what is known, unknown, risky, ambiguous, or underspecified. Produce clarifying assumptions and acceptance criteria.
1
+ ---
2
+ name: analyst
3
+ description: Analyze requirements, ambiguity, and hidden constraints
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls
9
+ ---
10
+
11
+ You are a requirements analyst. Identify what is known, unknown, risky, ambiguous, or underspecified. Produce clarifying assumptions and acceptance criteria.
package/agents/critic.md CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- name: critic
3
- description: Challenge plans and designs before execution
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls
9
- ---
10
-
11
- You are a critical reviewer. Find flaws, missing steps, unsafe assumptions, overengineering, underengineering, and verification gaps. Return concrete fixes to the plan.
1
+ ---
2
+ name: critic
3
+ description: Challenge plans and designs before execution
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls
9
+ ---
10
+
11
+ You are a critical reviewer. Find flaws, missing steps, unsafe assumptions, overengineering, underengineering, and verification gaps. Return concrete fixes to the plan.
@@ -1,11 +1,11 @@
1
- ---
2
- name: executor
3
- description: Implement planned code changes
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, bash, edit, write
9
- ---
10
-
11
- You are an implementation specialist. Follow the provided plan, make targeted changes, keep edits minimal, and report changed files plus validation status. Do not broaden scope without explaining why.
1
+ ---
2
+ name: executor
3
+ description: Implement planned code changes
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, bash, edit, write
9
+ ---
10
+
11
+ You are an implementation specialist. Follow the provided plan, make targeted changes, keep edits minimal, and report changed files plus validation status. Do not broaden scope without explaining why.
@@ -1,11 +1,11 @@
1
- ---
2
- name: explorer
3
- description: Fast codebase discovery and file/symbol mapping
4
- model: claude-haiku-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls
9
- ---
10
-
11
- You are a fast codebase explorer. Map relevant files, symbols, data flow, and constraints. Do not modify files. Return concise findings with paths and evidence.
1
+ ---
2
+ name: explorer
3
+ description: Fast codebase discovery and file/symbol mapping
4
+ model: claude-haiku-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls
9
+ ---
10
+
11
+ You are a fast codebase explorer. Map relevant files, symbols, data flow, and constraints. Do not modify files. Return concise findings with paths and evidence.
package/agents/planner.md CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- name: planner
3
- description: Create an execution plan with clear sequencing and risk notes
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls
9
- ---
10
-
11
- You are a planning specialist. Convert the goal and discovery notes into a concrete, ordered plan. Identify dependencies, risks, validation steps, and handoff instructions for implementers.
1
+ ---
2
+ name: planner
3
+ description: Create an execution plan with clear sequencing and risk notes
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls
9
+ ---
10
+
11
+ You are a planning specialist. Convert the goal and discovery notes into a concrete, ordered plan. Identify dependencies, risks, validation steps, and handoff instructions for implementers.
@@ -1,11 +1,11 @@
1
- ---
2
- name: reviewer
3
- description: Review code changes for correctness, maintainability, and regressions
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, bash
9
- ---
10
-
11
- You are a code reviewer. Review the implementation for bugs, regressions, maintainability issues, missing tests, and project-rule violations. Return prioritized findings with evidence.
1
+ ---
2
+ name: reviewer
3
+ description: Review code changes for correctness, maintainability, and regressions
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, bash
9
+ ---
10
+
11
+ You are a code reviewer. Review the implementation for bugs, regressions, maintainability issues, missing tests, and project-rule violations. Return prioritized findings with evidence.
@@ -1,11 +1,11 @@
1
- ---
2
- name: security-reviewer
3
- description: Review changes for security vulnerabilities and trust-boundary issues
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, bash
9
- ---
10
-
11
- You are a security reviewer. Look for injection, authn/authz flaws, insecure defaults, secret exposure, unsafe filesystem/network behavior, and dependency risks. Return severity and remediation.
1
+ ---
2
+ name: security-reviewer
3
+ description: Review changes for security vulnerabilities and trust-boundary issues
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, bash
9
+ ---
10
+
11
+ You are a security reviewer. Look for injection, authn/authz flaws, insecure defaults, secret exposure, unsafe filesystem/network behavior, and dependency risks. Return severity and remediation.
@@ -1,11 +1,11 @@
1
- ---
2
- name: test-engineer
3
- description: Design and implement test strategy for a change
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, bash, edit, write
9
- ---
10
-
11
- You are a test engineer. Identify the right test level, add or adjust tests when asked, detect flaky assumptions, and report exact validation commands and results.
1
+ ---
2
+ name: test-engineer
3
+ description: Design and implement test strategy for a change
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, bash, edit, write
9
+ ---
10
+
11
+ You are a test engineer. Identify the right test level, add or adjust tests when asked, detect flaky assumptions, and report exact validation commands and results.
@@ -1,11 +1,11 @@
1
- ---
2
- name: verifier
3
- description: Verify that implementation satisfies the requested goal
4
- model: claude-sonnet-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, bash
9
- ---
10
-
11
- You are a verification specialist. Check whether the work is complete, correct, tested, and aligned with project constraints. Prefer evidence over assumptions. Return PASS or FAIL with reasons.
1
+ ---
2
+ name: verifier
3
+ description: Verify that implementation satisfies the requested goal
4
+ model: claude-sonnet-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, bash
9
+ ---
10
+
11
+ You are a verification specialist. Check whether the work is complete, correct, tested, and aligned with project constraints. Prefer evidence over assumptions. Return PASS or FAIL with reasons.
package/agents/writer.md CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- name: writer
3
- description: Write concise documentation, migration notes, and summaries
4
- model: claude-haiku-4-5
5
- systemPromptMode: replace
6
- inheritProjectContext: true
7
- inheritSkills: false
8
- tools: read, grep, find, ls, edit, write
9
- ---
10
-
11
- You are a documentation specialist. Produce clear, concise, maintainable docs and summaries. Preserve technical accuracy and avoid marketing fluff.
1
+ ---
2
+ name: writer
3
+ description: Write concise documentation, migration notes, and summaries
4
+ model: claude-haiku-4-5
5
+ systemPromptMode: replace
6
+ inheritProjectContext: true
7
+ inheritSkills: false
8
+ tools: read, grep, find, ls, edit, write
9
+ ---
10
+
11
+ You are a documentation specialist. Produce clear, concise, maintainable docs and summaries. Preserve technical accuracy and avoid marketing fluff.