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.
Files changed (390) hide show
  1. package/README.md +399 -637
  2. package/package.json +2 -1
  3. package/packages/plugin-ai/LICENSE +21 -0
  4. package/packages/plugin-ai/README.md +316 -0
  5. package/packages/plugin-ai/agents/anthropic-claude-expert.md +579 -0
  6. package/packages/plugin-ai/agents/azure-openai-expert.md +1411 -0
  7. package/packages/plugin-ai/agents/gemini-api-expert.md +880 -0
  8. package/packages/plugin-ai/agents/google-a2a-expert.md +1445 -0
  9. package/packages/plugin-ai/agents/huggingface-expert.md +2131 -0
  10. package/packages/plugin-ai/agents/langchain-expert.md +1427 -0
  11. package/packages/plugin-ai/agents/langgraph-workflow-expert.md +520 -0
  12. package/packages/plugin-ai/agents/openai-python-expert.md +1087 -0
  13. package/packages/plugin-ai/commands/a2a-setup.md +886 -0
  14. package/packages/plugin-ai/commands/ai-model-deployment.md +481 -0
  15. package/packages/plugin-ai/commands/anthropic-optimize.md +793 -0
  16. package/packages/plugin-ai/commands/huggingface-deploy.md +789 -0
  17. package/packages/plugin-ai/commands/langchain-optimize.md +807 -0
  18. package/packages/plugin-ai/commands/llm-optimize.md +348 -0
  19. package/packages/plugin-ai/commands/openai-optimize.md +863 -0
  20. package/packages/plugin-ai/commands/rag-optimize.md +841 -0
  21. package/packages/plugin-ai/commands/rag-setup-scaffold.md +382 -0
  22. package/packages/plugin-ai/package.json +66 -0
  23. package/packages/plugin-ai/plugin.json +519 -0
  24. package/packages/plugin-ai/rules/ai-model-standards.md +449 -0
  25. package/packages/plugin-ai/rules/prompt-engineering-standards.md +509 -0
  26. package/packages/plugin-ai/scripts/examples/huggingface-inference-example.py +145 -0
  27. package/packages/plugin-ai/scripts/examples/langchain-rag-example.py +366 -0
  28. package/packages/plugin-ai/scripts/examples/mlflow-tracking-example.py +224 -0
  29. package/packages/plugin-ai/scripts/examples/openai-chat-example.py +425 -0
  30. package/packages/plugin-cloud/README.md +268 -0
  31. package/packages/plugin-cloud/agents/README.md +55 -0
  32. package/packages/plugin-cloud/agents/aws-cloud-architect.md +521 -0
  33. package/packages/plugin-cloud/agents/azure-cloud-architect.md +436 -0
  34. package/packages/plugin-cloud/agents/gcp-cloud-architect.md +385 -0
  35. package/packages/plugin-cloud/agents/gcp-cloud-functions-engineer.md +306 -0
  36. package/packages/plugin-cloud/agents/gemini-api-expert.md +880 -0
  37. package/packages/plugin-cloud/agents/kubernetes-orchestrator.md +566 -0
  38. package/packages/plugin-cloud/agents/openai-python-expert.md +1087 -0
  39. package/packages/plugin-cloud/agents/terraform-infrastructure-expert.md +454 -0
  40. package/packages/plugin-cloud/commands/cloud-cost-optimize.md +243 -0
  41. package/packages/plugin-cloud/commands/cloud-validate.md +196 -0
  42. package/packages/plugin-cloud/commands/infra-deploy.md +38 -0
  43. package/packages/plugin-cloud/commands/k8s-deploy.md +37 -0
  44. package/packages/plugin-cloud/commands/ssh-security.md +65 -0
  45. package/packages/plugin-cloud/commands/traefik-setup.md +65 -0
  46. package/packages/plugin-cloud/hooks/pre-cloud-deploy.js +456 -0
  47. package/packages/plugin-cloud/package.json +64 -0
  48. package/packages/plugin-cloud/plugin.json +338 -0
  49. package/packages/plugin-cloud/rules/cloud-security-compliance.md +313 -0
  50. package/packages/plugin-cloud/rules/infrastructure-pipeline.md +128 -0
  51. package/packages/plugin-cloud/scripts/examples/aws-validate.sh +30 -0
  52. package/packages/plugin-cloud/scripts/examples/azure-setup.sh +33 -0
  53. package/packages/plugin-cloud/scripts/examples/gcp-setup.sh +39 -0
  54. package/packages/plugin-cloud/scripts/examples/k8s-validate.sh +40 -0
  55. package/packages/plugin-cloud/scripts/examples/terraform-init.sh +26 -0
  56. package/packages/plugin-core/README.md +274 -0
  57. package/packages/plugin-core/agents/core/agent-manager.md +296 -0
  58. package/packages/plugin-core/agents/core/code-analyzer.md +131 -0
  59. package/packages/plugin-core/agents/core/file-analyzer.md +162 -0
  60. package/packages/plugin-core/agents/core/test-runner.md +200 -0
  61. package/packages/plugin-core/commands/code-rabbit.md +128 -0
  62. package/packages/plugin-core/commands/prompt.md +9 -0
  63. package/packages/plugin-core/commands/re-init.md +9 -0
  64. package/packages/plugin-core/hooks/context7-reminder.md +29 -0
  65. package/packages/plugin-core/hooks/enforce-agents.js +125 -0
  66. package/packages/plugin-core/hooks/enforce-agents.sh +35 -0
  67. package/packages/plugin-core/hooks/pre-agent-context7.js +224 -0
  68. package/packages/plugin-core/hooks/pre-command-context7.js +229 -0
  69. package/packages/plugin-core/hooks/strict-enforce-agents.sh +39 -0
  70. package/packages/plugin-core/hooks/test-hook.sh +21 -0
  71. package/packages/plugin-core/hooks/unified-context7-enforcement.sh +38 -0
  72. package/packages/plugin-core/package.json +45 -0
  73. package/packages/plugin-core/plugin.json +387 -0
  74. package/packages/plugin-core/rules/agent-coordination.md +549 -0
  75. package/packages/plugin-core/rules/agent-mandatory.md +170 -0
  76. package/packages/plugin-core/rules/ai-integration-patterns.md +219 -0
  77. package/packages/plugin-core/rules/command-pipelines.md +208 -0
  78. package/packages/plugin-core/rules/context-optimization.md +176 -0
  79. package/packages/plugin-core/rules/context7-enforcement.md +327 -0
  80. package/packages/plugin-core/rules/datetime.md +122 -0
  81. package/packages/plugin-core/rules/definition-of-done.md +272 -0
  82. package/packages/plugin-core/rules/development-environments.md +19 -0
  83. package/packages/plugin-core/rules/development-workflow.md +198 -0
  84. package/packages/plugin-core/rules/framework-path-rules.md +180 -0
  85. package/packages/plugin-core/rules/frontmatter-operations.md +64 -0
  86. package/packages/plugin-core/rules/git-strategy.md +237 -0
  87. package/packages/plugin-core/rules/golden-rules.md +181 -0
  88. package/packages/plugin-core/rules/naming-conventions.md +111 -0
  89. package/packages/plugin-core/rules/no-pr-workflow.md +183 -0
  90. package/packages/plugin-core/rules/performance-guidelines.md +403 -0
  91. package/packages/plugin-core/rules/pipeline-mandatory.md +109 -0
  92. package/packages/plugin-core/rules/security-checklist.md +318 -0
  93. package/packages/plugin-core/rules/standard-patterns.md +197 -0
  94. package/packages/plugin-core/rules/strip-frontmatter.md +85 -0
  95. package/packages/plugin-core/rules/tdd.enforcement.md +103 -0
  96. package/packages/plugin-core/rules/use-ast-grep.md +113 -0
  97. package/packages/plugin-core/scripts/lib/datetime-utils.sh +254 -0
  98. package/packages/plugin-core/scripts/lib/frontmatter-utils.sh +294 -0
  99. package/packages/plugin-core/scripts/lib/github-utils.sh +221 -0
  100. package/packages/plugin-core/scripts/lib/logging-utils.sh +199 -0
  101. package/packages/plugin-core/scripts/lib/validation-utils.sh +339 -0
  102. package/packages/plugin-core/scripts/mcp/add.sh +7 -0
  103. package/packages/plugin-core/scripts/mcp/disable.sh +12 -0
  104. package/packages/plugin-core/scripts/mcp/enable.sh +12 -0
  105. package/packages/plugin-core/scripts/mcp/list.sh +7 -0
  106. package/packages/plugin-core/scripts/mcp/sync.sh +8 -0
  107. package/packages/plugin-data/README.md +315 -0
  108. package/packages/plugin-data/agents/airflow-orchestration-expert.md +158 -0
  109. package/packages/plugin-data/agents/kedro-pipeline-expert.md +304 -0
  110. package/packages/plugin-data/agents/langgraph-workflow-expert.md +530 -0
  111. package/packages/plugin-data/commands/airflow-dag-scaffold.md +413 -0
  112. package/packages/plugin-data/commands/kafka-pipeline-scaffold.md +503 -0
  113. package/packages/plugin-data/package.json +66 -0
  114. package/packages/plugin-data/plugin.json +294 -0
  115. package/packages/plugin-data/rules/data-quality-standards.md +373 -0
  116. package/packages/plugin-data/rules/etl-pipeline-standards.md +255 -0
  117. package/packages/plugin-data/scripts/examples/airflow-dag-example.py +245 -0
  118. package/packages/plugin-data/scripts/examples/dbt-transform-example.sql +238 -0
  119. package/packages/plugin-data/scripts/examples/kafka-streaming-example.py +257 -0
  120. package/packages/plugin-data/scripts/examples/pandas-etl-example.py +332 -0
  121. package/packages/plugin-databases/README.md +330 -0
  122. package/packages/plugin-databases/agents/README.md +50 -0
  123. package/packages/plugin-databases/agents/bigquery-expert.md +401 -0
  124. package/packages/plugin-databases/agents/cosmosdb-expert.md +375 -0
  125. package/packages/plugin-databases/agents/mongodb-expert.md +407 -0
  126. package/packages/plugin-databases/agents/postgresql-expert.md +329 -0
  127. package/packages/plugin-databases/agents/redis-expert.md +74 -0
  128. package/packages/plugin-databases/commands/db-optimize.md +612 -0
  129. package/packages/plugin-databases/package.json +60 -0
  130. package/packages/plugin-databases/plugin.json +237 -0
  131. package/packages/plugin-databases/rules/database-management-strategy.md +146 -0
  132. package/packages/plugin-databases/rules/database-pipeline.md +316 -0
  133. package/packages/plugin-databases/scripts/examples/bigquery-cost-analyze.sh +160 -0
  134. package/packages/plugin-databases/scripts/examples/cosmosdb-ru-optimize.sh +163 -0
  135. package/packages/plugin-databases/scripts/examples/mongodb-shard-check.sh +120 -0
  136. package/packages/plugin-databases/scripts/examples/postgres-index-analyze.sh +95 -0
  137. package/packages/plugin-databases/scripts/examples/redis-cache-stats.sh +121 -0
  138. package/packages/plugin-devops/README.md +367 -0
  139. package/packages/plugin-devops/agents/README.md +52 -0
  140. package/packages/plugin-devops/agents/azure-devops-specialist.md +308 -0
  141. package/packages/plugin-devops/agents/docker-containerization-expert.md +298 -0
  142. package/packages/plugin-devops/agents/github-operations-specialist.md +335 -0
  143. package/packages/plugin-devops/agents/mcp-context-manager.md +319 -0
  144. package/packages/plugin-devops/agents/observability-engineer.md +574 -0
  145. package/packages/plugin-devops/agents/ssh-operations-expert.md +1093 -0
  146. package/packages/plugin-devops/agents/traefik-proxy-expert.md +444 -0
  147. package/packages/plugin-devops/commands/ci-pipeline-create.md +581 -0
  148. package/packages/plugin-devops/commands/docker-optimize.md +493 -0
  149. package/packages/plugin-devops/commands/workflow-create.md +42 -0
  150. package/packages/plugin-devops/hooks/pre-docker-build.js +472 -0
  151. package/packages/plugin-devops/package.json +61 -0
  152. package/packages/plugin-devops/plugin.json +302 -0
  153. package/packages/plugin-devops/rules/ci-cd-kubernetes-strategy.md +25 -0
  154. package/packages/plugin-devops/rules/devops-troubleshooting-playbook.md +450 -0
  155. package/packages/plugin-devops/rules/docker-first-development.md +404 -0
  156. package/packages/plugin-devops/rules/github-operations.md +92 -0
  157. package/packages/plugin-devops/scripts/examples/docker-build-multistage.sh +43 -0
  158. package/packages/plugin-devops/scripts/examples/docker-compose-validate.sh +74 -0
  159. package/packages/plugin-devops/scripts/examples/github-workflow-validate.sh +48 -0
  160. package/packages/plugin-devops/scripts/examples/prometheus-health-check.sh +58 -0
  161. package/packages/plugin-devops/scripts/examples/ssh-key-setup.sh +74 -0
  162. package/packages/plugin-frameworks/README.md +309 -0
  163. package/packages/plugin-frameworks/agents/README.md +64 -0
  164. package/packages/plugin-frameworks/agents/e2e-test-engineer.md +579 -0
  165. package/packages/plugin-frameworks/agents/nats-messaging-expert.md +254 -0
  166. package/packages/plugin-frameworks/agents/react-frontend-engineer.md +393 -0
  167. package/packages/plugin-frameworks/agents/react-ui-expert.md +226 -0
  168. package/packages/plugin-frameworks/agents/tailwindcss-expert.md +1021 -0
  169. package/packages/plugin-frameworks/agents/ux-design-expert.md +244 -0
  170. package/packages/plugin-frameworks/commands/app-scaffold.md +50 -0
  171. package/packages/plugin-frameworks/commands/nextjs-optimize.md +692 -0
  172. package/packages/plugin-frameworks/commands/react-optimize.md +583 -0
  173. package/packages/plugin-frameworks/commands/tailwind-system.md +64 -0
  174. package/packages/plugin-frameworks/package.json +59 -0
  175. package/packages/plugin-frameworks/plugin.json +224 -0
  176. package/packages/plugin-frameworks/rules/performance-guidelines.md +403 -0
  177. package/packages/plugin-frameworks/rules/ui-development-standards.md +281 -0
  178. package/packages/plugin-frameworks/rules/ui-framework-rules.md +151 -0
  179. package/packages/plugin-frameworks/scripts/examples/react-component-perf.sh +34 -0
  180. package/packages/plugin-frameworks/scripts/examples/tailwind-optimize.sh +44 -0
  181. package/packages/plugin-frameworks/scripts/examples/vue-composition-check.sh +41 -0
  182. package/packages/plugin-languages/README.md +333 -0
  183. package/packages/plugin-languages/agents/README.md +50 -0
  184. package/packages/plugin-languages/agents/bash-scripting-expert.md +541 -0
  185. package/packages/plugin-languages/agents/javascript-frontend-engineer.md +197 -0
  186. package/packages/plugin-languages/agents/nodejs-backend-engineer.md +226 -0
  187. package/packages/plugin-languages/agents/python-backend-engineer.md +214 -0
  188. package/packages/plugin-languages/agents/python-backend-expert.md +289 -0
  189. package/packages/plugin-languages/commands/javascript-optimize.md +636 -0
  190. package/packages/plugin-languages/commands/nodejs-api-scaffold.md +341 -0
  191. package/packages/plugin-languages/commands/nodejs-optimize.md +689 -0
  192. package/packages/plugin-languages/commands/python-api-scaffold.md +261 -0
  193. package/packages/plugin-languages/commands/python-optimize.md +593 -0
  194. package/packages/plugin-languages/package.json +65 -0
  195. package/packages/plugin-languages/plugin.json +265 -0
  196. package/packages/plugin-languages/rules/code-quality-standards.md +496 -0
  197. package/packages/plugin-languages/rules/testing-standards.md +768 -0
  198. package/packages/plugin-languages/scripts/examples/bash-production-script.sh +520 -0
  199. package/packages/plugin-languages/scripts/examples/javascript-es6-patterns.js +291 -0
  200. package/packages/plugin-languages/scripts/examples/nodejs-async-iteration.js +360 -0
  201. package/packages/plugin-languages/scripts/examples/python-async-patterns.py +289 -0
  202. package/packages/plugin-languages/scripts/examples/typescript-patterns.ts +432 -0
  203. package/packages/plugin-ml/README.md +430 -0
  204. package/packages/plugin-ml/agents/automl-expert.md +326 -0
  205. package/packages/plugin-ml/agents/computer-vision-expert.md +550 -0
  206. package/packages/plugin-ml/agents/gradient-boosting-expert.md +455 -0
  207. package/packages/plugin-ml/agents/neural-network-architect.md +1228 -0
  208. package/packages/plugin-ml/agents/nlp-transformer-expert.md +584 -0
  209. package/packages/plugin-ml/agents/pytorch-expert.md +412 -0
  210. package/packages/plugin-ml/agents/reinforcement-learning-expert.md +2088 -0
  211. package/packages/plugin-ml/agents/scikit-learn-expert.md +228 -0
  212. package/packages/plugin-ml/agents/tensorflow-keras-expert.md +509 -0
  213. package/packages/plugin-ml/agents/time-series-expert.md +303 -0
  214. package/packages/plugin-ml/commands/ml-automl.md +572 -0
  215. package/packages/plugin-ml/commands/ml-train-optimize.md +657 -0
  216. package/packages/plugin-ml/package.json +52 -0
  217. package/packages/plugin-ml/plugin.json +338 -0
  218. package/packages/plugin-pm/README.md +368 -0
  219. package/packages/plugin-pm/claudeautopm-plugin-pm-2.0.0.tgz +0 -0
  220. package/packages/plugin-pm/commands/azure/COMMANDS.md +107 -0
  221. package/packages/plugin-pm/commands/azure/COMMAND_MAPPING.md +252 -0
  222. package/packages/plugin-pm/commands/azure/INTEGRATION_FIX.md +103 -0
  223. package/packages/plugin-pm/commands/azure/README.md +246 -0
  224. package/packages/plugin-pm/commands/azure/active-work.md +198 -0
  225. package/packages/plugin-pm/commands/azure/aliases.md +143 -0
  226. package/packages/plugin-pm/commands/azure/blocked-items.md +287 -0
  227. package/packages/plugin-pm/commands/azure/clean.md +93 -0
  228. package/packages/plugin-pm/commands/azure/docs-query.md +48 -0
  229. package/packages/plugin-pm/commands/azure/feature-decompose.md +380 -0
  230. package/packages/plugin-pm/commands/azure/feature-list.md +61 -0
  231. package/packages/plugin-pm/commands/azure/feature-new.md +115 -0
  232. package/packages/plugin-pm/commands/azure/feature-show.md +205 -0
  233. package/packages/plugin-pm/commands/azure/feature-start.md +130 -0
  234. package/packages/plugin-pm/commands/azure/fix-integration-example.md +93 -0
  235. package/packages/plugin-pm/commands/azure/help.md +150 -0
  236. package/packages/plugin-pm/commands/azure/import-us.md +269 -0
  237. package/packages/plugin-pm/commands/azure/init.md +211 -0
  238. package/packages/plugin-pm/commands/azure/next-task.md +262 -0
  239. package/packages/plugin-pm/commands/azure/search.md +160 -0
  240. package/packages/plugin-pm/commands/azure/sprint-status.md +235 -0
  241. package/packages/plugin-pm/commands/azure/standup.md +260 -0
  242. package/packages/plugin-pm/commands/azure/sync-all.md +99 -0
  243. package/packages/plugin-pm/commands/azure/task-analyze.md +186 -0
  244. package/packages/plugin-pm/commands/azure/task-close.md +329 -0
  245. package/packages/plugin-pm/commands/azure/task-edit.md +145 -0
  246. package/packages/plugin-pm/commands/azure/task-list.md +263 -0
  247. package/packages/plugin-pm/commands/azure/task-new.md +84 -0
  248. package/packages/plugin-pm/commands/azure/task-reopen.md +79 -0
  249. package/packages/plugin-pm/commands/azure/task-show.md +126 -0
  250. package/packages/plugin-pm/commands/azure/task-start.md +301 -0
  251. package/packages/plugin-pm/commands/azure/task-status.md +65 -0
  252. package/packages/plugin-pm/commands/azure/task-sync.md +67 -0
  253. package/packages/plugin-pm/commands/azure/us-edit.md +164 -0
  254. package/packages/plugin-pm/commands/azure/us-list.md +202 -0
  255. package/packages/plugin-pm/commands/azure/us-new.md +265 -0
  256. package/packages/plugin-pm/commands/azure/us-parse.md +253 -0
  257. package/packages/plugin-pm/commands/azure/us-show.md +188 -0
  258. package/packages/plugin-pm/commands/azure/us-status.md +320 -0
  259. package/packages/plugin-pm/commands/azure/validate.md +86 -0
  260. package/packages/plugin-pm/commands/azure/work-item-sync.md +47 -0
  261. package/packages/plugin-pm/commands/blocked.md +28 -0
  262. package/packages/plugin-pm/commands/clean.md +119 -0
  263. package/packages/plugin-pm/commands/context-create.md +136 -0
  264. package/packages/plugin-pm/commands/context-prime.md +170 -0
  265. package/packages/plugin-pm/commands/context-update.md +292 -0
  266. package/packages/plugin-pm/commands/context.md +28 -0
  267. package/packages/plugin-pm/commands/epic-close.md +86 -0
  268. package/packages/plugin-pm/commands/epic-decompose.md +370 -0
  269. package/packages/plugin-pm/commands/epic-edit.md +83 -0
  270. package/packages/plugin-pm/commands/epic-list.md +30 -0
  271. package/packages/plugin-pm/commands/epic-merge.md +222 -0
  272. package/packages/plugin-pm/commands/epic-oneshot.md +119 -0
  273. package/packages/plugin-pm/commands/epic-refresh.md +119 -0
  274. package/packages/plugin-pm/commands/epic-show.md +28 -0
  275. package/packages/plugin-pm/commands/epic-split.md +120 -0
  276. package/packages/plugin-pm/commands/epic-start.md +195 -0
  277. package/packages/plugin-pm/commands/epic-status.md +28 -0
  278. package/packages/plugin-pm/commands/epic-sync-modular.md +338 -0
  279. package/packages/plugin-pm/commands/epic-sync-original.md +473 -0
  280. package/packages/plugin-pm/commands/epic-sync.md +486 -0
  281. package/packages/plugin-pm/commands/github/workflow-create.md +42 -0
  282. package/packages/plugin-pm/commands/help.md +28 -0
  283. package/packages/plugin-pm/commands/import.md +115 -0
  284. package/packages/plugin-pm/commands/in-progress.md +28 -0
  285. package/packages/plugin-pm/commands/init.md +28 -0
  286. package/packages/plugin-pm/commands/issue-analyze.md +202 -0
  287. package/packages/plugin-pm/commands/issue-close.md +119 -0
  288. package/packages/plugin-pm/commands/issue-edit.md +93 -0
  289. package/packages/plugin-pm/commands/issue-reopen.md +87 -0
  290. package/packages/plugin-pm/commands/issue-show.md +41 -0
  291. package/packages/plugin-pm/commands/issue-start.md +234 -0
  292. package/packages/plugin-pm/commands/issue-status.md +95 -0
  293. package/packages/plugin-pm/commands/issue-sync.md +411 -0
  294. package/packages/plugin-pm/commands/next.md +28 -0
  295. package/packages/plugin-pm/commands/prd-edit.md +82 -0
  296. package/packages/plugin-pm/commands/prd-list.md +28 -0
  297. package/packages/plugin-pm/commands/prd-new.md +55 -0
  298. package/packages/plugin-pm/commands/prd-parse.md +42 -0
  299. package/packages/plugin-pm/commands/prd-status.md +28 -0
  300. package/packages/plugin-pm/commands/search.md +28 -0
  301. package/packages/plugin-pm/commands/standup.md +28 -0
  302. package/packages/plugin-pm/commands/status.md +28 -0
  303. package/packages/plugin-pm/commands/sync.md +99 -0
  304. package/packages/plugin-pm/commands/test-reference-update.md +151 -0
  305. package/packages/plugin-pm/commands/validate.md +28 -0
  306. package/packages/plugin-pm/commands/what-next.md +28 -0
  307. package/packages/plugin-pm/package.json +57 -0
  308. package/packages/plugin-pm/plugin.json +503 -0
  309. package/packages/plugin-pm/scripts/pm/analytics.js +425 -0
  310. package/packages/plugin-pm/scripts/pm/blocked.js +164 -0
  311. package/packages/plugin-pm/scripts/pm/blocked.sh +78 -0
  312. package/packages/plugin-pm/scripts/pm/clean.js +464 -0
  313. package/packages/plugin-pm/scripts/pm/context-create.js +216 -0
  314. package/packages/plugin-pm/scripts/pm/context-prime.js +335 -0
  315. package/packages/plugin-pm/scripts/pm/context-update.js +344 -0
  316. package/packages/plugin-pm/scripts/pm/context.js +338 -0
  317. package/packages/plugin-pm/scripts/pm/epic-close.js +347 -0
  318. package/packages/plugin-pm/scripts/pm/epic-edit.js +382 -0
  319. package/packages/plugin-pm/scripts/pm/epic-list.js +273 -0
  320. package/packages/plugin-pm/scripts/pm/epic-list.sh +109 -0
  321. package/packages/plugin-pm/scripts/pm/epic-show.js +291 -0
  322. package/packages/plugin-pm/scripts/pm/epic-show.sh +105 -0
  323. package/packages/plugin-pm/scripts/pm/epic-split.js +522 -0
  324. package/packages/plugin-pm/scripts/pm/epic-start/epic-start.js +183 -0
  325. package/packages/plugin-pm/scripts/pm/epic-start/epic-start.sh +94 -0
  326. package/packages/plugin-pm/scripts/pm/epic-status.js +291 -0
  327. package/packages/plugin-pm/scripts/pm/epic-status.sh +104 -0
  328. package/packages/plugin-pm/scripts/pm/epic-sync/README.md +208 -0
  329. package/packages/plugin-pm/scripts/pm/epic-sync/create-epic-issue.sh +77 -0
  330. package/packages/plugin-pm/scripts/pm/epic-sync/create-task-issues.sh +86 -0
  331. package/packages/plugin-pm/scripts/pm/epic-sync/update-epic-file.sh +79 -0
  332. package/packages/plugin-pm/scripts/pm/epic-sync/update-references.sh +89 -0
  333. package/packages/plugin-pm/scripts/pm/epic-sync.sh +137 -0
  334. package/packages/plugin-pm/scripts/pm/help.js +92 -0
  335. package/packages/plugin-pm/scripts/pm/help.sh +90 -0
  336. package/packages/plugin-pm/scripts/pm/in-progress.js +178 -0
  337. package/packages/plugin-pm/scripts/pm/in-progress.sh +93 -0
  338. package/packages/plugin-pm/scripts/pm/init.js +321 -0
  339. package/packages/plugin-pm/scripts/pm/init.sh +178 -0
  340. package/packages/plugin-pm/scripts/pm/issue-close.js +232 -0
  341. package/packages/plugin-pm/scripts/pm/issue-edit.js +310 -0
  342. package/packages/plugin-pm/scripts/pm/issue-show.js +272 -0
  343. package/packages/plugin-pm/scripts/pm/issue-start.js +181 -0
  344. package/packages/plugin-pm/scripts/pm/issue-sync/format-comment.sh +468 -0
  345. package/packages/plugin-pm/scripts/pm/issue-sync/gather-updates.sh +460 -0
  346. package/packages/plugin-pm/scripts/pm/issue-sync/post-comment.sh +330 -0
  347. package/packages/plugin-pm/scripts/pm/issue-sync/preflight-validation.sh +348 -0
  348. package/packages/plugin-pm/scripts/pm/issue-sync/update-frontmatter.sh +387 -0
  349. package/packages/plugin-pm/scripts/pm/lib/README.md +85 -0
  350. package/packages/plugin-pm/scripts/pm/lib/epic-discovery.js +119 -0
  351. package/packages/plugin-pm/scripts/pm/lib/logger.js +78 -0
  352. package/packages/plugin-pm/scripts/pm/next.js +189 -0
  353. package/packages/plugin-pm/scripts/pm/next.sh +72 -0
  354. package/packages/plugin-pm/scripts/pm/optimize.js +407 -0
  355. package/packages/plugin-pm/scripts/pm/pr-create.js +337 -0
  356. package/packages/plugin-pm/scripts/pm/pr-list.js +257 -0
  357. package/packages/plugin-pm/scripts/pm/prd-list.js +242 -0
  358. package/packages/plugin-pm/scripts/pm/prd-list.sh +103 -0
  359. package/packages/plugin-pm/scripts/pm/prd-new.js +684 -0
  360. package/packages/plugin-pm/scripts/pm/prd-parse.js +547 -0
  361. package/packages/plugin-pm/scripts/pm/prd-status.js +152 -0
  362. package/packages/plugin-pm/scripts/pm/prd-status.sh +63 -0
  363. package/packages/plugin-pm/scripts/pm/release.js +460 -0
  364. package/packages/plugin-pm/scripts/pm/search.js +192 -0
  365. package/packages/plugin-pm/scripts/pm/search.sh +89 -0
  366. package/packages/plugin-pm/scripts/pm/standup.js +362 -0
  367. package/packages/plugin-pm/scripts/pm/standup.sh +95 -0
  368. package/packages/plugin-pm/scripts/pm/status.js +148 -0
  369. package/packages/plugin-pm/scripts/pm/status.sh +59 -0
  370. package/packages/plugin-pm/scripts/pm/sync-batch.js +337 -0
  371. package/packages/plugin-pm/scripts/pm/sync.js +343 -0
  372. package/packages/plugin-pm/scripts/pm/template-list.js +141 -0
  373. package/packages/plugin-pm/scripts/pm/template-new.js +366 -0
  374. package/packages/plugin-pm/scripts/pm/validate.js +274 -0
  375. package/packages/plugin-pm/scripts/pm/validate.sh +106 -0
  376. package/packages/plugin-pm/scripts/pm/what-next.js +660 -0
  377. package/packages/plugin-testing/README.md +401 -0
  378. package/packages/plugin-testing/agents/frontend-testing-engineer.md +768 -0
  379. package/packages/plugin-testing/commands/jest-optimize.md +800 -0
  380. package/packages/plugin-testing/commands/playwright-optimize.md +887 -0
  381. package/packages/plugin-testing/commands/test-coverage.md +512 -0
  382. package/packages/plugin-testing/commands/test-performance.md +1041 -0
  383. package/packages/plugin-testing/commands/test-setup.md +414 -0
  384. package/packages/plugin-testing/package.json +40 -0
  385. package/packages/plugin-testing/plugin.json +197 -0
  386. package/packages/plugin-testing/rules/test-coverage-requirements.md +581 -0
  387. package/packages/plugin-testing/rules/testing-standards.md +529 -0
  388. package/packages/plugin-testing/scripts/examples/react-testing-example.test.jsx +460 -0
  389. package/packages/plugin-testing/scripts/examples/vitest-config-example.js +352 -0
  390. package/packages/plugin-testing/scripts/examples/vue-testing-example.test.js +586 -0
package/README.md CHANGED
@@ -5,57 +5,165 @@
5
5
  [![MIT License](https://img.shields.io/badge/License-MIT-28a745)](https://github.com/rafeekpro/ClaudeAutoPM/blob/main/LICENSE)
6
6
  [![GitHub Stars](https://img.shields.io/github/stars/rafeekpro/ClaudeAutoPM?style=social)](https://github.com/rafeekpro/ClaudeAutoPM)
7
7
 
8
- **AI-Powered Project Management Framework for Claude Code**
8
+ **AI-Powered Development Framework for Claude Code**
9
9
 
10
- Transform your development workflow with intelligent automation, parallel AI agent execution, and seamless integration with GitHub and Azure DevOps. From PRD to production in hours, not days.
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 comprehensive project management and development automation framework designed specifically for [Claude Code](https://claude.ai/code). It combines:
16
+ ClaudeAutoPM is a **modular, plugin-based development framework** designed specifically for [Claude Code](https://claude.ai/code). It provides:
17
17
 
18
- - **136+ CLI commands** including 24 complete PM commands (Issue, Workflow, Context, Utility)
19
- - **39 specialized AI agents** for intelligent tasks (analysis, design, development)
20
- - **Dynamic team management** with automatic agent switching
21
- - **Hybrid execution modes** - choose between CLI commands or AI assistance
22
- - **Full GitHub & Azure DevOps integration** for seamless workflow
23
- - **TDD-developed** with 168+ tests and 91%+ coverage
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
- ### The Problem We Solve
25
+ ### 🎉 **NEW in v2.8.2: Intelligent Scenario-Based Installation**
26
26
 
27
- Traditional development workflows face:
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
- ### Our Solution
29
+ ClaudeAutoPM now automatically installs the right plugins for your development needs:
34
30
 
35
- ClaudeAutoPM creates an **end-to-end automated pipeline**:
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
- PRD → Epic Decomposition → Parallel Development → Testing → Production
39
- ↓ ↓ ↓ ↓ ↓
40
- AI AI Agents Multiple AI Agents Automated Auto-deploy
41
- Analyze Work Simultaneously Testing with CI/CD
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
- ### 🎉 **NEW in v2.8.0-alpha: Complete GitHub Integration!**
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
- **Full Bidirectional GitHub Sync** - Seamless integration with GitHub Issues
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)
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
- **New GitHub Sync Commands:**
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
- - **Smart Conflict Detection**: Timestamp-based with multiple resolution strategies
78
- - **Sync Mapping**: Bidirectional tracking in `.claude/sync-map.json`
79
- - **Epic Support**: Epics → GitHub issues with "epic" label, tasks → checkboxes
80
- - **Rate Limiting**: Respects 5,000 req/hour limit with exponential backoff
81
- - **Error Handling**: Comprehensive error messages and recovery
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
- # 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
185
+ ### 📋 Complete CLI Command Suite (v2.7.0)
132
186
 
133
- **Complete Command Suite:**
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
- **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
- ---
221
+ ### ⚡ Execution Strategies
185
222
 
186
- ### 🎉 **v1.30.0: Advanced Conflict Resolution - Complete Sync Safety!**
223
+ **Adaptive by Default** - Choose your execution model:
187
224
 
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
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
- ```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
- ```
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**: Issues, PRs, Actions, Projects
462
- - **Azure DevOps**: Work Items, Boards, Pipelines, Repos
463
- - **Local**: Git-based workflow without remote provider
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 preset
495
- # - minimal: Basic setup
496
- # - docker-only: Docker development
497
- # - fullstack: Complete stack (recommended)
498
- # - devops: Full DevOps with K8s
499
- # - custom: Advanced configuration
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
- # 3. Configure your provider
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 New CLI Commands (v2.7.0+)**
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
- │ │ CLI Layer Agent Teams │ │ MCP Servers │ │
641
- │ │ (112 cmds) │ │ (39 agents) (Context7) │ │
642
- └──────┬──────┘ └──────┬───────┘ └──────┬───────┘
643
-
644
- └─────────────────┼──────────────────┘
645
-
646
- ┌────────────────────────┴─────────────────────────┐
647
- │ │ Execution Engine │ │
648
- │ │ - Sequential / Adaptive / Hybrid
649
- │ │ - Parallel agent coordination │
650
- │ │ - Context optimization
651
- │ │ - STANDALONE mode (direct service access)
652
- └────────────────────────┬─────────────────────────┘
653
-
654
- ┌────────────────────────┴─────────────────────────┐
655
- │ │ Provider Integration
656
- │ │ - GitHub (Issues, PRs, Actions)
657
- │ │ - Azure DevOps (Work Items, Boards)
658
- │ │ - Local (Git-based)
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
- ## 🌟 Why ClaudeAutoPM?
689
-
690
- ### vs Traditional PM Tools
691
- - **AI-native**: Built for Claude Code, not adapted
692
- - ✅ **Code-first**: PRDs → Code → Production
693
- - **Parallel execution**: Multiple agents work simultaneously
694
- - **Context-aware**: Never lose track of your work
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
- ### vs Other AI Tools
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
- ## 📦 What's Included
705
-
706
- ### CLI Commands (136+ total)
707
- - **Project Management**: 24 complete PM commands (Issue, Workflow, Context, Utility) ✨ NEW in v2.7.0
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
- ## 🔧 Advanced Tools
443
+ ## 📚 Documentation
735
444
 
736
- ### Epic Sync (JavaScript)
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
- Complete epic synchronization workflow in one command:
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
- ```bash
741
- # Full epic sync (create epic + tasks + update references)
742
- node .claude/lib/commands/pm/epicSync.js sync fullstack/01-infrastructure
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
- # Individual operations
745
- node .claude/lib/commands/pm/epicSync.js create-epic fullstack/01-infrastructure
746
- node .claude/lib/commands/pm/epicSync.js create-tasks fullstack/01-infrastructure 2
747
- node .claude/lib/commands/pm/epicSync.js update-epic fullstack/01-infrastructure 2
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
- **Features:**
751
- - Creates GitHub epic issue with labels and stats
752
- - Creates task issues for all tasks in epic
753
- - Updates epic file with GitHub URLs
754
- - Renames task files to match issue numbers
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
- ### Issue Sync (JavaScript)
475
+ ---
758
476
 
759
- Synchronize local development progress with GitHub issues:
477
+ ## 🛠️ Use Cases
760
478
 
761
- ```bash
762
- # Full sync workflow
763
- node .claude/lib/commands/pm/issueSync.js sync 123 .claude/epics/auth/updates/123
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
- # Mark task as complete
766
- node .claude/lib/commands/pm/issueSync.js sync 456 ./updates --complete
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
- # Dry run (preview without posting)
769
- node .claude/lib/commands/pm/issueSync.js sync 789 ./updates --dry-run
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
- # Individual operations
772
- node .claude/lib/commands/pm/issueSync.js gather 123 ./updates
773
- node .claude/lib/commands/pm/issueSync.js format 123 ./updates
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
- **Features:**
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
- **What gets synced:**
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
- ### Epic Status (JavaScript)
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
- Track epic progress with detailed status reporting:
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
- ```bash
796
- # Show epic status
797
- node .claude/lib/commands/pm/epicStatus.js fullstack/01-infrastructure
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
- # List available epics
800
- node .claude/lib/commands/pm/epicStatus.js
801
- ```
525
+ ---
802
526
 
803
- **Features:**
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
- **Example output:**
811
- ```
812
- Epic: fullstack/01-infrastructure
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
- Total tasks: 12
816
- Completed: 8 (67%)
817
- In Progress: 2
818
- Pending: 2
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
- Progress: [=================================-------------] 67%
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
- Sub-Epic Breakdown:
823
- -------------------
824
- backend 6 tasks (4 completed)
825
- frontend 4 tasks (3 completed)
826
- infrastructure 2 tasks (1 completed)
827
- ```
547
+ ---
828
548
 
829
- ### Why JavaScript Tools?
549
+ ## 🔄 Execution Strategies
830
550
 
831
- **Replaced 10 Bash scripts** (~2600 lines) with **3 JavaScript tools** (~1500 lines):
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
- **Benefits:**
834
- - Zero parsing errors (no heredoc/awk/sed complexity)
835
- - 🧪 Fully testable (all functions exported)
836
- - 📖 More readable and maintainable
837
- - 🚀 50% less code
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
- **Backward compatible:** Old Bash scripts still work, but new JS tools are recommended.
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>