chief-clancy 0.9.21 → 0.9.23
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 +8 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -8,7 +8,10 @@
|
|
|
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
|
|
|
@@ -16,14 +19,15 @@ Clancy scaffolds slash commands, hooks, and board integrations into your Claude
|
|
|
16
19
|
2. **Configure:** `/clancy:init` — choose your board, enter credentials
|
|
17
20
|
3. **Scan:** `/clancy:map-codebase` — 5 parallel agents document your codebase
|
|
18
21
|
4. **Run:** `/clancy:implement` — pick up one ticket, implement, create PR
|
|
19
|
-
5. **
|
|
22
|
+
5. **Or use local plans:** `/clancy:implement --from plan.md` — execute a plan file without board credentials
|
|
23
|
+
6. **Go AFK:** `/clancy:autopilot` — loop through your backlog unattended
|
|
20
24
|
|
|
21
25
|
## Packages
|
|
22
26
|
|
|
23
27
|
This is the CLI entry point for the [Clancy monorepo](https://github.com/Pushedskydiver/chief-clancy). It delegates to:
|
|
24
28
|
|
|
25
|
-
- [`@chief-clancy/
|
|
26
|
-
- [`@chief-clancy/
|
|
29
|
+
- [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, schemas, shared utilities
|
|
30
|
+
- [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners
|
|
27
31
|
- [`@chief-clancy/dev`](https://www.npmjs.com/package/@chief-clancy/dev) — standalone ticket executor
|
|
28
32
|
- [`@chief-clancy/scan`](https://www.npmjs.com/package/@chief-clancy/scan) — codebase scanning agents and workflows
|
|
29
33
|
- [`@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.23",
|
|
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/plan": "0.
|
|
35
|
-
"@chief-clancy/scan": "0.2.
|
|
36
|
-
"@chief-clancy/terminal": "0.1.
|
|
33
|
+
"@chief-clancy/brief": "0.4.3",
|
|
34
|
+
"@chief-clancy/plan": "0.7.1",
|
|
35
|
+
"@chief-clancy/scan": "0.2.3",
|
|
36
|
+
"@chief-clancy/terminal": "0.1.14"
|
|
37
37
|
}
|
|
38
38
|
}
|