acc-task-progress-knowledge
1
总安装量
1
周安装量
#53234
全站排名
安装命令
npx skills add https://github.com/dykyi-roman/awesome-claude-code --skill acc-task-progress-knowledge
Agent 安装分布
opencode
1
claude-code
1
Skill 文档
Task Progress Knowledge
Guidelines for using TaskCreate/TaskUpdate tools in coordinator agents to provide user visibility into multi-phase workflows.
When to Use TaskCreate
Use TaskCreate in coordinator agents with 3+ major phases:
- Code review coordinators â multiple review phases
- Bug fix coordinators â diagnose â fix â test pipeline
- Refactoring coordinators â analyze â plan â generate
- Architecture auditors â multi-domain audits
- CI/CD coordinators â setup/fix/optimize operations
Do NOT use for:
- Single-phase operations
- Simple generators
- Leaf agents (non-coordinators)
TaskCreate Fields
| Field | Purpose | Example |
|---|---|---|
subject |
Brief task title (imperative) | “Diagnose bug” |
description |
What happens in this phase | “Analyze code to identify bug category and root cause” |
activeForm |
Spinner text (present continuous) | “Diagnosing bug…” |
Workflow Pattern
1. TaskCreate (all phases upfront)
âââ Phase 1: subject="Analyze changes", activeForm="Analyzing changes..."
âââ Phase 2: subject="Run reviewers", activeForm="Running reviewers..."
âââ Phase 3: subject="Generate report", activeForm="Generating report..."
2. Execute with status updates:
For each phase:
âââ TaskUpdate(taskId, status: in_progress)
âââ ... execute phase work ...
âââ TaskUpdate(taskId, status: completed)
Examples by Coordinator Type
Bug Fix Coordinator (3 phases)
TaskCreate: subject="Diagnose bug", description="Identify bug category, severity, root cause", activeForm="Diagnosing bug..."
TaskCreate: subject="Generate fix", description="Create minimal, safe fix", activeForm="Generating fix..."
TaskCreate: subject="Create regression test", description="Generate test that catches this bug", activeForm="Creating test..."
Code Review Coordinator (3 phases)
TaskCreate: subject="Analyze changes", description="Parse git diff, identify changed files", activeForm="Analyzing changes..."
TaskCreate: subject="Run reviewers", description="Execute specialized reviewers by level", activeForm="Running reviewers..."
TaskCreate: subject="Aggregate report", description="Combine findings, determine verdict", activeForm="Aggregating findings..."
Architecture Auditor (4 phases)
TaskCreate: subject="Structural audit", description="DDD, Clean, Hexagonal, SOLID", activeForm="Auditing structure..."
TaskCreate: subject="Behavioral audit", description="CQRS, Event Sourcing, EDA", activeForm="Auditing behavior..."
TaskCreate: subject="Integration audit", description="Outbox, Saga, Stability", activeForm="Auditing integration..."
TaskCreate: subject="Cross-pattern analysis", description="Find conflicts between patterns", activeForm="Analyzing patterns..."
CI Coordinator (3 phases)
TaskCreate: subject="Analyze configuration", description="Parse CI config, detect issues", activeForm="Analyzing config..."
TaskCreate: subject="Execute operation", description="Run setup/fix/optimize/audit", activeForm="Executing operation..."
TaskCreate: subject="Validate result", description="Verify changes, run syntax checks", activeForm="Validating result..."
Refactor Coordinator (3 phases)
TaskCreate: subject="Analyze code quality", description="Run readability and testability reviewers", activeForm="Analyzing code..."
TaskCreate: subject="Plan refactoring", description="Prioritize issues, map to techniques", activeForm="Planning refactoring..."
TaskCreate: subject="Generate recommendations", description="Create actionable report with commands", activeForm="Generating recommendations..."
DDD Auditor (3 phases)
TaskCreate: subject="Analyze layers", description="Check Domain, Application, Infrastructure separation", activeForm="Analyzing layers..."
TaskCreate: subject="Check dependencies", description="Detect violations between layers", activeForm="Checking dependencies..."
TaskCreate: subject="Verify patterns", description="Check DDD patterns compliance", activeForm="Verifying patterns..."
Pattern Auditor (4 phases)
TaskCreate: subject="Audit stability patterns", description="Circuit Breaker, Retry, Rate Limiter, Bulkhead", activeForm="Auditing stability..."
TaskCreate: subject="Audit behavioral patterns", description="Strategy, State, Chain, Decorator", activeForm="Auditing behavioral..."
TaskCreate: subject="Audit creational patterns", description="Builder, Object Pool, Factory", activeForm="Auditing creational..."
TaskCreate: subject="Audit integration patterns", description="Outbox, Saga, ADR", activeForm="Auditing integration..."
Best Practices
- Create all tasks upfront â user sees full workflow before execution
- Keep phases coarse â 3-5 major phases, not individual steps
- Use clear activeForm â user sees this in spinner during execution
- Always complete tasks â mark as completed even if phase finds nothing
- Don’t nest tasks â only coordinator creates tasks, not delegated agents
- Handle failures gracefully â if phase fails, still mark task completed with error note