claude-code-pilot 3.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/README.md +76 -97
  2. package/bin/install.js +13 -13
  3. package/manifest.json +1 -1
  4. package/package.json +1 -1
  5. package/src/agents/doc-updater.md +1 -1
  6. package/src/agents/gan-evaluator.md +209 -0
  7. package/src/agents/gan-generator.md +131 -0
  8. package/src/agents/gan-planner.md +99 -0
  9. package/src/agents/harness-optimizer.md +35 -0
  10. package/src/agents/loop-operator.md +36 -0
  11. package/src/agents/opensource-forker.md +198 -0
  12. package/src/agents/opensource-packager.md +249 -0
  13. package/src/agents/opensource-sanitizer.md +188 -0
  14. package/src/agents/performance-optimizer.md +446 -0
  15. package/src/available-rules/README.md +1 -1
  16. package/src/commands/{aside.md → ccp/aside.md} +14 -13
  17. package/src/commands/{build-fix.md → ccp/build-fix.md} +5 -0
  18. package/src/commands/{checkpoint.md → ccp/checkpoint.md} +12 -7
  19. package/src/commands/{code-review.md → ccp/code-review.md} +5 -0
  20. package/src/commands/{context-budget.md → ccp/context-budget.md} +2 -1
  21. package/src/commands/{cpp-build.md → ccp/cpp-build.md} +6 -5
  22. package/src/commands/{cpp-review.md → ccp/cpp-review.md} +7 -6
  23. package/src/commands/{cpp-test.md → ccp/cpp-test.md} +6 -5
  24. package/src/commands/ccp/docs-update.md +48 -0
  25. package/src/commands/{docs.md → ccp/docs.md} +4 -3
  26. package/src/commands/{e2e.md → ccp/e2e.md} +7 -6
  27. package/src/commands/{eval.md → ccp/eval.md} +10 -5
  28. package/src/commands/{evolve.md → ccp/evolve.md} +3 -3
  29. package/src/commands/{go-build.md → ccp/go-build.md} +6 -5
  30. package/src/commands/{go-review.md → ccp/go-review.md} +7 -6
  31. package/src/commands/{go-test.md → ccp/go-test.md} +6 -5
  32. package/src/commands/{gradle-build.md → ccp/gradle-build.md} +1 -0
  33. package/src/commands/{harness-audit.md → ccp/harness-audit.md} +6 -1
  34. package/src/commands/{kotlin-build.md → ccp/kotlin-build.md} +6 -5
  35. package/src/commands/{kotlin-review.md → ccp/kotlin-review.md} +7 -6
  36. package/src/commands/{kotlin-test.md → ccp/kotlin-test.md} +6 -5
  37. package/src/commands/{learn.md → ccp/learn.md} +7 -2
  38. package/src/commands/{model-route.md → ccp/model-route.md} +6 -1
  39. package/src/commands/{orchestrate.md → ccp/orchestrate.md} +4 -3
  40. package/src/commands/{plan.md → ccp/plan.md} +6 -5
  41. package/src/commands/ccp/profile-user.md +46 -0
  42. package/src/commands/{prompt-optimize.md → ccp/prompt-optimize.md} +3 -2
  43. package/src/commands/{prune.md → ccp/prune.md} +4 -4
  44. package/src/commands/{python-review.md → ccp/python-review.md} +7 -6
  45. package/src/commands/{quality-gate.md → ccp/quality-gate.md} +6 -1
  46. package/src/commands/{refactor-clean.md → ccp/refactor-clean.md} +5 -0
  47. package/src/commands/{resume-session.md → ccp/resume-session.md} +9 -8
  48. package/src/commands/ccp/review.md +37 -0
  49. package/src/commands/{rules-distill.md → ccp/rules-distill.md} +2 -1
  50. package/src/commands/{rust-build.md → ccp/rust-build.md} +6 -5
  51. package/src/commands/{rust-review.md → ccp/rust-review.md} +7 -6
  52. package/src/commands/{rust-test.md → ccp/rust-test.md} +6 -5
  53. package/src/commands/{save-session.md → ccp/save-session.md} +2 -1
  54. package/src/commands/ccp/secure-phase.md +35 -0
  55. package/src/commands/{sessions.md → ccp/sessions.md} +29 -24
  56. package/src/commands/{setup-pm.md → ccp/setup-pm.md} +1 -0
  57. package/src/commands/{setup-refresh.md → ccp/setup-refresh.md} +4 -3
  58. package/src/commands/{setup.md → ccp/setup.md} +24 -23
  59. package/src/commands/{skill-create.md → ccp/skill-create.md} +8 -8
  60. package/src/commands/{skill-health.md → ccp/skill-health.md} +5 -5
  61. package/src/commands/{tdd.md → ccp/tdd.md} +9 -8
  62. package/src/commands/{test-coverage.md → ccp/test-coverage.md} +5 -0
  63. package/src/commands/{tool-guide.md → ccp/tool-guide.md} +2 -1
  64. package/src/commands/{update-codemaps.md → ccp/update-codemaps.md} +5 -0
  65. package/src/commands/{update-docs.md → ccp/update-docs.md} +5 -0
  66. package/src/commands/{verify.md → ccp/verify.md} +5 -0
  67. package/src/commands/ccp/workstreams.md +68 -0
  68. package/src/examples/CLAUDE.md +4 -4
  69. package/src/examples/django-api-CLAUDE.md +5 -5
  70. package/src/examples/go-microservice-CLAUDE.md +6 -6
  71. package/src/examples/rust-api-CLAUDE.md +4 -4
  72. package/src/examples/saas-nextjs-CLAUDE.md +8 -8
  73. package/src/hooks/session-start.js +1 -1
  74. package/src/pilot/references/mcp-servers.json +1 -1
  75. package/src/pilot/workflows/docs-update.md +1165 -0
  76. package/src/pilot/workflows/help.md +48 -56
  77. package/src/pilot/workflows/profile-user.md +452 -0
  78. package/src/pilot/workflows/review.md +244 -0
  79. package/src/pilot/workflows/secure-phase.md +164 -0
  80. package/src/rules/common/code-review.md +124 -0
  81. package/src/rules/zh/README.md +108 -0
  82. package/src/rules/zh/agents.md +50 -0
  83. package/src/rules/zh/code-review.md +124 -0
  84. package/src/rules/zh/coding-style.md +48 -0
  85. package/src/rules/zh/development-workflow.md +44 -0
  86. package/src/rules/zh/git-workflow.md +24 -0
  87. package/src/rules/zh/hooks.md +30 -0
  88. package/src/rules/zh/patterns.md +31 -0
  89. package/src/rules/zh/performance.md +55 -0
  90. package/src/rules/zh/security.md +29 -0
  91. package/src/rules/zh/testing.md +29 -0
  92. package/src/skills/autonomous-agent-harness/SKILL.md +267 -0
  93. package/src/skills/autonomous-loops/SKILL.md +610 -0
  94. package/src/skills/bun-runtime/SKILL.md +84 -0
  95. package/src/skills/content-hash-cache-pattern/SKILL.md +161 -0
  96. package/src/skills/context-budget/SKILL.md +3 -3
  97. package/src/skills/continuous-learning-v2/SKILL.md +4 -4
  98. package/src/skills/continuous-learning-v2/agents/observer.md +1 -1
  99. package/src/skills/cost-aware-llm-pipeline/SKILL.md +183 -0
  100. package/src/skills/design-system/SKILL.md +82 -0
  101. package/src/skills/eval-harness/SKILL.md +270 -0
  102. package/src/skills/flutter-dart-code-review/SKILL.md +435 -0
  103. package/src/skills/gan-style-harness/SKILL.md +278 -0
  104. package/src/skills/git-workflow/SKILL.md +715 -0
  105. package/src/skills/hexagonal-architecture/SKILL.md +276 -0
  106. package/src/skills/iterative-retrieval/SKILL.md +211 -0
  107. package/src/skills/laravel-plugin-discovery/SKILL.md +229 -0
  108. package/src/skills/nextjs-turbopack/SKILL.md +44 -0
  109. package/src/skills/nuxt4-patterns/SKILL.md +100 -0
  110. package/src/skills/opensource-pipeline/SKILL.md +255 -0
  111. package/src/skills/perl-security/SKILL.md +503 -0
  112. package/src/skills/project-flow-ops/SKILL.md +111 -0
  113. package/src/skills/project-guidelines-example/SKILL.md +349 -0
  114. package/src/skills/prompt-optimizer/SKILL.md +38 -38
  115. package/src/skills/pytorch-patterns/SKILL.md +396 -0
  116. package/src/skills/regex-vs-llm-structured-text/SKILL.md +220 -0
  117. package/src/skills/repo-scan/SKILL.md +78 -0
  118. package/src/skills/rules-distill/SKILL.md +264 -0
  119. package/src/skills/rules-distill/scripts/scan-rules.sh +58 -0
  120. package/src/skills/rules-distill/scripts/scan-skills.sh +129 -0
  121. package/src/skills/swift-concurrency-6-2/SKILL.md +216 -0
  122. package/src/skills/token-budget-advisor/SKILL.md +133 -0
  123. package/src/skills/verification-loop/SKILL.md +1 -1
  124. package/src/skills/workspace-surface-audit/SKILL.md +125 -0
@@ -218,9 +218,9 @@ OTEL_ENDPOINT= # OpenTelemetry collector
218
218
  ## Testing Strategy
219
219
 
220
220
  ```bash
221
- /go-test # TDD workflow for Go
222
- /go-review # Go-specific code review
223
- /go-build # Fix build errors
221
+ /ccp:go-test # TDD workflow for Go
222
+ /ccp:go-review # Go-specific code review
223
+ /ccp:go-build # Fix build errors
224
224
  ```
225
225
 
226
226
  ### Test Commands
@@ -245,13 +245,13 @@ go test ./... -race -count=1
245
245
 
246
246
  ```bash
247
247
  # Planning
248
- /plan "Add rate limiting to user endpoints"
248
+ /ccp:plan "Add rate limiting to user endpoints"
249
249
 
250
250
  # Development
251
- /go-test # TDD with Go-specific patterns
251
+ /ccp:go-test # TDD with Go-specific patterns
252
252
 
253
253
  # Review
254
- /go-review # Go idioms, error handling, concurrency
254
+ /ccp:go-review # Go idioms, error handling, concurrency
255
255
  /security-scan # Secrets and vulnerabilities
256
256
 
257
257
  # Before merge
@@ -264,17 +264,17 @@ cargo fmt -- --check
264
264
 
265
265
  ```bash
266
266
  # Planning
267
- /plan "Add order fulfillment with Stripe payment"
267
+ /ccp:plan "Add order fulfillment with Stripe payment"
268
268
 
269
269
  # Development with TDD
270
- /tdd # cargo test-based TDD workflow
270
+ /ccp:tdd # cargo test-based TDD workflow
271
271
 
272
272
  # Review
273
- /code-review # Rust-specific code review
273
+ /ccp:code-review # Rust-specific code review
274
274
  /security-scan # Dependency audit + unsafe scan
275
275
 
276
276
  # Verification
277
- /verify # Build, clippy, test, security scan
277
+ /ccp:verify # Build, clippy, test, security scan
278
278
  ```
279
279
 
280
280
  ## Git Workflow
@@ -128,9 +128,9 @@ NEXT_PUBLIC_APP_URL=http://localhost:3000
128
128
  ## Testing Strategy
129
129
 
130
130
  ```bash
131
- /tdd # Unit + integration tests for new features
132
- /e2e # Playwright tests for auth flow, billing, dashboard
133
- /test-coverage # Verify 80%+ coverage
131
+ /ccp:tdd # Unit + integration tests for new features
132
+ /ccp:e2e # Playwright tests for auth flow, billing, dashboard
133
+ /ccp:test-coverage # Verify 80%+ coverage
134
134
  ```
135
135
 
136
136
  ### Critical E2E Flows
@@ -144,18 +144,18 @@ NEXT_PUBLIC_APP_URL=http://localhost:3000
144
144
 
145
145
  ```bash
146
146
  # Planning a feature
147
- /plan "Add team invitations with email notifications"
147
+ /ccp:plan "Add team invitations with email notifications"
148
148
 
149
149
  # Developing with TDD
150
- /tdd
150
+ /ccp:tdd
151
151
 
152
152
  # Before committing
153
- /code-review
153
+ /ccp:code-review
154
154
  /security-scan
155
155
 
156
156
  # Before release
157
- /e2e
158
- /test-coverage
157
+ /ccp:e2e
158
+ /ccp:test-coverage
159
159
  ```
160
160
 
161
161
  ## Git Workflow
@@ -91,7 +91,7 @@ async function main() {
91
91
  if (aliases.length > 0) {
92
92
  const aliasNames = aliases.map(a => a.name).join(', ');
93
93
  log(`[SessionStart] ${aliases.length} session alias(es) available: ${aliasNames}`);
94
- log(`[SessionStart] Use /sessions load <alias> to continue a previous session`);
94
+ log(`[SessionStart] Use /ccp:sessions load <alias> to continue a previous session`);
95
95
  }
96
96
 
97
97
  // Detect and report package manager
@@ -77,7 +77,7 @@
77
77
  "context7": {
78
78
  "command": "npx",
79
79
  "args": ["-y", "@upstash/context7-mcp@latest"],
80
- "description": "Live documentation lookup — use with /docs command and documentation-lookup skill (resolve-library-id, query-docs)."
80
+ "description": "Live documentation lookup — use with /ccp:docs command and documentation-lookup skill (resolve-library-id, query-docs)."
81
81
  },
82
82
  "magic": {
83
83
  "command": "npx",