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.
- package/README.md +76 -97
- package/bin/install.js +13 -13
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/src/agents/doc-updater.md +1 -1
- package/src/agents/gan-evaluator.md +209 -0
- package/src/agents/gan-generator.md +131 -0
- package/src/agents/gan-planner.md +99 -0
- package/src/agents/harness-optimizer.md +35 -0
- package/src/agents/loop-operator.md +36 -0
- package/src/agents/opensource-forker.md +198 -0
- package/src/agents/opensource-packager.md +249 -0
- package/src/agents/opensource-sanitizer.md +188 -0
- package/src/agents/performance-optimizer.md +446 -0
- package/src/available-rules/README.md +1 -1
- package/src/commands/{aside.md → ccp/aside.md} +14 -13
- package/src/commands/{build-fix.md → ccp/build-fix.md} +5 -0
- package/src/commands/{checkpoint.md → ccp/checkpoint.md} +12 -7
- package/src/commands/{code-review.md → ccp/code-review.md} +5 -0
- package/src/commands/{context-budget.md → ccp/context-budget.md} +2 -1
- package/src/commands/{cpp-build.md → ccp/cpp-build.md} +6 -5
- package/src/commands/{cpp-review.md → ccp/cpp-review.md} +7 -6
- package/src/commands/{cpp-test.md → ccp/cpp-test.md} +6 -5
- package/src/commands/ccp/docs-update.md +48 -0
- package/src/commands/{docs.md → ccp/docs.md} +4 -3
- package/src/commands/{e2e.md → ccp/e2e.md} +7 -6
- package/src/commands/{eval.md → ccp/eval.md} +10 -5
- package/src/commands/{evolve.md → ccp/evolve.md} +3 -3
- package/src/commands/{go-build.md → ccp/go-build.md} +6 -5
- package/src/commands/{go-review.md → ccp/go-review.md} +7 -6
- package/src/commands/{go-test.md → ccp/go-test.md} +6 -5
- package/src/commands/{gradle-build.md → ccp/gradle-build.md} +1 -0
- package/src/commands/{harness-audit.md → ccp/harness-audit.md} +6 -1
- package/src/commands/{kotlin-build.md → ccp/kotlin-build.md} +6 -5
- package/src/commands/{kotlin-review.md → ccp/kotlin-review.md} +7 -6
- package/src/commands/{kotlin-test.md → ccp/kotlin-test.md} +6 -5
- package/src/commands/{learn.md → ccp/learn.md} +7 -2
- package/src/commands/{model-route.md → ccp/model-route.md} +6 -1
- package/src/commands/{orchestrate.md → ccp/orchestrate.md} +4 -3
- package/src/commands/{plan.md → ccp/plan.md} +6 -5
- package/src/commands/ccp/profile-user.md +46 -0
- package/src/commands/{prompt-optimize.md → ccp/prompt-optimize.md} +3 -2
- package/src/commands/{prune.md → ccp/prune.md} +4 -4
- package/src/commands/{python-review.md → ccp/python-review.md} +7 -6
- package/src/commands/{quality-gate.md → ccp/quality-gate.md} +6 -1
- package/src/commands/{refactor-clean.md → ccp/refactor-clean.md} +5 -0
- package/src/commands/{resume-session.md → ccp/resume-session.md} +9 -8
- package/src/commands/ccp/review.md +37 -0
- package/src/commands/{rules-distill.md → ccp/rules-distill.md} +2 -1
- package/src/commands/{rust-build.md → ccp/rust-build.md} +6 -5
- package/src/commands/{rust-review.md → ccp/rust-review.md} +7 -6
- package/src/commands/{rust-test.md → ccp/rust-test.md} +6 -5
- package/src/commands/{save-session.md → ccp/save-session.md} +2 -1
- package/src/commands/ccp/secure-phase.md +35 -0
- package/src/commands/{sessions.md → ccp/sessions.md} +29 -24
- package/src/commands/{setup-pm.md → ccp/setup-pm.md} +1 -0
- package/src/commands/{setup-refresh.md → ccp/setup-refresh.md} +4 -3
- package/src/commands/{setup.md → ccp/setup.md} +24 -23
- package/src/commands/{skill-create.md → ccp/skill-create.md} +8 -8
- package/src/commands/{skill-health.md → ccp/skill-health.md} +5 -5
- package/src/commands/{tdd.md → ccp/tdd.md} +9 -8
- package/src/commands/{test-coverage.md → ccp/test-coverage.md} +5 -0
- package/src/commands/{tool-guide.md → ccp/tool-guide.md} +2 -1
- package/src/commands/{update-codemaps.md → ccp/update-codemaps.md} +5 -0
- package/src/commands/{update-docs.md → ccp/update-docs.md} +5 -0
- package/src/commands/{verify.md → ccp/verify.md} +5 -0
- package/src/commands/ccp/workstreams.md +68 -0
- package/src/examples/CLAUDE.md +4 -4
- package/src/examples/django-api-CLAUDE.md +5 -5
- package/src/examples/go-microservice-CLAUDE.md +6 -6
- package/src/examples/rust-api-CLAUDE.md +4 -4
- package/src/examples/saas-nextjs-CLAUDE.md +8 -8
- package/src/hooks/session-start.js +1 -1
- package/src/pilot/references/mcp-servers.json +1 -1
- package/src/pilot/workflows/docs-update.md +1165 -0
- package/src/pilot/workflows/help.md +48 -56
- package/src/pilot/workflows/profile-user.md +452 -0
- package/src/pilot/workflows/review.md +244 -0
- package/src/pilot/workflows/secure-phase.md +164 -0
- package/src/rules/common/code-review.md +124 -0
- package/src/rules/zh/README.md +108 -0
- package/src/rules/zh/agents.md +50 -0
- package/src/rules/zh/code-review.md +124 -0
- package/src/rules/zh/coding-style.md +48 -0
- package/src/rules/zh/development-workflow.md +44 -0
- package/src/rules/zh/git-workflow.md +24 -0
- package/src/rules/zh/hooks.md +30 -0
- package/src/rules/zh/patterns.md +31 -0
- package/src/rules/zh/performance.md +55 -0
- package/src/rules/zh/security.md +29 -0
- package/src/rules/zh/testing.md +29 -0
- package/src/skills/autonomous-agent-harness/SKILL.md +267 -0
- package/src/skills/autonomous-loops/SKILL.md +610 -0
- package/src/skills/bun-runtime/SKILL.md +84 -0
- package/src/skills/content-hash-cache-pattern/SKILL.md +161 -0
- package/src/skills/context-budget/SKILL.md +3 -3
- package/src/skills/continuous-learning-v2/SKILL.md +4 -4
- package/src/skills/continuous-learning-v2/agents/observer.md +1 -1
- package/src/skills/cost-aware-llm-pipeline/SKILL.md +183 -0
- package/src/skills/design-system/SKILL.md +82 -0
- package/src/skills/eval-harness/SKILL.md +270 -0
- package/src/skills/flutter-dart-code-review/SKILL.md +435 -0
- package/src/skills/gan-style-harness/SKILL.md +278 -0
- package/src/skills/git-workflow/SKILL.md +715 -0
- package/src/skills/hexagonal-architecture/SKILL.md +276 -0
- package/src/skills/iterative-retrieval/SKILL.md +211 -0
- package/src/skills/laravel-plugin-discovery/SKILL.md +229 -0
- package/src/skills/nextjs-turbopack/SKILL.md +44 -0
- package/src/skills/nuxt4-patterns/SKILL.md +100 -0
- package/src/skills/opensource-pipeline/SKILL.md +255 -0
- package/src/skills/perl-security/SKILL.md +503 -0
- package/src/skills/project-flow-ops/SKILL.md +111 -0
- package/src/skills/project-guidelines-example/SKILL.md +349 -0
- package/src/skills/prompt-optimizer/SKILL.md +38 -38
- package/src/skills/pytorch-patterns/SKILL.md +396 -0
- package/src/skills/regex-vs-llm-structured-text/SKILL.md +220 -0
- package/src/skills/repo-scan/SKILL.md +78 -0
- package/src/skills/rules-distill/SKILL.md +264 -0
- package/src/skills/rules-distill/scripts/scan-rules.sh +58 -0
- package/src/skills/rules-distill/scripts/scan-skills.sh +129 -0
- package/src/skills/swift-concurrency-6-2/SKILL.md +216 -0
- package/src/skills/token-budget-advisor/SKILL.md +133 -0
- package/src/skills/verification-loop/SKILL.md +1 -1
- 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
|
|
222
|
-
/go-review
|
|
223
|
-
/go-build
|
|
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
|
|
251
|
+
/ccp:go-test # TDD with Go-specific patterns
|
|
252
252
|
|
|
253
253
|
# Review
|
|
254
|
-
/go-review
|
|
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
|
|
270
|
+
/ccp:tdd # cargo test-based TDD workflow
|
|
271
271
|
|
|
272
272
|
# Review
|
|
273
|
-
/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
|
|
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
|
|
132
|
-
/e2e
|
|
133
|
-
/test-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",
|