ai-playbook 1.0.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 +146 -0
- package/agents/README.md +168 -0
- package/agents/SKILL.md +633 -0
- package/agents/architect/AGENT.md +44 -0
- package/agents/architect/README.md +5 -0
- package/agents/coder/AGENT.md +43 -0
- package/agents/coder/README.md +5 -0
- package/agents/debugger/AGENT.md +42 -0
- package/agents/debugger/README.md +6 -0
- package/agents/devops/AGENT.md +43 -0
- package/agents/devops/README.md +5 -0
- package/agents/documentation/AGENT.md +45 -0
- package/agents/documentation/README.md +5 -0
- package/agents/examples.md +550 -0
- package/agents/performance/AGENT.md +45 -0
- package/agents/performance/README.md +6 -0
- package/agents/planner/AGENT.md +44 -0
- package/agents/planner/README.md +6 -0
- package/agents/product-owner/AGENT.md +46 -0
- package/agents/product-owner/README.md +6 -0
- package/agents/refactorer/AGENT.md +44 -0
- package/agents/refactorer/README.md +6 -0
- package/agents/release-manager/AGENT.md +45 -0
- package/agents/release-manager/README.md +6 -0
- package/agents/researcher/AGENT.md +44 -0
- package/agents/researcher/README.md +6 -0
- package/agents/reviewer/AGENT.md +43 -0
- package/agents/reviewer/README.md +6 -0
- package/agents/security/AGENT.md +46 -0
- package/agents/security/README.md +6 -0
- package/agents/support/AGENT.md +45 -0
- package/agents/support/README.md +6 -0
- package/agents/tester/AGENT.md +46 -0
- package/agents/tester/README.md +5 -0
- package/bin/cli.js +186 -0
- package/commands/README.md +266 -0
- package/commands/build.md +135 -0
- package/commands/clean.md +126 -0
- package/commands/deploy-prod.md +171 -0
- package/commands/deploy-staging.md +147 -0
- package/commands/deps.md +169 -0
- package/commands/dev.md +132 -0
- package/commands/format.md +142 -0
- package/commands/lint.md +125 -0
- package/commands/migrate.md +159 -0
- package/commands/release.md +183 -0
- package/commands/rollback.md +152 -0
- package/commands/seed.md +178 -0
- package/commands/setup.md +109 -0
- package/commands/test.md +134 -0
- package/commands/validate.md +147 -0
- package/context/README.md +7 -0
- package/context/aem.md +47 -0
- package/context/architecture.md +51 -0
- package/context/bullminder.md +57 -0
- package/context/coding-style.md +42 -0
- package/context/communication.md +53 -0
- package/context/company.md +46 -0
- package/context/engineering.md +63 -0
- package/context/project-template.md +71 -0
- package/context/trading.md +52 -0
- package/hooks/README.md +326 -0
- package/hooks/code-review/README.md +6 -0
- package/hooks/code-review/check-coverage.md +101 -0
- package/hooks/custom/README.md +6 -0
- package/hooks/custom/project-specific-hooks.md +273 -0
- package/hooks/deployment/README.md +6 -0
- package/hooks/deployment/health-check.md +102 -0
- package/hooks/deployment/pre-deploy-check.md +84 -0
- package/hooks/documentation/README.md +6 -0
- package/hooks/documentation/update-changelog.md +146 -0
- package/hooks/post-task/README.md +5 -0
- package/hooks/post-task/run-tests.md +61 -0
- package/hooks/pre-commit/README.md +6 -0
- package/hooks/pre-commit/format.md +63 -0
- package/hooks/pre-commit/lint.md +62 -0
- package/hooks/pre-commit/type-check.md +78 -0
- package/hooks/pre-task/README.md +6 -0
- package/hooks/pre-task/check-branch.md +48 -0
- package/hooks/pre-task/validate-environment.md +48 -0
- package/hooks/security-check/README.md +6 -0
- package/hooks/security-check/dependency-audit.md +85 -0
- package/hooks/security-check/secrets-scan.md +77 -0
- package/hooks/test-before-finish/README.md +6 -0
- package/hooks/test-before-finish/run-all-tests.md +128 -0
- package/index.js +69 -0
- package/knowledge/README.md +33 -0
- package/knowledge/ai-agents.md +74 -0
- package/knowledge/decision-making.md +73 -0
- package/knowledge/documentation.md +67 -0
- package/knowledge/engineering-principles.md +65 -0
- package/knowledge/product-discovery.md +68 -0
- package/knowledge/security-privacy.md +54 -0
- package/knowledge/testing-quality.md +63 -0
- package/package.json +63 -0
- package/patterns/README.md +7 -0
- package/prompts/README.md +208 -0
- package/prompts/architect/README.md +96 -0
- package/prompts/architect/design-system.md +140 -0
- package/prompts/debugger/README.md +96 -0
- package/prompts/debugger/diagnose-issue.md +141 -0
- package/prompts/developer/README.md +129 -0
- package/prompts/developer/fix-bug.md +136 -0
- package/prompts/developer/implement-feature.md +133 -0
- package/prompts/product-owner/README.md +116 -0
- package/prompts/product-owner/define-feature.md +145 -0
- package/prompts/reviewer/README.md +91 -0
- package/prompts/reviewer/code-review.md +129 -0
- package/prompts/support/README.md +154 -0
- package/prompts/support/resolve-issue.md +124 -0
- package/roles/README.md +6 -0
- package/roles/design-architect/README.md +98 -0
- package/roles/design-architect/accessibility/README.md +33 -0
- package/roles/design-architect/accessibility/checklists.md +29 -0
- package/roles/design-architect/accessibility/examples.md +35 -0
- package/roles/design-architect/checklists.md +76 -0
- package/roles/design-architect/component-library/README.md +35 -0
- package/roles/design-architect/component-library/checklists.md +29 -0
- package/roles/design-architect/component-library/examples.md +35 -0
- package/roles/design-architect/design-system/README.md +35 -0
- package/roles/design-architect/design-system/checklists.md +27 -0
- package/roles/design-architect/design-system/examples.md +41 -0
- package/roles/design-architect/examples/README.md +31 -0
- package/roles/design-architect/examples/checklists.md +26 -0
- package/roles/design-architect/examples/examples.md +46 -0
- package/roles/design-architect/examples.md +90 -0
- package/roles/design-architect/figma/README.md +33 -0
- package/roles/design-architect/figma/checklists.md +27 -0
- package/roles/design-architect/figma/examples.md +38 -0
- package/roles/design-architect/responsibilities.md +73 -0
- package/roles/design-architect/responsive/README.md +34 -0
- package/roles/design-architect/responsive/checklists.md +26 -0
- package/roles/design-architect/responsive/examples.md +39 -0
- package/roles/design-architect/role.md +129 -0
- package/roles/design-architect/skill-map.md +42 -0
- package/roles/design-architect/triggers.md +110 -0
- package/roles/design-architect/ui/README.md +36 -0
- package/roles/design-architect/ui/checklists.md +29 -0
- package/roles/design-architect/ui/examples.md +28 -0
- package/roles/design-architect/usability/README.md +34 -0
- package/roles/design-architect/usability/checklists.md +28 -0
- package/roles/design-architect/usability/examples.md +31 -0
- package/roles/design-architect/ux/README.md +36 -0
- package/roles/design-architect/ux/checklists.md +28 -0
- package/roles/design-architect/ux/examples.md +37 -0
- package/roles/design-architect/wireframes/README.md +34 -0
- package/roles/design-architect/wireframes/checklists.md +25 -0
- package/roles/design-architect/wireframes/examples.md +32 -0
- package/roles/design-architect/workflow.md +80 -0
- package/roles/devops/README.md +101 -0
- package/roles/devops/ansible/README.md +6 -0
- package/roles/devops/checklists.md +413 -0
- package/roles/devops/ci-cd/README.md +169 -0
- package/roles/devops/ci-cd/checklists.md +289 -0
- package/roles/devops/ci-cd/examples.md +429 -0
- package/roles/devops/cloud-platforms/README.md +109 -0
- package/roles/devops/cost-optimization/README.md +131 -0
- package/roles/devops/disaster-recovery/README.md +118 -0
- package/roles/devops/docker/README.md +6 -0
- package/roles/devops/examples/README.md +6 -0
- package/roles/devops/examples.md +775 -0
- package/roles/devops/github-actions/README.md +6 -0
- package/roles/devops/helm/README.md +6 -0
- package/roles/devops/infrastructure-as-code/README.md +160 -0
- package/roles/devops/infrastructure-as-code/checklists.md +124 -0
- package/roles/devops/jenkins/README.md +6 -0
- package/roles/devops/kubernetes/README.md +150 -0
- package/roles/devops/kubernetes/checklists.md +192 -0
- package/roles/devops/kubernetes/examples.md +189 -0
- package/roles/devops/monitoring/README.md +93 -0
- package/roles/devops/networking/README.md +83 -0
- package/roles/devops/performance/README.md +104 -0
- package/roles/devops/responsibilities.md +95 -0
- package/roles/devops/role.md +130 -0
- package/roles/devops/security/README.md +126 -0
- package/roles/devops/skill-map.md +162 -0
- package/roles/devops/terraform/README.md +6 -0
- package/roles/devops/triggers.md +241 -0
- package/roles/devops/workflow.md +197 -0
- package/roles/qa/README.md +16 -0
- package/roles/qa/api-testing/README.md +6 -0
- package/roles/qa/automation/README.md +6 -0
- package/roles/qa/checklists.md +24 -0
- package/roles/qa/examples/README.md +6 -0
- package/roles/qa/examples.md +27 -0
- package/roles/qa/performance/README.md +6 -0
- package/roles/qa/playwright/README.md +6 -0
- package/roles/qa/responsibilities.md +16 -0
- package/roles/qa/role.md +47 -0
- package/roles/qa/selenium/README.md +6 -0
- package/roles/qa/skill-map.md +14 -0
- package/roles/qa/triggers.md +10 -0
- package/roles/qa/workflow.md +9 -0
- package/roles/software-architect/README.md +16 -0
- package/roles/software-architect/agents/README.md +6 -0
- package/roles/software-architect/ai-architecture/README.md +6 -0
- package/roles/software-architect/aws/README.md +6 -0
- package/roles/software-architect/azure/README.md +6 -0
- package/roles/software-architect/caching/README.md +6 -0
- package/roles/software-architect/checklists.md +25 -0
- package/roles/software-architect/cloud/README.md +6 -0
- package/roles/software-architect/database-design/README.md +6 -0
- package/roles/software-architect/diagrams/README.md +6 -0
- package/roles/software-architect/distributed-systems/README.md +7 -0
- package/roles/software-architect/docker/README.md +6 -0
- package/roles/software-architect/event-driven/README.md +7 -0
- package/roles/software-architect/examples/README.md +6 -0
- package/roles/software-architect/examples.md +22 -0
- package/roles/software-architect/gcp/README.md +6 -0
- package/roles/software-architect/kubernetes/README.md +6 -0
- package/roles/software-architect/messaging/README.md +6 -0
- package/roles/software-architect/rag/README.md +7 -0
- package/roles/software-architect/responsibilities.md +17 -0
- package/roles/software-architect/role.md +46 -0
- package/roles/software-architect/scalability/README.md +6 -0
- package/roles/software-architect/security/README.md +6 -0
- package/roles/software-architect/skill-map.md +15 -0
- package/roles/software-architect/system-design/README.md +6 -0
- package/roles/software-architect/triggers.md +10 -0
- package/roles/software-architect/vector-db/README.md +6 -0
- package/roles/software-architect/workflow.md +9 -0
- package/roles/software-developer/README.md +116 -0
- package/roles/software-developer/api/README.md +365 -0
- package/roles/software-developer/api/checklist.md +131 -0
- package/roles/software-developer/api/examples.md +459 -0
- package/roles/software-developer/authentication/README.md +26 -0
- package/roles/software-developer/authentication/checklists.md +22 -0
- package/roles/software-developer/authentication/examples.md +32 -0
- package/roles/software-developer/authorization/README.md +26 -0
- package/roles/software-developer/authorization/checklists.md +21 -0
- package/roles/software-developer/authorization/examples.md +27 -0
- package/roles/software-developer/backend/README.md +26 -0
- package/roles/software-developer/backend/checklists.md +21 -0
- package/roles/software-developer/backend/examples.md +21 -0
- package/roles/software-developer/cache/README.md +25 -0
- package/roles/software-developer/cache/checklists.md +21 -0
- package/roles/software-developer/cache/examples.md +22 -0
- package/roles/software-developer/checklists.md +122 -0
- package/roles/software-developer/code-review/README.md +23 -0
- package/roles/software-developer/code-review/checklists.md +22 -0
- package/roles/software-developer/code-review/examples.md +20 -0
- package/roles/software-developer/database/README.md +27 -0
- package/roles/software-developer/database/checklists.md +21 -0
- package/roles/software-developer/database/examples.md +27 -0
- package/roles/software-developer/debugging/README.md +24 -0
- package/roles/software-developer/debugging/checklists.md +20 -0
- package/roles/software-developer/debugging/examples.md +28 -0
- package/roles/software-developer/examples/README.md +22 -0
- package/roles/software-developer/examples/checklists.md +8 -0
- package/roles/software-developer/examples/examples.md +25 -0
- package/roles/software-developer/examples.md +378 -0
- package/roles/software-developer/frontend/README.md +76 -0
- package/roles/software-developer/frontend/accessibility/README.md +136 -0
- package/roles/software-developer/frontend/accessibility/best-practices.md +368 -0
- package/roles/software-developer/frontend/code-quality/README.md +136 -0
- package/roles/software-developer/frontend/code-quality/best-practices.md +309 -0
- package/roles/software-developer/frontend/components/README.md +65 -0
- package/roles/software-developer/frontend/components/best-practices.md +273 -0
- package/roles/software-developer/frontend/debugging/README.md +149 -0
- package/roles/software-developer/frontend/debugging/best-practices.md +329 -0
- package/roles/software-developer/frontend/examples/README.md +19 -0
- package/roles/software-developer/frontend/examples/checklists.md +8 -0
- package/roles/software-developer/frontend/examples/examples.md +17 -0
- package/roles/software-developer/frontend/logging-observability/README.md +196 -0
- package/roles/software-developer/frontend/logging-observability/best-practices.md +430 -0
- package/roles/software-developer/frontend/performance/README.md +99 -0
- package/roles/software-developer/frontend/performance/best-practices.md +350 -0
- package/roles/software-developer/frontend/state-management/README.md +85 -0
- package/roles/software-developer/frontend/state-management/best-practices.md +344 -0
- package/roles/software-developer/frontend/testing/README.md +114 -0
- package/roles/software-developer/frontend/testing/best-practices.md +272 -0
- package/roles/software-developer/fullstack/README.md +25 -0
- package/roles/software-developer/fullstack/checklists.md +19 -0
- package/roles/software-developer/fullstack/examples.md +14 -0
- package/roles/software-developer/graphql/README.md +24 -0
- package/roles/software-developer/graphql/checklists.md +20 -0
- package/roles/software-developer/graphql/examples.md +24 -0
- package/roles/software-developer/integration-tests/README.md +25 -0
- package/roles/software-developer/integration-tests/checklists.md +20 -0
- package/roles/software-developer/integration-tests/examples.md +18 -0
- package/roles/software-developer/java/README.md +24 -0
- package/roles/software-developer/java/checklists.md +16 -0
- package/roles/software-developer/java/examples.md +22 -0
- package/roles/software-developer/javascript/README.md +24 -0
- package/roles/software-developer/javascript/checklists.md +15 -0
- package/roles/software-developer/javascript/examples.md +18 -0
- package/roles/software-developer/logging/README.md +105 -0
- package/roles/software-developer/logging/checklists.md +48 -0
- package/roles/software-developer/logging/examples.md +135 -0
- package/roles/software-developer/messaging/README.md +24 -0
- package/roles/software-developer/messaging/checklists.md +21 -0
- package/roles/software-developer/messaging/examples.md +26 -0
- package/roles/software-developer/microservices/README.md +25 -0
- package/roles/software-developer/microservices/checklists.md +21 -0
- package/roles/software-developer/microservices/examples.md +21 -0
- package/roles/software-developer/node/README.md +25 -0
- package/roles/software-developer/node/checklists.md +15 -0
- package/roles/software-developer/node/examples.md +15 -0
- package/roles/software-developer/nosql/README.md +24 -0
- package/roles/software-developer/nosql/checklists.md +21 -0
- package/roles/software-developer/nosql/examples.md +20 -0
- package/roles/software-developer/observability/README.md +25 -0
- package/roles/software-developer/observability/checklists.md +21 -0
- package/roles/software-developer/observability/examples.md +22 -0
- package/roles/software-developer/performance/README.md +26 -0
- package/roles/software-developer/performance/checklists.md +20 -0
- package/roles/software-developer/performance/examples.md +20 -0
- package/roles/software-developer/python/README.md +25 -0
- package/roles/software-developer/python/checklists.md +15 -0
- package/roles/software-developer/python/examples.md +17 -0
- package/roles/software-developer/react/README.md +24 -0
- package/roles/software-developer/react/checklists.md +15 -0
- package/roles/software-developer/react/examples.md +22 -0
- package/roles/software-developer/refactoring/README.md +23 -0
- package/roles/software-developer/refactoring/checklists.md +21 -0
- package/roles/software-developer/refactoring/examples.md +11 -0
- package/roles/software-developer/responsibilities.md +58 -0
- package/roles/software-developer/role.md +127 -0
- package/roles/software-developer/skill-map.md +88 -0
- package/roles/software-developer/springboot/README.md +25 -0
- package/roles/software-developer/springboot/checklists.md +15 -0
- package/roles/software-developer/springboot/examples.md +21 -0
- package/roles/software-developer/sql/README.md +24 -0
- package/roles/software-developer/sql/checklists.md +22 -0
- package/roles/software-developer/sql/examples.md +20 -0
- package/roles/software-developer/testing/README.md +25 -0
- package/roles/software-developer/testing/checklists.md +21 -0
- package/roles/software-developer/testing/examples.md +19 -0
- package/roles/software-developer/triggers.md +550 -0
- package/roles/software-developer/typescript/README.md +25 -0
- package/roles/software-developer/typescript/checklists.md +15 -0
- package/roles/software-developer/typescript/examples.md +18 -0
- package/roles/software-developer/unit-tests/README.md +24 -0
- package/roles/software-developer/unit-tests/checklists.md +19 -0
- package/roles/software-developer/unit-tests/examples.md +22 -0
- package/roles/software-developer/workflow.md +196 -0
- package/roles/sre/README.md +16 -0
- package/roles/sre/alerts/README.md +6 -0
- package/roles/sre/availability/README.md +6 -0
- package/roles/sre/chaos/README.md +6 -0
- package/roles/sre/checklists.md +24 -0
- package/roles/sre/examples/README.md +6 -0
- package/roles/sre/examples.md +19 -0
- package/roles/sre/observability/README.md +6 -0
- package/roles/sre/reliability/README.md +6 -0
- package/roles/sre/responsibilities.md +16 -0
- package/roles/sre/role.md +46 -0
- package/roles/sre/skill-map.md +14 -0
- package/roles/sre/slos/README.md +6 -0
- package/roles/sre/triggers.md +10 -0
- package/roles/sre/workflow.md +9 -0
- package/roles/support-engineer/README.md +16 -0
- package/roles/support-engineer/checklists.md +24 -0
- package/roles/support-engineer/datadog/README.md +6 -0
- package/roles/support-engineer/examples/README.md +6 -0
- package/roles/support-engineer/examples.md +17 -0
- package/roles/support-engineer/incident-response/README.md +6 -0
- package/roles/support-engineer/kubernetes/README.md +6 -0
- package/roles/support-engineer/linux/README.md +6 -0
- package/roles/support-engineer/logs/README.md +6 -0
- package/roles/support-engineer/monitoring/README.md +6 -0
- package/roles/support-engineer/networking/README.md +6 -0
- package/roles/support-engineer/newrelic/README.md +6 -0
- package/roles/support-engineer/postmortem/README.md +6 -0
- package/roles/support-engineer/production/README.md +6 -0
- package/roles/support-engineer/responsibilities.md +16 -0
- package/roles/support-engineer/role.md +47 -0
- package/roles/support-engineer/root-cause-analysis/README.md +6 -0
- package/roles/support-engineer/runbooks/README.md +6 -0
- package/roles/support-engineer/skill-map.md +14 -0
- package/roles/support-engineer/splunk/README.md +6 -0
- package/roles/support-engineer/triggers.md +10 -0
- package/roles/support-engineer/troubleshooting/README.md +6 -0
- package/roles/support-engineer/workflow.md +9 -0
- package/setup.sh +204 -0
- package/skills/.claude/README.md +7 -0
- package/skills/README.md +21 -0
- package/skills/ai-agents/README.md +207 -0
- package/skills/ai-agents/examples.md +335 -0
- package/skills/ai-agents/skill.md +392 -0
- package/skills/architecture/README.md +198 -0
- package/skills/architecture/examples.md +316 -0
- package/skills/architecture/skill.md +189 -0
- package/skills/design-architecture/README.md +107 -0
- package/skills/design-architecture/examples.md +84 -0
- package/skills/design-architecture/skill.md +192 -0
- package/skills/devops/README.md +177 -0
- package/skills/devops/examples.md +376 -0
- package/skills/devops/skill.md +210 -0
- package/skills/documentation/README.md +182 -0
- package/skills/documentation/examples.md +364 -0
- package/skills/documentation/skill.md +200 -0
- package/skills/performance/README.md +177 -0
- package/skills/performance/examples.md +376 -0
- package/skills/performance/skill.md +199 -0
- package/skills/qa/README.md +106 -0
- package/skills/qa/examples.md +84 -0
- package/skills/qa/skill.md +384 -0
- package/skills/security/README.md +108 -0
- package/skills/security/examples.md +85 -0
- package/skills/security/skill.md +223 -0
- package/skills/software-development/README.md +239 -0
- package/skills/software-development/assessment.md +0 -0
- package/skills/software-development/checklists.md +0 -0
- package/skills/software-development/examples.md +375 -0
- package/skills/software-development/prompts.md +0 -0
- package/skills/software-development/skill.md +390 -0
- package/skills/software-development/templates/README.md +7 -0
- package/skills/software-development/templates/api-development.md +0 -0
- package/skills/software-development/templates/bug-fix.md +0 -0
- package/skills/software-development/templates/code-review.md +0 -0
- package/skills/software-development/templates/feature-implementation.md +0 -0
- package/skills/software-development/templates/llm-integration.md +0 -0
- package/skills/software-development/templates/performance-review.md +0 -0
- package/skills/software-development/templates/security-review.md +0 -0
- package/skills/software-development/templates/test-generation.md +0 -0
- package/skills/software-development/tools.md +0 -0
- package/skills/software-development/workflows.md +0 -0
- package/skills/sre/README.md +107 -0
- package/skills/sre/examples.md +379 -0
- package/skills/sre/skill.md +256 -0
- package/skills/support-engineering/README.md +107 -0
- package/skills/support-engineering/examples.md +85 -0
- package/skills/support-engineering/skill.md +103 -0
package/agents/SKILL.md
ADDED
|
@@ -0,0 +1,633 @@
|
|
|
1
|
+
# Specialized Agents Skill
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
This skill defines how to select and use specialized AI agents for different roles and responsibilities in software engineering and product development.
|
|
6
|
+
|
|
7
|
+
Specialized agents are pre-configured AI assistants optimized for specific domains with focused expertise, curated tools, and clear output formats.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Table of Contents
|
|
12
|
+
|
|
13
|
+
1. Agent Selection
|
|
14
|
+
2. Agent Types
|
|
15
|
+
3. When to Use Each Agent
|
|
16
|
+
4. Agent Tool Access
|
|
17
|
+
5. Combining Agents
|
|
18
|
+
6. Workflow Patterns
|
|
19
|
+
7. Best Practices
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 1. Agent Selection
|
|
24
|
+
|
|
25
|
+
### Selection Criteria
|
|
26
|
+
|
|
27
|
+
Choose agents based on:
|
|
28
|
+
|
|
29
|
+
| Criteria | Guidance |
|
|
30
|
+
|----------|----------|
|
|
31
|
+
| **Domain match** | Select agent whose specialty matches your task |
|
|
32
|
+
| **Task complexity** | Simple tasks: single agent; complex tasks: multiple agents |
|
|
33
|
+
| **Tool needs** | Verify agent has tools required (code writing, research, etc.) |
|
|
34
|
+
| **Timeline** | Consider agent expertise and output quality |
|
|
35
|
+
| **Scope** | Focused agents better than trying one agent for everything |
|
|
36
|
+
|
|
37
|
+
### Decision Tree
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
What is your task?
|
|
41
|
+
|
|
42
|
+
├─ Design/Architecture
|
|
43
|
+
│ └─ → architect
|
|
44
|
+
├─ Writing Code
|
|
45
|
+
│ └─ → coder
|
|
46
|
+
├─ Finding/Fixing Bugs
|
|
47
|
+
│ └─ → debugger
|
|
48
|
+
├─ Testing/QA
|
|
49
|
+
│ └─ → tester
|
|
50
|
+
├─ Improving Code
|
|
51
|
+
│ └─ → refactorer
|
|
52
|
+
├─ Reviewing Code
|
|
53
|
+
│ └─ → reviewer
|
|
54
|
+
├─ Security/Threats
|
|
55
|
+
│ └─ → security
|
|
56
|
+
├─ Performance/Optimization
|
|
57
|
+
│ └─ → performance
|
|
58
|
+
├─ Planning Work
|
|
59
|
+
│ └─ → planner
|
|
60
|
+
├─ Requirements/Features
|
|
61
|
+
│ └─ → product-owner
|
|
62
|
+
├─ Releases/Deployment
|
|
63
|
+
│ └─ → release-manager
|
|
64
|
+
├─ Infrastructure/DevOps
|
|
65
|
+
│ └─ → devops
|
|
66
|
+
├─ Customer Issues
|
|
67
|
+
│ └─ → support
|
|
68
|
+
├─ Research/Analysis
|
|
69
|
+
│ └─ → researcher
|
|
70
|
+
└─ Documentation/Guides
|
|
71
|
+
└─ → documentation
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## 2. Agent Types
|
|
77
|
+
|
|
78
|
+
### Core Development Agents
|
|
79
|
+
|
|
80
|
+
| Agent | Specialty | Key Skills | Tools |
|
|
81
|
+
|-------|-----------|-----------|-------|
|
|
82
|
+
| **architect** | Systems design | Data flow, scalability, patterns | Read, Grep, Write, Web research |
|
|
83
|
+
| **coder** | Implementation | Production code, patterns | Read, Edit, Write, Bash |
|
|
84
|
+
| **debugger** | Root cause | Issue diagnosis, trace | Read, Grep, Bash, Edit |
|
|
85
|
+
| **tester** | Quality | Test design, validation | Read, Write, Edit, Bash |
|
|
86
|
+
| **refactorer** | Quality improvement | Refactoring, modernizing | Read, Edit, Grep |
|
|
87
|
+
|
|
88
|
+
### Quality Agents
|
|
89
|
+
|
|
90
|
+
| Agent | Specialty | Key Skills | Tools |
|
|
91
|
+
|-------|-----------|-----------|-------|
|
|
92
|
+
| **reviewer** | Code assessment | Quality checks, standards | Read, Grep, Bash |
|
|
93
|
+
| **security** | Threat analysis | Vulnerabilities, compliance | Read, Grep, Research |
|
|
94
|
+
| **performance** | Optimization | Bottlenecks, scaling | Read, Grep, Bash |
|
|
95
|
+
|
|
96
|
+
### Planning Agents
|
|
97
|
+
|
|
98
|
+
| Agent | Specialty | Key Skills | Tools |
|
|
99
|
+
|-------|-----------|-----------|-------|
|
|
100
|
+
| **planner** | Project planning | Breakdown, estimates, risks | Read, Write, Analysis |
|
|
101
|
+
| **product-owner** | Requirements | User stories, criteria | Read, Write, Research |
|
|
102
|
+
| **release-manager** | Release coordination | Versioning, deployment | Read, Edit, Write |
|
|
103
|
+
|
|
104
|
+
### Operations Agents
|
|
105
|
+
|
|
106
|
+
| Agent | Specialty | Key Skills | Tools |
|
|
107
|
+
|-------|-----------|-----------|-------|
|
|
108
|
+
| **devops** | Infrastructure | CI/CD, IaC, containers | Read, Write, Bash |
|
|
109
|
+
| **support** | Troubleshooting | Diagnostics, help | Read, Research, Bash |
|
|
110
|
+
|
|
111
|
+
### Knowledge Agents
|
|
112
|
+
|
|
113
|
+
| Agent | Specialty | Key Skills | Tools |
|
|
114
|
+
|-------|-----------|-----------|-------|
|
|
115
|
+
| **researcher** | Analysis | Codebase exploration | Read, Grep, Research |
|
|
116
|
+
| **documentation** | Writing | API docs, guides | Read, Write, Research |
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 3. When to Use Each Agent
|
|
121
|
+
|
|
122
|
+
### Architect
|
|
123
|
+
|
|
124
|
+
**Use when:**
|
|
125
|
+
- Designing new systems or major components
|
|
126
|
+
- Planning architecture changes
|
|
127
|
+
- Analyzing scalability needs
|
|
128
|
+
- Creating data flow designs
|
|
129
|
+
|
|
130
|
+
**Expected outputs:**
|
|
131
|
+
- Architecture diagrams
|
|
132
|
+
- Component interactions
|
|
133
|
+
- Data flows
|
|
134
|
+
- Scalability analysis
|
|
135
|
+
- Risk assessment
|
|
136
|
+
|
|
137
|
+
**Example:**
|
|
138
|
+
```
|
|
139
|
+
Use architect to design a distributed cache layer for our microservices
|
|
140
|
+
considering our 10K+ RPS requirement and consistency needs
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### Coder
|
|
144
|
+
|
|
145
|
+
**Use when:**
|
|
146
|
+
- Implementing features
|
|
147
|
+
- Writing new code
|
|
148
|
+
- Adding functionality
|
|
149
|
+
- Following project patterns
|
|
150
|
+
|
|
151
|
+
**Expected outputs:**
|
|
152
|
+
- Production code
|
|
153
|
+
- Error handling
|
|
154
|
+
- Logging
|
|
155
|
+
- Tests
|
|
156
|
+
- Documentation via code
|
|
157
|
+
|
|
158
|
+
**Example:**
|
|
159
|
+
```
|
|
160
|
+
Use coder to implement user profile update endpoint with validation,
|
|
161
|
+
error handling, and following existing API patterns
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
### Debugger
|
|
165
|
+
|
|
166
|
+
**Use when:**
|
|
167
|
+
- Investigating issues
|
|
168
|
+
- Finding root causes
|
|
169
|
+
- Analyzing failures
|
|
170
|
+
- Diagnosing performance problems
|
|
171
|
+
|
|
172
|
+
**Expected outputs:**
|
|
173
|
+
- Root cause analysis
|
|
174
|
+
- Reproduction steps
|
|
175
|
+
- Fix recommendations
|
|
176
|
+
- Verification approach
|
|
177
|
+
|
|
178
|
+
**Example:**
|
|
179
|
+
```
|
|
180
|
+
Use debugger to diagnose why batch jobs occasionally fail with
|
|
181
|
+
database connection errors
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Tester
|
|
185
|
+
|
|
186
|
+
**Use when:**
|
|
187
|
+
- Creating test strategies
|
|
188
|
+
- Writing tests
|
|
189
|
+
- Improving coverage
|
|
190
|
+
- Validating implementations
|
|
191
|
+
|
|
192
|
+
**Expected outputs:**
|
|
193
|
+
- Test plans
|
|
194
|
+
- Test code
|
|
195
|
+
- Coverage analysis
|
|
196
|
+
- Edge cases
|
|
197
|
+
- Validation approach
|
|
198
|
+
|
|
199
|
+
**Example:**
|
|
200
|
+
```
|
|
201
|
+
Use tester to create comprehensive tests for payment processing
|
|
202
|
+
covering happy path, failures, and concurrency
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Refactorer
|
|
206
|
+
|
|
207
|
+
**Use when:**
|
|
208
|
+
- Removing duplication
|
|
209
|
+
- Improving code quality
|
|
210
|
+
- Modernizing patterns
|
|
211
|
+
- Addressing technical debt
|
|
212
|
+
|
|
213
|
+
**Expected outputs:**
|
|
214
|
+
- Refactored code
|
|
215
|
+
- Consolidated logic
|
|
216
|
+
- Improved structure
|
|
217
|
+
- Maintained tests
|
|
218
|
+
- Migration guide
|
|
219
|
+
|
|
220
|
+
**Example:**
|
|
221
|
+
```
|
|
222
|
+
Use refactorer to consolidate duplicate auth logic across 3 middleware files
|
|
223
|
+
and extract to a shared library
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
### Reviewer
|
|
227
|
+
|
|
228
|
+
**Use when:**
|
|
229
|
+
- Reviewing code
|
|
230
|
+
- Assessing quality
|
|
231
|
+
- Checking standards
|
|
232
|
+
- Validating before merge
|
|
233
|
+
|
|
234
|
+
**Expected outputs:**
|
|
235
|
+
- Quality findings
|
|
236
|
+
- Bug identification
|
|
237
|
+
- Improvement suggestions
|
|
238
|
+
- Risk assessment
|
|
239
|
+
- Approval recommendation
|
|
240
|
+
|
|
241
|
+
**Example:**
|
|
242
|
+
```
|
|
243
|
+
Use reviewer to review this pull request for correctness, performance,
|
|
244
|
+
and security before we merge
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
### Security
|
|
248
|
+
|
|
249
|
+
**Use when:**
|
|
250
|
+
- Performing security reviews
|
|
251
|
+
- Identifying vulnerabilities
|
|
252
|
+
- Threat modeling
|
|
253
|
+
- Compliance analysis
|
|
254
|
+
|
|
255
|
+
**Expected outputs:**
|
|
256
|
+
- Vulnerability findings
|
|
257
|
+
- Threat analysis
|
|
258
|
+
- Compliance gaps
|
|
259
|
+
- Remediation steps
|
|
260
|
+
- Security recommendations
|
|
261
|
+
|
|
262
|
+
**Example:**
|
|
263
|
+
```
|
|
264
|
+
Use security to threat model our user data export feature for
|
|
265
|
+
unauthorized access and data exposure risks
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
### Performance
|
|
269
|
+
|
|
270
|
+
**Use when:**
|
|
271
|
+
- Analyzing bottlenecks
|
|
272
|
+
- Optimizing slow code
|
|
273
|
+
- Planning scalability
|
|
274
|
+
- Improving efficiency
|
|
275
|
+
|
|
276
|
+
**Expected outputs:**
|
|
277
|
+
- Bottleneck identification
|
|
278
|
+
- Optimization recommendations
|
|
279
|
+
- Benchmark results
|
|
280
|
+
- Scalability analysis
|
|
281
|
+
|
|
282
|
+
**Example:**
|
|
283
|
+
```
|
|
284
|
+
Use performance to identify bottlenecks in our notification system
|
|
285
|
+
before scaling to 1M concurrent users
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
### Planner
|
|
289
|
+
|
|
290
|
+
**Use when:**
|
|
291
|
+
- Planning feature development
|
|
292
|
+
- Breaking down work
|
|
293
|
+
- Estimating effort
|
|
294
|
+
- Creating roadmaps
|
|
295
|
+
|
|
296
|
+
**Expected outputs:**
|
|
297
|
+
- Task breakdown
|
|
298
|
+
- Effort estimates
|
|
299
|
+
- Dependencies
|
|
300
|
+
- Timeline
|
|
301
|
+
- Risk assessment
|
|
302
|
+
|
|
303
|
+
**Example:**
|
|
304
|
+
```
|
|
305
|
+
Use planner to break down implementing OAuth2 authentication
|
|
306
|
+
into tasks for a team of 3 with timeline
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### Product Owner
|
|
310
|
+
|
|
311
|
+
**Use when:**
|
|
312
|
+
- Defining requirements
|
|
313
|
+
- Creating user stories
|
|
314
|
+
- Prioritizing features
|
|
315
|
+
- Setting success criteria
|
|
316
|
+
|
|
317
|
+
**Expected outputs:**
|
|
318
|
+
- User stories
|
|
319
|
+
- Acceptance criteria
|
|
320
|
+
- Requirements specs
|
|
321
|
+
- Success metrics
|
|
322
|
+
- Prioritization
|
|
323
|
+
|
|
324
|
+
**Example:**
|
|
325
|
+
```
|
|
326
|
+
Use product-owner to define requirements for our new real-time
|
|
327
|
+
collaboration feature including success metrics
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
### Release Manager
|
|
331
|
+
|
|
332
|
+
**Use when:**
|
|
333
|
+
- Planning releases
|
|
334
|
+
- Managing versions
|
|
335
|
+
- Creating deployment plans
|
|
336
|
+
- Planning rollbacks
|
|
337
|
+
|
|
338
|
+
**Expected outputs:**
|
|
339
|
+
- Release plan
|
|
340
|
+
- Version/changelog
|
|
341
|
+
- Deployment steps
|
|
342
|
+
- Rollback procedures
|
|
343
|
+
- Release notes
|
|
344
|
+
|
|
345
|
+
**Example:**
|
|
346
|
+
```
|
|
347
|
+
Use release-manager to plan v2.0 release including versioning,
|
|
348
|
+
deployment strategy, and rollback plan
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
### DevOps
|
|
352
|
+
|
|
353
|
+
**Use when:**
|
|
354
|
+
- Designing deployment pipelines
|
|
355
|
+
- Setting up infrastructure
|
|
356
|
+
- Configuring monitoring
|
|
357
|
+
- Managing environments
|
|
358
|
+
|
|
359
|
+
**Expected outputs:**
|
|
360
|
+
- Pipeline configuration
|
|
361
|
+
- Infrastructure code
|
|
362
|
+
- Monitoring setup
|
|
363
|
+
- Documentation
|
|
364
|
+
- Scaling strategy
|
|
365
|
+
|
|
366
|
+
**Example:**
|
|
367
|
+
```
|
|
368
|
+
Use devops to design CI/CD pipeline for our Node.js microservices
|
|
369
|
+
with Kubernetes and GitHub Actions
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
### Support
|
|
373
|
+
|
|
374
|
+
**Use when:**
|
|
375
|
+
- Troubleshooting issues
|
|
376
|
+
- Creating help documentation
|
|
377
|
+
- Diagnosing problems
|
|
378
|
+
- Creating guides
|
|
379
|
+
|
|
380
|
+
**Expected outputs:**
|
|
381
|
+
- Troubleshooting guides
|
|
382
|
+
- Root cause analysis
|
|
383
|
+
- Solutions/workarounds
|
|
384
|
+
- FAQ documentation
|
|
385
|
+
- Help articles
|
|
386
|
+
|
|
387
|
+
**Example:**
|
|
388
|
+
```
|
|
389
|
+
Use support to create troubleshooting guide for common API errors
|
|
390
|
+
our customers experience
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
### Researcher
|
|
394
|
+
|
|
395
|
+
**Use when:**
|
|
396
|
+
- Exploring codebases
|
|
397
|
+
- Understanding architecture
|
|
398
|
+
- Evaluating technologies
|
|
399
|
+
- Analyzing patterns
|
|
400
|
+
|
|
401
|
+
**Expected outputs:**
|
|
402
|
+
- Architecture analysis
|
|
403
|
+
- Pattern documentation
|
|
404
|
+
- Technology evaluations
|
|
405
|
+
- Understanding summaries
|
|
406
|
+
- Comparison analyses
|
|
407
|
+
|
|
408
|
+
**Example:**
|
|
409
|
+
```
|
|
410
|
+
Use researcher to explore our authentication system to understand
|
|
411
|
+
current implementation before proposing changes
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
### Documentation
|
|
415
|
+
|
|
416
|
+
**Use when:**
|
|
417
|
+
- Writing API documentation
|
|
418
|
+
- Creating guides
|
|
419
|
+
- Writing architecture docs
|
|
420
|
+
- Creating README files
|
|
421
|
+
|
|
422
|
+
**Expected outputs:**
|
|
423
|
+
- API documentation
|
|
424
|
+
- User guides
|
|
425
|
+
- Architecture guides
|
|
426
|
+
- README files
|
|
427
|
+
- Examples
|
|
428
|
+
|
|
429
|
+
**Example:**
|
|
430
|
+
```
|
|
431
|
+
Use documentation to write OpenAPI docs for our payment API
|
|
432
|
+
with all endpoints, errors, and request/response examples
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
## 4. Agent Tool Access
|
|
438
|
+
|
|
439
|
+
### Code Modification Tools
|
|
440
|
+
- **Read**: Files and code
|
|
441
|
+
- **Edit**: Code changes
|
|
442
|
+
- **Write**: New files
|
|
443
|
+
- **NotebookEdit**: Jupyter notebooks
|
|
444
|
+
|
|
445
|
+
Agents with these: architect, coder, refactorer, documentation, devops
|
|
446
|
+
|
|
447
|
+
### Code Analysis Tools
|
|
448
|
+
- **Grep**: Pattern matching
|
|
449
|
+
- **Glob**: File search
|
|
450
|
+
- **Read**: Code inspection
|
|
451
|
+
|
|
452
|
+
Agents with these: All agents
|
|
453
|
+
|
|
454
|
+
### Execution Tools
|
|
455
|
+
- **Bash**: System commands, testing, execution
|
|
456
|
+
|
|
457
|
+
Agents with these: Most agents
|
|
458
|
+
|
|
459
|
+
### Research Tools
|
|
460
|
+
- **WebFetch**: Fetch external resources
|
|
461
|
+
- **WebSearch**: Search for information
|
|
462
|
+
|
|
463
|
+
Agents with these: researcher, documentation, security, product-owner
|
|
464
|
+
|
|
465
|
+
---
|
|
466
|
+
|
|
467
|
+
## 5. Combining Agents
|
|
468
|
+
|
|
469
|
+
### Sequential Patterns
|
|
470
|
+
|
|
471
|
+
**Research → Design → Implement → Test → Review**
|
|
472
|
+
```
|
|
473
|
+
1. researcher - Understand existing patterns
|
|
474
|
+
2. architect - Design new component
|
|
475
|
+
3. coder - Implement component
|
|
476
|
+
4. tester - Create tests
|
|
477
|
+
5. reviewer - Review for quality
|
|
478
|
+
```
|
|
479
|
+
|
|
480
|
+
**Plan → Design → Implement → Optimize**
|
|
481
|
+
```
|
|
482
|
+
1. planner - Break down work
|
|
483
|
+
2. architect - Design system
|
|
484
|
+
3. coder - Implement
|
|
485
|
+
4. performance - Optimize
|
|
486
|
+
```
|
|
487
|
+
|
|
488
|
+
**Require → Design → Implement → Secure → Deploy**
|
|
489
|
+
```
|
|
490
|
+
1. product-owner - Define requirements
|
|
491
|
+
2. architect - Design system
|
|
492
|
+
3. coder - Implement
|
|
493
|
+
4. security - Security review
|
|
494
|
+
5. devops - Create deployment
|
|
495
|
+
```
|
|
496
|
+
|
|
497
|
+
### Parallel Patterns
|
|
498
|
+
|
|
499
|
+
**Multiple reviewers for comprehensive coverage**
|
|
500
|
+
```
|
|
501
|
+
1. reviewer - Code quality
|
|
502
|
+
2. security - Security issues
|
|
503
|
+
3. performance - Performance concerns
|
|
504
|
+
→ Combine findings
|
|
505
|
+
```
|
|
506
|
+
|
|
507
|
+
**Design verification**
|
|
508
|
+
```
|
|
509
|
+
1. architect - Design
|
|
510
|
+
2. performance - Scalability analysis
|
|
511
|
+
3. security - Security analysis
|
|
512
|
+
→ Validate design
|
|
513
|
+
```
|
|
514
|
+
|
|
515
|
+
---
|
|
516
|
+
|
|
517
|
+
## 6. Workflow Patterns
|
|
518
|
+
|
|
519
|
+
### Feature Development Workflow
|
|
520
|
+
|
|
521
|
+
```
|
|
522
|
+
planner
|
|
523
|
+
↓
|
|
524
|
+
product-owner (define requirements)
|
|
525
|
+
↓
|
|
526
|
+
architect (design)
|
|
527
|
+
↓
|
|
528
|
+
coder (implement)
|
|
529
|
+
↓
|
|
530
|
+
tester (test)
|
|
531
|
+
↓
|
|
532
|
+
reviewer (quality check)
|
|
533
|
+
↓
|
|
534
|
+
security (security check)
|
|
535
|
+
↓
|
|
536
|
+
performance (optimization)
|
|
537
|
+
↓
|
|
538
|
+
documentation (create docs)
|
|
539
|
+
↓
|
|
540
|
+
release-manager (plan release)
|
|
541
|
+
↓
|
|
542
|
+
devops (deploy)
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
### Bug Fix Workflow
|
|
546
|
+
|
|
547
|
+
```
|
|
548
|
+
debugger (diagnose)
|
|
549
|
+
↓
|
|
550
|
+
coder (implement fix)
|
|
551
|
+
↓
|
|
552
|
+
tester (verify fix)
|
|
553
|
+
↓
|
|
554
|
+
reviewer (code review)
|
|
555
|
+
↓
|
|
556
|
+
devops (deploy)
|
|
557
|
+
```
|
|
558
|
+
|
|
559
|
+
### Architecture Improvement Workflow
|
|
560
|
+
|
|
561
|
+
```
|
|
562
|
+
researcher (analyze current)
|
|
563
|
+
↓
|
|
564
|
+
architect (design improvement)
|
|
565
|
+
↓
|
|
566
|
+
performance (analyze impact)
|
|
567
|
+
↓
|
|
568
|
+
security (review security)
|
|
569
|
+
↓
|
|
570
|
+
planner (plan migration)
|
|
571
|
+
↓
|
|
572
|
+
coder (implement)
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
---
|
|
576
|
+
|
|
577
|
+
## 7. Best Practices
|
|
578
|
+
|
|
579
|
+
### Selection Best Practices
|
|
580
|
+
|
|
581
|
+
**Do:**
|
|
582
|
+
- ✅ Choose agent whose specialty matches your task
|
|
583
|
+
- ✅ Use multiple agents for complex tasks
|
|
584
|
+
- ✅ Provide context about constraints and goals
|
|
585
|
+
- ✅ Review outputs before acting
|
|
586
|
+
- ✅ Chain agents based on output dependencies
|
|
587
|
+
|
|
588
|
+
**Don't:**
|
|
589
|
+
- ❌ Use one agent for all tasks
|
|
590
|
+
- ❌ Skip agent review of important decisions
|
|
591
|
+
- ❌ Combine unrelated tasks in one agent request
|
|
592
|
+
- ❌ Ignore agent suggestions without review
|
|
593
|
+
- ❌ Use wrong agent for the task
|
|
594
|
+
|
|
595
|
+
### Request Best Practices
|
|
596
|
+
|
|
597
|
+
**Do:**
|
|
598
|
+
- ✅ Be specific about the task
|
|
599
|
+
- ✅ Include relevant constraints
|
|
600
|
+
- ✅ Provide necessary context
|
|
601
|
+
- ✅ State success criteria
|
|
602
|
+
- ✅ Mention scope limitations
|
|
603
|
+
|
|
604
|
+
**Don't:**
|
|
605
|
+
- ❌ Be vague or ambiguous
|
|
606
|
+
- ❌ Skip important constraints
|
|
607
|
+
- ❌ Ask for unrelated tasks together
|
|
608
|
+
- ❌ Assume agent knowledge
|
|
609
|
+
- ❌ Overload with information
|
|
610
|
+
|
|
611
|
+
### Workflow Best Practices
|
|
612
|
+
|
|
613
|
+
**Do:**
|
|
614
|
+
- ✅ Use sequential agents for dependent tasks
|
|
615
|
+
- ✅ Save agent outputs for reference
|
|
616
|
+
- ✅ Use parallel agents for independent reviews
|
|
617
|
+
- ✅ Iterate on outputs
|
|
618
|
+
- ✅ Document agent decisions
|
|
619
|
+
|
|
620
|
+
**Don't:**
|
|
621
|
+
- ❌ Skip planning before implementation
|
|
622
|
+
- ❌ Implement before design review
|
|
623
|
+
- ❌ Deploy without comprehensive testing
|
|
624
|
+
- ❌ Skip security review
|
|
625
|
+
- ❌ Ignore performance analysis
|
|
626
|
+
|
|
627
|
+
---
|
|
628
|
+
|
|
629
|
+
## Version
|
|
630
|
+
|
|
631
|
+
**Version:** 1.0
|
|
632
|
+
|
|
633
|
+
This skill defines how to use the 15 specialized agents. Update as new agents are added or existing ones are modified.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: architect
|
|
3
|
+
description: Systems architect for designing solution architectures, data flows, and implementation strategies
|
|
4
|
+
tools: [Read, Grep, Glob, Bash, Write, Edit, WebFetch, WebSearch]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Architect Agent
|
|
8
|
+
|
|
9
|
+
Specialized agent for system and solution architecture design.
|
|
10
|
+
|
|
11
|
+
## Responsibilities
|
|
12
|
+
|
|
13
|
+
- Design system architectures and component interactions
|
|
14
|
+
- Create data flow diagrams and sequences
|
|
15
|
+
- Evaluate architectural tradeoffs
|
|
16
|
+
- Propose scalability and reliability patterns
|
|
17
|
+
- Analyze existing codebase patterns
|
|
18
|
+
- Document architecture decisions
|
|
19
|
+
|
|
20
|
+
## When to Use
|
|
21
|
+
|
|
22
|
+
Use this agent when you need to:
|
|
23
|
+
- Design new system components or services
|
|
24
|
+
- Plan major refactoring initiatives
|
|
25
|
+
- Evaluate architectural approaches
|
|
26
|
+
- Document system design decisions
|
|
27
|
+
- Analyze cross-service data flows
|
|
28
|
+
- Plan migrations or infrastructure changes
|
|
29
|
+
|
|
30
|
+
## What It Produces
|
|
31
|
+
|
|
32
|
+
- Architecture diagrams (ASCII or description)
|
|
33
|
+
- Component interaction flows
|
|
34
|
+
- Data flow specifications
|
|
35
|
+
- Scalability analysis
|
|
36
|
+
- Risk assessments
|
|
37
|
+
- Implementation roadmaps
|
|
38
|
+
|
|
39
|
+
## Tools Available
|
|
40
|
+
|
|
41
|
+
- Code exploration: Read, Grep, Glob
|
|
42
|
+
- System commands: Bash
|
|
43
|
+
- Documentation: Write, Edit
|
|
44
|
+
- Research: WebFetch, WebSearch
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: coder
|
|
3
|
+
description: Implementation specialist for writing production-quality code following project patterns
|
|
4
|
+
tools: [Read, Grep, Glob, Bash, Write, Edit, NotebookEdit]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Coder Agent
|
|
8
|
+
|
|
9
|
+
Specialized agent for implementing features and writing code.
|
|
10
|
+
|
|
11
|
+
## Responsibilities
|
|
12
|
+
|
|
13
|
+
- Implement new features and functionality
|
|
14
|
+
- Write production-quality code
|
|
15
|
+
- Follow existing project patterns and conventions
|
|
16
|
+
- Handle error scenarios
|
|
17
|
+
- Write meaningful logging and instrumentation
|
|
18
|
+
- Implement incremental changes
|
|
19
|
+
|
|
20
|
+
## When to Use
|
|
21
|
+
|
|
22
|
+
Use this agent when you need to:
|
|
23
|
+
- Implement new features
|
|
24
|
+
- Write code following project patterns
|
|
25
|
+
- Add functionality to existing systems
|
|
26
|
+
- Complete feature specifications
|
|
27
|
+
- Write library code or utilities
|
|
28
|
+
- Implement API endpoints or handlers
|
|
29
|
+
|
|
30
|
+
## What It Produces
|
|
31
|
+
|
|
32
|
+
- Production-ready code
|
|
33
|
+
- Implementation following existing patterns
|
|
34
|
+
- Error handling and edge cases
|
|
35
|
+
- Logging and observability
|
|
36
|
+
- Code documentation via naming and structure
|
|
37
|
+
|
|
38
|
+
## Tools Available
|
|
39
|
+
|
|
40
|
+
- Code reading and analysis: Read, Grep, Glob
|
|
41
|
+
- Execution: Bash
|
|
42
|
+
- Code creation and modification: Write, Edit
|
|
43
|
+
- Notebook support: NotebookEdit
|