claude-autopm 2.8.2 → 2.8.3
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 +399 -637
- package/package.json +2 -1
- package/packages/plugin-ai/LICENSE +21 -0
- package/packages/plugin-ai/README.md +316 -0
- package/packages/plugin-ai/agents/anthropic-claude-expert.md +579 -0
- package/packages/plugin-ai/agents/azure-openai-expert.md +1411 -0
- package/packages/plugin-ai/agents/gemini-api-expert.md +880 -0
- package/packages/plugin-ai/agents/google-a2a-expert.md +1445 -0
- package/packages/plugin-ai/agents/huggingface-expert.md +2131 -0
- package/packages/plugin-ai/agents/langchain-expert.md +1427 -0
- package/packages/plugin-ai/agents/langgraph-workflow-expert.md +520 -0
- package/packages/plugin-ai/agents/openai-python-expert.md +1087 -0
- package/packages/plugin-ai/commands/a2a-setup.md +886 -0
- package/packages/plugin-ai/commands/ai-model-deployment.md +481 -0
- package/packages/plugin-ai/commands/anthropic-optimize.md +793 -0
- package/packages/plugin-ai/commands/huggingface-deploy.md +789 -0
- package/packages/plugin-ai/commands/langchain-optimize.md +807 -0
- package/packages/plugin-ai/commands/llm-optimize.md +348 -0
- package/packages/plugin-ai/commands/openai-optimize.md +863 -0
- package/packages/plugin-ai/commands/rag-optimize.md +841 -0
- package/packages/plugin-ai/commands/rag-setup-scaffold.md +382 -0
- package/packages/plugin-ai/package.json +66 -0
- package/packages/plugin-ai/plugin.json +519 -0
- package/packages/plugin-ai/rules/ai-model-standards.md +449 -0
- package/packages/plugin-ai/rules/prompt-engineering-standards.md +509 -0
- package/packages/plugin-ai/scripts/examples/huggingface-inference-example.py +145 -0
- package/packages/plugin-ai/scripts/examples/langchain-rag-example.py +366 -0
- package/packages/plugin-ai/scripts/examples/mlflow-tracking-example.py +224 -0
- package/packages/plugin-ai/scripts/examples/openai-chat-example.py +425 -0
- package/packages/plugin-cloud/README.md +268 -0
- package/packages/plugin-cloud/agents/README.md +55 -0
- package/packages/plugin-cloud/agents/aws-cloud-architect.md +521 -0
- package/packages/plugin-cloud/agents/azure-cloud-architect.md +436 -0
- package/packages/plugin-cloud/agents/gcp-cloud-architect.md +385 -0
- package/packages/plugin-cloud/agents/gcp-cloud-functions-engineer.md +306 -0
- package/packages/plugin-cloud/agents/gemini-api-expert.md +880 -0
- package/packages/plugin-cloud/agents/kubernetes-orchestrator.md +566 -0
- package/packages/plugin-cloud/agents/openai-python-expert.md +1087 -0
- package/packages/plugin-cloud/agents/terraform-infrastructure-expert.md +454 -0
- package/packages/plugin-cloud/commands/cloud-cost-optimize.md +243 -0
- package/packages/plugin-cloud/commands/cloud-validate.md +196 -0
- package/packages/plugin-cloud/commands/infra-deploy.md +38 -0
- package/packages/plugin-cloud/commands/k8s-deploy.md +37 -0
- package/packages/plugin-cloud/commands/ssh-security.md +65 -0
- package/packages/plugin-cloud/commands/traefik-setup.md +65 -0
- package/packages/plugin-cloud/hooks/pre-cloud-deploy.js +456 -0
- package/packages/plugin-cloud/package.json +64 -0
- package/packages/plugin-cloud/plugin.json +338 -0
- package/packages/plugin-cloud/rules/cloud-security-compliance.md +313 -0
- package/packages/plugin-cloud/rules/infrastructure-pipeline.md +128 -0
- package/packages/plugin-cloud/scripts/examples/aws-validate.sh +30 -0
- package/packages/plugin-cloud/scripts/examples/azure-setup.sh +33 -0
- package/packages/plugin-cloud/scripts/examples/gcp-setup.sh +39 -0
- package/packages/plugin-cloud/scripts/examples/k8s-validate.sh +40 -0
- package/packages/plugin-cloud/scripts/examples/terraform-init.sh +26 -0
- package/packages/plugin-core/README.md +274 -0
- package/packages/plugin-core/agents/core/agent-manager.md +296 -0
- package/packages/plugin-core/agents/core/code-analyzer.md +131 -0
- package/packages/plugin-core/agents/core/file-analyzer.md +162 -0
- package/packages/plugin-core/agents/core/test-runner.md +200 -0
- package/packages/plugin-core/commands/code-rabbit.md +128 -0
- package/packages/plugin-core/commands/prompt.md +9 -0
- package/packages/plugin-core/commands/re-init.md +9 -0
- package/packages/plugin-core/hooks/context7-reminder.md +29 -0
- package/packages/plugin-core/hooks/enforce-agents.js +125 -0
- package/packages/plugin-core/hooks/enforce-agents.sh +35 -0
- package/packages/plugin-core/hooks/pre-agent-context7.js +224 -0
- package/packages/plugin-core/hooks/pre-command-context7.js +229 -0
- package/packages/plugin-core/hooks/strict-enforce-agents.sh +39 -0
- package/packages/plugin-core/hooks/test-hook.sh +21 -0
- package/packages/plugin-core/hooks/unified-context7-enforcement.sh +38 -0
- package/packages/plugin-core/package.json +45 -0
- package/packages/plugin-core/plugin.json +387 -0
- package/packages/plugin-core/rules/agent-coordination.md +549 -0
- package/packages/plugin-core/rules/agent-mandatory.md +170 -0
- package/packages/plugin-core/rules/ai-integration-patterns.md +219 -0
- package/packages/plugin-core/rules/command-pipelines.md +208 -0
- package/packages/plugin-core/rules/context-optimization.md +176 -0
- package/packages/plugin-core/rules/context7-enforcement.md +327 -0
- package/packages/plugin-core/rules/datetime.md +122 -0
- package/packages/plugin-core/rules/definition-of-done.md +272 -0
- package/packages/plugin-core/rules/development-environments.md +19 -0
- package/packages/plugin-core/rules/development-workflow.md +198 -0
- package/packages/plugin-core/rules/framework-path-rules.md +180 -0
- package/packages/plugin-core/rules/frontmatter-operations.md +64 -0
- package/packages/plugin-core/rules/git-strategy.md +237 -0
- package/packages/plugin-core/rules/golden-rules.md +181 -0
- package/packages/plugin-core/rules/naming-conventions.md +111 -0
- package/packages/plugin-core/rules/no-pr-workflow.md +183 -0
- package/packages/plugin-core/rules/performance-guidelines.md +403 -0
- package/packages/plugin-core/rules/pipeline-mandatory.md +109 -0
- package/packages/plugin-core/rules/security-checklist.md +318 -0
- package/packages/plugin-core/rules/standard-patterns.md +197 -0
- package/packages/plugin-core/rules/strip-frontmatter.md +85 -0
- package/packages/plugin-core/rules/tdd.enforcement.md +103 -0
- package/packages/plugin-core/rules/use-ast-grep.md +113 -0
- package/packages/plugin-core/scripts/lib/datetime-utils.sh +254 -0
- package/packages/plugin-core/scripts/lib/frontmatter-utils.sh +294 -0
- package/packages/plugin-core/scripts/lib/github-utils.sh +221 -0
- package/packages/plugin-core/scripts/lib/logging-utils.sh +199 -0
- package/packages/plugin-core/scripts/lib/validation-utils.sh +339 -0
- package/packages/plugin-core/scripts/mcp/add.sh +7 -0
- package/packages/plugin-core/scripts/mcp/disable.sh +12 -0
- package/packages/plugin-core/scripts/mcp/enable.sh +12 -0
- package/packages/plugin-core/scripts/mcp/list.sh +7 -0
- package/packages/plugin-core/scripts/mcp/sync.sh +8 -0
- package/packages/plugin-data/README.md +315 -0
- package/packages/plugin-data/agents/airflow-orchestration-expert.md +158 -0
- package/packages/plugin-data/agents/kedro-pipeline-expert.md +304 -0
- package/packages/plugin-data/agents/langgraph-workflow-expert.md +530 -0
- package/packages/plugin-data/commands/airflow-dag-scaffold.md +413 -0
- package/packages/plugin-data/commands/kafka-pipeline-scaffold.md +503 -0
- package/packages/plugin-data/package.json +66 -0
- package/packages/plugin-data/plugin.json +294 -0
- package/packages/plugin-data/rules/data-quality-standards.md +373 -0
- package/packages/plugin-data/rules/etl-pipeline-standards.md +255 -0
- package/packages/plugin-data/scripts/examples/airflow-dag-example.py +245 -0
- package/packages/plugin-data/scripts/examples/dbt-transform-example.sql +238 -0
- package/packages/plugin-data/scripts/examples/kafka-streaming-example.py +257 -0
- package/packages/plugin-data/scripts/examples/pandas-etl-example.py +332 -0
- package/packages/plugin-databases/README.md +330 -0
- package/packages/plugin-databases/agents/README.md +50 -0
- package/packages/plugin-databases/agents/bigquery-expert.md +401 -0
- package/packages/plugin-databases/agents/cosmosdb-expert.md +375 -0
- package/packages/plugin-databases/agents/mongodb-expert.md +407 -0
- package/packages/plugin-databases/agents/postgresql-expert.md +329 -0
- package/packages/plugin-databases/agents/redis-expert.md +74 -0
- package/packages/plugin-databases/commands/db-optimize.md +612 -0
- package/packages/plugin-databases/package.json +60 -0
- package/packages/plugin-databases/plugin.json +237 -0
- package/packages/plugin-databases/rules/database-management-strategy.md +146 -0
- package/packages/plugin-databases/rules/database-pipeline.md +316 -0
- package/packages/plugin-databases/scripts/examples/bigquery-cost-analyze.sh +160 -0
- package/packages/plugin-databases/scripts/examples/cosmosdb-ru-optimize.sh +163 -0
- package/packages/plugin-databases/scripts/examples/mongodb-shard-check.sh +120 -0
- package/packages/plugin-databases/scripts/examples/postgres-index-analyze.sh +95 -0
- package/packages/plugin-databases/scripts/examples/redis-cache-stats.sh +121 -0
- package/packages/plugin-devops/README.md +367 -0
- package/packages/plugin-devops/agents/README.md +52 -0
- package/packages/plugin-devops/agents/azure-devops-specialist.md +308 -0
- package/packages/plugin-devops/agents/docker-containerization-expert.md +298 -0
- package/packages/plugin-devops/agents/github-operations-specialist.md +335 -0
- package/packages/plugin-devops/agents/mcp-context-manager.md +319 -0
- package/packages/plugin-devops/agents/observability-engineer.md +574 -0
- package/packages/plugin-devops/agents/ssh-operations-expert.md +1093 -0
- package/packages/plugin-devops/agents/traefik-proxy-expert.md +444 -0
- package/packages/plugin-devops/commands/ci-pipeline-create.md +581 -0
- package/packages/plugin-devops/commands/docker-optimize.md +493 -0
- package/packages/plugin-devops/commands/workflow-create.md +42 -0
- package/packages/plugin-devops/hooks/pre-docker-build.js +472 -0
- package/packages/plugin-devops/package.json +61 -0
- package/packages/plugin-devops/plugin.json +302 -0
- package/packages/plugin-devops/rules/ci-cd-kubernetes-strategy.md +25 -0
- package/packages/plugin-devops/rules/devops-troubleshooting-playbook.md +450 -0
- package/packages/plugin-devops/rules/docker-first-development.md +404 -0
- package/packages/plugin-devops/rules/github-operations.md +92 -0
- package/packages/plugin-devops/scripts/examples/docker-build-multistage.sh +43 -0
- package/packages/plugin-devops/scripts/examples/docker-compose-validate.sh +74 -0
- package/packages/plugin-devops/scripts/examples/github-workflow-validate.sh +48 -0
- package/packages/plugin-devops/scripts/examples/prometheus-health-check.sh +58 -0
- package/packages/plugin-devops/scripts/examples/ssh-key-setup.sh +74 -0
- package/packages/plugin-frameworks/README.md +309 -0
- package/packages/plugin-frameworks/agents/README.md +64 -0
- package/packages/plugin-frameworks/agents/e2e-test-engineer.md +579 -0
- package/packages/plugin-frameworks/agents/nats-messaging-expert.md +254 -0
- package/packages/plugin-frameworks/agents/react-frontend-engineer.md +393 -0
- package/packages/plugin-frameworks/agents/react-ui-expert.md +226 -0
- package/packages/plugin-frameworks/agents/tailwindcss-expert.md +1021 -0
- package/packages/plugin-frameworks/agents/ux-design-expert.md +244 -0
- package/packages/plugin-frameworks/commands/app-scaffold.md +50 -0
- package/packages/plugin-frameworks/commands/nextjs-optimize.md +692 -0
- package/packages/plugin-frameworks/commands/react-optimize.md +583 -0
- package/packages/plugin-frameworks/commands/tailwind-system.md +64 -0
- package/packages/plugin-frameworks/package.json +59 -0
- package/packages/plugin-frameworks/plugin.json +224 -0
- package/packages/plugin-frameworks/rules/performance-guidelines.md +403 -0
- package/packages/plugin-frameworks/rules/ui-development-standards.md +281 -0
- package/packages/plugin-frameworks/rules/ui-framework-rules.md +151 -0
- package/packages/plugin-frameworks/scripts/examples/react-component-perf.sh +34 -0
- package/packages/plugin-frameworks/scripts/examples/tailwind-optimize.sh +44 -0
- package/packages/plugin-frameworks/scripts/examples/vue-composition-check.sh +41 -0
- package/packages/plugin-languages/README.md +333 -0
- package/packages/plugin-languages/agents/README.md +50 -0
- package/packages/plugin-languages/agents/bash-scripting-expert.md +541 -0
- package/packages/plugin-languages/agents/javascript-frontend-engineer.md +197 -0
- package/packages/plugin-languages/agents/nodejs-backend-engineer.md +226 -0
- package/packages/plugin-languages/agents/python-backend-engineer.md +214 -0
- package/packages/plugin-languages/agents/python-backend-expert.md +289 -0
- package/packages/plugin-languages/commands/javascript-optimize.md +636 -0
- package/packages/plugin-languages/commands/nodejs-api-scaffold.md +341 -0
- package/packages/plugin-languages/commands/nodejs-optimize.md +689 -0
- package/packages/plugin-languages/commands/python-api-scaffold.md +261 -0
- package/packages/plugin-languages/commands/python-optimize.md +593 -0
- package/packages/plugin-languages/package.json +65 -0
- package/packages/plugin-languages/plugin.json +265 -0
- package/packages/plugin-languages/rules/code-quality-standards.md +496 -0
- package/packages/plugin-languages/rules/testing-standards.md +768 -0
- package/packages/plugin-languages/scripts/examples/bash-production-script.sh +520 -0
- package/packages/plugin-languages/scripts/examples/javascript-es6-patterns.js +291 -0
- package/packages/plugin-languages/scripts/examples/nodejs-async-iteration.js +360 -0
- package/packages/plugin-languages/scripts/examples/python-async-patterns.py +289 -0
- package/packages/plugin-languages/scripts/examples/typescript-patterns.ts +432 -0
- package/packages/plugin-ml/README.md +430 -0
- package/packages/plugin-ml/agents/automl-expert.md +326 -0
- package/packages/plugin-ml/agents/computer-vision-expert.md +550 -0
- package/packages/plugin-ml/agents/gradient-boosting-expert.md +455 -0
- package/packages/plugin-ml/agents/neural-network-architect.md +1228 -0
- package/packages/plugin-ml/agents/nlp-transformer-expert.md +584 -0
- package/packages/plugin-ml/agents/pytorch-expert.md +412 -0
- package/packages/plugin-ml/agents/reinforcement-learning-expert.md +2088 -0
- package/packages/plugin-ml/agents/scikit-learn-expert.md +228 -0
- package/packages/plugin-ml/agents/tensorflow-keras-expert.md +509 -0
- package/packages/plugin-ml/agents/time-series-expert.md +303 -0
- package/packages/plugin-ml/commands/ml-automl.md +572 -0
- package/packages/plugin-ml/commands/ml-train-optimize.md +657 -0
- package/packages/plugin-ml/package.json +52 -0
- package/packages/plugin-ml/plugin.json +338 -0
- package/packages/plugin-pm/README.md +368 -0
- package/packages/plugin-pm/claudeautopm-plugin-pm-2.0.0.tgz +0 -0
- package/packages/plugin-pm/commands/azure/COMMANDS.md +107 -0
- package/packages/plugin-pm/commands/azure/COMMAND_MAPPING.md +252 -0
- package/packages/plugin-pm/commands/azure/INTEGRATION_FIX.md +103 -0
- package/packages/plugin-pm/commands/azure/README.md +246 -0
- package/packages/plugin-pm/commands/azure/active-work.md +198 -0
- package/packages/plugin-pm/commands/azure/aliases.md +143 -0
- package/packages/plugin-pm/commands/azure/blocked-items.md +287 -0
- package/packages/plugin-pm/commands/azure/clean.md +93 -0
- package/packages/plugin-pm/commands/azure/docs-query.md +48 -0
- package/packages/plugin-pm/commands/azure/feature-decompose.md +380 -0
- package/packages/plugin-pm/commands/azure/feature-list.md +61 -0
- package/packages/plugin-pm/commands/azure/feature-new.md +115 -0
- package/packages/plugin-pm/commands/azure/feature-show.md +205 -0
- package/packages/plugin-pm/commands/azure/feature-start.md +130 -0
- package/packages/plugin-pm/commands/azure/fix-integration-example.md +93 -0
- package/packages/plugin-pm/commands/azure/help.md +150 -0
- package/packages/plugin-pm/commands/azure/import-us.md +269 -0
- package/packages/plugin-pm/commands/azure/init.md +211 -0
- package/packages/plugin-pm/commands/azure/next-task.md +262 -0
- package/packages/plugin-pm/commands/azure/search.md +160 -0
- package/packages/plugin-pm/commands/azure/sprint-status.md +235 -0
- package/packages/plugin-pm/commands/azure/standup.md +260 -0
- package/packages/plugin-pm/commands/azure/sync-all.md +99 -0
- package/packages/plugin-pm/commands/azure/task-analyze.md +186 -0
- package/packages/plugin-pm/commands/azure/task-close.md +329 -0
- package/packages/plugin-pm/commands/azure/task-edit.md +145 -0
- package/packages/plugin-pm/commands/azure/task-list.md +263 -0
- package/packages/plugin-pm/commands/azure/task-new.md +84 -0
- package/packages/plugin-pm/commands/azure/task-reopen.md +79 -0
- package/packages/plugin-pm/commands/azure/task-show.md +126 -0
- package/packages/plugin-pm/commands/azure/task-start.md +301 -0
- package/packages/plugin-pm/commands/azure/task-status.md +65 -0
- package/packages/plugin-pm/commands/azure/task-sync.md +67 -0
- package/packages/plugin-pm/commands/azure/us-edit.md +164 -0
- package/packages/plugin-pm/commands/azure/us-list.md +202 -0
- package/packages/plugin-pm/commands/azure/us-new.md +265 -0
- package/packages/plugin-pm/commands/azure/us-parse.md +253 -0
- package/packages/plugin-pm/commands/azure/us-show.md +188 -0
- package/packages/plugin-pm/commands/azure/us-status.md +320 -0
- package/packages/plugin-pm/commands/azure/validate.md +86 -0
- package/packages/plugin-pm/commands/azure/work-item-sync.md +47 -0
- package/packages/plugin-pm/commands/blocked.md +28 -0
- package/packages/plugin-pm/commands/clean.md +119 -0
- package/packages/plugin-pm/commands/context-create.md +136 -0
- package/packages/plugin-pm/commands/context-prime.md +170 -0
- package/packages/plugin-pm/commands/context-update.md +292 -0
- package/packages/plugin-pm/commands/context.md +28 -0
- package/packages/plugin-pm/commands/epic-close.md +86 -0
- package/packages/plugin-pm/commands/epic-decompose.md +370 -0
- package/packages/plugin-pm/commands/epic-edit.md +83 -0
- package/packages/plugin-pm/commands/epic-list.md +30 -0
- package/packages/plugin-pm/commands/epic-merge.md +222 -0
- package/packages/plugin-pm/commands/epic-oneshot.md +119 -0
- package/packages/plugin-pm/commands/epic-refresh.md +119 -0
- package/packages/plugin-pm/commands/epic-show.md +28 -0
- package/packages/plugin-pm/commands/epic-split.md +120 -0
- package/packages/plugin-pm/commands/epic-start.md +195 -0
- package/packages/plugin-pm/commands/epic-status.md +28 -0
- package/packages/plugin-pm/commands/epic-sync-modular.md +338 -0
- package/packages/plugin-pm/commands/epic-sync-original.md +473 -0
- package/packages/plugin-pm/commands/epic-sync.md +486 -0
- package/packages/plugin-pm/commands/github/workflow-create.md +42 -0
- package/packages/plugin-pm/commands/help.md +28 -0
- package/packages/plugin-pm/commands/import.md +115 -0
- package/packages/plugin-pm/commands/in-progress.md +28 -0
- package/packages/plugin-pm/commands/init.md +28 -0
- package/packages/plugin-pm/commands/issue-analyze.md +202 -0
- package/packages/plugin-pm/commands/issue-close.md +119 -0
- package/packages/plugin-pm/commands/issue-edit.md +93 -0
- package/packages/plugin-pm/commands/issue-reopen.md +87 -0
- package/packages/plugin-pm/commands/issue-show.md +41 -0
- package/packages/plugin-pm/commands/issue-start.md +234 -0
- package/packages/plugin-pm/commands/issue-status.md +95 -0
- package/packages/plugin-pm/commands/issue-sync.md +411 -0
- package/packages/plugin-pm/commands/next.md +28 -0
- package/packages/plugin-pm/commands/prd-edit.md +82 -0
- package/packages/plugin-pm/commands/prd-list.md +28 -0
- package/packages/plugin-pm/commands/prd-new.md +55 -0
- package/packages/plugin-pm/commands/prd-parse.md +42 -0
- package/packages/plugin-pm/commands/prd-status.md +28 -0
- package/packages/plugin-pm/commands/search.md +28 -0
- package/packages/plugin-pm/commands/standup.md +28 -0
- package/packages/plugin-pm/commands/status.md +28 -0
- package/packages/plugin-pm/commands/sync.md +99 -0
- package/packages/plugin-pm/commands/test-reference-update.md +151 -0
- package/packages/plugin-pm/commands/validate.md +28 -0
- package/packages/plugin-pm/commands/what-next.md +28 -0
- package/packages/plugin-pm/package.json +57 -0
- package/packages/plugin-pm/plugin.json +503 -0
- package/packages/plugin-pm/scripts/pm/analytics.js +425 -0
- package/packages/plugin-pm/scripts/pm/blocked.js +164 -0
- package/packages/plugin-pm/scripts/pm/blocked.sh +78 -0
- package/packages/plugin-pm/scripts/pm/clean.js +464 -0
- package/packages/plugin-pm/scripts/pm/context-create.js +216 -0
- package/packages/plugin-pm/scripts/pm/context-prime.js +335 -0
- package/packages/plugin-pm/scripts/pm/context-update.js +344 -0
- package/packages/plugin-pm/scripts/pm/context.js +338 -0
- package/packages/plugin-pm/scripts/pm/epic-close.js +347 -0
- package/packages/plugin-pm/scripts/pm/epic-edit.js +382 -0
- package/packages/plugin-pm/scripts/pm/epic-list.js +273 -0
- package/packages/plugin-pm/scripts/pm/epic-list.sh +109 -0
- package/packages/plugin-pm/scripts/pm/epic-show.js +291 -0
- package/packages/plugin-pm/scripts/pm/epic-show.sh +105 -0
- package/packages/plugin-pm/scripts/pm/epic-split.js +522 -0
- package/packages/plugin-pm/scripts/pm/epic-start/epic-start.js +183 -0
- package/packages/plugin-pm/scripts/pm/epic-start/epic-start.sh +94 -0
- package/packages/plugin-pm/scripts/pm/epic-status.js +291 -0
- package/packages/plugin-pm/scripts/pm/epic-status.sh +104 -0
- package/packages/plugin-pm/scripts/pm/epic-sync/README.md +208 -0
- package/packages/plugin-pm/scripts/pm/epic-sync/create-epic-issue.sh +77 -0
- package/packages/plugin-pm/scripts/pm/epic-sync/create-task-issues.sh +86 -0
- package/packages/plugin-pm/scripts/pm/epic-sync/update-epic-file.sh +79 -0
- package/packages/plugin-pm/scripts/pm/epic-sync/update-references.sh +89 -0
- package/packages/plugin-pm/scripts/pm/epic-sync.sh +137 -0
- package/packages/plugin-pm/scripts/pm/help.js +92 -0
- package/packages/plugin-pm/scripts/pm/help.sh +90 -0
- package/packages/plugin-pm/scripts/pm/in-progress.js +178 -0
- package/packages/plugin-pm/scripts/pm/in-progress.sh +93 -0
- package/packages/plugin-pm/scripts/pm/init.js +321 -0
- package/packages/plugin-pm/scripts/pm/init.sh +178 -0
- package/packages/plugin-pm/scripts/pm/issue-close.js +232 -0
- package/packages/plugin-pm/scripts/pm/issue-edit.js +310 -0
- package/packages/plugin-pm/scripts/pm/issue-show.js +272 -0
- package/packages/plugin-pm/scripts/pm/issue-start.js +181 -0
- package/packages/plugin-pm/scripts/pm/issue-sync/format-comment.sh +468 -0
- package/packages/plugin-pm/scripts/pm/issue-sync/gather-updates.sh +460 -0
- package/packages/plugin-pm/scripts/pm/issue-sync/post-comment.sh +330 -0
- package/packages/plugin-pm/scripts/pm/issue-sync/preflight-validation.sh +348 -0
- package/packages/plugin-pm/scripts/pm/issue-sync/update-frontmatter.sh +387 -0
- package/packages/plugin-pm/scripts/pm/lib/README.md +85 -0
- package/packages/plugin-pm/scripts/pm/lib/epic-discovery.js +119 -0
- package/packages/plugin-pm/scripts/pm/lib/logger.js +78 -0
- package/packages/plugin-pm/scripts/pm/next.js +189 -0
- package/packages/plugin-pm/scripts/pm/next.sh +72 -0
- package/packages/plugin-pm/scripts/pm/optimize.js +407 -0
- package/packages/plugin-pm/scripts/pm/pr-create.js +337 -0
- package/packages/plugin-pm/scripts/pm/pr-list.js +257 -0
- package/packages/plugin-pm/scripts/pm/prd-list.js +242 -0
- package/packages/plugin-pm/scripts/pm/prd-list.sh +103 -0
- package/packages/plugin-pm/scripts/pm/prd-new.js +684 -0
- package/packages/plugin-pm/scripts/pm/prd-parse.js +547 -0
- package/packages/plugin-pm/scripts/pm/prd-status.js +152 -0
- package/packages/plugin-pm/scripts/pm/prd-status.sh +63 -0
- package/packages/plugin-pm/scripts/pm/release.js +460 -0
- package/packages/plugin-pm/scripts/pm/search.js +192 -0
- package/packages/plugin-pm/scripts/pm/search.sh +89 -0
- package/packages/plugin-pm/scripts/pm/standup.js +362 -0
- package/packages/plugin-pm/scripts/pm/standup.sh +95 -0
- package/packages/plugin-pm/scripts/pm/status.js +148 -0
- package/packages/plugin-pm/scripts/pm/status.sh +59 -0
- package/packages/plugin-pm/scripts/pm/sync-batch.js +337 -0
- package/packages/plugin-pm/scripts/pm/sync.js +343 -0
- package/packages/plugin-pm/scripts/pm/template-list.js +141 -0
- package/packages/plugin-pm/scripts/pm/template-new.js +366 -0
- package/packages/plugin-pm/scripts/pm/validate.js +274 -0
- package/packages/plugin-pm/scripts/pm/validate.sh +106 -0
- package/packages/plugin-pm/scripts/pm/what-next.js +660 -0
- package/packages/plugin-testing/README.md +401 -0
- package/packages/plugin-testing/agents/frontend-testing-engineer.md +768 -0
- package/packages/plugin-testing/commands/jest-optimize.md +800 -0
- package/packages/plugin-testing/commands/playwright-optimize.md +887 -0
- package/packages/plugin-testing/commands/test-coverage.md +512 -0
- package/packages/plugin-testing/commands/test-performance.md +1041 -0
- package/packages/plugin-testing/commands/test-setup.md +414 -0
- package/packages/plugin-testing/package.json +40 -0
- package/packages/plugin-testing/plugin.json +197 -0
- package/packages/plugin-testing/rules/test-coverage-requirements.md +581 -0
- package/packages/plugin-testing/rules/testing-standards.md +529 -0
- package/packages/plugin-testing/scripts/examples/react-testing-example.test.jsx +460 -0
- package/packages/plugin-testing/scripts/examples/vitest-config-example.js +352 -0
- package/packages/plugin-testing/scripts/examples/vue-testing-example.test.js +586 -0
package/README.md
CHANGED
|
@@ -5,57 +5,165 @@
|
|
|
5
5
|
[](https://github.com/rafeekpro/ClaudeAutoPM/blob/main/LICENSE)
|
|
6
6
|
[](https://github.com/rafeekpro/ClaudeAutoPM)
|
|
7
7
|
|
|
8
|
-
**AI-Powered
|
|
8
|
+
**AI-Powered Development Framework for Claude Code**
|
|
9
9
|
|
|
10
|
-
Transform your development workflow with intelligent automation,
|
|
10
|
+
Transform your development workflow with intelligent automation, modular plugin architecture, and scenario-based installation. From minimal setups to enterprise-grade DevOps, ClaudeAutoPM adapts to your needs.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
## 🎯 What is ClaudeAutoPM?
|
|
15
15
|
|
|
16
|
-
ClaudeAutoPM is a
|
|
16
|
+
ClaudeAutoPM is a **modular, plugin-based development framework** designed specifically for [Claude Code](https://claude.ai/code). It provides:
|
|
17
17
|
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
18
|
+
- **🔌 11+ Plugin System** - Modular architecture with scenario-based installation
|
|
19
|
+
- **🎭 145+ AI Agents & Commands** - Specialized agents organized by domain
|
|
20
|
+
- **🚀 Smart Installation** - 4 installation scenarios from minimal to full DevOps
|
|
21
|
+
- **📦 Auto-Plugin Installation** - Automatically installs plugins based on your scenario
|
|
22
|
+
- **🔄 Full Provider Integration** - GitHub & Azure DevOps synchronization
|
|
23
|
+
- **⚡ TDD-Developed** - 64+ tests with comprehensive coverage
|
|
24
24
|
|
|
25
|
-
###
|
|
25
|
+
### 🎉 **NEW in v2.8.2: Intelligent Scenario-Based Installation**
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
- ❌ Context loss between planning and execution
|
|
29
|
-
- ❌ Blocking on sequential tasks
|
|
30
|
-
- ❌ Manual coordination of multiple developers
|
|
31
|
-
- ❌ Disconnect between PRDs, code, and production
|
|
27
|
+
**Automatic Plugin Configuration** - Choose your scenario, plugins install automatically
|
|
32
28
|
|
|
33
|
-
|
|
29
|
+
ClaudeAutoPM now automatically installs the right plugins for your development needs:
|
|
34
30
|
|
|
35
|
-
|
|
31
|
+
**Installation Scenarios:**
|
|
36
32
|
|
|
33
|
+
```bash
|
|
34
|
+
1. Minimal (3 plugins)
|
|
35
|
+
• Sequential execution, native tooling
|
|
36
|
+
• Plugins: core, languages, pm
|
|
37
|
+
• Best for: Learning, simple projects, debugging
|
|
38
|
+
|
|
39
|
+
2. Docker-only (6 plugins)
|
|
40
|
+
• Adaptive execution with Docker
|
|
41
|
+
• Plugins: core, languages, frameworks, testing, devops, pm
|
|
42
|
+
• Best for: Modern web apps with containerization
|
|
43
|
+
|
|
44
|
+
3. Full DevOps (9 plugins) ⭐ RECOMMENDED
|
|
45
|
+
• Adaptive execution with all cloud features
|
|
46
|
+
• Plugins: core, languages, frameworks, testing, devops, cloud, databases, pm, ai
|
|
47
|
+
• Best for: Production applications, cloud deployments
|
|
48
|
+
|
|
49
|
+
4. Performance (11 plugins)
|
|
50
|
+
• Hybrid parallel execution with ALL capabilities
|
|
51
|
+
• Plugins: ALL (core, languages, frameworks, testing, devops, cloud, databases, data, pm, ai, ml)
|
|
52
|
+
• Best for: Data pipelines, ML workflows, power users
|
|
37
53
|
```
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
54
|
+
|
|
55
|
+
**What Happens During Installation:**
|
|
56
|
+
|
|
57
|
+
1. **Choose Your Scenario** - Select the installation that matches your needs
|
|
58
|
+
2. **Plugins Auto-Install** - System installs all plugins for that scenario
|
|
59
|
+
3. **Configuration Saved** - `.claude/config.json` records what was installed
|
|
60
|
+
4. **Agents Ready** - All agents from installed plugins are immediately available
|
|
61
|
+
|
|
62
|
+
**Installation Results:**
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
✓ Scenario: Full DevOps selected
|
|
66
|
+
✓ Installing 9 plugins...
|
|
67
|
+
|
|
68
|
+
✓ Core Framework (4 agents, 3 commands, 17 rules)
|
|
69
|
+
✓ Programming Languages (5 agents)
|
|
70
|
+
✓ Web Frameworks (6 agents, 1 command)
|
|
71
|
+
✓ Testing Tools (2 agents)
|
|
72
|
+
✓ DevOps & CI/CD (7 agents)
|
|
73
|
+
✓ Cloud Platforms (8 agents)
|
|
74
|
+
✓ Databases (5 agents)
|
|
75
|
+
✓ Project Management (87 commands)
|
|
76
|
+
✓ AI Integration (2 agents)
|
|
77
|
+
|
|
78
|
+
✅ Installation complete!
|
|
79
|
+
📋 Config saved to .claude/config.json
|
|
80
|
+
🎯 62 agents + 91 commands ready to use
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
**Configuration Persistence:**
|
|
84
|
+
|
|
85
|
+
The installer creates `.claude/config.json` with full installation details:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"version": "2.8.2",
|
|
90
|
+
"installed": "2025-01-15T10:30:00.000Z",
|
|
91
|
+
"execution_strategy": "adaptive",
|
|
92
|
+
"plugins": [
|
|
93
|
+
"plugin-core",
|
|
94
|
+
"plugin-languages",
|
|
95
|
+
"plugin-frameworks",
|
|
96
|
+
"plugin-testing",
|
|
97
|
+
"plugin-devops",
|
|
98
|
+
"plugin-cloud",
|
|
99
|
+
"plugin-databases",
|
|
100
|
+
"plugin-pm",
|
|
101
|
+
"plugin-ai"
|
|
102
|
+
],
|
|
103
|
+
"installedPlugins": [
|
|
104
|
+
{
|
|
105
|
+
"name": "plugin-core",
|
|
106
|
+
"displayName": "Core Framework",
|
|
107
|
+
"agents": 4,
|
|
108
|
+
"commands": 3,
|
|
109
|
+
"rules": 17
|
|
110
|
+
}
|
|
111
|
+
// ... full details for all plugins
|
|
112
|
+
]
|
|
113
|
+
}
|
|
42
114
|
```
|
|
43
115
|
|
|
44
116
|
---
|
|
45
117
|
|
|
46
118
|
## ✨ Key Features
|
|
47
119
|
|
|
48
|
-
###
|
|
120
|
+
### 🔌 Modular Plugin Architecture
|
|
121
|
+
|
|
122
|
+
**11 Official Plugins** - Mix and match capabilities:
|
|
123
|
+
|
|
124
|
+
| Plugin | Agents | Commands | Description |
|
|
125
|
+
|--------|--------|----------|-------------|
|
|
126
|
+
| **@claudeautopm/plugin-core** | 4 | 3 | Framework essentials (agent-manager, code-analyzer, test-runner) |
|
|
127
|
+
| **@claudeautopm/plugin-pm** | 0 | 87 | Complete PM workflow (epics, tasks, Azure DevOps, GitHub) |
|
|
128
|
+
| **@claudeautopm/plugin-languages** | 5 | 0 | Programming languages (JavaScript, TypeScript, Python, Node.js, Bash) |
|
|
129
|
+
| **@claudeautopm/plugin-frameworks** | 6 | 1 | Web frameworks (React, Vue, Tailwind CSS, UX Design) |
|
|
130
|
+
| **@claudeautopm/plugin-testing** | 2 | 0 | Testing tools (E2E, frontend testing, accessibility) |
|
|
131
|
+
| **@claudeautopm/plugin-devops** | 7 | 0 | DevOps & CI/CD (Docker, GitHub Actions, SSH, observability) |
|
|
132
|
+
| **@claudeautopm/plugin-cloud** | 8 | 0 | Cloud platforms (AWS, Azure, GCP, Kubernetes, Terraform) |
|
|
133
|
+
| **@claudeautopm/plugin-databases** | 5 | 0 | Databases (PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB) |
|
|
134
|
+
| **@claudeautopm/plugin-data** | 3 | 0 | Data pipelines (Airflow, Kedro, message queues) |
|
|
135
|
+
| **@claudeautopm/plugin-ai** | 2 | 0 | AI integration (OpenAI, Gemini) |
|
|
136
|
+
| **@claudeautopm/plugin-ml** | 15 | 0 | Machine Learning (scikit-learn, PyTorch, TensorFlow, MLOps) |
|
|
137
|
+
|
|
138
|
+
**Total Available:** 62+ specialized agents, 91 commands
|
|
139
|
+
|
|
140
|
+
### 📦 Scenario-Based Installation (v2.8.2)
|
|
141
|
+
|
|
142
|
+
**Smart Installation** - Automatically installs plugins based on your development needs:
|
|
49
143
|
|
|
50
|
-
**
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
- 🎯 **84 Tests** - Comprehensive test coverage (45 + 39 tests)
|
|
55
|
-
- ⚡ **Rate Limiting** - Smart rate limiting with exponential backoff
|
|
56
|
-
- 🔀 **Conflict Resolution** - 5 strategies (local, remote, newest, manual, merge)
|
|
144
|
+
- **Minimal (3 plugins)** - Core, Languages, PM - Perfect for learning
|
|
145
|
+
- **Docker-only (6 plugins)** - Adds Frameworks, Testing, DevOps - Modern web development
|
|
146
|
+
- **Full DevOps (9 plugins)** ⭐ - Adds Cloud, Databases, AI - Production-ready (RECOMMENDED)
|
|
147
|
+
- **Performance (11 plugins)** - ALL plugins including Data & ML - Maximum capability
|
|
57
148
|
|
|
58
|
-
|
|
149
|
+
### 🤖 Intelligent Agent System
|
|
150
|
+
|
|
151
|
+
**145+ AI Agents & Commands** organized by domain:
|
|
152
|
+
|
|
153
|
+
- **Core Framework** (4 agents) - agent-manager, code-analyzer, test-runner, file-analyzer
|
|
154
|
+
- **Programming Languages** (5 agents) - JavaScript, TypeScript, Python, Node.js, Bash experts
|
|
155
|
+
- **Web Frameworks** (6 agents) - React, Vue, Tailwind, UX design, E2E testing
|
|
156
|
+
- **DevOps & CI/CD** (7 agents) - Docker, GitHub Actions, Azure DevOps, SSH, observability
|
|
157
|
+
- **Cloud Platforms** (8 agents) - AWS, Azure, GCP, Kubernetes, Terraform specialists
|
|
158
|
+
- **Databases** (5 agents) - PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB
|
|
159
|
+
- **Data Engineering** (3 agents) - Airflow, Kedro, LangGraph, message queues
|
|
160
|
+
- **AI Integration** (2 agents) - OpenAI, Gemini API experts
|
|
161
|
+
- **Machine Learning** (15 agents) - scikit-learn, PyTorch, TensorFlow, MLOps, AutoML
|
|
162
|
+
- **Project Management** (87 commands) - Complete PM workflow suite
|
|
163
|
+
|
|
164
|
+
### 🔄 Complete GitHub Integration
|
|
165
|
+
|
|
166
|
+
**Full Bidirectional GitHub Sync** - Seamless integration with GitHub Issues:
|
|
59
167
|
|
|
60
168
|
```bash
|
|
61
169
|
# Issue Synchronization
|
|
@@ -65,72 +173,18 @@ autopm issue sync <number> --pull # Pull GitHub → local
|
|
|
65
173
|
autopm issue sync-status <number> # Check sync status
|
|
66
174
|
autopm issue sync-resolve <number> # Resolve conflicts
|
|
67
175
|
--strategy newest|local|remote
|
|
68
|
-
|
|
69
|
-
# What Gets Synced:
|
|
70
|
-
# - Issue title, description, status
|
|
71
|
-
# - Labels, assignees, milestones
|
|
72
|
-
# - Comments and updates
|
|
73
|
-
# - Task progress and completion
|
|
74
176
|
```
|
|
75
177
|
|
|
76
178
|
**Features:**
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
- **Real API Testing**: 17 integration tests with actual GitHub API
|
|
83
|
-
|
|
84
|
-
**Conflict Resolution UI:**
|
|
85
|
-
```bash
|
|
86
|
-
⚠️ Sync Conflict Detected!
|
|
87
|
-
|
|
88
|
-
Conflict Details:
|
|
89
|
-
Local newer: false
|
|
90
|
-
Remote newer: true
|
|
91
|
-
|
|
92
|
-
Resolution Options:
|
|
93
|
-
1. Use local: autopm issue sync-resolve 123 --strategy local
|
|
94
|
-
2. Use remote: autopm issue sync-resolve 123 --strategy remote
|
|
95
|
-
3. Use newest: autopm issue sync-resolve 123 --strategy newest
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
**Setup:**
|
|
99
|
-
```bash
|
|
100
|
-
# Configure GitHub credentials
|
|
101
|
-
export GITHUB_TOKEN=ghp_your_personal_access_token
|
|
102
|
-
export GITHUB_OWNER=your_username
|
|
103
|
-
export GITHUB_REPO=your_repository
|
|
104
|
-
|
|
105
|
-
# Verify connection
|
|
106
|
-
node test/integration/test-github-manual.js
|
|
179
|
+
- Smart conflict detection with multiple resolution strategies
|
|
180
|
+
- Sync mapping in `.claude/sync-map.json`
|
|
181
|
+
- Epic support (epics → GitHub issues with checkboxes)
|
|
182
|
+
- Rate limiting with exponential backoff
|
|
183
|
+
- Real API testing with 99% test coverage
|
|
107
184
|
|
|
108
|
-
|
|
109
|
-
autopm issue sync 123
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
**Documentation:**
|
|
113
|
-
- [GitHub Testing Guide](docs/GITHUB-TESTING-GUIDE.md) - Complete setup and testing
|
|
114
|
-
- [Phase 1 Summary](docs/PHASE1-GITHUB-INTEGRATION-SUMMARY.md) - Technical details
|
|
115
|
-
- [Phase 1 Complete](docs/PHASE1-COMPLETE.md) - Implementation summary
|
|
116
|
-
|
|
117
|
-
**What's Next:**
|
|
118
|
-
- Phase 2: Azure DevOps Integration (similar patterns)
|
|
119
|
-
- Webhooks for real-time updates
|
|
120
|
-
- Provider migration tools
|
|
121
|
-
|
|
122
|
-
---
|
|
123
|
-
|
|
124
|
-
### 🎉 **v2.7.0: 100% CLI Implementation Complete!**
|
|
125
|
-
|
|
126
|
-
**All 24 Planned Commands Implemented** - Complete CLI suite for project management
|
|
127
|
-
- ✅ **24/24 Commands** - Full roadmap delivered (Issue, Workflow, Context, Utility)
|
|
128
|
-
- 🎯 **168 Tests** - 91.4% average coverage, 100% function coverage
|
|
129
|
-
- 🎨 **Modern UX** - Progress spinners, color-coded output, intuitive commands
|
|
130
|
-
- ⚡ **TDD Methodology** - Test-driven development throughout
|
|
131
|
-
- 📚 **Context7 Best Practices** - 2025 industry standards applied
|
|
185
|
+
### 📋 Complete CLI Command Suite (v2.7.0)
|
|
132
186
|
|
|
133
|
-
**
|
|
187
|
+
**24 PM Commands** - Full project management workflow:
|
|
134
188
|
|
|
135
189
|
```bash
|
|
136
190
|
# Issue Management (6 commands)
|
|
@@ -162,313 +216,22 @@ autopm pm sync # Sync with provider
|
|
|
162
216
|
autopm pm clean # Clean stale artifacts
|
|
163
217
|
autopm pm search <query> # Search entities (BM25)
|
|
164
218
|
autopm pm import <source> # Import from external sources
|
|
165
|
-
|
|
166
|
-
# PRD Management (legacy)
|
|
167
|
-
autopm prd parse my-prd --ai # AI-powered PRD parsing
|
|
168
|
-
autopm prd extract-epics my-prd # Extract epics from PRD
|
|
169
|
-
autopm prd summarize my-prd # Generate summary
|
|
170
219
|
```
|
|
171
220
|
|
|
172
|
-
|
|
173
|
-
- 4 Service Layers: IssueService, WorkflowService, ContextService, UtilityService
|
|
174
|
-
- Separation of concerns (CLI → Service → Provider)
|
|
175
|
-
- Zero breaking changes to existing functionality
|
|
176
|
-
- Production-ready implementation
|
|
177
|
-
|
|
178
|
-
**Milestone Achievement:**
|
|
179
|
-
- Phase 1 (v2.5.0): Issue Commands - 6 commands, 54 tests
|
|
180
|
-
- Phase 2 (v2.6.0): Workflow Commands - 6 commands, 39 tests
|
|
181
|
-
- Phase 3 (v2.7.0): Context & Utility - 10 commands, 75 tests
|
|
182
|
-
- **Total: 24 commands, 168 tests, 91.4% coverage** 🎉
|
|
183
|
-
|
|
184
|
-
---
|
|
221
|
+
### ⚡ Execution Strategies
|
|
185
222
|
|
|
186
|
-
|
|
223
|
+
**Adaptive by Default** - Choose your execution model:
|
|
187
224
|
|
|
188
|
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
- 📜 **Conflict History** - Complete audit trail with undo/replay
|
|
192
|
-
- 🔍 **Visual Diffs** - Side-by-side ASCII comparisons
|
|
193
|
-
- 🛡️ **Security Hardened** - Path traversal prevention, robust error handling
|
|
225
|
+
- **Sequential** - Safe, one agent at a time (minimal scenario)
|
|
226
|
+
- **Adaptive** - Intelligent mode selection (docker-only, full-devops)
|
|
227
|
+
- **Hybrid** - Maximum parallelization (performance scenario)
|
|
194
228
|
|
|
195
|
-
|
|
196
|
-
# Sync with automatic conflict resolution
|
|
197
|
-
autopm sync:download --conflict newest # Use newest timestamp
|
|
198
|
-
autopm sync:upload --conflict interactive # Manual resolution
|
|
199
|
-
|
|
200
|
-
# Manage conflict history
|
|
201
|
-
autopm conflict:history # View all conflicts
|
|
202
|
-
autopm conflict:undo <id> # Undo resolution
|
|
203
|
-
autopm conflict:replay <id> --strategy local # Replay with different strategy
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
**Performance & Safety** - All targets exceeded ✅
|
|
207
|
-
- Merge 1000 files in 3.2s (target: <5s)
|
|
208
|
-
- Memory efficient: <85MB
|
|
209
|
-
- 42/44 tests passing (95.5%)
|
|
210
|
-
- **Phase 3 Complete**: 4/4 production features delivered
|
|
211
|
-
|
|
212
|
-
---
|
|
213
|
-
|
|
214
|
-
### 🎉 **v1.29.0: Batch Operations, Filtering & Analytics**
|
|
215
|
-
|
|
216
|
-
**Batch Operations** - Sync 1000+ items in seconds
|
|
217
|
-
- ⚡ **Parallel Processing** - 10 concurrent uploads (configurable)
|
|
218
|
-
- 🔄 **Smart Rate Limiting** - Auto-throttle to respect GitHub API limits
|
|
219
|
-
- 📊 **Progress Tracking** - Real-time progress bars
|
|
220
|
-
- 🛡️ **Error Recovery** - Continues on failures with detailed reporting
|
|
221
|
-
|
|
222
|
-
```bash
|
|
223
|
-
autopm sync:batch # Sync all items
|
|
224
|
-
autopm sync:batch --type prd # Sync only PRDs
|
|
225
|
-
autopm sync:batch --dry-run # Preview changes
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
**Advanced Filtering & Search** - Find anything instantly
|
|
229
|
-
- 🔍 **10 Filter Types** - status, priority, epic, dates, author, assignee, search
|
|
230
|
-
- 📝 **Full-Text Search** - Search across all markdown content
|
|
231
|
-
- 📅 **Date Ranges** - Filter by creation/update dates
|
|
232
|
-
- 🎯 **Combined Filters** - AND logic for precise results
|
|
233
|
-
|
|
234
|
-
```bash
|
|
235
|
-
autopm prd:list --status active --priority high
|
|
236
|
-
autopm search "authentication" --type prd,epic,task
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
**Analytics & Insights** - Data-driven project management
|
|
240
|
-
- 📈 **Velocity Tracking** - Tasks/week with trend analysis
|
|
241
|
-
- 📉 **Burndown Charts** - ASCII visualization (ideal vs actual)
|
|
242
|
-
- 👥 **Team Metrics** - Completion rates, average duration
|
|
243
|
-
- 🔗 **Dependency Analysis** - Bottlenecks, critical path, parallelizable tasks
|
|
244
|
-
|
|
245
|
-
```bash
|
|
246
|
-
autopm analytics:epic epic-001 # Full analytics with burndown
|
|
247
|
-
autopm analytics:team --period 30 # Team metrics (30 days)
|
|
248
|
-
autopm analytics:dependencies epic-001 # Find bottlenecks
|
|
249
|
-
autopm analytics:export epic-001 --format csv # Export data
|
|
250
|
-
```
|
|
251
|
-
|
|
252
|
-
**Performance** - All targets exceeded ✅
|
|
253
|
-
- Batch sync: 1000 items in 28.5s
|
|
254
|
-
- Filtering: < 500ms for 1000 items
|
|
255
|
-
- Analytics: 230ms for 1000 tasks
|
|
256
|
-
- **497+ Tests Passing** (99.6% pass rate)
|
|
257
|
-
|
|
258
|
-
---
|
|
259
|
-
|
|
260
|
-
### 🎉 **v1.28.0: Templates & Scaffolding**
|
|
261
|
-
|
|
262
|
-
**PRD Templates (Quick Start)**
|
|
263
|
-
- 📋 **5 Built-in Templates** - api-feature, ui-feature, bug-fix, data-migration, documentation
|
|
264
|
-
- 🚀 **70% Faster** - Create PRDs in 9 minutes instead of 30
|
|
265
|
-
- 🎯 **Context7-Verified** - All templates use 2025 best practices
|
|
266
|
-
|
|
267
|
-
```bash
|
|
268
|
-
autopm prd:new --template api-feature "Payment API"
|
|
269
|
-
autopm template:list
|
|
270
|
-
```
|
|
271
|
-
|
|
272
|
-
---
|
|
273
|
-
|
|
274
|
-
### 🎉 **v1.27.0: Phase 2 Complete!**
|
|
275
|
-
|
|
276
|
-
**GitHub Sync (Bidirectional)**
|
|
277
|
-
- 📤 **Upload to GitHub Issues** - Sync PRDs/Epics/Tasks with smart conflict detection
|
|
278
|
-
- 📥 **Download from GitHub** - Pull Issues back to local files with reverse mapping
|
|
279
|
-
- 🔄 **Bidirectional Mapping** - Maintain consistency with `sync-map.json`
|
|
280
|
-
|
|
281
|
-
**Task Management**
|
|
282
|
-
- ✅ **Complete Task Lifecycle** - List, show, update tasks within epics
|
|
283
|
-
- 🔗 **Dependency Tracking** - Validate task dependencies automatically
|
|
284
|
-
- 📊 **Progress Auto-update** - Epic progress updates on task completion
|
|
285
|
-
|
|
286
|
-
### 🎉 **NEW in v2.1.0: Plugin-PM Published to NPM!**
|
|
287
|
-
|
|
288
|
-
**Complete PM Workflow Plugin** - Now available on npm with 87 PM commands
|
|
289
|
-
- 📦 **@claudeautopm/plugin-pm@2.1.0** - Published and ready to use
|
|
290
|
-
- 🎯 **87 PM Commands** - Epic management, tasks, issues, Azure DevOps integration
|
|
291
|
-
- 📦 **208 KB Compressed** - Fast downloads, 890 KB unpacked
|
|
292
|
-
- ⚡ **Zero Dependencies** - Works standalone or with core framework
|
|
293
|
-
- 🔍 **Auto-Discovery** - Commands discovered automatically via plugin.json
|
|
294
|
-
|
|
295
|
-
**Available on NPM:**
|
|
296
|
-
|
|
297
|
-
```bash
|
|
298
|
-
# Install plugin-pm via npm
|
|
299
|
-
npm install @claudeautopm/plugin-pm@2.1.0
|
|
300
|
-
|
|
301
|
-
# Or install globally
|
|
302
|
-
npm install -g @claudeautopm/plugin-pm
|
|
303
|
-
```
|
|
304
|
-
|
|
305
|
-
**Package Links:**
|
|
306
|
-
- 📦 NPM: [https://www.npmjs.com/package/@claudeautopm/plugin-pm](https://www.npmjs.com/package/@claudeautopm/plugin-pm)
|
|
307
|
-
- 📖 GitHub: [https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-pm](https://github.com/rafeekpro/ClaudeAutoPM/tree/main/packages/plugin-pm)
|
|
308
|
-
|
|
309
|
-
**What's Included:**
|
|
310
|
-
|
|
311
|
-
| Category | Commands | Description |
|
|
312
|
-
|----------|----------|-------------|
|
|
313
|
-
| **PM Commands** | 45 | Epic, issue, PRD, context, workflow management |
|
|
314
|
-
| **Azure DevOps** | 41 | Feature, task, user story, work item management |
|
|
315
|
-
| **GitHub** | 1 | Workflow creation and automation |
|
|
316
|
-
| **Total** | **87** | Complete PM workflow suite |
|
|
317
|
-
|
|
318
|
-
**Quick Start:**
|
|
319
|
-
|
|
320
|
-
```bash
|
|
321
|
-
# Install from npm
|
|
322
|
-
npm install @claudeautopm/plugin-pm@2.1.0
|
|
323
|
-
|
|
324
|
-
# Commands auto-discovered via plugin.json
|
|
325
|
-
# Use with ClaudeAutoPM CLI:
|
|
326
|
-
/pm:epic-decompose my-epic
|
|
327
|
-
/pm:task-sync
|
|
328
|
-
/azure:feature-new
|
|
329
|
-
/github:workflow-create
|
|
330
|
-
```
|
|
331
|
-
|
|
332
|
-
**Features:**
|
|
333
|
-
- Epic Management: Decompose, start, close, sync, split, merge
|
|
334
|
-
- Task Management: Create, update, sync, analyze
|
|
335
|
-
- Issue Management: Analyze, start, close, sync, edit
|
|
336
|
-
- Azure DevOps: Full integration with work items and sprints
|
|
337
|
-
- GitHub: Workflow automation
|
|
338
|
-
- PRD Management: Parse, status, create, edit
|
|
339
|
-
|
|
340
|
-
### 🎉 **v2.8.1: Plugin Architecture!**
|
|
341
|
-
|
|
342
|
-
**Modular Agent System** - Agents organized into installable plugins
|
|
343
|
-
- 📦 **7 Official Plugins** - 35 specialized agents in thematic packages
|
|
344
|
-
- 🔌 **npm Workspaces** - Monorepo architecture with scoped packages
|
|
345
|
-
- 🏗️ **Context7-Driven** - Built on best practices from unplugin & npm
|
|
346
|
-
- ⚡ **Install on Demand** - Only load the agents you need
|
|
347
|
-
- 🔍 **Smart Discovery** - Automatic plugin detection and validation
|
|
348
|
-
|
|
349
|
-
**Available Plugins:**
|
|
350
|
-
|
|
351
|
-
| Plugin | Status | Description |
|
|
352
|
-
|--------|--------|-------------|
|
|
353
|
-
| **@claudeautopm/plugin-pm** | ✅ **Published** | 87 PM commands (epics, tasks, Azure, GitHub) |
|
|
354
|
-
| **@claudeautopm/plugin-cloud** | 📦 Coming Soon | AWS, Azure, GCP, Terraform, Kubernetes |
|
|
355
|
-
| **@claudeautopm/plugin-devops** | 📦 Coming Soon | Docker, GitHub Actions, Azure DevOps, SSH |
|
|
356
|
-
| **@claudeautopm/plugin-frameworks** | 📦 Coming Soon | React, Vue, Tailwind CSS, UX Design |
|
|
357
|
-
| **@claudeautopm/plugin-databases** | 📦 Coming Soon | PostgreSQL, MongoDB, Redis, BigQuery |
|
|
358
|
-
| **@claudeautopm/plugin-languages** | 📦 Coming Soon | JavaScript, TypeScript, Python, Node.js, Bash |
|
|
359
|
-
| **@claudeautopm/plugin-data** | 📦 Coming Soon | Airflow, Kedro, LangGraph workflows |
|
|
360
|
-
| **@claudeautopm/plugin-testing** | 📦 Coming Soon | Frontend testing, E2E, accessibility |
|
|
361
|
-
|
|
362
|
-
**Quick Start:**
|
|
363
|
-
|
|
364
|
-
```bash
|
|
365
|
-
# Install published plugin
|
|
366
|
-
npm install @claudeautopm/plugin-pm
|
|
367
|
-
|
|
368
|
-
# Coming soon: Install other plugins
|
|
369
|
-
# npm install @claudeautopm/plugin-cloud
|
|
370
|
-
# npm install @claudeautopm/plugin-devops
|
|
371
|
-
|
|
372
|
-
# List available plugins
|
|
373
|
-
autopm plugin list
|
|
374
|
-
|
|
375
|
-
# Search for specific agents
|
|
376
|
-
autopm plugin search epic
|
|
377
|
-
|
|
378
|
-
# Get plugin info
|
|
379
|
-
autopm plugin info pm
|
|
380
|
-
```
|
|
381
|
-
|
|
382
|
-
**Architecture:**
|
|
383
|
-
- **PluginManager** - Context7-verified plugin system (unplugin patterns)
|
|
384
|
-
- **Factory Pattern** - Dynamic plugin instantiation
|
|
385
|
-
- **Event-Driven** - Hook system for extensibility
|
|
386
|
-
- **Version Compatibility** - Peer dependency validation (semver)
|
|
387
|
-
- **Persistent Registry** - Track installed/enabled state
|
|
388
|
-
|
|
389
|
-
📖 **[Plugin Architecture Guide](docs/PLUGIN-ARCHITECTURE.md)** - Complete documentation
|
|
390
|
-
|
|
391
|
-
### 🤖 **35 Specialized AI Agents** (Now in Plugins!)
|
|
392
|
-
|
|
393
|
-
Previously monolithic, now organized into installable plugins:
|
|
394
|
-
|
|
395
|
-
- **Core Agents** (4): agent-manager, code-analyzer, file-analyzer, test-runner
|
|
396
|
-
- **Cloud & Infrastructure** (8): AWS, Azure, GCP, Kubernetes, Terraform specialists
|
|
397
|
-
- **DevOps & CI/CD** (7): Docker, GitHub Actions, Azure DevOps, SSH, observability
|
|
398
|
-
- **Frontend & Frameworks** (6): React, Vue, Tailwind, UX design, E2E testing
|
|
399
|
-
- **Databases** (5): PostgreSQL, MongoDB, Redis, BigQuery, Cosmos DB
|
|
400
|
-
- **Programming Languages** (5): JavaScript, TypeScript, Python, Node.js, Bash
|
|
401
|
-
- **Data Engineering** (3): Airflow, Kedro, LangGraph workflow orchestration
|
|
402
|
-
|
|
403
|
-
**Migration:** Existing projects continue to work. New projects can use plugins for modular installation.
|
|
404
|
-
|
|
405
|
-
### 🔄 **Hybrid Execution Model**
|
|
406
|
-
|
|
407
|
-
ClaudeAutoPM provides two distinct interfaces optimized for different operations:
|
|
408
|
-
|
|
409
|
-
#### 🔧 CLI (`autopm`) - Non-AI Utilities
|
|
410
|
-
Fast, deterministic operations that don't require AI:
|
|
411
|
-
```bash
|
|
412
|
-
autopm install # Framework installation
|
|
413
|
-
autopm config set provider github # Configuration management
|
|
414
|
-
autopm team load fullstack # Load agent teams
|
|
415
|
-
autopm mcp enable context7 # Manage MCP servers
|
|
416
|
-
autopm epic status auth # View epic progress (read-only)
|
|
417
|
-
```
|
|
418
|
-
|
|
419
|
-
**When to use:** Setup, configuration, read-only utilities, CI/CD scripts
|
|
420
|
-
|
|
421
|
-
#### 🤖 Claude Code (`/pm:*`) - AI-Powered Operations
|
|
422
|
-
Intelligent operations leveraging Claude's AI:
|
|
423
|
-
```bash
|
|
424
|
-
/pm:prd-new user-auth # Create PRD with AI assistance
|
|
425
|
-
/pm:epic-decompose user-auth # Intelligent task breakdown
|
|
426
|
-
/pm:next # Smart task prioritization
|
|
427
|
-
/pm:standup # Generate progress summary
|
|
428
|
-
/pm:what-next # AI suggests next actions
|
|
429
|
-
```
|
|
430
|
-
|
|
431
|
-
**When to use:** Creation, modification, intelligent analysis, development workflow
|
|
432
|
-
|
|
433
|
-
📖 **[Full CLI vs Claude Code Guide](docs/CLI-vs-CLAUDE-CODE.md)**
|
|
434
|
-
|
|
435
|
-
### 🎭 **Dynamic Team Management**
|
|
436
|
-
|
|
437
|
-
Switch agent teams based on your current work:
|
|
438
|
-
|
|
439
|
-
```bash
|
|
440
|
-
autopm team load frontend # React, UI, testing agents
|
|
441
|
-
autopm team load backend # Python, Node.js, database agents
|
|
442
|
-
autopm team load fullstack # Complete development stack
|
|
443
|
-
autopm team load devops # Docker, Kubernetes, CI/CD agents
|
|
444
|
-
```
|
|
445
|
-
|
|
446
|
-
Teams automatically activate the right agents for your context.
|
|
447
|
-
|
|
448
|
-
### 🔌 **MCP (Model Context Protocol) Integration**
|
|
449
|
-
|
|
450
|
-
Access up-to-date documentation and tools:
|
|
451
|
-
|
|
452
|
-
```bash
|
|
453
|
-
autopm mcp enable context7 # Documentation for all frameworks
|
|
454
|
-
autopm mcp enable playwright # Browser automation
|
|
455
|
-
autopm mcp diagnose # Health check all MCP servers
|
|
456
|
-
```
|
|
457
|
-
|
|
458
|
-
### 📊 **Multi-Provider Support**
|
|
229
|
+
### 📊 Multi-Provider Support
|
|
459
230
|
|
|
460
231
|
Seamlessly work with:
|
|
461
|
-
- **GitHub
|
|
462
|
-
- **Azure DevOps
|
|
463
|
-
- **Local
|
|
464
|
-
|
|
465
|
-
### ⚡ **Parallel Execution Strategies**
|
|
466
|
-
|
|
467
|
-
Choose your execution model:
|
|
468
|
-
|
|
469
|
-
- **Sequential**: Safe, one agent at a time
|
|
470
|
-
- **Adaptive**: Intelligent mode selection (recommended)
|
|
471
|
-
- **Hybrid**: Maximum parallelization for power users
|
|
232
|
+
- **GitHub** - Issues, PRs, Actions, Projects
|
|
233
|
+
- **Azure DevOps** - Work Items, Boards, Pipelines, Repos
|
|
234
|
+
- **Local** - Git-based workflow without remote provider
|
|
472
235
|
|
|
473
236
|
---
|
|
474
237
|
|
|
@@ -491,29 +254,57 @@ autopm --version
|
|
|
491
254
|
cd your-project
|
|
492
255
|
autopm install
|
|
493
256
|
|
|
494
|
-
# 2. Choose your
|
|
495
|
-
#
|
|
496
|
-
# -
|
|
497
|
-
# -
|
|
498
|
-
#
|
|
499
|
-
# -
|
|
257
|
+
# 2. Choose your scenario (interactive menu)
|
|
258
|
+
# → Minimal (3 plugins) - Learning
|
|
259
|
+
# → Docker-only (6 plugins) - Modern web
|
|
260
|
+
# → Full DevOps (9 plugins) - Production ⭐ RECOMMENDED
|
|
261
|
+
# → Performance (11 plugins) - Data/ML workflows
|
|
262
|
+
# → Custom - Advanced configuration
|
|
263
|
+
|
|
264
|
+
# 3. Plugins install automatically based on scenario
|
|
265
|
+
# System installs all agents, commands, rules for your scenario
|
|
500
266
|
|
|
501
|
-
#
|
|
267
|
+
# 4. Configure your provider (optional)
|
|
502
268
|
autopm config set provider github
|
|
503
269
|
autopm config set github.owner YOUR_USERNAME
|
|
504
270
|
autopm config set github.repo YOUR_REPO
|
|
505
271
|
export GITHUB_TOKEN=your_github_token
|
|
506
272
|
|
|
507
|
-
# 4. Load your team
|
|
508
|
-
autopm team load fullstack
|
|
509
|
-
|
|
510
273
|
# 5. Open Claude Code
|
|
511
274
|
claude --dangerously-skip-permissions .
|
|
512
275
|
```
|
|
513
276
|
|
|
277
|
+
### What You Get After Installation
|
|
278
|
+
|
|
279
|
+
**Configuration File** (`.claude/config.json`):
|
|
280
|
+
```json
|
|
281
|
+
{
|
|
282
|
+
"version": "2.8.2",
|
|
283
|
+
"execution_strategy": "adaptive",
|
|
284
|
+
"plugins": ["plugin-core", "plugin-languages", ...],
|
|
285
|
+
"installedPlugins": [
|
|
286
|
+
{
|
|
287
|
+
"name": "plugin-core",
|
|
288
|
+
"agents": 4,
|
|
289
|
+
"commands": 3,
|
|
290
|
+
"rules": 17
|
|
291
|
+
}
|
|
292
|
+
// ... details for all installed plugins
|
|
293
|
+
]
|
|
294
|
+
}
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
**Installed Resources**:
|
|
298
|
+
- `.claude/agents/` - All agents from installed plugins
|
|
299
|
+
- `.claude/commands/` - All commands from installed plugins
|
|
300
|
+
- `.claude/rules/` - Framework rules and guidelines
|
|
301
|
+
- `.claude/hooks/` - Enforcement hooks (TDD, Context7)
|
|
302
|
+
- `.claude/scripts/` - Utility scripts
|
|
303
|
+
|
|
514
304
|
### Your First Workflow
|
|
515
305
|
|
|
516
|
-
**Option A: Using
|
|
306
|
+
**Option A: Using CLI Commands (v2.7.0+)**
|
|
307
|
+
|
|
517
308
|
```bash
|
|
518
309
|
# 1. Initialize project structure
|
|
519
310
|
autopm pm init
|
|
@@ -542,6 +333,7 @@ autopm pm sync
|
|
|
542
333
|
```
|
|
543
334
|
|
|
544
335
|
**Option B: Classic Claude Code Workflow**
|
|
336
|
+
|
|
545
337
|
```bash
|
|
546
338
|
# 1. Create a PRD (in Claude Code)
|
|
547
339
|
/pm:prd-new "Build user authentication system"
|
|
@@ -561,284 +353,218 @@ autopm pm sync
|
|
|
561
353
|
|
|
562
354
|
---
|
|
563
355
|
|
|
564
|
-
## 📚 Documentation
|
|
565
|
-
|
|
566
|
-
### Getting Started
|
|
567
|
-
- [Installation Guide](docs/getting-started/installation.md)
|
|
568
|
-
- [Quick Start Tutorial](docs/getting-started/quick-start.md)
|
|
569
|
-
- [Your First Project](docs/getting-started/first-project.md)
|
|
570
|
-
|
|
571
|
-
### Core Concepts
|
|
572
|
-
- [Architecture Overview](docs/core-concepts/architecture.md)
|
|
573
|
-
- [CLI vs Claude Code](docs/CLI-vs-CLAUDE-CODE.md) ⭐ **Essential reading**
|
|
574
|
-
- [Hybrid Execution](docs/core-concepts/hybrid-execution.md)
|
|
575
|
-
- [Agent System](docs/core-concepts/agent-system.md)
|
|
576
|
-
- [Team Management](docs/core-concepts/team-management.md)
|
|
577
|
-
|
|
578
|
-
### Workflows
|
|
579
|
-
- [PRD to Production](docs/workflows/prd-to-production.md)
|
|
580
|
-
- [Epic Management](docs/workflows/epic-management.md)
|
|
581
|
-
- [Development Cycle](docs/workflows/development-cycle.md)
|
|
582
|
-
|
|
583
|
-
### Reference
|
|
584
|
-
- [CLI Commands](docs/cli-reference/overview.md)
|
|
585
|
-
- [Agent Registry](docs/agents/registry.md)
|
|
586
|
-
- [Configuration](docs/cli-reference/config.md)
|
|
587
|
-
|
|
588
|
-
---
|
|
589
|
-
|
|
590
|
-
## 🎬 See It In Action
|
|
591
|
-
|
|
592
|
-
### Video Walkthroughs
|
|
593
|
-
|
|
594
|
-
<details>
|
|
595
|
-
<summary><b>1️⃣ Installation & Setup</b> - Complete installation process</summary>
|
|
596
|
-
<br>
|
|
597
|
-
<img src="docs/assets/video-1.gif" width="100%" alt="Install AutoPM">
|
|
598
|
-
</details>
|
|
599
|
-
|
|
600
|
-
<details>
|
|
601
|
-
<summary><b>2️⃣ First Claude Execution</b> - Setting up and running Claude Code</summary>
|
|
602
|
-
<br>
|
|
603
|
-
<img src="docs/assets/video-2.gif" width="100%" alt="First Claude Execution">
|
|
604
|
-
</details>
|
|
605
|
-
|
|
606
|
-
<details>
|
|
607
|
-
<summary><b>3️⃣ PRD Creation</b> - Product Requirements workflow</summary>
|
|
608
|
-
<br>
|
|
609
|
-
<img src="docs/assets/video-3.gif" width="100%" alt="Create PRD">
|
|
610
|
-
</details>
|
|
611
|
-
|
|
612
|
-
<details>
|
|
613
|
-
<summary><b>4️⃣ GitHub Sync</b> - Synchronizing and starting work</summary>
|
|
614
|
-
<br>
|
|
615
|
-
<img src="docs/assets/video-4.gif" width="100%" alt="GitHub Sync">
|
|
616
|
-
</details>
|
|
617
|
-
|
|
618
|
-
<details>
|
|
619
|
-
<summary><b>5️⃣ Task Completion</b> - Finishing and closing tasks</summary>
|
|
620
|
-
<br>
|
|
621
|
-
<img src="docs/assets/video-5.gif" width="100%" alt="Issues Complete">
|
|
622
|
-
</details>
|
|
623
|
-
|
|
624
|
-
<details>
|
|
625
|
-
<summary><b>6️⃣ Demo Application</b> - Running Web App + FastAPI</summary>
|
|
626
|
-
<br>
|
|
627
|
-
<img src="docs/assets/video-6.gif" width="100%" alt="Web App and FastAPI">
|
|
628
|
-
</details>
|
|
629
|
-
|
|
630
|
-
---
|
|
631
|
-
|
|
632
356
|
## 🏗️ Architecture
|
|
633
357
|
|
|
358
|
+
### Plugin-Based Architecture (v2.8.2)
|
|
359
|
+
|
|
634
360
|
```
|
|
635
361
|
┌─────────────────────────────────────────────────────────────┐
|
|
636
|
-
│ ClaudeAutoPM
|
|
362
|
+
│ ClaudeAutoPM v2.8.2 │
|
|
637
363
|
├─────────────────────────────────────────────────────────────┤
|
|
638
364
|
│ │
|
|
639
|
-
│
|
|
640
|
-
│ │
|
|
641
|
-
│ │
|
|
642
|
-
│
|
|
643
|
-
│
|
|
644
|
-
│
|
|
645
|
-
│
|
|
646
|
-
│
|
|
647
|
-
│ │
|
|
648
|
-
│ │
|
|
649
|
-
│ │
|
|
650
|
-
│ │
|
|
651
|
-
│ │ -
|
|
652
|
-
│
|
|
653
|
-
│
|
|
654
|
-
│
|
|
655
|
-
│ │
|
|
656
|
-
│ │
|
|
657
|
-
│ │ -
|
|
658
|
-
│ │
|
|
659
|
-
│
|
|
365
|
+
│ ┌─────────────────────────────────────────────────────┐ │
|
|
366
|
+
│ │ Scenario-Based Installer │ │
|
|
367
|
+
│ │ • Minimal (3 plugins) │ │
|
|
368
|
+
│ │ • Docker-only (6 plugins) │ │
|
|
369
|
+
│ │ • Full DevOps (9 plugins) ⭐ │ │
|
|
370
|
+
│ │ • Performance (11 plugins) │ │
|
|
371
|
+
│ └────────────────────┬────────────────────────────────┘ │
|
|
372
|
+
│ │ │
|
|
373
|
+
│ ┌────────────────────┴────────────────────────────────┐ │
|
|
374
|
+
│ │ Plugin System (11 plugins) │ │
|
|
375
|
+
│ │ • Core Framework (agents, commands, rules) │ │
|
|
376
|
+
│ │ • Domain Plugins (specialized agents) │ │
|
|
377
|
+
│ │ • Auto-discovery & installation │ │
|
|
378
|
+
│ └────────────────────┬────────────────────────────────┘ │
|
|
379
|
+
│ │ │
|
|
380
|
+
│ ┌────────────────────┴────────────────────────────────┐ │
|
|
381
|
+
│ │ Agent Teams (145+ agents/commands) │ │
|
|
382
|
+
│ │ • Dynamic team loading │ │
|
|
383
|
+
│ │ • Context7-driven documentation │ │
|
|
384
|
+
│ │ • Parallel execution support │ │
|
|
385
|
+
│ └────────────────────┬────────────────────────────────┘ │
|
|
386
|
+
│ │ │
|
|
387
|
+
│ ┌────────────────────┴────────────────────────────────┐ │
|
|
388
|
+
│ │ Execution Engine │ │
|
|
389
|
+
│ │ • Sequential / Adaptive / Hybrid │ │
|
|
390
|
+
│ │ • Parallel agent coordination │ │
|
|
391
|
+
│ │ • Context optimization │ │
|
|
392
|
+
│ └────────────────────┬────────────────────────────────┘ │
|
|
393
|
+
│ │ │
|
|
394
|
+
│ ┌────────────────────┴────────────────────────────────┐ │
|
|
395
|
+
│ │ Provider Integration │ │
|
|
396
|
+
│ │ • GitHub (Issues, PRs, Actions) │ │
|
|
397
|
+
│ │ • Azure DevOps (Work Items, Boards) │ │
|
|
398
|
+
│ │ • Local (Git-based) │ │
|
|
399
|
+
│ └─────────────────────────────────────────────────────┘ │
|
|
660
400
|
│ │
|
|
661
401
|
└─────────────────────────────────────────────────────────────┘
|
|
662
402
|
```
|
|
663
403
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
## 🛠️ Use Cases
|
|
667
|
-
|
|
668
|
-
### For Solo Developers
|
|
669
|
-
- 🚀 Build MVPs faster with AI pair programming
|
|
670
|
-
- 📝 Maintain clear project documentation
|
|
671
|
-
- ⚡ Automate repetitive development tasks
|
|
672
|
-
- 🔄 Keep GitHub/Azure in sync automatically
|
|
673
|
-
|
|
674
|
-
### For Development Teams
|
|
675
|
-
- 👥 Coordinate multiple AI agents like a team
|
|
676
|
-
- 📊 Track progress across epics and sprints
|
|
677
|
-
- 🔀 Parallel development on independent tasks
|
|
678
|
-
- 📈 Maintain velocity with automated workflows
|
|
679
|
-
|
|
680
|
-
### For DevOps Engineers
|
|
681
|
-
- 🐳 Docker-first development patterns
|
|
682
|
-
- ☸️ Kubernetes deployment automation
|
|
683
|
-
- 🔧 Infrastructure as Code with Terraform
|
|
684
|
-
- 📦 CI/CD pipeline generation
|
|
404
|
+
### Installation Flow
|
|
685
405
|
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
406
|
+
```
|
|
407
|
+
User runs: autopm install
|
|
408
|
+
↓
|
|
409
|
+
Choose Scenario (1-4)
|
|
410
|
+
↓
|
|
411
|
+
System determines plugin list
|
|
412
|
+
↓
|
|
413
|
+
For each plugin:
|
|
414
|
+
├─ Copy agents → .claude/agents/<category>/
|
|
415
|
+
├─ Copy commands → .claude/commands/
|
|
416
|
+
├─ Copy rules → .claude/rules/
|
|
417
|
+
├─ Copy hooks → .claude/hooks/
|
|
418
|
+
└─ Copy scripts → scripts/
|
|
419
|
+
↓
|
|
420
|
+
Create .claude/config.json
|
|
421
|
+
├─ List installed plugins
|
|
422
|
+
├─ Record installation details
|
|
423
|
+
└─ Save execution strategy
|
|
424
|
+
↓
|
|
425
|
+
✅ Installation Complete!
|
|
426
|
+
```
|
|
695
427
|
|
|
696
|
-
###
|
|
697
|
-
- ✅ **Full workflow**: Not just code generation
|
|
698
|
-
- ✅ **Multi-agent**: 39 specialized agents, not one generic
|
|
699
|
-
- ✅ **Team coordination**: Dynamic team switching
|
|
700
|
-
- ✅ **Enterprise-ready**: GitHub & Azure DevOps integration
|
|
428
|
+
### Plugin Discovery
|
|
701
429
|
|
|
702
|
-
|
|
430
|
+
**Installation Time** (v2.8.2):
|
|
431
|
+
- Direct file system access to `packages/` directory
|
|
432
|
+
- Reads `plugin.json` metadata
|
|
433
|
+
- Copies resources to `.claude/` directories
|
|
434
|
+
- No npm packages required
|
|
703
435
|
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
-
|
|
708
|
-
- Issue Management (6): show, start, close, status, edit, sync
|
|
709
|
-
- Workflow (6): next, what-next, standup, status, in-progress, blocked
|
|
710
|
-
- Context (4): create, prime, update, show
|
|
711
|
-
- Utilities (6): init, validate, sync, clean, search, import
|
|
712
|
-
- **PRD & Epic**: PRD parsing, epic decomposition, task management
|
|
713
|
-
- **Development**: Scaffolding, testing, deployment
|
|
714
|
-
- **Configuration**: Provider setup, team management, MCP servers
|
|
715
|
-
- **DevOps**: Docker, Kubernetes, CI/CD automation
|
|
716
|
-
|
|
717
|
-
### AI Agents (39 active)
|
|
718
|
-
- **Core**: 7 system agents
|
|
719
|
-
- **Languages**: 6 language agents
|
|
720
|
-
- **Frameworks**: 8 framework agents
|
|
721
|
-
- **Cloud**: 7 cloud & infrastructure agents
|
|
722
|
-
- **DevOps**: 6 DevOps & CI/CD agents
|
|
723
|
-
- **Data**: 5 database agents
|
|
724
|
-
|
|
725
|
-
### Documentation
|
|
726
|
-
- Installation guides
|
|
727
|
-
- Complete workflow tutorials
|
|
728
|
-
- CLI reference
|
|
729
|
-
- Agent documentation
|
|
730
|
-
- Integration guides
|
|
436
|
+
**Runtime** (future versions):
|
|
437
|
+
- PluginManager discovers plugins in `node_modules/@claudeautopm/`
|
|
438
|
+
- Supports lazy loading and hot reloading
|
|
439
|
+
- Dynamic plugin enable/disable
|
|
731
440
|
|
|
732
441
|
---
|
|
733
442
|
|
|
734
|
-
##
|
|
443
|
+
## 📚 Documentation
|
|
735
444
|
|
|
736
|
-
###
|
|
445
|
+
### Getting Started
|
|
446
|
+
- [Installation Guide](docs/getting-started/installation.md) - Detailed installation instructions
|
|
447
|
+
- [Scenario Selection Guide](docs/getting-started/scenarios.md) - Choose the right scenario
|
|
448
|
+
- [Quick Start Tutorial](docs/getting-started/quick-start.md) - First steps
|
|
449
|
+
- [Your First Project](docs/getting-started/first-project.md) - Complete walkthrough
|
|
737
450
|
|
|
738
|
-
|
|
451
|
+
### Core Concepts
|
|
452
|
+
- [Plugin Architecture](docs/core-concepts/plugin-architecture.md) - How plugins work
|
|
453
|
+
- [Agent System](docs/core-concepts/agent-system.md) - Understanding agents
|
|
454
|
+
- [Execution Strategies](docs/core-concepts/execution-strategies.md) - Sequential vs Adaptive vs Hybrid
|
|
455
|
+
- [CLI vs Claude Code](docs/CLI-vs-CLAUDE-CODE.md) ⭐ **Essential reading**
|
|
739
456
|
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
457
|
+
### Plugin Guides
|
|
458
|
+
- [Plugin System Overview](docs/plugins/overview.md) - Complete plugin documentation
|
|
459
|
+
- [Core Framework Plugin](docs/plugins/core.md) - Framework essentials
|
|
460
|
+
- [PM Plugin](docs/plugins/pm.md) - Project management commands
|
|
461
|
+
- [Cloud Plugins](docs/plugins/cloud.md) - AWS, Azure, GCP
|
|
462
|
+
- [Data & ML Plugins](docs/plugins/data-ml.md) - Data pipelines and ML workflows
|
|
743
463
|
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
```
|
|
464
|
+
### Workflows
|
|
465
|
+
- [PRD to Production](docs/workflows/prd-to-production.md) - Complete development cycle
|
|
466
|
+
- [Epic Management](docs/workflows/epic-management.md) - Managing epics and tasks
|
|
467
|
+
- [GitHub Integration](docs/workflows/github-integration.md) - Sync with GitHub
|
|
749
468
|
|
|
750
|
-
|
|
751
|
-
-
|
|
752
|
-
-
|
|
753
|
-
-
|
|
754
|
-
-
|
|
755
|
-
- Updates all cross-references automatically
|
|
469
|
+
### Reference
|
|
470
|
+
- [CLI Commands](docs/cli-reference/overview.md) - Complete command reference
|
|
471
|
+
- [Agent Registry](docs/agents/registry.md) - All available agents
|
|
472
|
+
- [Configuration](docs/cli-reference/config.md) - Configuration options
|
|
473
|
+
- [Migration Guide](docs/migration/v2.8-upgrade.md) - Upgrading from older versions
|
|
756
474
|
|
|
757
|
-
|
|
475
|
+
---
|
|
758
476
|
|
|
759
|
-
|
|
477
|
+
## 🛠️ Use Cases
|
|
760
478
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
479
|
+
### For Solo Developers
|
|
480
|
+
- 🚀 **Quick Setup** - Minimal scenario gets you started in 5 minutes
|
|
481
|
+
- 📝 **Organized Projects** - Clear structure with PRDs, epics, and tasks
|
|
482
|
+
- ⚡ **Progressive Enhancement** - Start minimal, add plugins as needed
|
|
483
|
+
- 🔄 **GitHub Integration** - Keep issues in sync automatically
|
|
764
484
|
|
|
765
|
-
|
|
766
|
-
|
|
485
|
+
### For Development Teams
|
|
486
|
+
- 👥 **Team Coordination** - Dynamic agent teams for different roles
|
|
487
|
+
- 📊 **Progress Tracking** - Track progress across epics and sprints
|
|
488
|
+
- 🔀 **Parallel Development** - Multiple agents work simultaneously
|
|
489
|
+
- 📈 **Velocity Metrics** - Maintain velocity with automated workflows
|
|
767
490
|
|
|
768
|
-
|
|
769
|
-
|
|
491
|
+
### For DevOps Engineers
|
|
492
|
+
- 🐳 **Full DevOps Scenario** - Docker, Kubernetes, cloud platforms
|
|
493
|
+
- ☸️ **Infrastructure as Code** - Terraform, CloudFormation, ARM templates
|
|
494
|
+
- 🔧 **CI/CD Integration** - GitHub Actions, Azure Pipelines
|
|
495
|
+
- 📦 **Multi-Cloud Support** - AWS, Azure, GCP specialists
|
|
770
496
|
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
497
|
+
### For Data Engineers
|
|
498
|
+
- 📊 **Performance Scenario** - All data and ML capabilities
|
|
499
|
+
- 🔄 **Pipeline Orchestration** - Airflow, Kedro, LangGraph
|
|
500
|
+
- 💾 **Data Storage** - PostgreSQL, MongoDB, BigQuery
|
|
501
|
+
- 🤖 **ML Workflows** - scikit-learn, PyTorch, TensorFlow, MLOps
|
|
775
502
|
|
|
776
|
-
|
|
777
|
-
- Gathers updates from multiple sources (progress, notes, commits)
|
|
778
|
-
- Formats professional GitHub comments
|
|
779
|
-
- Posts updates to issues
|
|
780
|
-
- Updates frontmatter with sync timestamps
|
|
781
|
-
- Preflight validation (auth, issue exists, etc.)
|
|
782
|
-
- Supports completion workflow
|
|
503
|
+
---
|
|
783
504
|
|
|
784
|
-
|
|
785
|
-
- Progress updates and completion %
|
|
786
|
-
- Technical notes and decisions
|
|
787
|
-
- Recent commits (auto-detected or manual)
|
|
788
|
-
- Acceptance criteria updates
|
|
789
|
-
- Next steps and blockers
|
|
505
|
+
## 🌟 Why ClaudeAutoPM?
|
|
790
506
|
|
|
791
|
-
###
|
|
507
|
+
### vs Traditional PM Tools
|
|
508
|
+
- ✅ **AI-native** - Built for Claude Code, not adapted
|
|
509
|
+
- ✅ **Modular** - Install only what you need
|
|
510
|
+
- ✅ **Code-first** - PRDs → Code → Production
|
|
511
|
+
- ✅ **Scenario-based** - Automatic plugin installation
|
|
792
512
|
|
|
793
|
-
|
|
513
|
+
### vs Other AI Tools
|
|
514
|
+
- ✅ **Full workflow** - Not just code generation
|
|
515
|
+
- ✅ **Multi-agent** - 145+ specialized agents, not one generic
|
|
516
|
+
- ✅ **Plugin architecture** - Mix and match capabilities
|
|
517
|
+
- ✅ **Enterprise-ready** - GitHub & Azure DevOps integration
|
|
794
518
|
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
519
|
+
### vs Building Your Own
|
|
520
|
+
- ✅ **Proven patterns** - 2+ years of refinement
|
|
521
|
+
- ✅ **TDD-developed** - 64+ tests with comprehensive coverage
|
|
522
|
+
- ✅ **Active development** - Regular updates and improvements
|
|
523
|
+
- ✅ **Community support** - Growing ecosystem and documentation
|
|
798
524
|
|
|
799
|
-
|
|
800
|
-
node .claude/lib/commands/pm/epicStatus.js
|
|
801
|
-
```
|
|
525
|
+
---
|
|
802
526
|
|
|
803
|
-
|
|
804
|
-
- Counts tasks by status (completed/in-progress/pending)
|
|
805
|
-
- Calculates progress percentage
|
|
806
|
-
- Visual progress bar
|
|
807
|
-
- Sub-epic breakdown
|
|
808
|
-
- Comprehensive status reporting
|
|
527
|
+
## 📊 Project Stats
|
|
809
528
|
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
529
|
+
### Plugin System
|
|
530
|
+
- **11+ plugins** - Modular architecture
|
|
531
|
+
- **62+ agents** - Specialized AI experts
|
|
532
|
+
- **91 commands** - Complete PM workflow
|
|
533
|
+
- **4 scenarios** - From minimal to full DevOps
|
|
814
534
|
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
535
|
+
### Quality Metrics
|
|
536
|
+
- **64+ tests** - Comprehensive test coverage
|
|
537
|
+
- **TDD methodology** - Test-driven development
|
|
538
|
+
- **Context7 integration** - Up-to-date documentation
|
|
539
|
+
- **Production-ready** - Used in real projects
|
|
819
540
|
|
|
820
|
-
|
|
541
|
+
### Development Activity
|
|
542
|
+
- **Active maintenance** - Regular updates
|
|
543
|
+
- **npm published** - Easy global installation
|
|
544
|
+
- **GitHub integration** - Full bidirectional sync
|
|
545
|
+
- **Azure DevOps support** - Complete work item management
|
|
821
546
|
|
|
822
|
-
|
|
823
|
-
-------------------
|
|
824
|
-
backend 6 tasks (4 completed)
|
|
825
|
-
frontend 4 tasks (3 completed)
|
|
826
|
-
infrastructure 2 tasks (1 completed)
|
|
827
|
-
```
|
|
547
|
+
---
|
|
828
548
|
|
|
829
|
-
|
|
549
|
+
## 🔄 Execution Strategies
|
|
830
550
|
|
|
831
|
-
|
|
551
|
+
### Sequential (Minimal Scenario)
|
|
552
|
+
- **Safety First** - One agent at a time
|
|
553
|
+
- **Predictable** - Easy to debug
|
|
554
|
+
- **Resource Light** - Minimal system resources
|
|
555
|
+
- **Best For** - Learning, debugging, simple projects
|
|
832
556
|
|
|
833
|
-
|
|
834
|
-
-
|
|
835
|
-
-
|
|
836
|
-
-
|
|
837
|
-
-
|
|
838
|
-
- 💾 Better error handling
|
|
839
|
-
- 🔍 Easier debugging
|
|
557
|
+
### Adaptive (Docker-only & Full DevOps)
|
|
558
|
+
- **Intelligent** - Automatic mode selection
|
|
559
|
+
- **Balanced** - Performance + safety
|
|
560
|
+
- **Context-Aware** - Adapts to task complexity
|
|
561
|
+
- **Best For** - Most production projects ⭐ RECOMMENDED
|
|
840
562
|
|
|
841
|
-
|
|
563
|
+
### Hybrid (Performance Scenario)
|
|
564
|
+
- **Maximum Speed** - Parallel agent execution
|
|
565
|
+
- **Resource Intensive** - Uses all available cores
|
|
566
|
+
- **Advanced** - Requires understanding of dependencies
|
|
567
|
+
- **Best For** - Data pipelines, ML workflows, power users
|
|
842
568
|
|
|
843
569
|
---
|
|
844
570
|
|
|
@@ -846,10 +572,15 @@ Sub-Epic Breakdown:
|
|
|
846
572
|
|
|
847
573
|
We welcome contributions! See [CONTRIBUTING.md](docs/development/contributing.md) for:
|
|
848
574
|
- Development setup
|
|
575
|
+
- Plugin development guide
|
|
849
576
|
- Coding standards
|
|
850
577
|
- Testing requirements
|
|
851
578
|
- Pull request process
|
|
852
579
|
|
|
580
|
+
### Building Plugins
|
|
581
|
+
|
|
582
|
+
Want to create your own plugin? See [Plugin Development Guide](docs/development/plugin-development.md).
|
|
583
|
+
|
|
853
584
|
---
|
|
854
585
|
|
|
855
586
|
## 📄 License
|
|
@@ -875,6 +606,37 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
875
606
|
|
|
876
607
|
---
|
|
877
608
|
|
|
609
|
+
## 📋 Version History
|
|
610
|
+
|
|
611
|
+
### v2.8.2 (2025-01-15) - Scenario-Based Installation
|
|
612
|
+
- ✨ Automatic plugin installation based on scenarios
|
|
613
|
+
- 🎯 4 installation presets (minimal, docker-only, full-devops, performance)
|
|
614
|
+
- 📦 Configuration persistence in `.claude/config.json`
|
|
615
|
+
- 🔍 Installation results tracking
|
|
616
|
+
- 📚 Comprehensive documentation update
|
|
617
|
+
|
|
618
|
+
### v2.8.1 (2025-01-10) - Plugin Architecture
|
|
619
|
+
- 🔌 Modular plugin system with 11 official plugins
|
|
620
|
+
- 📦 npm workspaces for plugin organization
|
|
621
|
+
- 🏗️ Context7-driven architecture
|
|
622
|
+
- 🔍 Smart plugin discovery
|
|
623
|
+
|
|
624
|
+
### v2.8.0 (2025-01-05) - GitHub Integration
|
|
625
|
+
- 🔄 Full bidirectional GitHub sync
|
|
626
|
+
- ✅ Issue sync with conflict detection
|
|
627
|
+
- 📦 Epic sync with task checkboxes
|
|
628
|
+
- 🎯 99% test coverage
|
|
629
|
+
|
|
630
|
+
### v2.7.0 (2024-12-20) - CLI Commands Complete
|
|
631
|
+
- 📋 24 PM commands implemented
|
|
632
|
+
- ⚡ 168 tests, 91.4% coverage
|
|
633
|
+
- 🎨 Modern UX with progress spinners
|
|
634
|
+
- 🧪 TDD methodology throughout
|
|
635
|
+
|
|
636
|
+
For complete version history, see [CHANGELOG.md](CHANGELOG.md).
|
|
637
|
+
|
|
638
|
+
---
|
|
639
|
+
|
|
878
640
|
<p align="center">
|
|
879
641
|
<b>Built with ❤️ for the Claude Code community</b>
|
|
880
642
|
<br>
|