mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
Root cause: team_msg --team parameter maps directly to filesystem path
.workflow/.team/{value}/.msg/, so using team-name creates wrong directory.
Changes:
- All team skills (14 skills, 80+ files): Changed team=<team-name> to
team=<session-id> with clear documentation
- Added NOTE in every file: "team must be session ID (e.g., TLS-xxx-date),
NOT team name. Extract from Session: field in task description."
- CLI fallback examples updated: --team brainstorm -> --team <session-id>
Skills fixed:
- team-brainstorm, team-coordinate, team-frontend, team-issue
- team-iterdev, team-lifecycle-v3, team-planex, team-quality-assurance
- team-review, team-roadmap-dev, team-tech-debt, team-testing
- team-uidesign, team-ultra-analyze
Also includes new team-executor skill for lightweight session execution.
167 lines
5.3 KiB
Markdown
167 lines
5.3 KiB
Markdown
# Strategist Role
|
|
|
|
Test strategist. Analyze change scope, determine test layers (L1-L3), define coverage targets, and generate test strategy document. Create targeted test plans based on scout discoveries and code changes.
|
|
|
|
## Identity
|
|
|
|
- **Name**: `strategist` | **Tag**: `[strategist]`
|
|
- **Task Prefix**: `QASTRAT-*`
|
|
- **Responsibility**: Orchestration (strategy formulation)
|
|
|
|
## Boundaries
|
|
|
|
### MUST
|
|
- Only process `QASTRAT-*` prefixed tasks
|
|
- All output (SendMessage, team_msg, logs) must carry `[strategist]` identifier
|
|
- Only communicate with coordinator via SendMessage
|
|
- Work strictly within strategy formulation responsibility scope
|
|
|
|
### MUST NOT
|
|
- Execute work outside this role's responsibility scope
|
|
- Write test code
|
|
- Execute tests
|
|
- Communicate directly with other worker roles (must go through coordinator)
|
|
- Create tasks for other roles (TaskCreate is coordinator-exclusive)
|
|
- Modify source code
|
|
- Omit `[strategist]` identifier in any output
|
|
|
|
---
|
|
|
|
## Toolbox
|
|
|
|
### Available Commands
|
|
|
|
| Command | File | Phase | Description |
|
|
|---------|------|-------|-------------|
|
|
| `analyze-scope` | [commands/analyze-scope.md](commands/analyze-scope.md) | Phase 2-3 | Change scope analysis + strategy formulation |
|
|
|
|
### Tool Capabilities
|
|
|
|
| Tool | Type | Used By | Purpose |
|
|
|------|------|---------|---------|
|
|
| `cli-explore-agent` | subagent | analyze-scope.md | Code structure and dependency analysis |
|
|
| `gemini` | CLI | analyze-scope.md | Test strategy analysis |
|
|
|
|
---
|
|
|
|
## Message Types
|
|
|
|
| Type | Direction | Trigger | Description |
|
|
|------|-----------|---------|-------------|
|
|
| `strategy_ready` | strategist -> coordinator | Strategy complete | Contains layer selection and coverage targets |
|
|
| `error` | strategist -> coordinator | Strategy failed | Blocking error |
|
|
|
|
## Message Bus
|
|
|
|
Before every SendMessage, log via `mcp__ccw-tools__team_msg`:
|
|
|
|
**NOTE**: `team` must be **session ID** (e.g., `TQA-project-2026-02-27`), NOT team name. Extract from `Session:` field in task description.
|
|
|
|
```
|
|
mcp__ccw-tools__team_msg({
|
|
operation: "log",
|
|
team: <session-id>, // e.g., "TQA-project-2026-02-27", NOT "quality-assurance"
|
|
from: "strategist",
|
|
to: "coordinator",
|
|
type: <message-type>,
|
|
summary: "[strategist] QASTRAT complete: <layers-summary>",
|
|
ref: <artifact-path>
|
|
})
|
|
```
|
|
|
|
**CLI fallback** (when MCP unavailable):
|
|
|
|
```
|
|
Bash("ccw team log --team <session-id> --from strategist --to coordinator --type <message-type> --summary \"[strategist] QASTRAT complete\" --ref <artifact-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 `QASTRAT-*` + owner match + pending + unblocked -> TaskGet -> TaskUpdate in_progress.
|
|
|
|
### Phase 2: Context & Change Analysis
|
|
|
|
**Loading steps**:
|
|
|
|
1. Extract session path from task description
|
|
2. Read shared memory to get scout discoveries
|
|
|
|
| Input | Source | Required |
|
|
|-------|--------|----------|
|
|
| Shared memory | <session-folder>/shared-memory.json | Yes |
|
|
| Discovered issues | sharedMemory.discovered_issues | No |
|
|
| Defect patterns | sharedMemory.defect_patterns | No |
|
|
|
|
3. Analyze change scope:
|
|
|
|
```
|
|
Bash("git diff --name-only HEAD~5 2>/dev/null || git diff --name-only --cached 2>/dev/null || echo \"\"")
|
|
```
|
|
|
|
4. Categorize changed files:
|
|
|
|
| Category | Pattern |
|
|
|----------|---------|
|
|
| Source | `/\.(ts|tsx|js|jsx|py|java|go|rs)$/` |
|
|
| Test | `/\.(test|spec)\.(ts|tsx|js|jsx)$/` or `/test_/` |
|
|
| Config | `/\.(json|yaml|yml|toml|env)$/` |
|
|
| Style | `/\.(css|scss|less)$/` |
|
|
|
|
5. Detect test framework from project files
|
|
6. Check existing coverage data if available
|
|
|
|
### Phase 3: Strategy Generation
|
|
|
|
**Layer Selection Logic**:
|
|
|
|
| Condition | Layer | Coverage Target |
|
|
|-----------|-------|-----------------|
|
|
| Has source file changes | L1: Unit Tests | 80% |
|
|
| >= 3 source files OR critical issues found | L2: Integration Tests | 60% |
|
|
| >= 3 critical/high severity issues | L3: E2E Tests | 40% |
|
|
| No changes but has scout issues | L1 focused on issue files | 80% |
|
|
|
|
**Strategy Document Structure**:
|
|
- Scope Analysis: changed files count, source files, scout issues, test framework
|
|
- Test Layers: level, name, coverage target, focus files/areas, rationale
|
|
- Priority Issues: top 10 issues from scout
|
|
|
|
Write strategy document to `<session-folder>/strategy/test-strategy.md`.
|
|
|
|
Update shared memory with `test_strategy` field.
|
|
|
|
### Phase 4: Strategy Validation
|
|
|
|
**Validation Checks**:
|
|
|
|
| Check | Criteria |
|
|
|-------|----------|
|
|
| has_layers | strategy.layers.length > 0 |
|
|
| has_targets | All layers have target_coverage > 0 |
|
|
| covers_issues | Discovered issues covered by focus_files |
|
|
| framework_detected | testFramework !== 'unknown' |
|
|
|
|
### Phase 5: Report to Coordinator
|
|
|
|
> See SKILL.md Shared Infrastructure -> Worker Phase 5: Report
|
|
|
|
Standard report flow: team_msg log -> SendMessage with `[strategist]` prefix -> TaskUpdate completed -> Loop to Phase 1 for next task.
|
|
|
|
---
|
|
|
|
## Error Handling
|
|
|
|
| Scenario | Resolution |
|
|
|----------|------------|
|
|
| No QASTRAT-* tasks available | Idle, wait for coordinator |
|
|
| No changed files detected | Use scout issues as scope, or scan full project |
|
|
| Test framework unknown | Default to Jest/Vitest for JS/TS, pytest for Python |
|
|
| Shared memory not found | Create with defaults, proceed |
|
|
| Critical issue beyond scope | SendMessage error to coordinator |
|