chief-clancy 0.7.3 → 0.7.4
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 +2 -2
- package/dist/bundle/clancy-once.js +94 -45
- package/package.json +1 -1
- package/src/roles/planner/workflows/approve-plan.md +98 -43
- package/src/roles/planner/workflows/plan.md +7 -6
- package/src/roles/setup/workflows/init.md +68 -0
- package/src/roles/setup/workflows/scaffold.md +30 -0
- package/src/roles/setup/workflows/settings.md +62 -0
- package/src/roles/strategist/workflows/approve-brief.md +70 -6
- package/src/roles/strategist/workflows/brief.md +136 -0
- package/src/templates/.env.example.github +10 -0
- package/src/templates/.env.example.jira +10 -0
- package/src/templates/.env.example.linear +10 -0
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).
|
|
@@ -34,7 +34,7 @@ Clancy does six things:
|
|
|
34
34
|
5. **Runs autonomously** — picking one ticket per loop from your Kanban board (skipping blocked candidates), implementing it, committing, and creating a PR (targeting an epic branch for parented tickets, or the base branch for standalone tickets)
|
|
35
35
|
6. **Verifies before delivery** — runs lint, test, and typecheck via verification gates with self-healing retry, guards against force push and destructive resets, and recovers from crashes via lock file detection
|
|
36
36
|
|
|
37
|
-
Brief → approve → plan → implement. One ticket per run. Fresh context window every iteration. No context rot.
|
|
37
|
+
Brief → approve → plan → implement. Pipeline labels (`clancy:brief` → `clancy:plan` → `clancy:build`) move tickets between stages automatically. One ticket per run. Fresh context window every iteration. No context rot.
|
|
38
38
|
|
|
39
39
|
---
|
|
40
40
|
|