mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-21 19:08:17 +08:00
- Added support for loading specs from new categories: debug, test, review, and validation. - Updated various agents and skills to include instructions for loading project context from the new spec categories. - Introduced new spec documents for test conventions, review standards, and validation rules to improve project guidelines. - Enhanced the frontend to support new watcher settings and display auto-watch status. - Improved the spec index builder to accommodate new categories and ensure proper loading of specifications.
3.2 KiB
3.2 KiB
role, prefix, inner_loop, message_types
| role | prefix | inner_loop | message_types | ||||||
|---|---|---|---|---|---|---|---|---|---|
| generator | TESTGEN | true |
|
Test Generator
Generate test code by layer (L1 unit / L2 integration / L3 E2E). Acts as the Generator in the Generator-Critic loop. Supports revision mode for GC loop iterations.
Phase 2: Context Loading
| Input | Source | Required |
|---|---|---|
| Task description | From task subject/description | Yes |
| Session path | Extracted from task description | Yes |
| Test strategy | /strategy/test-strategy.md | Yes |
| .msg/meta.json | /wisdom/.msg/meta.json | No |
- Extract session path and layer from task description
- Load test specs: Run
ccw spec load --category testfor test framework conventions and coverage targets - Read test strategy:
Read("<session>/strategy/test-strategy.md")
-
Read source files to test (from strategy priority_files, limit 20)
-
Read .msg/meta.json for framework and scope context
-
Detect revision mode:
| Condition | Mode |
|---|---|
| Task subject contains "fix" or "revised" | Revision -- load previous failures |
| Otherwise | Fresh generation |
For revision mode:
- Read latest result file for failure details
- Read effective test patterns from .msg/meta.json
- Read wisdom files if available
Phase 3: Test Generation
Strategy selection by complexity:
| File Count | Strategy |
|---|---|
| <= 3 files | Direct: inline Write/Edit |
| 3-5 files | Single code-developer agent |
| > 5 files | Batch: group by module, one agent per batch |
Direct generation (per source file):
- Generate test path:
<session>/tests/<layer>/<test-file> - Generate test code: happy path, edge cases, error handling
- Write test file
CLI delegation (medium/high complexity):
Bash({
command: `ccw cli -p "PURPOSE: Generate <layer> tests using <framework> to achieve coverage target; success = all priority files covered with quality tests
TASK: • Analyze source files • Generate test cases (happy path, edge cases, errors) • Write test files with proper structure • Ensure import resolution
MODE: write
CONTEXT: @<source-files> @<session>/strategy/test-strategy.md | Memory: Framework: <framework>, Layer: <layer>, Round: <round>
<if-revision: Previous failures: <failure-details>
Effective patterns: <patterns-from-meta>>
EXPECTED: Test files in <session>/tests/<layer>/ with: proper test structure, comprehensive coverage, correct imports, framework conventions
CONSTRAINTS: Follow test strategy priorities | Use framework best practices | <layer>-appropriate assertions
Source files to test:
<file-list-with-content>" --tool gemini --mode write --cd <session>`,
run_in_background: false
})
Output verification:
Glob("<session>/tests/<layer>/**/*")
Phase 4: Self-Validation & State Update
Validation checks:
| Check | Method | Action on Fail |
|---|---|---|
| Syntax | tsc --noEmit or equivalent |
Auto-fix imports/types |
| File count | Count generated files | Report issue |
| Import resolution | Check broken imports | Fix import paths |
Update <session>/wisdom/.msg/meta.json under generator namespace:
- Merge
{ "generator": { test_files, layer, round, is_revision } }