cokit-cli 1.2.6 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -42
- package/agents/brainstormer.agent.md +28 -14
- package/agents/code-reviewer.agent.md +101 -67
- package/agents/code-simplifier.agent.md +36 -41
- package/agents/debugger.agent.md +29 -24
- package/agents/docs-manager.agent.md +15 -23
- package/agents/fullstack-developer.agent.md +16 -6
- package/agents/git-manager.agent.md +0 -3
- package/agents/planner.agent.md +16 -34
- package/agents/project-manager.agent.md +24 -0
- package/agents/researcher.agent.md +15 -13
- package/agents/tester.agent.md +43 -20
- package/agents/ui-ux-designer.agent.md +16 -49
- package/docs/README.md +8 -9
- package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
- package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
- package/docs/code-standards.md +1 -2
- package/docs/codebase-summary.md +35 -66
- package/docs/cokit-commands-usage-guide.md +27 -73
- package/docs/cokit-comprehensive-mapping-guide.md +9 -15
- package/docs/cokit-slides.md +4 -9
- package/docs/cokit-sync-and-maintenance-guide.md +42 -190
- package/docs/cokit-team-presentation.md +6 -11
- package/docs/copilot-processing-flow.md +3 -3
- package/docs/migration-guide.md +15 -15
- package/docs/project-overview-pdr.md +6 -7
- package/docs/project-roadmap.md +13 -15
- package/docs/skills-and-orchestration-layer-en.md +404 -0
- package/docs/skills-and-orchestration-layer-vi.md +404 -0
- package/docs/system-architecture.md +14 -20
- package/docs/{claudekit-porting-rules.md → upstream-porting-rules.md} +15 -16
- package/package.json +3 -4
- package/prompts/ck-ask.prompt.md +0 -1
- package/prompts/ck-bootstrap.prompt.md +0 -3
- package/prompts/ck-brainstorm.prompt.md +0 -1
- package/prompts/ck-cook.prompt.md +0 -1
- package/prompts/ck-debug.prompt.md +0 -1
- package/prompts/ck-deploy.prompt.md +22 -0
- package/prompts/ck-docs.prompt.md +0 -1
- package/prompts/ck-frontend.prompt.md +20 -0
- package/prompts/ck-help.prompt.md +0 -1
- package/prompts/ck-plan-fast.prompt.md +0 -3
- package/prompts/ck-plan-hard.prompt.md +0 -3
- package/prompts/ck-plan.prompt.md +0 -3
- package/prompts/ck-project.prompt.md +20 -0
- package/prompts/ck-review.prompt.md +0 -3
- package/prompts/ck-scout.prompt.md +0 -1
- package/prompts/ck-security.prompt.md +22 -0
- package/prompts/ck-ship.prompt.md +22 -0
- package/prompts/ck-test.prompt.md +0 -2
- package/prompts/ck-watzup.prompt.md +0 -1
- package/skills/agent-browser/SKILL.md +11 -8
- package/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/skills/bootstrap/SKILL.md +102 -0
- package/skills/bootstrap/references/shared-phases.md +59 -0
- package/skills/bootstrap/references/workflow-auto.md +52 -0
- package/skills/bootstrap/references/workflow-fast.md +50 -0
- package/skills/bootstrap/references/workflow-full.md +60 -0
- package/skills/bootstrap/references/workflow-parallel.md +59 -0
- package/skills/brainstorm/SKILL.md +63 -15
- package/skills/code-review/SKILL.md +138 -135
- package/skills/code-review/references/adversarial-review.md +223 -0
- package/skills/code-review/references/checklist-workflow.md +100 -0
- package/skills/code-review/references/checklists/api.md +52 -0
- package/skills/code-review/references/checklists/base.md +100 -0
- package/skills/code-review/references/checklists/web-app.md +54 -0
- package/skills/code-review/references/code-review-reception.md +48 -144
- package/skills/code-review/references/codebase-scan-workflow.md +30 -0
- package/skills/code-review/references/edge-case-scouting.md +119 -0
- package/skills/code-review/references/input-mode-resolution.md +135 -0
- package/skills/code-review/references/parallel-review-workflow.md +76 -0
- package/skills/code-review/references/requesting-code-review.md +115 -104
- package/skills/code-review/references/spec-compliance-review.md +43 -0
- package/skills/code-review/references/task-management-reviews.md +155 -0
- package/skills/common/README.md +2 -12
- package/skills/common/api_key_helper.py +7 -37
- package/skills/context-engineering/SKILL.md +4 -3
- package/skills/context-engineering/references/context-degradation.md +2 -2
- package/skills/context-engineering/references/runtime-awareness.md +5 -47
- package/skills/cook/README.md +13 -13
- package/skills/cook/SKILL.md +86 -58
- package/skills/cook/references/intent-detection.md +7 -7
- package/skills/cook/references/review-cycle.md +2 -2
- package/skills/cook/references/subagent-patterns.md +75 -0
- package/skills/cook/references/workflow-steps.md +75 -23
- package/skills/databases/SKILL.md +3 -30
- package/skills/databases/db-design.md +1 -1
- package/skills/debug/SKILL.md +47 -105
- package/skills/debug/references/frontend-verification.md +103 -0
- package/skills/debug/references/investigation-methodology.md +101 -0
- package/skills/debug/references/log-and-ci-analysis.md +97 -0
- package/skills/debug/references/performance-diagnostics.md +113 -0
- package/skills/debug/references/reporting-standards.md +122 -0
- package/skills/debug/references/task-management-debugging.md +155 -0
- package/skills/deploy/SKILL.md +154 -0
- package/skills/deploy/references/platform-config-templates.md +35 -0
- package/skills/deploy/references/platforms/aws.md +58 -0
- package/skills/deploy/references/platforms/cloudflare.md +41 -0
- package/skills/deploy/references/platforms/coolify.md +32 -0
- package/skills/deploy/references/platforms/digitalocean.md +45 -0
- package/skills/deploy/references/platforms/dokploy.md +29 -0
- package/skills/deploy/references/platforms/flyio.md +54 -0
- package/skills/deploy/references/platforms/gcp.md +45 -0
- package/skills/deploy/references/platforms/github-pages.md +56 -0
- package/skills/deploy/references/platforms/heroku.md +31 -0
- package/skills/deploy/references/platforms/netlify.md +39 -0
- package/skills/deploy/references/platforms/railway.md +38 -0
- package/skills/deploy/references/platforms/render.md +39 -0
- package/skills/deploy/references/platforms/tose.md +35 -0
- package/skills/deploy/references/platforms/vercel.md +37 -0
- package/skills/deploy/references/platforms/vultr.md +27 -0
- package/skills/devops/SKILL.md +6 -12
- package/skills/docs-seeker/SKILL.md +2 -1
- package/skills/docs-seeker/references/context7-patterns.md +4 -0
- package/skills/docs-seeker/scripts/fetch-docs.js +1 -2
- package/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
- package/skills/docs-seeker/workflows/library-search.md +1 -0
- package/skills/fix/SKILL.md +141 -44
- package/skills/fix/references/complexity-assessment.md +21 -9
- package/skills/fix/references/diagnosis-protocol.md +133 -0
- package/skills/fix/references/mode-selection.md +27 -11
- package/skills/fix/references/parallel-exploration.md +35 -12
- package/skills/fix/references/prevention-gate.md +87 -0
- package/skills/fix/references/review-cycle.md +3 -3
- package/skills/fix/references/skill-activation-matrix.md +64 -31
- package/skills/fix/references/task-orchestration.md +110 -0
- package/skills/fix/references/workflow-deep.md +110 -47
- package/skills/fix/references/workflow-logs.md +46 -10
- package/skills/fix/references/workflow-quick.md +43 -20
- package/skills/fix/references/workflow-standard.md +75 -41
- package/skills/fix/references/workflow-test.md +49 -10
- package/skills/fix/references/workflow-ui.md +56 -18
- package/skills/frontend-design/SKILL.md +109 -77
- package/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/skills/frontend-design/references/anti-slop-rules.md +103 -0
- package/skills/frontend-design/references/asset-generation.md +284 -108
- package/skills/frontend-design/references/bento-motion-engine.md +142 -0
- package/skills/frontend-design/references/magicui-components.md +129 -0
- package/skills/frontend-design/references/performance-guardrails.md +169 -0
- package/skills/frontend-design/references/premium-design-patterns.md +93 -0
- package/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
- package/skills/frontend-design/references/visual-analysis-overview.md +1 -1
- package/skills/frontend-design/references/workflow-3d.md +98 -0
- package/skills/frontend-design/references/workflow-describe.md +4 -3
- package/skills/frontend-design/references/workflow-immersive.md +82 -0
- package/skills/frontend-design/references/workflow-quick.md +10 -12
- package/skills/frontend-design/references/workflow-screenshot.md +9 -8
- package/skills/frontend-design/references/workflow-video.md +74 -0
- package/skills/frontend-development/SKILL.md +400 -0
- package/skills/frontend-development/resources/common-patterns.md +331 -0
- package/skills/frontend-development/resources/complete-examples.md +872 -0
- package/skills/frontend-development/resources/component-patterns.md +502 -0
- package/skills/frontend-development/resources/data-fetching.md +767 -0
- package/skills/frontend-development/resources/file-organization.md +502 -0
- package/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/skills/frontend-development/resources/performance.md +406 -0
- package/skills/frontend-development/resources/routing-guide.md +364 -0
- package/skills/frontend-development/resources/styling-guide.md +428 -0
- package/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/skills/git/SKILL.md +18 -4
- package/skills/git/references/commit-standards.md +3 -3
- package/skills/git/references/workflow-commit.md +3 -3
- package/skills/git/references/workflow-merge.md +1 -1
- package/skills/git/references/workflow-pr.md +1 -1
- package/skills/git/references/workflow-push.md +1 -1
- package/skills/mcp-management/README.md +18 -18
- package/skills/mcp-management/SKILL.md +16 -15
- package/skills/mcp-management/references/configuration.md +4 -4
- package/skills/mcp-management/references/gemini-cli-integration.md +12 -12
- package/skills/mcp-management/scripts/.env.example +2 -2
- package/skills/mcp-management/scripts/dist/mcp-client.js +1 -1
- package/skills/mcp-management/scripts/mcp-client.ts +1 -1
- package/skills/mermaidjs-v11/SKILL.md +1 -0
- package/skills/planning/SKILL.md +122 -91
- package/skills/planning/references/archive-workflow.md +53 -0
- package/skills/planning/references/codebase-understanding.md +1 -1
- package/skills/planning/references/output-standards.md +17 -13
- package/skills/planning/references/plan-organization.md +52 -30
- package/skills/planning/references/red-team-personas.md +69 -0
- package/skills/planning/references/red-team-workflow.md +77 -0
- package/skills/planning/references/scope-challenge.md +90 -0
- package/skills/planning/references/task-management.md +134 -0
- package/skills/planning/references/validate-question-framework.md +80 -0
- package/skills/planning/references/validate-workflow.md +65 -0
- package/skills/planning/references/workflow-modes.md +154 -0
- package/skills/problem-solving/SKILL.md +1 -0
- package/skills/project-management/SKILL.md +133 -0
- package/skills/project-management/references/documentation-triggers.md +60 -0
- package/skills/project-management/references/hydration-workflow.md +89 -0
- package/skills/project-management/references/progress-tracking.md +120 -0
- package/skills/project-management/references/reporting-patterns.md +94 -0
- package/skills/project-management/references/task-operations.md +87 -0
- package/skills/repomix/SKILL.md +3 -2
- package/skills/repomix/references/usage-patterns.md +2 -2
- package/skills/repomix/scripts/README.md +1 -1
- package/skills/repomix/scripts/repomix_batch.py +2 -2
- package/skills/research/SKILL.md +7 -4
- package/skills/scout/SKILL.md +24 -24
- package/skills/scout/references/external-scouting.md +17 -17
- package/skills/scout/references/internal-scouting.md +9 -9
- package/skills/scout/references/task-management-scouting.md +125 -0
- package/skills/security/SKILL.md +139 -0
- package/skills/security/references/stride-owasp-checklist.md +128 -0
- package/skills/sequential-thinking/README.md +3 -3
- package/skills/sequential-thinking/SKILL.md +2 -0
- package/skills/sequential-thinking/package.json +1 -1
- package/skills/ship/SKILL.md +116 -0
- package/skills/ship/references/auto-detect.md +103 -0
- package/skills/ship/references/pr-template.md +90 -0
- package/skills/ship/references/ship-workflow.md +241 -0
- package/skills/test/SKILL.md +111 -0
- package/skills/test/references/report-format.md +58 -0
- package/skills/test/references/test-execution-workflow.md +103 -0
- package/skills/test/references/ui-testing-workflow.md +65 -0
- package/skills/ui-styling/SKILL.md +2 -0
- package/skills/web-testing/SKILL.md +8 -60
- package/src/commands/add.js +0 -1
- package/src/commands/doctor.js +2 -2
- package/src/commands/init.js +19 -28
- package/src/commands/update.js +1 -1
- package/templates/repo/.github/agents/brainstormer.agent.md +28 -14
- package/templates/repo/.github/agents/code-reviewer.agent.md +101 -67
- package/templates/repo/.github/agents/code-simplifier.agent.md +36 -41
- package/templates/repo/.github/agents/debugger.agent.md +29 -24
- package/templates/repo/.github/agents/docs-manager.agent.md +15 -23
- package/templates/repo/.github/agents/fullstack-developer.agent.md +16 -6
- package/templates/repo/.github/agents/git-manager.agent.md +0 -3
- package/templates/repo/.github/agents/planner.agent.md +16 -34
- package/templates/repo/.github/agents/project-manager.agent.md +24 -0
- package/templates/repo/.github/agents/researcher.agent.md +15 -13
- package/templates/repo/.github/agents/tester.agent.md +43 -20
- package/templates/repo/.github/agents/ui-ux-designer.agent.md +16 -49
- package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-cook.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
- package/templates/repo/.github/prompts/ck-review.prompt.md +0 -3
- package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
- package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
- package/templates/repo/.github/prompts/ck-test.prompt.md +0 -2
- package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
- package/templates/repo/.github/skills/agent-browser/SKILL.md +11 -8
- package/templates/repo/.github/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/templates/repo/.github/skills/bootstrap/SKILL.md +102 -0
- package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +59 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +52 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +50 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +60 -0
- package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +59 -0
- package/templates/repo/.github/skills/brainstorm/SKILL.md +63 -15
- package/templates/repo/.github/skills/code-review/SKILL.md +138 -135
- package/templates/repo/.github/skills/code-review/references/adversarial-review.md +223 -0
- package/templates/repo/.github/skills/code-review/references/checklist-workflow.md +100 -0
- package/templates/repo/.github/skills/code-review/references/checklists/api.md +52 -0
- package/templates/repo/.github/skills/code-review/references/checklists/base.md +100 -0
- package/templates/repo/.github/skills/code-review/references/checklists/web-app.md +54 -0
- package/templates/repo/.github/skills/code-review/references/code-review-reception.md +48 -144
- package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +30 -0
- package/templates/repo/.github/skills/code-review/references/edge-case-scouting.md +119 -0
- package/templates/repo/.github/skills/code-review/references/input-mode-resolution.md +135 -0
- package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +76 -0
- package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +19 -8
- package/templates/repo/.github/skills/code-review/references/spec-compliance-review.md +43 -0
- package/templates/repo/.github/skills/code-review/references/task-management-reviews.md +155 -0
- package/templates/repo/.github/skills/common/README.md +2 -12
- package/templates/repo/.github/skills/common/api_key_helper.py +7 -37
- package/templates/repo/.github/skills/context-engineering/SKILL.md +4 -3
- package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +2 -2
- package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +5 -47
- package/templates/repo/.github/skills/cook/README.md +13 -13
- package/templates/repo/.github/skills/cook/SKILL.md +86 -58
- package/templates/repo/.github/skills/cook/references/intent-detection.md +7 -7
- package/templates/repo/.github/skills/cook/references/review-cycle.md +2 -2
- package/templates/repo/.github/skills/cook/references/subagent-patterns.md +75 -0
- package/templates/repo/.github/skills/cook/references/workflow-steps.md +75 -23
- package/templates/repo/.github/skills/databases/SKILL.md +3 -30
- package/templates/repo/.github/skills/databases/db-design.md +1 -1
- package/templates/repo/.github/skills/debug/SKILL.md +47 -105
- package/templates/repo/.github/skills/debug/references/frontend-verification.md +103 -0
- package/templates/repo/.github/skills/debug/references/investigation-methodology.md +101 -0
- package/templates/repo/.github/skills/debug/references/log-and-ci-analysis.md +97 -0
- package/templates/repo/.github/skills/debug/references/performance-diagnostics.md +113 -0
- package/templates/repo/.github/skills/debug/references/reporting-standards.md +122 -0
- package/templates/repo/.github/skills/debug/references/task-management-debugging.md +155 -0
- package/templates/repo/.github/skills/deploy/SKILL.md +154 -0
- package/templates/repo/.github/skills/deploy/references/platform-config-templates.md +35 -0
- package/templates/repo/.github/skills/deploy/references/platforms/aws.md +58 -0
- package/templates/repo/.github/skills/deploy/references/platforms/cloudflare.md +41 -0
- package/templates/repo/.github/skills/deploy/references/platforms/coolify.md +32 -0
- package/templates/repo/.github/skills/deploy/references/platforms/digitalocean.md +45 -0
- package/templates/repo/.github/skills/deploy/references/platforms/dokploy.md +29 -0
- package/templates/repo/.github/skills/deploy/references/platforms/flyio.md +54 -0
- package/templates/repo/.github/skills/deploy/references/platforms/gcp.md +45 -0
- package/templates/repo/.github/skills/deploy/references/platforms/github-pages.md +56 -0
- package/templates/repo/.github/skills/deploy/references/platforms/heroku.md +31 -0
- package/templates/repo/.github/skills/deploy/references/platforms/netlify.md +39 -0
- package/templates/repo/.github/skills/deploy/references/platforms/railway.md +38 -0
- package/templates/repo/.github/skills/deploy/references/platforms/render.md +39 -0
- package/templates/repo/.github/skills/deploy/references/platforms/tose.md +35 -0
- package/templates/repo/.github/skills/deploy/references/platforms/vercel.md +37 -0
- package/templates/repo/.github/skills/deploy/references/platforms/vultr.md +27 -0
- package/templates/repo/.github/skills/devops/SKILL.md +6 -12
- package/templates/repo/.github/skills/docs-seeker/SKILL.md +2 -1
- package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +4 -0
- package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +1 -2
- package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
- package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +1 -0
- package/templates/repo/.github/skills/fix/SKILL.md +141 -44
- package/templates/repo/.github/skills/fix/references/complexity-assessment.md +21 -9
- package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +133 -0
- package/templates/repo/.github/skills/fix/references/mode-selection.md +27 -11
- package/templates/repo/.github/skills/fix/references/parallel-exploration.md +35 -12
- package/templates/repo/.github/skills/fix/references/prevention-gate.md +87 -0
- package/templates/repo/.github/skills/fix/references/review-cycle.md +3 -3
- package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +64 -31
- package/templates/repo/.github/skills/fix/references/task-orchestration.md +110 -0
- package/templates/repo/.github/skills/fix/references/workflow-deep.md +110 -47
- package/templates/repo/.github/skills/fix/references/workflow-logs.md +46 -10
- package/templates/repo/.github/skills/fix/references/workflow-quick.md +43 -20
- package/templates/repo/.github/skills/fix/references/workflow-standard.md +75 -41
- package/templates/repo/.github/skills/fix/references/workflow-test.md +49 -10
- package/templates/repo/.github/skills/fix/references/workflow-ui.md +56 -18
- package/templates/repo/.github/skills/frontend-design/SKILL.md +49 -17
- package/templates/repo/.github/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/templates/repo/.github/skills/frontend-design/references/anti-slop-rules.md +103 -0
- package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +284 -108
- package/templates/repo/.github/skills/frontend-design/references/bento-motion-engine.md +142 -0
- package/templates/repo/.github/skills/frontend-design/references/magicui-components.md +129 -0
- package/templates/repo/.github/skills/frontend-design/references/performance-guardrails.md +169 -0
- package/templates/repo/.github/skills/frontend-design/references/premium-design-patterns.md +93 -0
- package/templates/repo/.github/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
- package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +1 -1
- package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +98 -0
- package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +4 -3
- package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +82 -0
- package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +10 -12
- package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +9 -8
- package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +74 -0
- package/templates/repo/.github/skills/frontend-development/SKILL.md +400 -0
- package/templates/repo/.github/skills/frontend-development/resources/common-patterns.md +331 -0
- package/templates/repo/.github/skills/frontend-development/resources/complete-examples.md +872 -0
- package/templates/repo/.github/skills/frontend-development/resources/component-patterns.md +502 -0
- package/templates/repo/.github/skills/frontend-development/resources/data-fetching.md +767 -0
- package/templates/repo/.github/skills/frontend-development/resources/file-organization.md +502 -0
- package/templates/repo/.github/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/templates/repo/.github/skills/frontend-development/resources/performance.md +406 -0
- package/templates/repo/.github/skills/frontend-development/resources/routing-guide.md +364 -0
- package/templates/repo/.github/skills/frontend-development/resources/styling-guide.md +428 -0
- package/templates/repo/.github/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/templates/repo/.github/skills/git/SKILL.md +18 -4
- package/templates/repo/.github/skills/git/references/commit-standards.md +3 -3
- package/templates/repo/.github/skills/git/references/workflow-commit.md +3 -3
- package/templates/repo/.github/skills/git/references/workflow-merge.md +1 -1
- package/templates/repo/.github/skills/git/references/workflow-pr.md +1 -1
- package/templates/repo/.github/skills/git/references/workflow-push.md +1 -1
- package/templates/repo/.github/skills/mcp-management/README.md +18 -18
- package/templates/repo/.github/skills/mcp-management/SKILL.md +16 -15
- package/templates/repo/.github/skills/mcp-management/references/configuration.md +4 -4
- package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +12 -12
- package/templates/repo/.github/skills/mcp-management/scripts/.env.example +2 -2
- package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +1 -1
- package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +1 -0
- package/templates/repo/.github/skills/planning/SKILL.md +122 -91
- package/templates/repo/.github/skills/planning/references/archive-workflow.md +53 -0
- package/templates/repo/.github/skills/planning/references/codebase-understanding.md +1 -1
- package/templates/repo/.github/skills/planning/references/output-standards.md +17 -13
- package/templates/repo/.github/skills/planning/references/plan-organization.md +52 -30
- package/templates/repo/.github/skills/planning/references/red-team-personas.md +69 -0
- package/templates/repo/.github/skills/planning/references/red-team-workflow.md +77 -0
- package/templates/repo/.github/skills/planning/references/scope-challenge.md +90 -0
- package/templates/repo/.github/skills/planning/references/task-management.md +134 -0
- package/templates/repo/.github/skills/planning/references/validate-question-framework.md +80 -0
- package/templates/repo/.github/skills/planning/references/validate-workflow.md +65 -0
- package/templates/repo/.github/skills/planning/references/workflow-modes.md +154 -0
- package/templates/repo/.github/skills/problem-solving/SKILL.md +1 -0
- package/templates/repo/.github/skills/project-management/SKILL.md +133 -0
- package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +60 -0
- package/templates/repo/.github/skills/project-management/references/hydration-workflow.md +89 -0
- package/templates/repo/.github/skills/project-management/references/progress-tracking.md +120 -0
- package/templates/repo/.github/skills/project-management/references/reporting-patterns.md +94 -0
- package/templates/repo/.github/skills/project-management/references/task-operations.md +87 -0
- package/templates/repo/.github/skills/repomix/SKILL.md +3 -2
- package/templates/repo/.github/skills/repomix/references/usage-patterns.md +2 -2
- package/templates/repo/.github/skills/repomix/scripts/README.md +1 -1
- package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +2 -2
- package/templates/repo/.github/skills/research/SKILL.md +7 -4
- package/templates/repo/.github/skills/scout/SKILL.md +24 -24
- package/templates/repo/.github/skills/scout/references/external-scouting.md +17 -17
- package/templates/repo/.github/skills/scout/references/internal-scouting.md +9 -9
- package/templates/repo/.github/skills/scout/references/task-management-scouting.md +125 -0
- package/templates/repo/.github/skills/security/SKILL.md +139 -0
- package/templates/repo/.github/skills/security/references/stride-owasp-checklist.md +128 -0
- package/templates/repo/.github/skills/sequential-thinking/README.md +3 -3
- package/templates/repo/.github/skills/sequential-thinking/SKILL.md +2 -0
- package/templates/repo/.github/skills/sequential-thinking/package-lock.json +3652 -0
- package/templates/repo/.github/skills/sequential-thinking/package.json +1 -1
- package/templates/repo/.github/skills/ship/SKILL.md +116 -0
- package/templates/repo/.github/skills/ship/references/auto-detect.md +103 -0
- package/templates/repo/.github/skills/ship/references/pr-template.md +90 -0
- package/templates/repo/.github/skills/ship/references/ship-workflow.md +241 -0
- package/templates/repo/.github/skills/test/SKILL.md +111 -0
- package/templates/repo/.github/skills/test/references/report-format.md +58 -0
- package/templates/repo/.github/skills/test/references/test-execution-workflow.md +103 -0
- package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +65 -0
- package/templates/repo/.github/skills/ui-styling/SKILL.md +2 -0
- package/templates/repo/.github/skills/web-testing/SKILL.md +8 -60
- package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
- package/prompts/ck-spec-analyze.prompt.md +0 -201
- package/prompts/ck-spec-checklist.prompt.md +0 -308
- package/prompts/ck-spec-clarify.prompt.md +0 -190
- package/prompts/ck-spec-constitution.prompt.md +0 -92
- package/prompts/ck-spec-implement.prompt.md +0 -157
- package/prompts/ck-spec-plan.prompt.md +0 -95
- package/prompts/ck-spec-specify.prompt.md +0 -261
- package/prompts/ck-spec-tasks.prompt.md +0 -181
- package/templates/repo/.github/AGENTS.md +0 -103
- package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
- package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
- package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
- package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
- package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
- package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
- package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
- package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
- package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
- package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
- package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
- package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
- package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
- package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
- package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
- package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
- package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
- package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
- package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
- package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
- package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
- package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
- package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
- package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
- package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
- package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
- package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
- package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
- package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
- package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
- package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
- package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
- package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
- package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
- package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
- package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
- package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
- package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
- package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
- package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
- package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
- package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
- package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
- package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
- package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Prevention Gate
|
|
2
|
+
|
|
3
|
+
After fixing a bug, prevent the same class of issues from recurring. This step is MANDATORY.
|
|
4
|
+
|
|
5
|
+
## Core Principle
|
|
6
|
+
|
|
7
|
+
A fix without prevention is incomplete. The same bug pattern WILL recur if you only patch the symptom.
|
|
8
|
+
|
|
9
|
+
## Prevention Requirements (Check All That Apply)
|
|
10
|
+
|
|
11
|
+
### 1. Regression Test (ALWAYS required)
|
|
12
|
+
|
|
13
|
+
Every fix MUST have a test that:
|
|
14
|
+
- **Fails** without the fix applied (proves the test catches the bug)
|
|
15
|
+
- **Passes** with the fix applied (proves the fix works)
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
If no test framework exists:
|
|
19
|
+
→ Add inline verification or assertion at minimum
|
|
20
|
+
→ Note in report: "No test framework — added runtime assertion"
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### 2. Defense-in-Depth Validation (When applicable)
|
|
24
|
+
|
|
25
|
+
Apply layered validation from `debug` defense-in-depth technique:
|
|
26
|
+
|
|
27
|
+
| Layer | Apply When | Example |
|
|
28
|
+
|-------|-----------|---------|
|
|
29
|
+
| **Entry point validation** | Fix involves user/external input | Reject invalid input at API boundary |
|
|
30
|
+
| **Business logic validation** | Fix involves data processing | Assert data makes sense for operation |
|
|
31
|
+
| **Environment guards** | Fix involves env-sensitive operations | Prevent dangerous ops in wrong context |
|
|
32
|
+
| **Debug instrumentation** | Fix was hard to diagnose | Add logging/context capture for forensics |
|
|
33
|
+
|
|
34
|
+
**Rule:** Not every fix needs all 4 layers. Apply what's relevant. But ALWAYS consider each.
|
|
35
|
+
|
|
36
|
+
### 3. Type Safety (When applicable)
|
|
37
|
+
|
|
38
|
+
| Scenario | Prevention |
|
|
39
|
+
|----------|-----------|
|
|
40
|
+
| Null/undefined caused the bug | Add strict null checks, use `??` or `?.` |
|
|
41
|
+
| Wrong type passed | Add type guard or runtime validation |
|
|
42
|
+
| Missing property | Add required field to interface/type |
|
|
43
|
+
| Implicit any | Add explicit types |
|
|
44
|
+
|
|
45
|
+
### 4. Error Handling (When applicable)
|
|
46
|
+
|
|
47
|
+
| Scenario | Prevention |
|
|
48
|
+
|----------|-----------|
|
|
49
|
+
| Unhandled promise rejection | Add `.catch()` or try/catch |
|
|
50
|
+
| Missing error boundary | Add error boundary component |
|
|
51
|
+
| Silent failure | Add explicit error logging |
|
|
52
|
+
| No fallback for external dependency | Add timeout + fallback |
|
|
53
|
+
|
|
54
|
+
## Verification Checklist (Before Completing Step 5)
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
□ Pre-fix state captured? (error messages, test output)
|
|
58
|
+
□ Fix applied to ROOT CAUSE (not symptom)?
|
|
59
|
+
□ Fresh verification run? (exact same commands as pre-fix)
|
|
60
|
+
□ Before/after comparison documented?
|
|
61
|
+
□ Regression test added? (fails without fix, passes with fix)
|
|
62
|
+
□ Defense-in-depth layers considered? (applied where relevant)
|
|
63
|
+
□ No new warnings/errors introduced?
|
|
64
|
+
□ Parallel verification passed? (typecheck + lint + build + test)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Output Format
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
Prevention measures applied:
|
|
71
|
+
- Regression test: [test file:line] — covers [specific scenario]
|
|
72
|
+
- Guard added: [file:line] — [description of guard]
|
|
73
|
+
- Type safety: [file:line] — [what was strengthened]
|
|
74
|
+
- Error handling: [file:line] — [what was added]
|
|
75
|
+
|
|
76
|
+
Before/After comparison:
|
|
77
|
+
- Before: [exact error/failure]
|
|
78
|
+
- After: [exact success output]
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Quick Mode Prevention
|
|
82
|
+
|
|
83
|
+
For trivial issues (type errors, lint), abbreviated prevention:
|
|
84
|
+
- Regression test: optional (type system IS the test)
|
|
85
|
+
- Parallel verification: typecheck + lint only
|
|
86
|
+
- Defense-in-depth: skip (not applicable for type fixes)
|
|
87
|
+
- Still require before/after comparison of typecheck output
|
|
@@ -20,9 +20,9 @@ LOOP:
|
|
|
20
20
|
→ cycle++, GOTO LOOP
|
|
21
21
|
|
|
22
22
|
4. ELSE IF cycle >= 3:
|
|
23
|
-
→ ESCALATE to user
|
|
23
|
+
→ ESCALATE to user via asking the user
|
|
24
24
|
→ Display findings
|
|
25
|
-
→
|
|
25
|
+
→ Options: "Fix manually" / "Approve anyway" / "Abort"
|
|
26
26
|
|
|
27
27
|
5. ELSE (score < 9.5, no critical):
|
|
28
28
|
→ Output: "✓ Review [score]/10 - Approved with [N] warnings"
|
|
@@ -44,7 +44,7 @@ ALWAYS:
|
|
|
44
44
|
│ Suggestions ([N]): [list] │
|
|
45
45
|
└─────────────────────────────────────┘
|
|
46
46
|
|
|
47
|
-
3.
|
|
47
|
+
3. Use asking the user:
|
|
48
48
|
IF critical_count > 0:
|
|
49
49
|
- "Fix critical issues"
|
|
50
50
|
- "Fix all issues"
|
|
@@ -1,37 +1,57 @@
|
|
|
1
1
|
# Skill Activation Matrix
|
|
2
2
|
|
|
3
|
-
When to activate each skill during fixing workflows.
|
|
3
|
+
When to activate each skill and tool during fixing workflows.
|
|
4
4
|
|
|
5
|
-
## Always Activate
|
|
5
|
+
## Always Activate (ALL Workflows)
|
|
6
6
|
|
|
7
|
-
| Skill | Reason |
|
|
8
|
-
|
|
9
|
-
| `
|
|
7
|
+
| Skill/Tool | Step | Reason |
|
|
8
|
+
|------------|------|--------|
|
|
9
|
+
| `scout` OR parallel `Explore` | Step 1 | Understand codebase context before diagnosing |
|
|
10
|
+
| `debug` | Step 2 | Systematic root cause investigation |
|
|
11
|
+
| `sequential-thinking` | Step 2 | Structured hypothesis formation — NO guessing |
|
|
12
|
+
|
|
13
|
+
## Task Orchestration (Moderate+ Only)
|
|
14
|
+
|
|
15
|
+
| Tool | Activate When |
|
|
16
|
+
|------|---------------|
|
|
17
|
+
| `TaskCreate` | After complexity assessment, create all phase tasks upfront |
|
|
18
|
+
| `TaskUpdate` | At start/completion of each phase |
|
|
19
|
+
| `TaskList` | Check available unblocked work, coordinate parallel agents |
|
|
20
|
+
| `TaskGet` | Retrieve full task details before starting work |
|
|
21
|
+
|
|
22
|
+
Skip Tasks for Quick workflow (< 3 steps). See `references/task-orchestration.md`.
|
|
23
|
+
|
|
24
|
+
## Auto-Triggered Activation
|
|
25
|
+
|
|
26
|
+
| Skill | Auto-Trigger Condition |
|
|
27
|
+
|-------|------------------------|
|
|
28
|
+
| `problem-solving` | 2+ hypotheses REFUTED in Step 2 diagnosis |
|
|
29
|
+
| `sequential-thinking` | Always in Step 2 (mandatory for hypothesis formation) |
|
|
10
30
|
|
|
11
31
|
## Conditional Activation
|
|
12
32
|
|
|
13
33
|
| Skill | Activate When |
|
|
14
34
|
|-------|---------------|
|
|
15
|
-
| `
|
|
16
|
-
| `sequential-thinking` | Complex logic chain, multi-step reasoning needed |
|
|
17
|
-
| `brainstorming` | Multiple valid approaches, architecture decision |
|
|
35
|
+
| `brainstorm` | Multiple valid fix approaches, architecture decision (Deep only) |
|
|
18
36
|
| `context-engineering` | Fixing AI/LLM/agent code, context window issues |
|
|
19
|
-
|
|
|
37
|
+
| `ai-multimodal` (if available) | UI issues, screenshots provided, visual bugs |
|
|
38
|
+
| `project-management` | Moderate+ workflows — task hydration, sync-back, progress tracking |
|
|
20
39
|
|
|
21
|
-
##
|
|
40
|
+
## Subagent Usage
|
|
22
41
|
|
|
23
|
-
|
|
|
42
|
+
| Subagent | Activate When |
|
|
24
43
|
|----------|---------------|
|
|
25
|
-
| `debugger` | Root cause unclear, need deep investigation |
|
|
26
|
-
| `Explore` (parallel) | Scout multiple areas simultaneously |
|
|
27
|
-
| `Bash` (parallel) | Verify implementation
|
|
28
|
-
| `researcher` | External docs needed, latest best practices |
|
|
29
|
-
| `planner` | Complex fix needs breakdown, multiple phases |
|
|
30
|
-
| `tester` | After implementation, verify fix works |
|
|
31
|
-
| `code-
|
|
32
|
-
| `git-manager` | After approval, commit changes |
|
|
33
|
-
| `docs-manager` | API/behavior changes need doc updates |
|
|
34
|
-
| `project-manager` | Major fix impacts roadmap/plan status |
|
|
44
|
+
| `debugger` | Root cause unclear, need deep investigation (Step 2) |
|
|
45
|
+
| `Explore` (parallel) | Scout multiple areas simultaneously (Step 1), test hypotheses (Step 2) |
|
|
46
|
+
| `Bash` (parallel) | Verify implementation: typecheck, lint, build, test (Step 5) |
|
|
47
|
+
| `researcher` | External docs needed, latest best practices (Deep only) |
|
|
48
|
+
| `planner` | Complex fix needs breakdown, multiple phases (Deep only) |
|
|
49
|
+
| `tester` | After implementation, verify fix works (Step 5) |
|
|
50
|
+
| `code-review` | After fix, verify quality and security (Step 5) |
|
|
51
|
+
| `git-manager` | After approval, commit changes (Step 6) |
|
|
52
|
+
| `docs-manager` | API/behavior changes need doc updates (Step 6) |
|
|
53
|
+
| `project-manager` | Major fix impacts roadmap/plan status (Step 6) |
|
|
54
|
+
| `fullstack-developer` | Parallel independent issues (each gets own agent) |
|
|
35
55
|
|
|
36
56
|
## Parallel Patterns
|
|
37
57
|
|
|
@@ -39,19 +59,32 @@ See `references/parallel-exploration.md` for detailed patterns.
|
|
|
39
59
|
|
|
40
60
|
| When | Parallel Strategy |
|
|
41
61
|
|------|-------------------|
|
|
42
|
-
|
|
|
62
|
+
| Scouting (Step 1) | 2-3 `Explore` agents on different areas |
|
|
63
|
+
| Testing hypotheses (Step 2) | 2-3 `Explore` agents per hypothesis |
|
|
43
64
|
| Multi-module fix | `Explore` each module in parallel |
|
|
44
|
-
| After implementation | `Bash` agents: typecheck + lint + build |
|
|
45
|
-
|
|
|
65
|
+
| After implementation (Step 5) | `Bash` agents: typecheck + lint + build + test |
|
|
66
|
+
| 2+ independent issues | Task trees + `fullstack-developer` agents per issue |
|
|
46
67
|
|
|
47
68
|
## Workflow → Skills Map
|
|
48
69
|
|
|
49
70
|
| Workflow | Skills Activated |
|
|
50
71
|
|----------|------------------|
|
|
51
|
-
| Quick | `debug`, `code-
|
|
52
|
-
| Standard | Above + `problem-solving
|
|
53
|
-
| Deep | All above + `
|
|
54
|
-
| Parallel | Per-issue
|
|
72
|
+
| Quick | `scout` (minimal), `debug`, `sequential-thinking`, `code-review`, parallel `Bash` verification |
|
|
73
|
+
| Standard | Above + Tasks, `problem-solving` (auto), `project-management`, `tester`, parallel `Explore` |
|
|
74
|
+
| Deep | All above + `brainstorm`, `context-engineering`, `researcher`, `planner` |
|
|
75
|
+
| Parallel | Per-issue Task trees + `project-management` + `fullstack-developer` agents + coordination via `TaskList` |
|
|
76
|
+
|
|
77
|
+
## Step → Skills Chain (Mandatory Order)
|
|
78
|
+
|
|
79
|
+
| Step | Mandatory Chain |
|
|
80
|
+
|------|----------------|
|
|
81
|
+
| Step 0: Mode | asking the user (unless auto/quick detected) |
|
|
82
|
+
| Step 1: Scout | `scout` OR 2-3 parallel `Explore` → map files, deps, tests |
|
|
83
|
+
| Step 2: Diagnose | Capture pre-fix state → `debug` → `sequential-thinking` → parallel `Explore` hypotheses → (`problem-solving` if 2+ fail) |
|
|
84
|
+
| Step 3: Assess | Classify complexity → create Tasks (moderate+) |
|
|
85
|
+
| Step 4: Fix | Implement per workflow → follow root cause |
|
|
86
|
+
| Step 5: Verify+Prevent | Iron-law verify → regression test → defense-in-depth → parallel `Bash` verify |
|
|
87
|
+
| Step 6: Finalize | Report → `docs-manager` → `TaskUpdate` → `git-manager` → `/ck-journal` |
|
|
55
88
|
|
|
56
89
|
## Detection Triggers
|
|
57
90
|
|
|
@@ -60,6 +93,6 @@ See `references/parallel-exploration.md` for detailed patterns.
|
|
|
60
93
|
| "AI", "LLM", "agent", "context" | `context-engineering` |
|
|
61
94
|
| "stuck", "tried everything" | `problem-solving` |
|
|
62
95
|
| "complex", "multi-step" | `sequential-thinking` |
|
|
63
|
-
| "which approach", "options" | `
|
|
64
|
-
| "latest docs", "best practice" | `researcher`
|
|
65
|
-
| Screenshot attached |
|
|
96
|
+
| "which approach", "options" | `brainstorm` |
|
|
97
|
+
| "latest docs", "best practice" | `researcher` subagent |
|
|
98
|
+
| Screenshot attached | `ai-multimodal` (if available) |
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# Task Orchestration
|
|
2
|
+
|
|
3
|
+
Native Task tools for tracking and coordinating fix workflows.
|
|
4
|
+
|
|
5
|
+
**Skill:** Activate `project-management` for advanced task orchestration — provides hydration (plan checkboxes → Tasks), sync-back (Tasks → plan checkboxes), cross-session resume, and progress tracking patterns.
|
|
6
|
+
|
|
7
|
+
**Tool Availability:** `TaskCreate`, `TaskUpdate`, `TaskGet`, `TaskList` are **CLI-only** — disabled in VSCode extension (`isTTY` check). If these tools error, use `TodoWrite` for progress tracking instead. Fix workflow remains fully functional — Tasks add visibility and coordination, not core functionality.
|
|
8
|
+
|
|
9
|
+
## When to Use Tasks
|
|
10
|
+
|
|
11
|
+
| Complexity | Use Tasks? | Reason |
|
|
12
|
+
|-----------|-----------|--------|
|
|
13
|
+
| Simple/Quick | No | < 3 steps, overhead exceeds benefit |
|
|
14
|
+
| Moderate (Standard) | Yes | 6 steps, multi-subagent coordination |
|
|
15
|
+
| Complex (Deep) | Yes | 9 steps, dependency chains, parallel agents |
|
|
16
|
+
| Parallel | Yes | Multiple independent issue trees |
|
|
17
|
+
|
|
18
|
+
## Task Tools
|
|
19
|
+
|
|
20
|
+
- `TaskCreate(subject, description, activeForm, metadata)` - Create task
|
|
21
|
+
- `TaskUpdate(taskId, status, addBlockedBy, addBlocks)` - Update status/deps
|
|
22
|
+
- `TaskGet(taskId)` - Get full task details
|
|
23
|
+
- `TaskList()` - List all tasks with status
|
|
24
|
+
|
|
25
|
+
**Lifecycle:** `pending` → `in_progress` → `completed`
|
|
26
|
+
|
|
27
|
+
## Standard Workflow Tasks (6 phases)
|
|
28
|
+
|
|
29
|
+
Create all tasks upfront, then work through them:
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
T1 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", metadata={step: 1, phase: "investigate"})
|
|
33
|
+
T2 = TaskCreate(subject="Diagnose root cause", activeForm="Diagnosing root cause", metadata={step: 2, phase: "investigate"})
|
|
34
|
+
T3 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", metadata={step: 3, phase: "implement"}, addBlockedBy=[T1, T2])
|
|
35
|
+
T4 = TaskCreate(subject="Verify + prevent", activeForm="Verifying fix", metadata={step: 4, phase: "verify"}, addBlockedBy=[T3])
|
|
36
|
+
T5 = TaskCreate(subject="Code review", activeForm="Reviewing code", metadata={step: 5, phase: "verify"}, addBlockedBy=[T4])
|
|
37
|
+
T6 = TaskCreate(subject="Finalize", activeForm="Finalizing", metadata={step: 6, phase: "finalize"}, addBlockedBy=[T5])
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Update as work progresses:
|
|
41
|
+
```
|
|
42
|
+
TaskUpdate(taskId=T1, status="in_progress")
|
|
43
|
+
// ... scout codebase ...
|
|
44
|
+
TaskUpdate(taskId=T1, status="completed")
|
|
45
|
+
// T3 auto-unblocks when T1 + T2 complete
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Deep Workflow Tasks (9 phases)
|
|
49
|
+
|
|
50
|
+
Steps 1+2+3 run in parallel (scout + diagnose + research).
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
T1 = TaskCreate(subject="Scout codebase", metadata={step: 1, phase: "investigate"})
|
|
54
|
+
T2 = TaskCreate(subject="Diagnose root cause", metadata={step: 2, phase: "investigate"})
|
|
55
|
+
T3 = TaskCreate(subject="Research solutions", metadata={step: 3, phase: "investigate"})
|
|
56
|
+
T4 = TaskCreate(subject="Brainstorm approaches", metadata={step: 4, phase: "design"}, addBlockedBy=[T1, T2, T3])
|
|
57
|
+
T5 = TaskCreate(subject="Create implementation plan", metadata={step: 5, phase: "design"}, addBlockedBy=[T4])
|
|
58
|
+
T6 = TaskCreate(subject="Implement fix", metadata={step: 6, phase: "implement"}, addBlockedBy=[T5])
|
|
59
|
+
T7 = TaskCreate(subject="Verify + prevent", metadata={step: 7, phase: "verify"}, addBlockedBy=[T6])
|
|
60
|
+
T8 = TaskCreate(subject="Code review", metadata={step: 8, phase: "verify"}, addBlockedBy=[T7])
|
|
61
|
+
T9 = TaskCreate(subject="Finalize & docs", metadata={step: 9, phase: "finalize"}, addBlockedBy=[T8])
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**Note:** Steps 1, 2, and 3 run in parallel (scout + diagnose + research simultaneously).
|
|
65
|
+
|
|
66
|
+
## Parallel Issue Coordination
|
|
67
|
+
|
|
68
|
+
For 2+ independent issues, create separate task trees per issue:
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
// Issue A tree
|
|
72
|
+
TaskCreate(subject="[Issue A] Scout", metadata={issue: "A", step: 1})
|
|
73
|
+
TaskCreate(subject="[Issue A] Diagnose", metadata={issue: "A", step: 2})
|
|
74
|
+
TaskCreate(subject="[Issue A] Fix", metadata={issue: "A", step: 3}, addBlockedBy=[A-step1, A-step2])
|
|
75
|
+
TaskCreate(subject="[Issue A] Verify", metadata={issue: "A", step: 4}, addBlockedBy=[A-step3])
|
|
76
|
+
|
|
77
|
+
// Issue B tree
|
|
78
|
+
TaskCreate(subject="[Issue B] Scout", metadata={issue: "B", step: 1})
|
|
79
|
+
TaskCreate(subject="[Issue B] Diagnose", metadata={issue: "B", step: 2})
|
|
80
|
+
TaskCreate(subject="[Issue B] Fix", metadata={issue: "B", step: 3}, addBlockedBy=[B-step1, B-step2])
|
|
81
|
+
TaskCreate(subject="[Issue B] Verify", metadata={issue: "B", step: 4}, addBlockedBy=[B-step3])
|
|
82
|
+
|
|
83
|
+
// Final shared task
|
|
84
|
+
TaskCreate(subject="Integration verify", addBlockedBy=[A-step4, B-step4])
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Spawn `fullstack-developer` subagents per issue tree. Each agent:
|
|
88
|
+
1. Claims tasks via `TaskUpdate(status="in_progress")`
|
|
89
|
+
2. Completes tasks via `TaskUpdate(status="completed")`
|
|
90
|
+
3. Blocked tasks auto-unblock when dependencies resolve
|
|
91
|
+
|
|
92
|
+
## Subagent Task Assignment
|
|
93
|
+
|
|
94
|
+
Assign tasks to subagents via `owner` field:
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
TaskUpdate(taskId=taskA, owner="agent-scout")
|
|
98
|
+
TaskUpdate(taskId=taskB, owner="agent-diagnose")
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Check available work: `TaskList()` → filter by `status=pending`, `blockedBy=[]`, `owner=null`
|
|
102
|
+
|
|
103
|
+
## Rules
|
|
104
|
+
|
|
105
|
+
- Create tasks BEFORE starting work (upfront planning)
|
|
106
|
+
- Only 1 task `in_progress` per agent at a time
|
|
107
|
+
- Mark complete IMMEDIATELY after finishing (don't batch)
|
|
108
|
+
- Use `metadata` for filtering: `{step, phase, issue, severity}`
|
|
109
|
+
- If task fails → keep `in_progress`, create subtask for blocker
|
|
110
|
+
- Skip Tasks entirely for Quick workflow (< 3 steps)
|
|
@@ -1,91 +1,154 @@
|
|
|
1
1
|
# Deep Workflow
|
|
2
2
|
|
|
3
|
-
Full pipeline with research, brainstorming, and planning for complex issues.
|
|
3
|
+
Full pipeline with research, brainstorming, and planning for complex issues. Uses native Tasks with dependency chains.
|
|
4
|
+
|
|
5
|
+
## Task Setup (Before Starting)
|
|
6
|
+
|
|
7
|
+
Create all phase tasks upfront. Steps 1+2+3 run in parallel (scout + diagnose + research).
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
T1 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", metadata={phase: "investigate"})
|
|
11
|
+
T2 = TaskCreate(subject="Diagnose root cause", activeForm="Diagnosing root cause", metadata={phase: "investigate"})
|
|
12
|
+
T3 = TaskCreate(subject="Research solutions", activeForm="Researching solutions", metadata={phase: "investigate"})
|
|
13
|
+
T4 = TaskCreate(subject="Brainstorm approaches", activeForm="Brainstorming", metadata={phase: "design"}, addBlockedBy=[T1, T2, T3])
|
|
14
|
+
T5 = TaskCreate(subject="Create implementation plan", activeForm="Planning implementation", metadata={phase: "design"}, addBlockedBy=[T4])
|
|
15
|
+
T6 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", metadata={phase: "implement"}, addBlockedBy=[T5])
|
|
16
|
+
T7 = TaskCreate(subject="Verify + prevent", activeForm="Verifying fix", metadata={phase: "verify"}, addBlockedBy=[T6])
|
|
17
|
+
T8 = TaskCreate(subject="Code review", activeForm="Reviewing code", metadata={phase: "verify"}, addBlockedBy=[T7])
|
|
18
|
+
T9 = TaskCreate(subject="Finalize & docs", activeForm="Finalizing", metadata={phase: "finalize"}, addBlockedBy=[T8])
|
|
19
|
+
```
|
|
4
20
|
|
|
5
21
|
## Steps
|
|
6
22
|
|
|
7
|
-
### Step 1:
|
|
8
|
-
|
|
23
|
+
### Step 1: Scout Codebase (parallel with Steps 2+3)
|
|
24
|
+
`TaskUpdate(T1, status="in_progress")`
|
|
25
|
+
|
|
26
|
+
**Mandatory:** Activate `scout` skill or launch 2-3 `Explore` subagents in parallel:
|
|
9
27
|
```
|
|
10
|
-
Task("Explore", "Find error origin", "Trace error")
|
|
11
|
-
Task("Explore", "Find
|
|
12
|
-
Task("Explore", "Find similar patterns", "Find patterns")
|
|
28
|
+
Task("Explore", "Find error origin and affected components", "Trace error")
|
|
29
|
+
Task("Explore", "Find module boundaries and dependencies", "Map deps")
|
|
30
|
+
Task("Explore", "Find related tests and similar patterns", "Find patterns")
|
|
13
31
|
```
|
|
32
|
+
|
|
33
|
+
Map: all affected files, module boundaries, call chains, test coverage gaps.
|
|
34
|
+
|
|
14
35
|
See `references/parallel-exploration.md` for patterns.
|
|
15
36
|
|
|
16
|
-
|
|
37
|
+
`TaskUpdate(T1, status="completed")`
|
|
38
|
+
**Output:** `✓ Step 1: Scouted - [N] files, system impact: [scope]`
|
|
39
|
+
|
|
40
|
+
### Step 2: Diagnose Root Cause (parallel with Steps 1+3)
|
|
41
|
+
`TaskUpdate(T2, status="in_progress")`
|
|
42
|
+
|
|
43
|
+
**Mandatory skill chain:**
|
|
44
|
+
1. **Capture pre-fix state:** Record ALL error messages, failing tests, stack traces, logs.
|
|
45
|
+
2. Activate `debug` skill (systematic-debugging + root-cause-tracing).
|
|
46
|
+
3. Activate `sequential-thinking` — structured hypothesis formation.
|
|
47
|
+
4. Spawn parallel `Explore` subagents to test each hypothesis.
|
|
48
|
+
5. If 2+ hypotheses fail → auto-activate `problem-solving`.
|
|
49
|
+
6. Trace backward through call chain to ROOT CAUSE origin.
|
|
50
|
+
|
|
51
|
+
See `references/diagnosis-protocol.md` for full methodology.
|
|
17
52
|
|
|
18
|
-
|
|
19
|
-
|
|
53
|
+
`TaskUpdate(T2, status="completed")`
|
|
54
|
+
**Output:** `✓ Step 2: Diagnosed - Root cause: [summary], Evidence: [chain]`
|
|
55
|
+
|
|
56
|
+
### Step 3: Research (parallel with Steps 1+2)
|
|
57
|
+
`TaskUpdate(T3, status="in_progress")`
|
|
58
|
+
Use `researcher` subagent for external knowledge.
|
|
20
59
|
|
|
21
60
|
- Search latest docs, best practices
|
|
22
61
|
- Find similar issues/solutions
|
|
23
62
|
- Gather security advisories if relevant
|
|
24
63
|
|
|
25
|
-
|
|
64
|
+
`TaskUpdate(T3, status="completed")`
|
|
65
|
+
**Output:** `✓ Step 3: Research complete - [key findings]`
|
|
26
66
|
|
|
27
|
-
### Step
|
|
28
|
-
|
|
67
|
+
### Step 4: Brainstorm
|
|
68
|
+
`TaskUpdate(T4, status="in_progress")` — auto-unblocks when T1 + T2 + T3 complete.
|
|
69
|
+
Activate `brainstorm` skill.
|
|
29
70
|
|
|
30
|
-
- Evaluate multiple approaches
|
|
71
|
+
- Evaluate multiple approaches using scout + diagnosis + research findings
|
|
31
72
|
- Consider trade-offs
|
|
32
73
|
- Get user input on preferred direction
|
|
33
74
|
|
|
34
|
-
|
|
75
|
+
`TaskUpdate(T4, status="completed")`
|
|
76
|
+
**Output:** `✓ Step 4: Approach selected - [chosen approach]`
|
|
35
77
|
|
|
36
|
-
### Step
|
|
37
|
-
|
|
78
|
+
### Step 5: Plan
|
|
79
|
+
`TaskUpdate(T5, status="in_progress")`
|
|
80
|
+
Use `planner` subagent to create implementation plan.
|
|
38
81
|
|
|
39
82
|
- Break down into phases
|
|
40
83
|
- Identify dependencies
|
|
41
84
|
- Define success criteria
|
|
85
|
+
- Include prevention measures in plan
|
|
42
86
|
|
|
43
|
-
|
|
87
|
+
`TaskUpdate(T5, status="completed")`
|
|
88
|
+
**Output:** `✓ Step 5: Plan created - [N] phases`
|
|
44
89
|
|
|
45
|
-
### Step
|
|
90
|
+
### Step 6: Implement
|
|
91
|
+
`TaskUpdate(T6, status="in_progress")`
|
|
46
92
|
Implement per plan. Use `context-engineering`, `sequential-thinking`, `problem-solving`.
|
|
47
93
|
|
|
48
|
-
|
|
49
|
-
|
|
94
|
+
- Fix ROOT CAUSE per diagnosis — not symptoms
|
|
95
|
+
- Follow plan phases
|
|
96
|
+
- Minimal changes per phase
|
|
97
|
+
|
|
98
|
+
`TaskUpdate(T6, status="completed")`
|
|
99
|
+
**Output:** `✓ Step 6: Implemented - [N] files, [M] phases`
|
|
100
|
+
|
|
101
|
+
### Step 7: Verify + Prevent
|
|
102
|
+
`TaskUpdate(T7, status="in_progress")`
|
|
50
103
|
|
|
51
|
-
**
|
|
104
|
+
**Mandatory skill chain:**
|
|
105
|
+
1. **Iron-law verify:** Re-run EXACT commands from pre-fix state. Compare before/after.
|
|
106
|
+
2. **Regression test:** Add comprehensive tests. Tests MUST fail without fix, pass with fix.
|
|
107
|
+
3. **Defense-in-depth:** Apply all relevant prevention layers (see `references/prevention-gate.md`).
|
|
108
|
+
4. **Parallel verification:** Launch `Bash` agents: typecheck + lint + build + test.
|
|
109
|
+
5. **Edge cases:** Test boundary conditions, security implications, performance impact.
|
|
52
110
|
|
|
53
|
-
|
|
54
|
-
Use `tester` agent.
|
|
111
|
+
**If verification fails:** Loop back to Step 2 (re-diagnose). Max 3 attempts → question architecture.
|
|
55
112
|
|
|
56
|
-
-
|
|
57
|
-
- Edge cases, security, performance
|
|
58
|
-
- If fail → debug, fix, repeat
|
|
113
|
+
See `references/prevention-gate.md` for prevention requirements.
|
|
59
114
|
|
|
60
|
-
|
|
115
|
+
`TaskUpdate(T7, status="completed")`
|
|
116
|
+
**Output:** `✓ Step 7: Verified + Prevented - [before/after], [N] tests, [M] guards`
|
|
61
117
|
|
|
62
|
-
### Step
|
|
63
|
-
|
|
118
|
+
### Step 8: Code Review
|
|
119
|
+
`TaskUpdate(T8, status="in_progress")`
|
|
120
|
+
Use `code-reviewer` subagent.
|
|
64
121
|
|
|
65
122
|
See `references/review-cycle.md` for mode-specific handling.
|
|
66
123
|
|
|
67
|
-
|
|
124
|
+
`TaskUpdate(T8, status="completed")`
|
|
125
|
+
**Output:** `✓ Step 8: Review [score]/10 - [status]`
|
|
68
126
|
|
|
69
|
-
### Step
|
|
70
|
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
127
|
+
### Step 9: Finalize
|
|
128
|
+
`TaskUpdate(T9, status="in_progress")`
|
|
129
|
+
- Report summary: root cause, evidence chain, changes, prevention measures, confidence score
|
|
130
|
+
- Activate `project-management` for task sync-back, plan status updates, and progress tracking
|
|
131
|
+
- Use `docs-manager` subagent for documentation
|
|
132
|
+
- Use `git-manager` subagent for commit
|
|
133
|
+
- Run `/ck-journal`
|
|
73
134
|
|
|
74
|
-
|
|
135
|
+
`TaskUpdate(T9, status="completed")`
|
|
136
|
+
**Output:** `✓ Step 9: Complete - [actions taken]`
|
|
75
137
|
|
|
76
|
-
## Skills/
|
|
138
|
+
## Skills/Subagents Activated
|
|
77
139
|
|
|
78
|
-
| Step | Skills/
|
|
140
|
+
| Step | Skills/Subagents |
|
|
79
141
|
|------|------------------|
|
|
80
|
-
| 1 | `
|
|
81
|
-
| 2 | `
|
|
82
|
-
| 3 | `
|
|
83
|
-
| 4 | `
|
|
84
|
-
| 5 | `
|
|
85
|
-
| 6 | `
|
|
86
|
-
| 7 | `
|
|
87
|
-
| 8 | `
|
|
142
|
+
| 1 | `scout` OR parallel `Explore` subagents |
|
|
143
|
+
| 2 | `debug`, `sequential-thinking`, parallel `Explore`, (`problem-solving` auto) |
|
|
144
|
+
| 3 | `researcher` (runs parallel with steps 1+2) |
|
|
145
|
+
| 4 | `brainstorm` |
|
|
146
|
+
| 5 | `planner` |
|
|
147
|
+
| 6 | `problem-solving`, `sequential-thinking`, `context-engineering` |
|
|
148
|
+
| 7 | `tester`, parallel `Bash` verification |
|
|
149
|
+
| 8 | `code-reviewer` |
|
|
150
|
+
| 9 | `project-management`, `docs-manager`, `git-manager` |
|
|
88
151
|
|
|
89
152
|
**Rules:** Don't skip steps. Validate before proceeding. One phase at a time.
|
|
90
|
-
**Frontend:** Use `
|
|
91
|
-
**Visual Assets:** Use
|
|
153
|
+
**Frontend:** Use `chrome`, `chrome-devtools` (if available) or any relevant skills/tools to verify.
|
|
154
|
+
**Visual Assets:** Use `ai-multimodal` (if available) for visual assets generation, analysis and verification.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Log Analysis Fix Workflow
|
|
2
2
|
|
|
3
|
-
For fixing issues from application logs.
|
|
3
|
+
For fixing issues from application logs. Uses native Tasks for phase tracking.
|
|
4
4
|
|
|
5
5
|
## Prerequisites
|
|
6
6
|
- Log file at `./logs.txt` or similar
|
|
@@ -11,24 +11,60 @@ Add permanent log piping to project config:
|
|
|
11
11
|
- **Bash/Unix**: `command 2>&1 | tee logs.txt`
|
|
12
12
|
- **PowerShell**: `command *>&1 | Tee-Object logs.txt`
|
|
13
13
|
|
|
14
|
+
## Task Setup (Before Starting)
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
T1 = TaskCreate(subject="Read & analyze logs", activeForm="Analyzing logs")
|
|
18
|
+
T2 = TaskCreate(subject="Scout codebase", activeForm="Scouting codebase", addBlockedBy=[T1])
|
|
19
|
+
T3 = TaskCreate(subject="Plan fix", activeForm="Planning fix", addBlockedBy=[T1, T2])
|
|
20
|
+
T4 = TaskCreate(subject="Implement fix", activeForm="Implementing fix", addBlockedBy=[T3])
|
|
21
|
+
T5 = TaskCreate(subject="Test fix", activeForm="Testing fix", addBlockedBy=[T4])
|
|
22
|
+
T6 = TaskCreate(subject="Code review", activeForm="Reviewing code", addBlockedBy=[T5])
|
|
23
|
+
```
|
|
24
|
+
|
|
14
25
|
## Workflow
|
|
15
26
|
|
|
16
|
-
1
|
|
17
|
-
|
|
27
|
+
### Step 1: Read & Analyze Logs
|
|
28
|
+
`TaskUpdate(T1, status="in_progress")`
|
|
29
|
+
|
|
30
|
+
- Read logs with `Grep` (use `head_limit: 30` initially, increase if needed)
|
|
31
|
+
- Use `debugger` agent for root cause analysis
|
|
32
|
+
- Focus on last N lines first (most recent errors)
|
|
33
|
+
- Look for stack traces, error codes, timestamps, repeated patterns
|
|
34
|
+
|
|
35
|
+
`TaskUpdate(T1, status="completed")`
|
|
36
|
+
|
|
37
|
+
### Step 2: Scout Codebase
|
|
38
|
+
`TaskUpdate(T2, status="in_progress")`
|
|
39
|
+
Use `scout` agent or parallel `Explore` subagents to find issue locations.
|
|
40
|
+
|
|
41
|
+
See `references/parallel-exploration.md` for patterns.
|
|
42
|
+
|
|
43
|
+
`TaskUpdate(T2, status="completed")`
|
|
44
|
+
|
|
45
|
+
### Step 3: Plan Fix
|
|
46
|
+
`TaskUpdate(T3, status="in_progress")` — auto-unblocks when T1 + T2 complete.
|
|
47
|
+
Use `planner` agent.
|
|
18
48
|
|
|
19
|
-
|
|
49
|
+
`TaskUpdate(T3, status="completed")`
|
|
20
50
|
|
|
21
|
-
|
|
51
|
+
### Step 4: Implement
|
|
52
|
+
`TaskUpdate(T4, status="in_progress")`
|
|
53
|
+
Implement the fix.
|
|
22
54
|
|
|
23
|
-
|
|
55
|
+
`TaskUpdate(T4, status="completed")`
|
|
24
56
|
|
|
25
|
-
|
|
57
|
+
### Step 5: Test
|
|
58
|
+
`TaskUpdate(T5, status="in_progress")`
|
|
59
|
+
Use `tester` agent. If issues remain → keep T5 `in_progress`, loop back to Step 2.
|
|
26
60
|
|
|
27
|
-
|
|
61
|
+
`TaskUpdate(T5, status="completed")`
|
|
28
62
|
|
|
29
|
-
|
|
63
|
+
### Step 6: Review
|
|
64
|
+
`TaskUpdate(T6, status="in_progress")`
|
|
65
|
+
Use `code-reviewer` agent.
|
|
30
66
|
|
|
31
|
-
|
|
67
|
+
`TaskUpdate(T6, status="completed")`
|
|
32
68
|
|
|
33
69
|
## Tips
|
|
34
70
|
- Focus on last N lines first (most recent errors)
|