mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-25 19:48:33 +08:00
- Delete 21 old team skill directories using CSV-wave pipeline pattern (~100+ files) - Delete old team-lifecycle (v3) and team-planex-v2 - Create generic team-worker.toml and team-supervisor.toml (replacing tlv4-specific TOMLs) - Convert 19 team skills from Claude Code format (Agent/SendMessage/TaskCreate) to Codex format (spawn_agent/wait_agent/tasks.json/request_user_input) - Update team-lifecycle-v4 to use generic agent types (team_worker/team_supervisor) - Convert all coordinator role files: dispatch.md, monitor.md, role.md - Convert all worker role files: remove run_in_background, fix Bash syntax - Convert all specs/pipelines.md references - Final state: 20 team skills, 217 .md files, zero Claude Code API residuals Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
2.3 KiB
Markdown
55 lines
2.3 KiB
Markdown
# Pipeline Definitions
|
|
|
|
UX improvement pipeline modes and task registry.
|
|
|
|
## Pipeline Modes
|
|
|
|
| Mode | Description | Task Chain |
|
|
|------|-------------|------------|
|
|
| standard | Full UX improvement pipeline | SCAN-001 -> DIAG-001 -> DESIGN-001 -> IMPL-001 -> TEST-001 |
|
|
|
|
## Standard Pipeline Task Registry
|
|
|
|
| Task ID | Role | blockedBy | Inner Loop | Description |
|
|
|---------|------|-----------|------------|-------------|
|
|
| SCAN-001 | scanner | [] | false | Scan UI components for interaction issues (unresponsive buttons, missing feedback, state problems) |
|
|
| DIAG-001 | diagnoser | [SCAN-001] | false | Root cause diagnosis with fix recommendations |
|
|
| DESIGN-001 | designer | [DIAG-001] | false | Feedback mechanism and state management solution design |
|
|
| IMPL-001 | implementer | [DESIGN-001] | true | Code implementation with proper state handling |
|
|
| TEST-001 | tester | [IMPL-001] | false | Test generation and validation (pass rate >= 95%, max 5 iterations) |
|
|
|
|
## Checkpoints
|
|
|
|
| Checkpoint | Trigger | Condition | Action |
|
|
|------------|---------|-----------|--------|
|
|
| Pipeline complete | TEST-001 completes | All tasks done | Coordinator Phase 5: wisdom consolidation + completion action |
|
|
|
|
## Test Iteration Behavior
|
|
|
|
| Condition | Action |
|
|
|-----------|--------|
|
|
| pass_rate >= 95% | Pipeline complete |
|
|
| pass_rate < 95% AND iterations < 5 | Tester generates fixes, re-runs (inner loop within TEST-001) |
|
|
| pass_rate < 95% AND iterations >= 5 | Accept current state, report to coordinator |
|
|
|
|
## Output Artifacts
|
|
|
|
| Task | Output Path |
|
|
|------|-------------|
|
|
| SCAN-001 | <session>/artifacts/scan-report.md |
|
|
| DIAG-001 | <session>/artifacts/diagnosis.md |
|
|
| DESIGN-001 | <session>/artifacts/design-guide.md |
|
|
| IMPL-001 | <session>/artifacts/fixes/ |
|
|
| TEST-001 | <session>/artifacts/test-report.md |
|
|
|
|
## Wisdom System
|
|
|
|
Workers contribute learnings to `<session>/wisdom/contributions/`. On pipeline completion, coordinator asks user to merge approved contributions to permanent wisdom at `~ or <project>/.claude/skills/team-ux-improve/wisdom/`.
|
|
|
|
| Directory | Purpose |
|
|
|-----------|---------|
|
|
| wisdom/principles/ | Core UX principles |
|
|
| wisdom/patterns/ | Solution patterns (ui-feedback, state-management) |
|
|
| wisdom/anti-patterns/ | Issues to avoid (common-ux-pitfalls) |
|
|
| wisdom/contributions/ | Session worker contributions (pending review) |
|