claude-autopm 2.8.1 → 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 -529
- package/bin/autopm.js +2 -0
- package/bin/commands/plugin.js +395 -0
- package/bin/commands/team.js +184 -10
- package/install/install.js +223 -4
- package/lib/plugins/PluginManager.js +1328 -0
- package/lib/plugins/PluginManager.old.js +400 -0
- package/package.json +5 -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/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/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/gemini-api-expert.md +880 -0
- package/packages/plugin-cloud/agents/openai-python-expert.md +1087 -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/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/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/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/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/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/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/bigquery-expert.md +24 -15
- package/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/cosmosdb-expert.md +22 -15
- package/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/mongodb-expert.md +24 -15
- package/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/postgresql-expert.md +23 -15
- package/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/redis-expert.md +29 -7
- 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/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/github-operations-specialist.md +1 -1
- 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/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/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/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/e2e-test-engineer.md +219 -0
- package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/react-frontend-engineer.md +176 -0
- package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/tailwindcss-expert.md +251 -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/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/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/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/github/workflow-create.md +42 -0
- package/packages/plugin-pm/package.json +57 -0
- package/packages/plugin-pm/plugin.json +503 -0
- package/packages/plugin-testing/README.md +401 -0
- package/{autopm/.claude/agents/testing → packages/plugin-testing/agents}/frontend-testing-engineer.md +373 -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/scripts/publish-plugins.sh +166 -0
- package/autopm/.claude/agents/data/airflow-orchestration-expert.md +0 -52
- package/autopm/.claude/agents/data/kedro-pipeline-expert.md +0 -50
- package/autopm/.claude/agents/integration/message-queue-engineer.md +0 -794
- package/autopm/.claude/commands/ai/langgraph-workflow.md +0 -65
- package/autopm/.claude/commands/ai/openai-chat.md +0 -65
- package/autopm/.claude/commands/playwright/test-scaffold.md +0 -38
- package/autopm/.claude/commands/python/api-scaffold.md +0 -50
- package/autopm/.claude/commands/python/docs-query.md +0 -48
- package/autopm/.claude/commands/testing/prime.md +0 -314
- package/autopm/.claude/commands/testing/run.md +0 -125
- package/autopm/.claude/commands/ui/bootstrap-scaffold.md +0 -65
- package/autopm/.claude/rules/database-management-strategy.md +0 -17
- package/autopm/.claude/rules/database-pipeline.md +0 -94
- package/autopm/.claude/rules/ux-design-rules.md +0 -209
- package/autopm/.claude/rules/visual-testing.md +0 -223
- package/autopm/.claude/scripts/azure/README.md +0 -192
- package/autopm/.claude/scripts/azure/active-work.js +0 -524
- package/autopm/.claude/scripts/azure/active-work.sh +0 -20
- package/autopm/.claude/scripts/azure/blocked.js +0 -520
- package/autopm/.claude/scripts/azure/blocked.sh +0 -20
- package/autopm/.claude/scripts/azure/daily.js +0 -533
- package/autopm/.claude/scripts/azure/daily.sh +0 -20
- package/autopm/.claude/scripts/azure/dashboard.js +0 -970
- package/autopm/.claude/scripts/azure/dashboard.sh +0 -20
- package/autopm/.claude/scripts/azure/feature-list.js +0 -254
- package/autopm/.claude/scripts/azure/feature-list.sh +0 -20
- package/autopm/.claude/scripts/azure/feature-show.js +0 -7
- package/autopm/.claude/scripts/azure/feature-show.sh +0 -20
- package/autopm/.claude/scripts/azure/feature-status.js +0 -604
- package/autopm/.claude/scripts/azure/feature-status.sh +0 -20
- package/autopm/.claude/scripts/azure/help.js +0 -342
- package/autopm/.claude/scripts/azure/help.sh +0 -20
- package/autopm/.claude/scripts/azure/next-task.js +0 -508
- package/autopm/.claude/scripts/azure/next-task.sh +0 -20
- package/autopm/.claude/scripts/azure/search.js +0 -469
- package/autopm/.claude/scripts/azure/search.sh +0 -20
- package/autopm/.claude/scripts/azure/setup.js +0 -745
- package/autopm/.claude/scripts/azure/setup.sh +0 -20
- package/autopm/.claude/scripts/azure/sprint-report.js +0 -1012
- package/autopm/.claude/scripts/azure/sprint-report.sh +0 -20
- package/autopm/.claude/scripts/azure/sync.js +0 -563
- package/autopm/.claude/scripts/azure/sync.sh +0 -20
- package/autopm/.claude/scripts/azure/us-list.js +0 -210
- package/autopm/.claude/scripts/azure/us-list.sh +0 -20
- package/autopm/.claude/scripts/azure/us-status.js +0 -238
- package/autopm/.claude/scripts/azure/us-status.sh +0 -20
- package/autopm/.claude/scripts/azure/validate.js +0 -626
- package/autopm/.claude/scripts/azure/validate.sh +0 -20
- package/autopm/.claude/scripts/azure/wrapper-template.sh +0 -20
- package/autopm/.claude/scripts/github/dependency-tracker.js +0 -554
- package/autopm/.claude/scripts/github/dependency-validator.js +0 -545
- package/autopm/.claude/scripts/github/dependency-visualizer.js +0 -477
- package/bin/node/azure-feature-show.js +0 -7
- /package/{autopm/.claude/agents/cloud → packages/plugin-ai/agents}/gemini-api-expert.md +0 -0
- /package/{autopm/.claude/agents/data → packages/plugin-ai/agents}/langgraph-workflow-expert.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-ai/agents}/openai-python-expert.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/README.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/aws-cloud-architect.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/azure-cloud-architect.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/gcp-cloud-architect.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/gcp-cloud-functions-engineer.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/kubernetes-orchestrator.md +0 -0
- /package/{autopm/.claude/agents/cloud → packages/plugin-cloud/agents}/terraform-infrastructure-expert.md +0 -0
- /package/{autopm/.claude/commands/cloud → packages/plugin-cloud/commands}/infra-deploy.md +0 -0
- /package/{autopm/.claude/commands/kubernetes/deploy.md → packages/plugin-cloud/commands/k8s-deploy.md} +0 -0
- /package/{autopm/.claude/commands/infrastructure → packages/plugin-cloud/commands}/ssh-security.md +0 -0
- /package/{autopm/.claude/commands/infrastructure → packages/plugin-cloud/commands}/traefik-setup.md +0 -0
- /package/{autopm/.claude → packages/plugin-cloud}/rules/infrastructure-pipeline.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/agents/core/agent-manager.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/agents/core/code-analyzer.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/agents/core/file-analyzer.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/agents/core/test-runner.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/rules/ai-integration-patterns.md +0 -0
- /package/{autopm/.claude → packages/plugin-core}/rules/performance-guidelines.md +0 -0
- /package/{autopm/.claude/agents/databases → packages/plugin-databases/agents}/README.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/README.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/azure-devops-specialist.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/docker-containerization-expert.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/mcp-context-manager.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/observability-engineer.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/ssh-operations-expert.md +0 -0
- /package/{autopm/.claude/agents/devops → packages/plugin-devops/agents}/traefik-proxy-expert.md +0 -0
- /package/{autopm/.claude/commands/github → packages/plugin-devops/commands}/workflow-create.md +0 -0
- /package/{autopm/.claude → packages/plugin-devops}/rules/ci-cd-kubernetes-strategy.md +0 -0
- /package/{autopm/.claude → packages/plugin-devops}/rules/devops-troubleshooting-playbook.md +0 -0
- /package/{autopm/.claude → packages/plugin-devops}/rules/docker-first-development.md +0 -0
- /package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/README.md +0 -0
- /package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/nats-messaging-expert.md +0 -0
- /package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/react-ui-expert.md +0 -0
- /package/{autopm/.claude/agents/frameworks → packages/plugin-frameworks/agents}/ux-design-expert.md +0 -0
- /package/{autopm/.claude/commands/react → packages/plugin-frameworks/commands}/app-scaffold.md +0 -0
- /package/{autopm/.claude/commands/ui → packages/plugin-frameworks/commands}/tailwind-system.md +0 -0
- /package/{autopm/.claude → packages/plugin-frameworks}/rules/ui-development-standards.md +0 -0
- /package/{autopm/.claude → packages/plugin-frameworks}/rules/ui-framework-rules.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/README.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/bash-scripting-expert.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/javascript-frontend-engineer.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/nodejs-backend-engineer.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/python-backend-engineer.md +0 -0
- /package/{autopm/.claude/agents/languages → packages/plugin-languages/agents}/python-backend-expert.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/COMMANDS.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/COMMAND_MAPPING.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/INTEGRATION_FIX.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/README.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/active-work.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/aliases.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/blocked-items.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/clean.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/docs-query.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/feature-decompose.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/feature-list.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/feature-new.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/feature-show.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/feature-start.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/fix-integration-example.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/help.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/import-us.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/init.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/next-task.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/search.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/sprint-status.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/standup.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/sync-all.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-analyze.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-close.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-edit.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-list.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-new.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-reopen.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-show.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-start.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-status.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/task-sync.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-edit.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-list.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-new.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-parse.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-show.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/us-status.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/validate.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/commands/azure/work-item-sync.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/blocked.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/clean.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/context-create.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/context-prime.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/context-update.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/context.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-close.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-decompose.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-edit.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-list.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-merge.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-oneshot.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-refresh.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-show.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-split.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-start.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-status.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-sync-modular.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-sync-original.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/epic-sync.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/help.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/import.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/in-progress.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/init.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-analyze.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-close.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-edit.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-reopen.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-show.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-start.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-status.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/issue-sync.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/next.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/prd-edit.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/prd-list.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/prd-new.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/prd-parse.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/prd-status.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/search.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/standup.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/status.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/sync.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/test-reference-update.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/validate.md +0 -0
- /package/{autopm/.claude/commands/pm → packages/plugin-pm/commands}/what-next.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/analytics.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/blocked.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/blocked.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/clean.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/context-create.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/context-prime.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/context-update.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/context.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-close.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-edit.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-list.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-list.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-show.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-show.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-split.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-start/epic-start.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-start/epic-start.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-status.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-status.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync/README.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync/create-epic-issue.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync/create-task-issues.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync/update-epic-file.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync/update-references.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/epic-sync.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/help.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/help.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/in-progress.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/in-progress.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/init.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/init.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-close.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-edit.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-show.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-start.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-sync/format-comment.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-sync/gather-updates.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-sync/post-comment.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-sync/preflight-validation.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/issue-sync/update-frontmatter.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/lib/README.md +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/lib/epic-discovery.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/lib/logger.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/next.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/next.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/optimize.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/pr-create.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/pr-list.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-list.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-list.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-new.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-parse.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-status.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/prd-status.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/release.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/search.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/search.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/standup.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/standup.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/status.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/status.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/sync-batch.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/sync.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/template-list.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/template-new.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/validate.js +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/validate.sh +0 -0
- /package/{autopm/.claude → packages/plugin-pm}/scripts/pm/what-next.js +0 -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
|
|
49
139
|
|
|
50
|
-
|
|
51
|
-
- ✅ **GitHubProvider** - Complete GitHub REST API wrapper with 99% test coverage
|
|
52
|
-
- 🔄 **Issue Sync** - Push/pull issues with conflict detection and resolution
|
|
53
|
-
- 📦 **Epic Sync** - Sync epics as GitHub issues with task checkboxes
|
|
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)
|
|
140
|
+
### 📦 Scenario-Based Installation (v2.8.2)
|
|
57
141
|
|
|
58
|
-
**
|
|
142
|
+
**Smart Installation** - Automatically installs plugins based on your development needs:
|
|
143
|
+
|
|
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
|
|
148
|
+
|
|
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!
|
|
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
|
|
87
184
|
|
|
88
|
-
|
|
89
|
-
Local newer: false
|
|
90
|
-
Remote newer: true
|
|
185
|
+
### 📋 Complete CLI Command Suite (v2.7.0)
|
|
91
186
|
|
|
92
|
-
|
|
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
|
|
107
|
-
|
|
108
|
-
# Start syncing!
|
|
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
|
|
132
|
-
|
|
133
|
-
**Complete Command Suite:**
|
|
187
|
+
**24 PM Commands** - Full project management workflow:
|
|
134
188
|
|
|
135
189
|
```bash
|
|
136
190
|
# Issue Management (6 commands)
|
|
@@ -162,205 +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
|
-
```
|
|
171
|
-
|
|
172
|
-
**Architecture:**
|
|
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
|
-
---
|
|
185
|
-
|
|
186
|
-
### 🎉 **v1.30.0: Advanced Conflict Resolution - Complete Sync Safety!**
|
|
187
|
-
|
|
188
|
-
**Three-Way Merge Conflict Resolution** - Safe GitHub synchronization
|
|
189
|
-
- 🔒 **Intelligent Merge** - Three-way diff (local/remote/base) with conflict detection
|
|
190
|
-
- 🎯 **5 Resolution Strategies** - newest, local, remote, rules-based, manual
|
|
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
|
|
194
|
-
|
|
195
|
-
```bash
|
|
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
219
|
```
|
|
238
220
|
|
|
239
|
-
|
|
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
|
|
221
|
+
### ⚡ Execution Strategies
|
|
244
222
|
|
|
245
|
-
|
|
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**
|
|
223
|
+
**Adaptive by Default** - Choose your execution model:
|
|
261
224
|
|
|
262
|
-
**
|
|
263
|
-
-
|
|
264
|
-
-
|
|
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
|
-
---
|
|
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)
|
|
273
228
|
|
|
274
|
-
###
|
|
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
|
-
### 🤖 **39 Specialized AI Agents**
|
|
287
|
-
|
|
288
|
-
Organized into dynamic teams that load based on your work context:
|
|
289
|
-
|
|
290
|
-
- **Core Agents**: agent-manager, code-analyzer, file-analyzer, test-runner
|
|
291
|
-
- **Language Agents**: python-backend-engineer, nodejs-backend-engineer, javascript-frontend-engineer, bash-scripting-expert
|
|
292
|
-
- **Framework Agents**: react-frontend-engineer, react-ui-expert, tailwindcss-expert, e2e-test-engineer
|
|
293
|
-
- **Cloud Agents**: aws-cloud-architect, azure-cloud-architect, gcp-cloud-architect, kubernetes-orchestrator
|
|
294
|
-
- **DevOps Agents**: docker-containerization-expert, github-operations-specialist, terraform-infrastructure-expert
|
|
295
|
-
- **Data Agents**: postgresql-expert, mongodb-expert, redis-expert, bigquery-expert
|
|
296
|
-
|
|
297
|
-
### 🔄 **Hybrid Execution Model**
|
|
298
|
-
|
|
299
|
-
ClaudeAutoPM provides two distinct interfaces optimized for different operations:
|
|
300
|
-
|
|
301
|
-
#### 🔧 CLI (`autopm`) - Non-AI Utilities
|
|
302
|
-
Fast, deterministic operations that don't require AI:
|
|
303
|
-
```bash
|
|
304
|
-
autopm install # Framework installation
|
|
305
|
-
autopm config set provider github # Configuration management
|
|
306
|
-
autopm team load fullstack # Load agent teams
|
|
307
|
-
autopm mcp enable context7 # Manage MCP servers
|
|
308
|
-
autopm epic status auth # View epic progress (read-only)
|
|
309
|
-
```
|
|
310
|
-
|
|
311
|
-
**When to use:** Setup, configuration, read-only utilities, CI/CD scripts
|
|
312
|
-
|
|
313
|
-
#### 🤖 Claude Code (`/pm:*`) - AI-Powered Operations
|
|
314
|
-
Intelligent operations leveraging Claude's AI:
|
|
315
|
-
```bash
|
|
316
|
-
/pm:prd-new user-auth # Create PRD with AI assistance
|
|
317
|
-
/pm:epic-decompose user-auth # Intelligent task breakdown
|
|
318
|
-
/pm:next # Smart task prioritization
|
|
319
|
-
/pm:standup # Generate progress summary
|
|
320
|
-
/pm:what-next # AI suggests next actions
|
|
321
|
-
```
|
|
322
|
-
|
|
323
|
-
**When to use:** Creation, modification, intelligent analysis, development workflow
|
|
324
|
-
|
|
325
|
-
📖 **[Full CLI vs Claude Code Guide](docs/CLI-vs-CLAUDE-CODE.md)**
|
|
326
|
-
|
|
327
|
-
### 🎭 **Dynamic Team Management**
|
|
328
|
-
|
|
329
|
-
Switch agent teams based on your current work:
|
|
330
|
-
|
|
331
|
-
```bash
|
|
332
|
-
autopm team load frontend # React, UI, testing agents
|
|
333
|
-
autopm team load backend # Python, Node.js, database agents
|
|
334
|
-
autopm team load fullstack # Complete development stack
|
|
335
|
-
autopm team load devops # Docker, Kubernetes, CI/CD agents
|
|
336
|
-
```
|
|
337
|
-
|
|
338
|
-
Teams automatically activate the right agents for your context.
|
|
339
|
-
|
|
340
|
-
### 🔌 **MCP (Model Context Protocol) Integration**
|
|
341
|
-
|
|
342
|
-
Access up-to-date documentation and tools:
|
|
343
|
-
|
|
344
|
-
```bash
|
|
345
|
-
autopm mcp enable context7 # Documentation for all frameworks
|
|
346
|
-
autopm mcp enable playwright # Browser automation
|
|
347
|
-
autopm mcp diagnose # Health check all MCP servers
|
|
348
|
-
```
|
|
349
|
-
|
|
350
|
-
### 📊 **Multi-Provider Support**
|
|
229
|
+
### 📊 Multi-Provider Support
|
|
351
230
|
|
|
352
231
|
Seamlessly work with:
|
|
353
|
-
- **GitHub
|
|
354
|
-
- **Azure DevOps
|
|
355
|
-
- **Local
|
|
356
|
-
|
|
357
|
-
### ⚡ **Parallel Execution Strategies**
|
|
358
|
-
|
|
359
|
-
Choose your execution model:
|
|
360
|
-
|
|
361
|
-
- **Sequential**: Safe, one agent at a time
|
|
362
|
-
- **Adaptive**: Intelligent mode selection (recommended)
|
|
363
|
-
- **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
|
|
364
235
|
|
|
365
236
|
---
|
|
366
237
|
|
|
@@ -383,29 +254,57 @@ autopm --version
|
|
|
383
254
|
cd your-project
|
|
384
255
|
autopm install
|
|
385
256
|
|
|
386
|
-
# 2. Choose your
|
|
387
|
-
#
|
|
388
|
-
# -
|
|
389
|
-
# -
|
|
390
|
-
#
|
|
391
|
-
# -
|
|
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
|
|
392
266
|
|
|
393
|
-
#
|
|
267
|
+
# 4. Configure your provider (optional)
|
|
394
268
|
autopm config set provider github
|
|
395
269
|
autopm config set github.owner YOUR_USERNAME
|
|
396
270
|
autopm config set github.repo YOUR_REPO
|
|
397
271
|
export GITHUB_TOKEN=your_github_token
|
|
398
272
|
|
|
399
|
-
# 4. Load your team
|
|
400
|
-
autopm team load fullstack
|
|
401
|
-
|
|
402
273
|
# 5. Open Claude Code
|
|
403
274
|
claude --dangerously-skip-permissions .
|
|
404
275
|
```
|
|
405
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
|
+
|
|
406
304
|
### Your First Workflow
|
|
407
305
|
|
|
408
|
-
**Option A: Using
|
|
306
|
+
**Option A: Using CLI Commands (v2.7.0+)**
|
|
307
|
+
|
|
409
308
|
```bash
|
|
410
309
|
# 1. Initialize project structure
|
|
411
310
|
autopm pm init
|
|
@@ -434,6 +333,7 @@ autopm pm sync
|
|
|
434
333
|
```
|
|
435
334
|
|
|
436
335
|
**Option B: Classic Claude Code Workflow**
|
|
336
|
+
|
|
437
337
|
```bash
|
|
438
338
|
# 1. Create a PRD (in Claude Code)
|
|
439
339
|
/pm:prd-new "Build user authentication system"
|
|
@@ -453,284 +353,218 @@ autopm pm sync
|
|
|
453
353
|
|
|
454
354
|
---
|
|
455
355
|
|
|
456
|
-
## 📚 Documentation
|
|
457
|
-
|
|
458
|
-
### Getting Started
|
|
459
|
-
- [Installation Guide](docs/getting-started/installation.md)
|
|
460
|
-
- [Quick Start Tutorial](docs/getting-started/quick-start.md)
|
|
461
|
-
- [Your First Project](docs/getting-started/first-project.md)
|
|
462
|
-
|
|
463
|
-
### Core Concepts
|
|
464
|
-
- [Architecture Overview](docs/core-concepts/architecture.md)
|
|
465
|
-
- [CLI vs Claude Code](docs/CLI-vs-CLAUDE-CODE.md) ⭐ **Essential reading**
|
|
466
|
-
- [Hybrid Execution](docs/core-concepts/hybrid-execution.md)
|
|
467
|
-
- [Agent System](docs/core-concepts/agent-system.md)
|
|
468
|
-
- [Team Management](docs/core-concepts/team-management.md)
|
|
469
|
-
|
|
470
|
-
### Workflows
|
|
471
|
-
- [PRD to Production](docs/workflows/prd-to-production.md)
|
|
472
|
-
- [Epic Management](docs/workflows/epic-management.md)
|
|
473
|
-
- [Development Cycle](docs/workflows/development-cycle.md)
|
|
474
|
-
|
|
475
|
-
### Reference
|
|
476
|
-
- [CLI Commands](docs/cli-reference/overview.md)
|
|
477
|
-
- [Agent Registry](docs/agents/registry.md)
|
|
478
|
-
- [Configuration](docs/cli-reference/config.md)
|
|
479
|
-
|
|
480
|
-
---
|
|
481
|
-
|
|
482
|
-
## 🎬 See It In Action
|
|
483
|
-
|
|
484
|
-
### Video Walkthroughs
|
|
485
|
-
|
|
486
|
-
<details>
|
|
487
|
-
<summary><b>1️⃣ Installation & Setup</b> - Complete installation process</summary>
|
|
488
|
-
<br>
|
|
489
|
-
<img src="docs/assets/video-1.gif" width="100%" alt="Install AutoPM">
|
|
490
|
-
</details>
|
|
491
|
-
|
|
492
|
-
<details>
|
|
493
|
-
<summary><b>2️⃣ First Claude Execution</b> - Setting up and running Claude Code</summary>
|
|
494
|
-
<br>
|
|
495
|
-
<img src="docs/assets/video-2.gif" width="100%" alt="First Claude Execution">
|
|
496
|
-
</details>
|
|
497
|
-
|
|
498
|
-
<details>
|
|
499
|
-
<summary><b>3️⃣ PRD Creation</b> - Product Requirements workflow</summary>
|
|
500
|
-
<br>
|
|
501
|
-
<img src="docs/assets/video-3.gif" width="100%" alt="Create PRD">
|
|
502
|
-
</details>
|
|
503
|
-
|
|
504
|
-
<details>
|
|
505
|
-
<summary><b>4️⃣ GitHub Sync</b> - Synchronizing and starting work</summary>
|
|
506
|
-
<br>
|
|
507
|
-
<img src="docs/assets/video-4.gif" width="100%" alt="GitHub Sync">
|
|
508
|
-
</details>
|
|
509
|
-
|
|
510
|
-
<details>
|
|
511
|
-
<summary><b>5️⃣ Task Completion</b> - Finishing and closing tasks</summary>
|
|
512
|
-
<br>
|
|
513
|
-
<img src="docs/assets/video-5.gif" width="100%" alt="Issues Complete">
|
|
514
|
-
</details>
|
|
515
|
-
|
|
516
|
-
<details>
|
|
517
|
-
<summary><b>6️⃣ Demo Application</b> - Running Web App + FastAPI</summary>
|
|
518
|
-
<br>
|
|
519
|
-
<img src="docs/assets/video-6.gif" width="100%" alt="Web App and FastAPI">
|
|
520
|
-
</details>
|
|
521
|
-
|
|
522
|
-
---
|
|
523
|
-
|
|
524
356
|
## 🏗️ Architecture
|
|
525
357
|
|
|
358
|
+
### Plugin-Based Architecture (v2.8.2)
|
|
359
|
+
|
|
526
360
|
```
|
|
527
361
|
┌─────────────────────────────────────────────────────────────┐
|
|
528
|
-
│ ClaudeAutoPM
|
|
362
|
+
│ ClaudeAutoPM v2.8.2 │
|
|
529
363
|
├─────────────────────────────────────────────────────────────┤
|
|
530
364
|
│ │
|
|
531
|
-
│
|
|
532
|
-
│ │
|
|
533
|
-
│ │
|
|
534
|
-
│
|
|
535
|
-
│
|
|
536
|
-
│
|
|
537
|
-
│
|
|
538
|
-
│
|
|
539
|
-
│ │
|
|
540
|
-
│ │
|
|
541
|
-
│ │
|
|
542
|
-
│ │
|
|
543
|
-
│ │ -
|
|
544
|
-
│
|
|
545
|
-
│
|
|
546
|
-
│
|
|
547
|
-
│ │
|
|
548
|
-
│ │
|
|
549
|
-
│ │ -
|
|
550
|
-
│ │
|
|
551
|
-
│
|
|
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
|
+
│ └─────────────────────────────────────────────────────┘ │
|
|
552
400
|
│ │
|
|
553
401
|
└─────────────────────────────────────────────────────────────┘
|
|
554
402
|
```
|
|
555
403
|
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
## 🛠️ Use Cases
|
|
559
|
-
|
|
560
|
-
### For Solo Developers
|
|
561
|
-
- 🚀 Build MVPs faster with AI pair programming
|
|
562
|
-
- 📝 Maintain clear project documentation
|
|
563
|
-
- ⚡ Automate repetitive development tasks
|
|
564
|
-
- 🔄 Keep GitHub/Azure in sync automatically
|
|
565
|
-
|
|
566
|
-
### For Development Teams
|
|
567
|
-
- 👥 Coordinate multiple AI agents like a team
|
|
568
|
-
- 📊 Track progress across epics and sprints
|
|
569
|
-
- 🔀 Parallel development on independent tasks
|
|
570
|
-
- 📈 Maintain velocity with automated workflows
|
|
571
|
-
|
|
572
|
-
### For DevOps Engineers
|
|
573
|
-
- 🐳 Docker-first development patterns
|
|
574
|
-
- ☸️ Kubernetes deployment automation
|
|
575
|
-
- 🔧 Infrastructure as Code with Terraform
|
|
576
|
-
- 📦 CI/CD pipeline generation
|
|
404
|
+
### Installation Flow
|
|
577
405
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
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
|
+
```
|
|
587
427
|
|
|
588
|
-
###
|
|
589
|
-
- ✅ **Full workflow**: Not just code generation
|
|
590
|
-
- ✅ **Multi-agent**: 39 specialized agents, not one generic
|
|
591
|
-
- ✅ **Team coordination**: Dynamic team switching
|
|
592
|
-
- ✅ **Enterprise-ready**: GitHub & Azure DevOps integration
|
|
428
|
+
### Plugin Discovery
|
|
593
429
|
|
|
594
|
-
|
|
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
|
|
595
435
|
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
-
|
|
600
|
-
- Issue Management (6): show, start, close, status, edit, sync
|
|
601
|
-
- Workflow (6): next, what-next, standup, status, in-progress, blocked
|
|
602
|
-
- Context (4): create, prime, update, show
|
|
603
|
-
- Utilities (6): init, validate, sync, clean, search, import
|
|
604
|
-
- **PRD & Epic**: PRD parsing, epic decomposition, task management
|
|
605
|
-
- **Development**: Scaffolding, testing, deployment
|
|
606
|
-
- **Configuration**: Provider setup, team management, MCP servers
|
|
607
|
-
- **DevOps**: Docker, Kubernetes, CI/CD automation
|
|
608
|
-
|
|
609
|
-
### AI Agents (39 active)
|
|
610
|
-
- **Core**: 7 system agents
|
|
611
|
-
- **Languages**: 6 language agents
|
|
612
|
-
- **Frameworks**: 8 framework agents
|
|
613
|
-
- **Cloud**: 7 cloud & infrastructure agents
|
|
614
|
-
- **DevOps**: 6 DevOps & CI/CD agents
|
|
615
|
-
- **Data**: 5 database agents
|
|
616
|
-
|
|
617
|
-
### Documentation
|
|
618
|
-
- Installation guides
|
|
619
|
-
- Complete workflow tutorials
|
|
620
|
-
- CLI reference
|
|
621
|
-
- Agent documentation
|
|
622
|
-
- 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
|
|
623
440
|
|
|
624
441
|
---
|
|
625
442
|
|
|
626
|
-
##
|
|
443
|
+
## 📚 Documentation
|
|
627
444
|
|
|
628
|
-
###
|
|
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
|
|
629
450
|
|
|
630
|
-
|
|
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**
|
|
631
456
|
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
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
|
|
635
463
|
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
```
|
|
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
|
|
641
468
|
|
|
642
|
-
|
|
643
|
-
-
|
|
644
|
-
-
|
|
645
|
-
-
|
|
646
|
-
-
|
|
647
|
-
- 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
|
|
648
474
|
|
|
649
|
-
|
|
475
|
+
---
|
|
650
476
|
|
|
651
|
-
|
|
477
|
+
## 🛠️ Use Cases
|
|
652
478
|
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
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
|
|
656
484
|
|
|
657
|
-
|
|
658
|
-
|
|
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
|
|
659
490
|
|
|
660
|
-
|
|
661
|
-
|
|
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
|
|
662
496
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
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
|
|
667
502
|
|
|
668
|
-
|
|
669
|
-
- Gathers updates from multiple sources (progress, notes, commits)
|
|
670
|
-
- Formats professional GitHub comments
|
|
671
|
-
- Posts updates to issues
|
|
672
|
-
- Updates frontmatter with sync timestamps
|
|
673
|
-
- Preflight validation (auth, issue exists, etc.)
|
|
674
|
-
- Supports completion workflow
|
|
503
|
+
---
|
|
675
504
|
|
|
676
|
-
|
|
677
|
-
- Progress updates and completion %
|
|
678
|
-
- Technical notes and decisions
|
|
679
|
-
- Recent commits (auto-detected or manual)
|
|
680
|
-
- Acceptance criteria updates
|
|
681
|
-
- Next steps and blockers
|
|
505
|
+
## 🌟 Why ClaudeAutoPM?
|
|
682
506
|
|
|
683
|
-
###
|
|
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
|
|
684
512
|
|
|
685
|
-
|
|
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
|
|
686
518
|
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
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
|
|
690
524
|
|
|
691
|
-
|
|
692
|
-
node .claude/lib/commands/pm/epicStatus.js
|
|
693
|
-
```
|
|
525
|
+
---
|
|
694
526
|
|
|
695
|
-
|
|
696
|
-
- Counts tasks by status (completed/in-progress/pending)
|
|
697
|
-
- Calculates progress percentage
|
|
698
|
-
- Visual progress bar
|
|
699
|
-
- Sub-epic breakdown
|
|
700
|
-
- Comprehensive status reporting
|
|
527
|
+
## 📊 Project Stats
|
|
701
528
|
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
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
|
|
706
534
|
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
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
|
|
711
540
|
|
|
712
|
-
|
|
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
|
|
713
546
|
|
|
714
|
-
|
|
715
|
-
-------------------
|
|
716
|
-
backend 6 tasks (4 completed)
|
|
717
|
-
frontend 4 tasks (3 completed)
|
|
718
|
-
infrastructure 2 tasks (1 completed)
|
|
719
|
-
```
|
|
547
|
+
---
|
|
720
548
|
|
|
721
|
-
|
|
549
|
+
## 🔄 Execution Strategies
|
|
722
550
|
|
|
723
|
-
|
|
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
|
|
724
556
|
|
|
725
|
-
|
|
726
|
-
-
|
|
727
|
-
-
|
|
728
|
-
-
|
|
729
|
-
-
|
|
730
|
-
- 💾 Better error handling
|
|
731
|
-
- 🔍 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
|
|
732
562
|
|
|
733
|
-
|
|
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
|
|
734
568
|
|
|
735
569
|
---
|
|
736
570
|
|
|
@@ -738,10 +572,15 @@ Sub-Epic Breakdown:
|
|
|
738
572
|
|
|
739
573
|
We welcome contributions! See [CONTRIBUTING.md](docs/development/contributing.md) for:
|
|
740
574
|
- Development setup
|
|
575
|
+
- Plugin development guide
|
|
741
576
|
- Coding standards
|
|
742
577
|
- Testing requirements
|
|
743
578
|
- Pull request process
|
|
744
579
|
|
|
580
|
+
### Building Plugins
|
|
581
|
+
|
|
582
|
+
Want to create your own plugin? See [Plugin Development Guide](docs/development/plugin-development.md).
|
|
583
|
+
|
|
745
584
|
---
|
|
746
585
|
|
|
747
586
|
## 📄 License
|
|
@@ -767,6 +606,37 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
767
606
|
|
|
768
607
|
---
|
|
769
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
|
+
|
|
770
640
|
<p align="center">
|
|
771
641
|
<b>Built with ❤️ for the Claude Code community</b>
|
|
772
642
|
<br>
|