chief-clancy 0.4.0 → 0.5.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 +9 -3
- package/dist/bundle/clancy-once.js +23 -23
- package/dist/installer/install.js +64 -12
- package/dist/installer/install.js.map +1 -1
- package/dist/schemas/env.d.ts +16 -0
- package/dist/schemas/env.d.ts.map +1 -1
- package/dist/schemas/env.js +4 -0
- package/dist/schemas/env.js.map +1 -1
- package/package.json +4 -1
- package/src/roles/planner/commands/approve.md +3 -6
- package/src/roles/planner/commands/plan.md +5 -6
- package/src/roles/planner/workflows/approve.md +236 -2
- package/src/roles/planner/workflows/plan.md +398 -2
- package/src/roles/reviewer/workflows/logs.md +14 -6
- package/src/roles/reviewer/workflows/review.md +7 -1
- package/src/roles/setup/commands/help.md +9 -0
- package/src/roles/setup/workflows/init.md +83 -39
- package/src/roles/setup/workflows/map-codebase.md +1 -1
- package/src/roles/setup/workflows/settings.md +137 -44
- package/src/roles/setup/workflows/update-docs.md +5 -2
- package/src/roles/setup/workflows/update.md +29 -25
- package/src/templates/.env.example.github +9 -0
- package/src/templates/.env.example.jira +9 -0
- package/src/templates/.env.example.linear +9 -0
- package/src/templates/CLAUDE.md +4 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Autonomous, board-driven development for Claude Code.**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/chief-clancy) [](./LICENSE) [](https://www.npmjs.com/package/chief-clancy) [](./LICENSE) [](docs/TESTING.md) [](https://github.com/Pushedskydiver/clancy/stargazers)
|
|
6
6
|
|
|
7
7
|
> [!WARNING]
|
|
8
8
|
> Clancy is in early development. Expect bugs, breaking changes, and rough edges. If you hit an issue, please [open a bug report](https://github.com/Pushedskydiver/clancy/issues/new).
|
|
@@ -25,11 +25,12 @@ Named after Chief Clancy Wiggum (The Simpsons) — built on the [Ralph technique
|
|
|
25
25
|
|
|
26
26
|
## What it does
|
|
27
27
|
|
|
28
|
-
Clancy does
|
|
28
|
+
Clancy does four things:
|
|
29
29
|
|
|
30
30
|
1. **Scaffolds itself** into a project — scripts, docs, CLAUDE.md, .clancy/.env
|
|
31
31
|
2. **Scans your codebase** with 5 parallel specialist agents and writes 10 structured docs that Claude reads before every run
|
|
32
|
-
3. **
|
|
32
|
+
3. **Plans tickets** — fetches backlog tickets, explores the codebase, and generates structured implementation plans posted as comments for human review
|
|
33
|
+
4. **Runs autonomously** — picking one ticket per loop from your Kanban board, implementing it, committing, squash-merging, and logging progress
|
|
33
34
|
|
|
34
35
|
One ticket per run. Fresh context window every iteration. No context rot.
|
|
35
36
|
|
|
@@ -148,6 +149,9 @@ npx chief-clancy
|
|
|
148
149
|
|
|
149
150
|
| Command | Description |
|
|
150
151
|
| ---------------------- | ------------------------------------------------------------------------ |
|
|
152
|
+
| `/clancy:plan` ¹ | Refine backlog tickets into structured implementation plans |
|
|
153
|
+
| `/clancy:plan 3` ¹ | Plan up to 3 tickets in batch mode |
|
|
154
|
+
| `/clancy:approve` ¹ | Promote an approved plan to the ticket description |
|
|
151
155
|
| `/clancy:init` | Wizard — choose board, collect config, scaffold everything |
|
|
152
156
|
| `/clancy:run` | Loop mode — processes tickets until queue is empty or MAX_ITERATIONS hit |
|
|
153
157
|
| `/clancy:run 20` | Same, override MAX_ITERATIONS to 20 for this session |
|
|
@@ -164,6 +168,8 @@ npx chief-clancy
|
|
|
164
168
|
| `/clancy:uninstall` | Remove Clancy commands — optionally remove `.clancy/` too |
|
|
165
169
|
| `/clancy:help` | Command reference |
|
|
166
170
|
|
|
171
|
+
¹ Planner is an optional role. Enable with `CLANCY_ROLES=planner` in `.clancy/.env` and re-run the installer.
|
|
172
|
+
|
|
167
173
|
---
|
|
168
174
|
|
|
169
175
|
## What gets created
|