chief-clancy 0.9.22 → 0.9.24
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 +19 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Clancy
|
|
2
2
|
|
|
3
|
-
**Autonomous
|
|
3
|
+
**Autonomous development for Claude Code — driven by your Kanban board, or by local plan files.**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/chief-clancy) [](https://github.com/Pushedskydiver/chief-clancy/blob/main/LICENSE)
|
|
6
6
|
|
|
@@ -8,22 +8,36 @@
|
|
|
8
8
|
npx chief-clancy
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
> [!WARNING]
|
|
12
|
+
> Clancy is in early development. Expect breaking changes and rough edges.
|
|
13
|
+
|
|
14
|
+
Clancy scaffolds slash commands, hooks, and board integrations into your Claude Code project. It picks up tickets from your Kanban board (Jira, GitHub Issues, Linear, Shortcut, Notion, or Azure DevOps), implements them autonomously, and creates pull requests. Also supports local plan execution via `--from` — no board needed.
|
|
12
15
|
|
|
13
16
|
## How it works
|
|
14
17
|
|
|
18
|
+
**With a board:**
|
|
19
|
+
|
|
15
20
|
1. **Install:** `npx chief-clancy` — choose global or local install
|
|
16
|
-
2. **Configure:** `/clancy:init` —
|
|
21
|
+
2. **Configure:** `/clancy:init` — connect your board, enter credentials
|
|
17
22
|
3. **Scan:** `/clancy:map-codebase` — 5 parallel agents document your codebase
|
|
18
23
|
4. **Run:** `/clancy:implement` — pick up one ticket, implement, create PR
|
|
19
24
|
5. **Go AFK:** `/clancy:autopilot` — loop through your backlog unattended
|
|
20
25
|
|
|
26
|
+
**Without a board — local plan-driven flow:**
|
|
27
|
+
|
|
28
|
+
1. **Install:** `npx chief-clancy`
|
|
29
|
+
2. **Configure:** `/clancy:init` — answer "No" when asked about a board. When prompted for optional roles, enable **both Strategist and Planner** — the local flow uses `/clancy:brief` and `/clancy:plan`, which only install when their roles are enabled.
|
|
30
|
+
3. **Scan:** `/clancy:map-codebase`
|
|
31
|
+
4. **Draft:** `/clancy:brief --from outline.md` → `/clancy:plan --from <brief>` → `/clancy:approve-plan <plan>` (writes a `.approved` marker file — a write-side contract; a future PR will wire a runtime gate that re-hashes the plan and refuses to run on mismatch)
|
|
32
|
+
5. **Run one plan:** `/clancy:implement --from .clancy/plans/<plan>.md`
|
|
33
|
+
6. **Go AFK:** `/clancy:implement --from .clancy/plans/ --afk` — batch-executes every plan in the directory that has a sibling `.approved` marker, naturally sorted. Unapproved plans are skipped with a warning. (Marker SHA-256 verification is deferred — only marker existence is currently checked.)
|
|
34
|
+
|
|
21
35
|
## Packages
|
|
22
36
|
|
|
23
37
|
This is the CLI entry point for the [Clancy monorepo](https://github.com/Pushedskydiver/chief-clancy). It delegates to:
|
|
24
38
|
|
|
25
|
-
- [`@chief-clancy/
|
|
26
|
-
- [`@chief-clancy/
|
|
39
|
+
- [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, schemas, shared utilities
|
|
40
|
+
- [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners
|
|
27
41
|
- [`@chief-clancy/dev`](https://www.npmjs.com/package/@chief-clancy/dev) — standalone ticket executor
|
|
28
42
|
- [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan) — codebase scanning agents and workflows
|
|
29
43
|
- [`@chief-clancy/brief`](https://www.npmjs.com/package/@chief-clancy/brief) — strategic brief generator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chief-clancy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.24",
|
|
4
4
|
"description": "Autonomous, board-driven development for Claude Code",
|
|
5
5
|
"author": "Alex Clapperton",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"bin"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@chief-clancy/brief": "0.4.
|
|
34
|
-
"@chief-clancy/
|
|
35
|
-
"@chief-clancy/
|
|
36
|
-
"@chief-clancy/
|
|
33
|
+
"@chief-clancy/brief": "0.4.3",
|
|
34
|
+
"@chief-clancy/scan": "0.2.3",
|
|
35
|
+
"@chief-clancy/terminal": "0.1.15",
|
|
36
|
+
"@chief-clancy/plan": "0.7.1"
|
|
37
37
|
}
|
|
38
38
|
}
|