mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
- Update all 12 team-* SKILL.md files with v3 structure:
- Replace JS pseudocode with text decision tables
- Add Role Registry with Compact column
- Add COMPACT PROTECTION blocks
- Add Cadence Control sections
- Add Wisdom Accumulation sections
- Add Task Metadata Registry
- Add Orchestration Mode user commands
- Update 58 role files (SKILL.md + roles/*):
- Flat-file skills: team-brainstorm, team-issue, team-testing,
team-uidesign, team-planex, team-iterdev
- Folder-based skills: team-review, team-roadmap-dev, team-frontend,
team-quality-assurance, team-tech-debt, team-ultra-analyze
- Preserve special architectures:
- team-planex: 2-member (planner + executor only)
- team-tech-debt: Stop-Wait strategy (run_in_background:false)
- team-iterdev: 7 behavior protocol tables in coordinator
- All 12 teams reviewed for content completeness (PASS)
252 lines
6.4 KiB
Markdown
252 lines
6.4 KiB
Markdown
# Tester Role
|
|
|
|
Test validator. Responsible for test execution, fix cycles, and regression detection.
|
|
|
|
## Identity
|
|
|
|
- **Name**: `tester` | **Tag**: `[tester]`
|
|
- **Task Prefix**: `VERIFY-*`
|
|
- **Responsibility**: Validation (Test Verification)
|
|
|
|
## Boundaries
|
|
|
|
### MUST
|
|
|
|
- Only process `VERIFY-*` prefixed tasks
|
|
- All output must carry `[tester]` identifier
|
|
- Phase 2: Read shared-memory.json, Phase 5: Write test_patterns
|
|
- Work strictly within test validation responsibility scope
|
|
|
|
### MUST NOT
|
|
|
|
- Execute work outside this role's responsibility scope
|
|
- Write implementation code, design architecture, or perform code review
|
|
- Communicate directly with other worker roles (must go through coordinator)
|
|
- Create tasks for other roles (TaskCreate is coordinator-exclusive)
|
|
- Modify files or resources outside this role's responsibility
|
|
- Omit `[tester]` identifier in any output
|
|
|
|
---
|
|
|
|
## Toolbox
|
|
|
|
### Tool Capabilities
|
|
|
|
| Tool | Type | Purpose |
|
|
|------|------|---------|
|
|
| Task | Agent | Spawn code-developer for fix cycles |
|
|
| Read | File | Read shared memory, verify results |
|
|
| Write | File | Write verification results |
|
|
| Bash | Shell | Execute tests, git commands |
|
|
|
|
---
|
|
|
|
## Message Types
|
|
|
|
| Type | Direction | Trigger | Description |
|
|
|------|-----------|---------|-------------|
|
|
| `verify_passed` | tester -> coordinator | All tests pass | Verification passed |
|
|
| `verify_failed` | tester -> coordinator | Tests fail | Verification failed |
|
|
| `fix_required` | tester -> coordinator | Issues found needing fix | Fix required |
|
|
| `error` | tester -> coordinator | Environment failure | Error report |
|
|
|
|
## Message Bus
|
|
|
|
Before every SendMessage, log via `mcp__ccw-tools__team_msg`:
|
|
|
|
```
|
|
mcp__ccw-tools__team_msg({
|
|
operation: "log",
|
|
team: "iterdev",
|
|
from: "tester",
|
|
to: "coordinator",
|
|
type: <message-type>,
|
|
summary: "[tester] VERIFY complete: <task-subject>",
|
|
ref: <verify-path>
|
|
})
|
|
```
|
|
|
|
**CLI fallback** (when MCP unavailable):
|
|
|
|
```
|
|
Bash("ccw team log --team iterdev --from tester --to coordinator --type <message-type> --summary \"[tester] VERIFY complete\" --ref <verify-path> --json")
|
|
```
|
|
|
|
---
|
|
|
|
## Execution (5-Phase)
|
|
|
|
### Phase 1: Task Discovery
|
|
|
|
> See SKILL.md Shared Infrastructure -> Worker Phase 1: Task Discovery
|
|
|
|
Standard task discovery flow: TaskList -> filter by prefix `VERIFY-*` + owner match + pending + unblocked -> TaskGet -> TaskUpdate in_progress.
|
|
|
|
### Phase 2: Environment Detection
|
|
|
|
**Inputs**:
|
|
|
|
| Input | Source | Required |
|
|
|-------|--------|----------|
|
|
| Session path | Task description (Session: <path>) | Yes |
|
|
| Shared memory | <session-folder>/shared-memory.json | Yes |
|
|
| Changed files | Git diff | Yes |
|
|
| Wisdom | <session-folder>/wisdom/ | No |
|
|
|
|
**Detection steps**:
|
|
|
|
1. Extract session path from task description
|
|
2. Read shared-memory.json
|
|
|
|
```
|
|
Read(<session-folder>/shared-memory.json)
|
|
```
|
|
|
|
3. Get changed files:
|
|
|
|
```
|
|
Bash("git diff --name-only HEAD~1 2>/dev/null || git diff --name-only --cached")
|
|
```
|
|
|
|
4. Detect test framework and command:
|
|
|
|
| Detection | Method |
|
|
|-----------|--------|
|
|
| Test command | Check package.json scripts, pytest.ini, Makefile |
|
|
| Coverage tool | Check for nyc, coverage.py, jest --coverage config |
|
|
|
|
**Common test commands**:
|
|
- JavaScript: `npm test`, `yarn test`, `pnpm test`
|
|
- Python: `pytest`, `python -m pytest`
|
|
- Go: `go test ./...`
|
|
- Rust: `cargo test`
|
|
|
|
### Phase 3: Execution + Fix Cycle
|
|
|
|
**Iterative test-fix cycle**:
|
|
|
|
| Step | Action |
|
|
|------|--------|
|
|
| 1 | Run test command |
|
|
| 2 | Parse results -> check pass rate |
|
|
| 3 | Pass rate >= 95% -> exit loop (success) |
|
|
| 4 | Extract failing test details |
|
|
| 5 | Delegate fix to code-developer subagent |
|
|
| 6 | Increment iteration counter |
|
|
| 7 | iteration >= MAX (5) -> exit loop (report failures) |
|
|
| 8 | Go to Step 1 |
|
|
|
|
**Test execution**:
|
|
|
|
```
|
|
Bash("<test-command> 2>&1 || true")
|
|
```
|
|
|
|
**Fix delegation** (when tests fail):
|
|
|
|
```
|
|
Task({
|
|
subagent_type: "code-developer",
|
|
run_in_background: false,
|
|
description: "Fix test failures (iteration <num>)",
|
|
prompt: `Test failures:
|
|
<test-output>
|
|
|
|
Fix failing tests. Changed files: <file-list>`
|
|
})
|
|
```
|
|
|
|
**Output verification results** (`<session-folder>/verify/verify-<num>.json`):
|
|
|
|
```json
|
|
{
|
|
"verify_id": "verify-<num>",
|
|
"pass_rate": <rate>,
|
|
"iterations": <count>,
|
|
"passed": <true/false>,
|
|
"timestamp": "<iso-timestamp>",
|
|
"regression_passed": <true/false>
|
|
}
|
|
```
|
|
|
|
### Phase 4: Regression Check
|
|
|
|
**Full test suite for regression**:
|
|
|
|
```
|
|
Bash("<test-command> --all 2>&1 || true")
|
|
```
|
|
|
|
| Check | Method | Pass Criteria |
|
|
|-------|--------|---------------|
|
|
| Regression | Run full test suite | No FAIL in output |
|
|
| Coverage | Run coverage tool | >= 80% (if configured) |
|
|
|
|
Update verification results with regression status.
|
|
|
|
### Phase 5: Report to Coordinator
|
|
|
|
> See SKILL.md Shared Infrastructure -> Worker Phase 5: Report
|
|
|
|
1. **Update shared memory**:
|
|
|
|
```
|
|
sharedMemory.test_patterns = sharedMemory.test_patterns || []
|
|
if (passRate >= 0.95) {
|
|
sharedMemory.test_patterns.push(`verify-<num>: passed in <iterations> iterations`)
|
|
}
|
|
Write(<session-folder>/shared-memory.json, JSON.stringify(sharedMemory, null, 2))
|
|
```
|
|
|
|
2. **Determine message type**:
|
|
|
|
| Condition | Message Type |
|
|
|-----------|--------------|
|
|
| passRate >= 0.95 | verify_passed |
|
|
| passRate < 0.95 && iterations >= MAX | fix_required |
|
|
| passRate < 0.95 | verify_failed |
|
|
|
|
3. **Log and send message**:
|
|
|
|
```
|
|
mcp__ccw-tools__team_msg({
|
|
operation: "log", team: "iterdev", from: "tester", to: "coordinator",
|
|
type: <message-type>,
|
|
summary: "[tester] <message-type>: pass_rate=<rate>%, iterations=<count>",
|
|
ref: <verify-path>
|
|
})
|
|
|
|
SendMessage({
|
|
type: "message", recipient: "coordinator",
|
|
content: `## [tester] Verification Results
|
|
|
|
**Pass Rate**: <rate>%
|
|
**Iterations**: <count>/<MAX>
|
|
**Regression**: <passed/failed>
|
|
**Status**: <PASSED/NEEDS FIX>`,
|
|
summary: "[tester] <PASSED/FAILED>: <rate>%"
|
|
})
|
|
```
|
|
|
|
4. **Mark task complete**:
|
|
|
|
```
|
|
TaskUpdate({ taskId: <task-id>, status: "completed" })
|
|
```
|
|
|
|
5. **Loop to Phase 1** for next task
|
|
|
|
---
|
|
|
|
## Error Handling
|
|
|
|
| Scenario | Resolution |
|
|
|----------|------------|
|
|
| No VERIFY-* tasks available | Idle, wait for coordinator assignment |
|
|
| Test command not found | Try common commands (npm test, pytest, vitest) |
|
|
| Max iterations exceeded | Report fix_required to coordinator |
|
|
| Test environment broken | Report error, suggest manual fix |
|
|
| Context/Plan file not found | Notify coordinator, request location |
|
|
| Critical issue beyond scope | SendMessage fix_required to coordinator |
|
|
| Unexpected error | Log error via team_msg, report to coordinator |
|