cc-devflow 4.4.1 → 4.5.1

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 (75) hide show
  1. package/.claude/skills/cc-act/CHANGELOG.md +6 -0
  2. package/.claude/skills/cc-act/SKILL.md +9 -1
  3. package/.claude/skills/cc-act/assets/PR_BRIEF_TEMPLATE.md +4 -0
  4. package/.claude/skills/cc-act/assets/RELEASE_NOTE_TEMPLATE.md +4 -0
  5. package/.claude/skills/cc-act/scripts/cc-act-common.sh +5 -0
  6. package/.claude/skills/cc-act/scripts/render-pr-brief.sh +5 -0
  7. package/.claude/skills/cc-act/scripts/sync-act-docs.sh +14 -1
  8. package/.claude/skills/cc-check/CHANGELOG.md +5 -0
  9. package/.claude/skills/cc-check/SKILL.md +9 -1
  10. package/.claude/skills/cc-check/assets/REPORT_CARD_TEMPLATE.json +3 -0
  11. package/.claude/skills/cc-do/CHANGELOG.md +5 -0
  12. package/.claude/skills/cc-do/SKILL.md +9 -1
  13. package/.claude/skills/cc-investigate/CHANGELOG.md +5 -0
  14. package/.claude/skills/cc-investigate/SKILL.md +9 -1
  15. package/.claude/skills/cc-investigate/assets/ANALYSIS_TEMPLATE.md +1 -0
  16. package/.claude/skills/cc-investigate/assets/TASKS_TEMPLATE.md +1 -0
  17. package/.claude/skills/cc-investigate/assets/TASK_MANIFEST_TEMPLATE.json +3 -0
  18. package/.claude/skills/cc-plan/CHANGELOG.md +19 -0
  19. package/.claude/skills/cc-plan/PLAYBOOK.md +19 -2
  20. package/.claude/skills/cc-plan/SKILL.md +60 -20
  21. package/.claude/skills/cc-plan/assets/DESIGN_TEMPLATE.md +71 -1
  22. package/.claude/skills/cc-plan/assets/TASKS_TEMPLATE.md +14 -0
  23. package/.claude/skills/cc-plan/assets/TASK_MANIFEST_TEMPLATE.json +6 -1
  24. package/.claude/skills/cc-plan/assets/TINY_DESIGN_TEMPLATE.md +23 -0
  25. package/.claude/skills/cc-roadmap/CHANGELOG.md +17 -0
  26. package/.claude/skills/cc-roadmap/PLAYBOOK.md +24 -1
  27. package/.claude/skills/cc-roadmap/SKILL.md +58 -15
  28. package/.claude/skills/cc-roadmap/assets/BACKLOG_TEMPLATE.md +16 -0
  29. package/.claude/skills/cc-roadmap/assets/ROADMAP_TEMPLATE.md +38 -0
  30. package/.claude/skills/cc-roadmap/assets/TRACKING_TEMPLATE.json +5 -1
  31. package/.claude/skills/cc-spec-init/CHANGELOG.md +5 -0
  32. package/.claude/skills/cc-spec-init/SKILL.md +9 -1
  33. package/.claude/skills/cc-spec-init/assets/CAPABILITY_TEMPLATE.md +1 -0
  34. package/.claude/skills/cc-spec-init/assets/CHANGE_META_TEMPLATE.json +3 -0
  35. package/.claude/skills/cc-spec-init/assets/INDEX_TEMPLATE.md +1 -0
  36. package/CHANGELOG.md +39 -0
  37. package/CODE_OF_CONDUCT.md +39 -0
  38. package/CODE_OF_CONDUCT.zh-CN.md +39 -0
  39. package/CONTRIBUTING.md +195 -0
  40. package/CONTRIBUTING.zh-CN.md +195 -0
  41. package/README.md +154 -120
  42. package/README.zh-CN.md +156 -117
  43. package/SECURITY.md +56 -0
  44. package/SECURITY.zh-CN.md +56 -0
  45. package/bin/cc-devflow-cli.js +226 -0
  46. package/config/schema/cc-devflow-config.schema.json +45 -0
  47. package/config/user-config.template.yml +16 -0
  48. package/docs/examples/example-bindings.json +8 -8
  49. package/docs/examples/full-design-blocked/BACKLOG.md +1 -1
  50. package/docs/examples/full-design-blocked/README.md +1 -1
  51. package/docs/examples/full-design-blocked/ROADMAP.md +1 -1
  52. package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/design.md +1 -1
  53. package/docs/examples/full-design-blocked/changes/REQ-002-bulk-invite-import/planning/tasks.md +1 -1
  54. package/docs/examples/full-design-blocked/roadmap-tracking.json +1 -1
  55. package/docs/examples/local-handoff/BACKLOG.md +1 -1
  56. package/docs/examples/local-handoff/README.md +1 -1
  57. package/docs/examples/local-handoff/ROADMAP.md +1 -1
  58. package/docs/examples/local-handoff/changes/REQ-003-audit-log-export/planning/design.md +1 -1
  59. package/docs/examples/local-handoff/changes/REQ-003-audit-log-export/planning/tasks.md +1 -1
  60. package/docs/examples/local-handoff/roadmap-tracking.json +1 -1
  61. package/docs/examples/pdca-loop/BACKLOG.md +1 -1
  62. package/docs/examples/pdca-loop/README.md +1 -1
  63. package/docs/examples/pdca-loop/ROADMAP.md +1 -1
  64. package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/design.md +1 -1
  65. package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/task-manifest.json +2 -2
  66. package/docs/examples/pdca-loop/changes/REQ-001-copy-invite-link/planning/tasks.md +1 -1
  67. package/docs/examples/pdca-loop/roadmap-tracking.json +1 -1
  68. package/docs/guides/getting-started.md +5 -0
  69. package/docs/guides/getting-started.zh-CN.md +5 -0
  70. package/lib/skill-runtime/__tests__/cli-bootstrap.integration.test.js +112 -2
  71. package/lib/skill-runtime/__tests__/config.test.js +161 -0
  72. package/lib/skill-runtime/__tests__/runtime.integration.test.js +2 -0
  73. package/lib/skill-runtime/config.js +379 -0
  74. package/lib/skill-runtime/index.js +2 -0
  75. package/package.json +7 -1
package/README.md CHANGED
@@ -1,86 +1,111 @@
1
- # 🚀 cc-devflow
1
+ # cc-devflow
2
2
 
3
- > Roadmap plus PDCA and IDCA skills for agent coding
3
+ > Agent-first development workflow for roadmap, planning, investigation, implementation, verification, and shipping.
4
4
 
5
- CC-DevFlow is a stripped-down workflow for the agent coding era. It gives you one front-door planning skill, `cc-roadmap`, then lets each requirement enter one of two closed loops: the planning loop `cc-plan -> cc-do -> cc-check -> cc-act`, or the investigation loop `cc-investigate -> cc-do -> cc-check -> cc-act`.
5
+ [![GitHub stars](https://img.shields.io/github/stars/Dimon94/cc-devflow?style=social)](https://github.com/Dimon94/cc-devflow/stargazers)
6
+ [![npm version](https://img.shields.io/npm/v/cc-devflow.svg)](https://www.npmjs.com/package/cc-devflow)
7
+ [![Node.js >=18](https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg)](./package.json)
8
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6
9
 
7
- [中文文档](./README.zh-CN.md) | [English](./README.md)
10
+ [中文文档](./README.zh-CN.md) | [English](./README.md) | [Getting Started](./docs/guides/getting-started.md) | [Contributing](./CONTRIBUTING.md) | [Security](./SECURITY.md)
8
11
 
9
- ---
12
+ CC-DevFlow is a small, explicit workflow system for agent coding. It gives an AI agent one roadmap entry point, then routes every change through either a feature loop or a bug-investigation loop before work can be called done.
10
13
 
11
- ## 🎯 One-Line Introduction
14
+ ```text
15
+ cc-roadmap
12
16
 
13
- CC-DevFlow exposes six visible skills:
17
+ PDCA: cc-plan -> cc-do -> cc-check -> cc-act
18
+ IDCA: cc-investigate -> cc-do -> cc-check -> cc-act
19
+ ```
14
20
 
15
- - `cc-roadmap`: build the project's mid and long-range roadmap
16
- - `cc-plan`: clarify a roadmap item, design it, and turn it into tasks
17
- - `cc-investigate`: freeze symptom, reproduction, root cause, and repair tasks before fixing a bug
18
- - `cc-do`: implement, resume, repair from investigation, and apply review feedback
19
- - `cc-check`: verify with evidence
20
- - `cc-act`: ship, sync docs, and feed the result into the next cycle
21
+ ## Why cc-devflow
21
22
 
22
- ## Core Features
23
+ - **Small public surface**: six visible workflow skills plus a CLI for installation and platform adaptation.
24
+ - **Evidence before done**: implementation must pass through verification proof before shipping or handoff.
25
+ - **Skill-first distribution**: the public contract lives in `.claude/skills/<skill>/SKILL.md` and `PLAYBOOK.md`, not in hidden runtime behavior.
26
+ - **Multi-platform output**: install once, then adapt for Codex, Cursor, Qwen, Antigravity, and related agent environments.
27
+ - **Durable project memory**: roadmap, specs, planning, review, and handoff artifacts stay in `devflow/`; temporary worker scratch stays outside durable truth.
23
28
 
24
- - **Minimal visible surface**: one `cc-roadmap` skill plus two entry loops that share the same `cc-do -> cc-check -> cc-act` tail
25
- - **Multi-platform CLI restored**: `cc-devflow` is back as the distributable CLI for `.claude` installation plus multi-platform adaptation for Codex, Cursor, Qwen, and Antigravity
26
- - **skills.sh-compatible skill layout**: `.claude/skills/<skill>/SKILL.md` stays compatible with single-skill distribution on skills.sh
27
- - **Skill-local resources**: each skill carries its own templates, references, and scripts
28
- - **Explicit, not hidden**: no default context injection, read the files you actually need
29
- - **Task-template first**: keep `planning/tasks.md` and `task-manifest.json` as the execution backbone
30
- - **Skill pack first**: the repository distributes `.claude` skills, playbooks, and assets as one pack
31
- - **Evidence before done**: verification, doc sync, PR brief, and release note live at the end of the loop
32
- - **Roadmap-first**: decide medium-range direction once, then execute through PDCA or IDCA
29
+ ## Quick Start
33
30
 
34
- ## 🧠 Mental Model
31
+ Prerequisites:
35
32
 
36
- ```text
37
- cc-roadmap
33
+ - Node.js 18+
34
+ - npm or a compatible package runner
35
+ - A Git repository
36
+ - Claude Code or another supported agent environment
38
37
 
39
- PDCA: cc-plan -> cc-do -> cc-check -> cc-act
40
- IDCA: cc-investigate -> cc-do -> cc-check -> cc-act
38
+ Install the whole skill pack:
39
+
40
+ ```bash
41
+ npx cc-devflow@latest init --dir /path/to/your/project
42
+ ```
43
+
44
+ Generate platform outputs:
45
+
46
+ ```bash
47
+ npx cc-devflow@latest adapt --cwd /path/to/your/project --platform codex
48
+ npx cc-devflow@latest adapt --cwd /path/to/your/project --platform cursor
49
+ npx cc-devflow@latest adapt --cwd /path/to/your/project --platform qwen
50
+ npx cc-devflow@latest adapt --cwd /path/to/your/project --platform antigravity
41
51
  ```
42
52
 
43
- Use `cc-roadmap` to decide the next 1-3 stages of the product.
53
+ Refresh every supported platform output:
44
54
 
45
- Use `cc-plan` when the next problem is scope, design, and task freezing.
55
+ ```bash
56
+ npx cc-devflow@latest adapt --cwd /path/to/your/project --all
57
+ ```
46
58
 
47
- Use `cc-investigate` when the next problem is root cause, reproduction, and repair boundary.
59
+ After installation, ask your agent to use the workflow skills directly. Start with `cc-roadmap` for product direction, use `cc-plan` for new work, use `cc-investigate` for bugs, then continue through `cc-do`, `cc-check`, and `cc-act`.
48
60
 
49
- Both loops converge into the same `cc-do -> cc-check -> cc-act` tail.
61
+ ## Workflow Skills
50
62
 
51
- The visible state machine lives in the public skills themselves. The pack is intentionally skill-first: routing, reroutes, recovery, and evidence rules are described in `SKILL.md` and `PLAYBOOK.md`, while `lib/skill-runtime/` is limited to shared support code that those skills reuse.
63
+ | Skill | Use it when | Main output |
64
+ | --- | --- | --- |
65
+ | `cc-roadmap` | You need product direction, staged scope, or backlog order | `devflow/ROADMAP.md`, `devflow/BACKLOG.md` |
66
+ | `cc-plan` | A feature or change needs scope, design, and task freezing | `planning/design.md`, `planning/tasks.md`, `task-manifest.json` |
67
+ | `cc-investigate` | A bug needs symptom, reproduction, root cause, and repair boundary | `planning/analysis.md`, `planning/tasks.md`, `task-manifest.json` |
68
+ | `cc-do` | Planned or investigated work needs implementation | code, tests, checkpoints, scratch runtime |
69
+ | `cc-check` | Work needs fresh verification evidence | `report-card.json` |
70
+ | `cc-act` | Verified work needs a PR, local handoff, release note, or closeout | one final handoff file |
52
71
 
53
- ## 🚀 Install
72
+ Maintenance skills are shipped with the pack:
54
73
 
55
- The built-in CLI is back to the classic `init + adapt` model.
74
+ - `cc-spec-init`: initialize and maintain durable capability specs under `devflow/specs/`
75
+ - `cc-simplify`: review changed code for reuse, quality, efficiency, and spec drift
56
76
 
57
- For the packaged CLI, the default entry stays simple:
77
+ ## Planning Quality Gates
58
78
 
59
- ```bash
60
- npx cc-devflow init --dir /path/to/your/project
61
- ```
79
+ `cc-roadmap` now records planning posture and evidence maturity before recommending a route. That keeps idea-stage, active-user, paying-customer, infrastructure, and recovery work from being forced through the same questions. Developer-facing or operator-facing roadmap items also carry target user, time to first value, magic moment, and adoption bottleneck into `cc-plan`.
80
+
81
+ `cc-plan` freezes more implementation decisions before `cc-do` starts. Non-trivial plans compare minimal viable and ideal architecture options, full designs include decision horizon plus error/rescue mapping, and test-first plans record test framework evidence, coverage quality, and mandatory regression tests when existing behavior changes.
62
82
 
63
- After installation, the restored CLI supports both pack installation and multi-platform adaptation:
83
+ ## Installation Modes
84
+
85
+ ### Whole-pack install
86
+
87
+ Use this when you want the complete `.claude` skill pack:
64
88
 
65
89
  ```bash
66
- npx cc-devflow init --dir /path/to/your/project
67
- npx cc-devflow init --dir /path/to/your/project --force
68
- npx cc-devflow adapt --cwd /path/to/your/project --platform codex
69
- npx cc-devflow adapt --cwd /path/to/your/project --platform cursor
70
- npx cc-devflow adapt --cwd /path/to/your/project --platform qwen
71
- npx cc-devflow adapt --cwd /path/to/your/project --platform antigravity
90
+ npx cc-devflow@latest init --dir /path/to/your/project
91
+ npx cc-devflow@latest init --dir /path/to/your/project --force
72
92
  ```
73
93
 
74
- Whole-pack installation ships the six visible workflow skills plus the maintenance skills `cc-spec-init` and `cc-simplify`.
75
- `init --force` now force-upgrades only the managed distributed skills and preserves unrelated project files under `.claude`.
94
+ `--force` upgrades only cc-devflow-managed distributed skills and preserves unrelated project files under `.claude`.
76
95
 
77
- If you are running from a source checkout instead of an installed package, use `node bin/cc-devflow-cli.js ...` or `npm exec -- cc-devflow ...`.
96
+ ### Source checkout
78
97
 
79
- ## 🧩 skills.sh Distribution
98
+ When developing this repository locally:
99
+
100
+ ```bash
101
+ node bin/cc-devflow-cli.js --help
102
+ node bin/cc-devflow-cli.js init --dir /tmp/example-project
103
+ node bin/cc-devflow-cli.js adapt --cwd /tmp/example-project --platform codex
104
+ ```
80
105
 
81
- [skills.sh](https://skills.sh/) is supported only as a distribution channel for the new `.claude` skills.
106
+ ### Single-skill install with skills.sh
82
107
 
83
- Because skills.sh installs skills one by one, use it to pull the specific skills you want:
108
+ [skills.sh](https://skills.sh/) is supported as a single-skill distribution channel:
84
109
 
85
110
  ```bash
86
111
  npx skills add https://github.com/Dimon94/cc-devflow --skill cc-roadmap
@@ -89,50 +114,64 @@ npx skills add https://github.com/Dimon94/cc-devflow --skill cc-investigate
89
114
  npx skills add https://github.com/Dimon94/cc-devflow --skill cc-do
90
115
  npx skills add https://github.com/Dimon94/cc-devflow --skill cc-check
91
116
  npx skills add https://github.com/Dimon94/cc-devflow --skill cc-act
92
- npx skills add https://github.com/Dimon94/cc-devflow --skill cc-spec-init
93
- npx skills add https://github.com/Dimon94/cc-devflow --skill cc-simplify
94
117
  ```
95
118
 
96
- Use `cc-devflow init` when you want the whole `.claude` pack.
119
+ Use `cc-devflow init` for the full pack, `cc-devflow adapt` for generated platform outputs, and `skills add` only when you want one skill at a time.
97
120
 
98
- Use `cc-devflow adapt` when you want generated multi-platform outputs.
121
+ ## Configuration
99
122
 
100
- Use skills.sh when you want to install or refresh a single skill.
123
+ CC-DevFlow reads layered YAML config before durable workflow documents are written:
101
124
 
102
- ## 🔁 Upgrade
103
-
104
- Refresh the packaged `.claude` bundle with the latest CLI:
125
+ ```text
126
+ ~/.cc-devflow/config.yml
127
+ <repo>/.cc-devflow/config.yml
128
+ <repo>/.cc-devflow/config.local.yml
129
+ ```
105
130
 
106
- ```bash
107
- npx cc-devflow@latest init --dir /path/to/your/project
108
- npx cc-devflow@latest adapt --cwd /path/to/your/project --all
131
+ Precedence is deterministic: defaults < user < project < local < environment < CLI. `output.document_language` is machine-enforced and currently supports `en` and `zh-CN`. Non-standard preferences belong under `agent_preferences`; they guide style but do not override workflow contracts.
132
+
133
+ ```yaml
134
+ version: 1
135
+ output:
136
+ document_language: en
137
+ agent_preferences:
138
+ general:
139
+ - Start with the conclusion.
140
+ documentation:
141
+ - Keep headings short and avoid marketing language.
109
142
  ```
110
143
 
111
- Upgrade installed skills with the skills CLI lifecycle commands:
144
+ Useful commands:
112
145
 
113
146
  ```bash
114
- npx skills check
115
- npx skills update
147
+ npx cc-devflow config init --cwd /path/to/your/project --project
148
+ npx cc-devflow config set output.document_language zh-CN --cwd /path/to/your/project --project
149
+ npx cc-devflow config resolve --cwd /path/to/your/project --format policy
150
+ npx cc-devflow config doctor --cwd /path/to/your/project
116
151
  ```
117
152
 
118
- If you only want to refresh one skill immediately, re-run its `npx skills add ... --skill ...` command.
153
+ See [`config/user-config.template.yml`](./config/user-config.template.yml) for the full sample.
119
154
 
120
- ## 🧱 Repository Format
155
+ ## Repository Format
121
156
 
122
- CC-DevFlow keeps the `.claude` skill folders compatible with skills.sh single-skill distribution:
157
+ Distributed skills live in `.claude/skills/`:
123
158
 
124
- - one skill per folder
125
- - one `SKILL.md` per distributed skill
126
- - YAML frontmatter at the top of each `SKILL.md`
127
- - public skills declare structured runtime contract fields in frontmatter: `triggers`, `reads`, structured `writes`, `effects`, `entry_gate`, `exit_criteria`, `reroutes`, `recovery_modes`, `tool_budget`
128
- - bundled local resources beside the skill, such as `PLAYBOOK.md`, `assets/`, `scripts/`, and `references/`
159
+ ```text
160
+ .claude/skills/<skill>/
161
+ ├── SKILL.md
162
+ ├── PLAYBOOK.md
163
+ ├── assets/
164
+ ├── references/
165
+ └── scripts/
166
+ ```
129
167
 
130
- Public skills also carry two explicit text contracts:
168
+ Each shipped skill keeps its runtime contract local:
131
169
 
132
- - `SKILL.md` includes a `Harness Contract` section
133
- - `PLAYBOOK.md` includes a `Visible State Machine` section
170
+ - `SKILL.md` has YAML frontmatter plus the `Harness Contract`
171
+ - `PLAYBOOK.md` has the `Visible State Machine`
172
+ - local resources stay beside the skill that owns them
134
173
 
135
- In this repository, the distributed skill folders are:
174
+ The currently distributed skill folders are:
136
175
 
137
176
  - `.claude/skills/cc-roadmap/`
138
177
  - `.claude/skills/cc-plan/`
@@ -143,58 +182,53 @@ In this repository, the distributed skill folders are:
143
182
  - `.claude/skills/cc-spec-init/`
144
183
  - `.claude/skills/cc-simplify/`
145
184
 
146
- ## 🛠️ Use
147
-
148
- The skill sequence remains:
185
+ ## Durable vs Ephemeral
149
186
 
150
- ```text
151
- 1. cc-roadmap
152
- 2. choose cc-plan or cc-investigate
153
- 3. cc-do
154
- 4. cc-check
155
- 5. cc-act
156
- 6. repeat
157
- ```
187
+ - `devflow/specs/` stores durable capability truth: `INDEX.md` plus `capabilities/*.md`.
188
+ - New change directories use `REQ-<number>-<description>` for requirements or `FIX-<number>-<description>` for bug fixes.
189
+ - `devflow/changes/<change>/` stores durable change truth: `change-state.json`, `change-meta.json`, planning docs, `task-manifest.json`, `team-state.json`, task `checkpoint.json`, `report-card.json`, and one final handoff file.
190
+ - `devflow/workspaces/<change>/` stores ephemeral runtime scratch such as worker assignment, journals, prompts, and session logs.
191
+ - Regenerable files should not be persisted under `devflow/changes/`.
158
192
 
159
- You do not need to remember command names.
193
+ For complete artifact examples, start with [`docs/examples/START-HERE.md`](./docs/examples/START-HERE.md). Example version bindings live in [`docs/examples/example-bindings.json`](./docs/examples/example-bindings.json).
160
194
 
161
- The `cc-devflow` CLI remains the whole-pack installation and adaptation path.
195
+ ## Development
162
196
 
163
- skills.sh remains the single-skill distribution path for distributed `.claude/skills/*`.
197
+ ```bash
198
+ git clone https://github.com/Dimon94/cc-devflow.git
199
+ cd cc-devflow
200
+ npm install
201
+ npm test
202
+ npm run verify
203
+ ```
164
204
 
165
- ## 📦 Outputs
205
+ Publish validation:
166
206
 
167
- - `cc-roadmap` writes `devflow/ROADMAP.md` and `devflow/BACKLOG.md`; helper sync can also maintain `devflow/roadmap-tracking.json` as the shared roadmap/backlog truth source
168
- - `cc-spec-init` writes `devflow/specs/INDEX.md`, capability specs, and `change-meta.json`
169
- - `cc-plan` writes `planning/design.md`, `planning/tasks.md`, `task-manifest.json`, and `change-meta.json`
170
- - `cc-investigate` writes `planning/analysis.md`, `planning/tasks.md`, `task-manifest.json`, and `change-meta.json`
171
- - `cc-do` writes code, tests, task `checkpoint.json`, and workspace scratch runtime
172
- - `cc-check` writes `report-card.json`
173
- - `cc-act` writes exactly one final handoff file: `handoff/pr-brief.md`, `handoff/resume-index.md`, or `handoff/release-note.md`
207
+ ```bash
208
+ npm run verify:publish
209
+ ```
174
210
 
175
- ## Durable vs Ephemeral
211
+ The main contributor guide is [`CONTRIBUTING.md`](./CONTRIBUTING.md). It explains the public surface rules, local CLI smoke tests, documentation rules, and PR expectations.
176
212
 
177
- - `devflow/specs/` stores durable capability truth: `INDEX.md` plus `capabilities/*.md`.
178
- - New change directories must be named `REQ-<number>-<description>` for requirements or `FIX-<number>-<description>` for bug fixes; old lowercase directories are compatibility reads only.
179
- - `devflow/changes/<change>/` stores durable change truth only: `change-state.json`, `change-meta.json`, planning docs, `task-manifest.json`, `team-state.json`, task `checkpoint.json`, `report-card.json`, and one final handoff file.
180
- - `devflow/workspaces/<change>/` stores ephemeral runtime scratch such as worker assignment, journals, prompts, and session logs.
181
- - If a file can be regenerated from durable truth, it should not be persisted under `devflow/changes/`.
213
+ ## Community
182
214
 
183
- See [docs/examples/START-HERE.md](./docs/examples/START-HERE.md) for the single entry page to the example set. Example version bindings live in [docs/examples/example-bindings.json](./docs/examples/example-bindings.json).
215
+ - Star the project if the workflow is useful: [GitHub stars](https://github.com/Dimon94/cc-devflow/stargazers)
216
+ - Open issues for reproducible bugs, stale docs, or missing platform adapters.
217
+ - Keep PRs focused: one skill, one CLI behavior, one compiler/adaptation fix, or one documentation cleanup.
218
+ - If a shipped skill changes, update its `version`, local `CHANGELOG.md`, examples, and affected public docs in the same PR.
219
+ - Read the [Code of Conduct](./CODE_OF_CONDUCT.md) before participating in project discussions.
220
+ - Report vulnerabilities through the [Security Policy](./SECURITY.md), not public issues.
184
221
 
185
- ## Principles
222
+ ## Star History
186
223
 
187
- - Roadmap before execution
188
- - Plan before feature code
189
- - Investigate before bug repair
190
- - Root cause before fix
191
- - Evidence before done
192
- - Ship, then feed the result into the next plan
224
+ <a href="https://www.star-history.com/#Dimon94/cc-devflow&Date">
225
+ <picture>
226
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Dimon94/cc-devflow&type=Date&theme=dark" />
227
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Dimon94/cc-devflow&type=Date" />
228
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Dimon94/cc-devflow&type=Date" />
229
+ </picture>
230
+ </a>
193
231
 
194
- ## Verification
232
+ ## License
195
233
 
196
- ```bash
197
- find .claude/skills -mindepth 2 -maxdepth 2 -name SKILL.md | sort
198
- find .claude/skills -mindepth 2 -maxdepth 3 -type f | sort
199
- npm run verify
200
- ```
234
+ [MIT](./LICENSE)