cc-devflow 4.5.6 → 4.5.8
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/.claude/skills/cc-act/CHANGELOG.md +6 -0
- package/.claude/skills/cc-act/PLAYBOOK.md +11 -2
- package/.claude/skills/cc-act/SKILL.md +17 -7
- package/.claude/skills/cc-act/references/closure-contract.md +4 -0
- package/.claude/skills/cc-act/scripts/{archive-requirement.sh → archive-change.sh} +7 -7
- package/.claude/skills/cc-act/scripts/detect-ship-target.sh +27 -0
- package/.claude/skills/cc-act/scripts/ensure-ship-branch.sh +93 -0
- package/.claude/skills/cc-act/scripts/generate-status-report.sh +6 -0
- package/.claude/skills/cc-act/scripts/render-pr-brief.sh +6 -0
- package/.claude/skills/cc-act/scripts/sync-act-docs.sh +14 -0
- package/.claude/skills/cc-dev/CHANGELOG.md +5 -0
- package/.claude/skills/cc-dev/PLAYBOOK.md +63 -0
- package/.claude/skills/cc-dev/SKILL.md +168 -0
- package/.claude/skills/cc-do/CHANGELOG.md +6 -0
- package/.claude/skills/cc-do/SKILL.md +23 -1
- package/.claude/skills/cc-investigate/CHANGELOG.md +5 -0
- package/.claude/skills/cc-investigate/SKILL.md +2 -2
- package/.claude/skills/cc-next/CHANGELOG.md +5 -0
- package/.claude/skills/cc-next/PLAYBOOK.md +52 -0
- package/.claude/skills/cc-next/SKILL.md +161 -0
- package/.claude/skills/cc-plan/CHANGELOG.md +28 -0
- package/.claude/skills/cc-plan/PLAYBOOK.md +20 -17
- package/.claude/skills/cc-plan/SKILL.md +135 -21
- package/.claude/skills/cc-plan/assets/DESIGN_TEMPLATE.md +42 -0
- package/.claude/skills/cc-plan/assets/TASKS_TEMPLATE.md +28 -0
- package/.claude/skills/cc-plan/assets/TASK_MANIFEST_TEMPLATE.json +84 -2
- package/.claude/skills/cc-plan/assets/TINY_DESIGN_TEMPLATE.md +30 -0
- package/.claude/skills/cc-plan/references/planning-contract.md +31 -15
- package/.claude/skills/cc-plan/scripts/next-change-key.sh +78 -0
- package/.claude/skills/cc-pr-land/CHANGELOG.md +5 -0
- package/.claude/skills/cc-pr-land/PLAYBOOK.md +45 -0
- package/.claude/skills/cc-pr-land/SKILL.md +157 -0
- package/.claude/skills/cc-pr-review/CHANGELOG.md +5 -0
- package/.claude/skills/cc-pr-review/PLAYBOOK.md +46 -0
- package/.claude/skills/cc-pr-review/SKILL.md +142 -0
- package/.claude/skills/cc-review/CHANGELOG.md +28 -0
- package/.claude/skills/cc-review/PLAYBOOK.md +108 -0
- package/.claude/skills/cc-review/SKILL.md +340 -0
- package/.claude/skills/cc-review/references/e2e-and-plugin-verification.md +85 -0
- package/.claude/skills/cc-review/references/implementation-review-branch.md +152 -0
- package/.claude/skills/cc-review/references/plan-review-branch.md +151 -0
- package/.claude/skills/cc-review/references/review-methods.md +221 -0
- package/.claude/skills/cc-review/scripts/collect-review-context.sh +80 -0
- package/.claude/skills/cc-roadmap/CHANGELOG.md +6 -0
- package/.claude/skills/cc-roadmap/SKILL.md +102 -8
- package/.claude/skills/cc-roadmap/assets/BACKLOG_TEMPLATE.md +3 -0
- package/.claude/skills/cc-roadmap/assets/ROADMAP_TEMPLATE.md +23 -0
- package/.claude/skills/cc-roadmap/assets/TRACKING_TEMPLATE.json +20 -1
- package/.claude/skills/cc-roadmap/references/roadmap-dialogue.md +28 -13
- package/.claude/skills/cc-roadmap/scripts/lib/roadmap-tracking/markdown.js +18 -0
- package/.claude/skills/cc-roadmap/scripts/lib/roadmap-tracking/schema.js +8 -0
- package/.claude/skills/cc-simplify/CHANGELOG.md +6 -0
- package/.claude/skills/cc-simplify/SKILL.md +19 -8
- package/CHANGELOG.md +16 -0
- package/README.md +58 -4
- package/README.zh-CN.md +58 -4
- package/bin/cc-devflow-cli.js +119 -0
- package/config/distributable-skills.json +10 -0
- package/docs/assets/cc-devflow-pr-harness-en.svg +153 -0
- package/docs/assets/cc-devflow-pr-harness-zh.svg +152 -0
- package/docs/assets/wechat-group-qr.jpg +0 -0
- package/docs/examples/example-bindings.json +11 -6
- package/docs/examples/full-design-blocked/BACKLOG.md +1 -1
- package/docs/examples/full-design-blocked/README.md +1 -1
- package/docs/examples/full-design-blocked/ROADMAP.md +16 -1
- package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/design.md +36 -3
- package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/task-manifest.json +604 -76
- package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/tasks.md +46 -1
- package/docs/examples/full-design-blocked/roadmap.json +18 -2
- package/docs/examples/local-handoff/BACKLOG.md +1 -1
- package/docs/examples/local-handoff/README.md +1 -1
- package/docs/examples/local-handoff/ROADMAP.md +16 -1
- package/docs/examples/local-handoff/changes/REQ-003-audit-log-export/planning/design.md +27 -1
- package/docs/examples/local-handoff/changes/REQ-003-audit-log-export/planning/task-manifest.json +366 -44
- package/docs/examples/local-handoff/changes/REQ-003-audit-log-export/planning/tasks.md +36 -1
- package/docs/examples/local-handoff/roadmap.json +16 -2
- package/docs/examples/pdca-loop/BACKLOG.md +1 -1
- package/docs/examples/pdca-loop/README.md +1 -1
- package/docs/examples/pdca-loop/ROADMAP.md +16 -1
- package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/design.md +27 -1
- package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/task-manifest.json +259 -14
- package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/tasks.md +36 -1
- package/docs/examples/pdca-loop/roadmap.json +16 -2
- package/docs/examples/scripts/check-example-bindings.sh +21 -1
- package/docs/guides/getting-started.md +12 -9
- package/docs/guides/getting-started.zh-CN.md +12 -9
- package/lib/skill-runtime/__tests__/archive-change.test.js +124 -0
- package/lib/skill-runtime/__tests__/cli-bootstrap.integration.test.js +1 -0
- package/lib/skill-runtime/__tests__/paths.test.js +81 -1
- package/lib/skill-runtime/archive-change.js +64 -0
- package/lib/skill-runtime/paths.js +32 -0
- package/package.json +7 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
- Example version: `1.0.0`
|
|
6
6
|
- Last reviewed: `2026-04-17`
|
|
7
|
-
- Bound skills: `cc-roadmap@5.
|
|
7
|
+
- Bound skills: `cc-roadmap@5.2.0`, `cc-plan@3.8.2`, `cc-do@1.6.3`, `cc-check@1.10.1`
|
|
8
8
|
|
|
9
9
|
This example shows a requirement that **looked executable**, but `cc-check` correctly stopped it and sent it back to `cc-plan`.
|
|
10
10
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Roadmap Meta
|
|
4
4
|
|
|
5
5
|
- Roadmap version: `roadmap.v2`
|
|
6
|
-
- Skill version: `5.
|
|
6
|
+
- Skill version: `5.2.0`
|
|
7
7
|
- Status: `active`
|
|
8
8
|
- Last updated: `2026-04-16`
|
|
9
9
|
- Owner / decider: `product-owner`
|
|
@@ -27,6 +27,21 @@
|
|
|
27
27
|
- Adoption / trust bottleneck: admins will not trust bulk invite if seat usage and audit logs drift
|
|
28
28
|
- Known unknowns: how duplicate users, seat limits, and partial imports should behave
|
|
29
29
|
|
|
30
|
+
## AI Leverage Route Lens
|
|
31
|
+
|
|
32
|
+
- Real user / operator: workspace admin onboarding 20-200 collaborators
|
|
33
|
+
- Status quo workaround: paste individual invite emails or coordinate in external spreadsheets
|
|
34
|
+
- Human-team effort for full scope: multiple weeks across product, engineering, billing, and support review
|
|
35
|
+
- CC / agent effort for full scope: several hours once row semantics are approved, but unbounded before that
|
|
36
|
+
- AI compression ratio: high after semantics freeze, low while the product contract is ambiguous
|
|
37
|
+
- Complete-lake boundary: row classification, admin upload flow, billing-seat checks, and audit mapping after rule approval
|
|
38
|
+
- Ocean boundary: SCIM, background retries, rollback wizard, and unspecified billing semantics
|
|
39
|
+
- Scope recommendation: `sharp-wedge`
|
|
40
|
+
- First success signal: admins can predict duplicate, invalid, and over-limit outcomes
|
|
41
|
+
- Kill signal: duplicate and seat-limit semantics remain unresolved
|
|
42
|
+
- Verdict: `sharp-wedge`
|
|
43
|
+
- Missing evidence before ready-for-cc-plan: none recorded at route handoff; cc-check later reopened duplicate, invalid-row, partial-success, and seat-limit semantics
|
|
44
|
+
|
|
30
45
|
## Route Options
|
|
31
46
|
|
|
32
47
|
| Shape | Why this could work | Why this may fail | Decision |
|
package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/design.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
- Requirement version: `REQ-002.v2`
|
|
6
6
|
- Design version: `design.v2`
|
|
7
|
-
- CC-Plan skill version: `3.
|
|
7
|
+
- CC-Plan skill version: `3.8.2`
|
|
8
8
|
- Requirement ID: `REQ-002`
|
|
9
9
|
- Design mode: `full-design`
|
|
10
10
|
- Why not `tiny-design`: the feature crosses import parsing, invite rules, billing limits, duplicate handling, and audit logging
|
|
@@ -120,12 +120,43 @@
|
|
|
120
120
|
- Deferred questions:
|
|
121
121
|
- whether partial success needs an explicit rollback option
|
|
122
122
|
|
|
123
|
+
## AI Leverage Decision Lens
|
|
124
|
+
|
|
125
|
+
- Real user / operator: workspace admin onboarding larger teams
|
|
126
|
+
- Status quo workaround: paste invite emails one by one or track them in spreadsheets
|
|
127
|
+
- Human-team effort for full scope: multiple weeks across product, engineering, billing, and support review
|
|
128
|
+
- CC / agent effort for full scope: several hours once row semantics are approved, but unbounded before that
|
|
129
|
+
- AI compression ratio: high after semantics freeze, low while the product contract is ambiguous
|
|
130
|
+
- Complete-lake boundary: row classification, admin upload flow, billing-seat checks, and audit mapping after rule approval
|
|
131
|
+
- Ocean boundary: SCIM, background retries, rollback wizard, and unspecified billing semantics
|
|
132
|
+
- Scope recommendation: `sharp-wedge`
|
|
133
|
+
- Cost model: medium agent time after rule approval, high human review time until semantics are approved, high failure cost if billing or audit outcomes drift
|
|
134
|
+
- Verdict: `sharp-wedge`
|
|
135
|
+
- Missing evidence or pivot reason: none at plan approval; cc-check later reopened duplicate, invalid-row, partial-success, and seat-limit semantics before retry or cc-act
|
|
136
|
+
|
|
137
|
+
## External Best-Practice Validation
|
|
138
|
+
|
|
139
|
+
- Needed: Yes
|
|
140
|
+
- Decision status: declined
|
|
141
|
+
- Decision question: `D2`
|
|
142
|
+
- Privacy guard: generalized terms only; no project names, private requirements, customer names, secrets, logs, or proprietary concepts
|
|
143
|
+
- Generalized search terms:
|
|
144
|
+
- `bulk invite CSV import validation best practices`
|
|
145
|
+
- Sources checked:
|
|
146
|
+
- Conventional wisdom:
|
|
147
|
+
- Current discourse:
|
|
148
|
+
- Repo-fit verdict: skipped
|
|
149
|
+
- Changes to options / tasks:
|
|
150
|
+
- keep the design blocked until row-outcome semantics are approved from internal evidence
|
|
151
|
+
- Skipped reason: user kept the example repo-local for the blocked design
|
|
152
|
+
|
|
123
153
|
## Decision Questions
|
|
124
154
|
|
|
125
155
|
| ID | Gate | Known evidence | Recommendation | User choice | Impact on `cc-do` | Status |
|
|
126
156
|
|----|------|----------------|----------------|-------------|-------------------|--------|
|
|
127
157
|
| D1 | approach-approval | Best-effort upload would let duplicate, invalid, and seat-limit semantics drift during execution | Choose Option B and freeze a rule matrix first | Option B | Keep execution blocked until row outcomes are modeled | answered |
|
|
128
|
-
| D2 |
|
|
158
|
+
| D2 | external-best-practice | Bulk CSV import semantics could benefit from generalized external practice, but this example stays repo-local | Stay repo-local for this blocked example | Stay repo-local | `cc-do` still must not start implementation until row outcomes are answered from internal evidence | answered |
|
|
159
|
+
| D3 | review-blocker | Duplicate and seat-limit outcomes are still not explicit enough for final requirement proof | Answer the row-outcome matrix before retry or cc-act | pending | `cc-do` retry and `cc-act` must stay blocked until this is answered | asked |
|
|
129
160
|
|
|
130
161
|
## Design
|
|
131
162
|
|
|
@@ -176,7 +207,9 @@
|
|
|
176
207
|
- Feasibility scan: pass
|
|
177
208
|
- Source alignment: pass; roadmap still prioritizes trust over speed
|
|
178
209
|
- PRD brief scan: pass for actors and stories; blocked on duplicate and seat-limit semantics
|
|
179
|
-
- Decision
|
|
210
|
+
- AI Leverage Decision Lens scan: pass at plan approval as a sharp wedge; cc-check later blocked final proof because product semantics were still unbounded evidence risk
|
|
211
|
+
- External best-practice scan: pass; declined and recorded before task generation
|
|
212
|
+
- Decision question scan: blocked; `D3` is still unanswered
|
|
180
213
|
- UI / interaction review summary: result states are acceptable if semantics are frozen first
|
|
181
214
|
- DX review summary: execution still needs a single row-outcome matrix
|
|
182
215
|
- Auto-decided items:
|