mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-10 17:11:04 +08:00
- Introduced a comprehensive template for generating epics and stories in Phase 5, including an index and individual epic files. - Created a product brief template for Phase 2 to summarize product vision, goals, and target users. - Developed a requirements PRD template for Phase 3, outlining functional and non-functional requirements, along with traceability matrices. feat: Implement tech debt roles for assessment, execution, planning, scanning, validation, and analysis - Added roles for tech debt assessment, executor, planner, scanner, validator, and analyst, each with defined phases and processes for managing technical debt. - Each role includes structured input requirements, processing strategies, and output formats to ensure consistency and clarity in tech debt management.
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 `.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) |
|