chief-clancy 0.9.0 → 0.9.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.
- package/README.md +42 -0
- package/package.json +19 -1
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Clancy
|
|
2
|
+
|
|
3
|
+
**Autonomous, board-driven development for Claude Code.**
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/chief-clancy) [](../../LICENSE)
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx chief-clancy
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
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.
|
|
12
|
+
|
|
13
|
+
## How it works
|
|
14
|
+
|
|
15
|
+
1. **Install:** `npx chief-clancy` — choose global or local install
|
|
16
|
+
2. **Configure:** `/clancy:init` — choose your board, enter credentials
|
|
17
|
+
3. **Scan:** `/clancy:map-codebase` — 5 parallel agents document your codebase
|
|
18
|
+
4. **Run:** `/clancy:implement` — pick up one ticket, implement, create PR
|
|
19
|
+
5. **Go AFK:** `/clancy:autopilot` — loop through your backlog unattended
|
|
20
|
+
|
|
21
|
+
## Packages
|
|
22
|
+
|
|
23
|
+
This is the CLI entry point for the [Clancy monorepo](https://github.com/Pushedskydiver/chief-clancy). It delegates to:
|
|
24
|
+
|
|
25
|
+
- [`@chief-clancy/terminal`](https://www.npmjs.com/package/@chief-clancy/terminal) — installer, slash commands, hooks, runners, agents
|
|
26
|
+
- [`@chief-clancy/core`](https://www.npmjs.com/package/@chief-clancy/core) — board integrations, pipeline phases, lifecycle modules, schemas
|
|
27
|
+
|
|
28
|
+
## Documentation
|
|
29
|
+
|
|
30
|
+
- [Getting started](https://github.com/Pushedskydiver/chief-clancy#getting-started)
|
|
31
|
+
- [Commands](https://github.com/Pushedskydiver/chief-clancy#commands)
|
|
32
|
+
- [Configuration](https://github.com/Pushedskydiver/chief-clancy/blob/main/docs/guides/CONFIGURATION.md)
|
|
33
|
+
- [Security](https://github.com/Pushedskydiver/chief-clancy/blob/main/docs/guides/SECURITY.md)
|
|
34
|
+
- [Troubleshooting](https://github.com/Pushedskydiver/chief-clancy/blob/main/docs/guides/TROUBLESHOOTING.md)
|
|
35
|
+
|
|
36
|
+
## Credits
|
|
37
|
+
|
|
38
|
+
Built on the [Ralph technique](https://ghuntley.com/ralph/) by Geoffrey Huntley. See [CREDITS.md](https://github.com/Pushedskydiver/chief-clancy/blob/main/CREDITS.md).
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT — see [LICENSE](https://github.com/Pushedskydiver/chief-clancy/blob/main/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,9 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chief-clancy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Autonomous, board-driven development for Claude Code",
|
|
5
5
|
"author": "Alex Clapperton",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Pushedskydiver/chief-clancy.git",
|
|
10
|
+
"directory": "packages/chief-clancy"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/Pushedskydiver/chief-clancy#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Pushedskydiver/chief-clancy/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"claude",
|
|
18
|
+
"claude-code",
|
|
19
|
+
"ai",
|
|
20
|
+
"autonomous",
|
|
21
|
+
"kanban",
|
|
22
|
+
"developer-tools",
|
|
23
|
+
"cli"
|
|
24
|
+
],
|
|
7
25
|
"type": "module",
|
|
8
26
|
"bin": {
|
|
9
27
|
"chief-clancy": "./bin/clancy.js"
|