chief-clancy 0.1.6 → 0.1.7
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 +5 -3
- package/package.json +1 -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) [](./test/) [](https://github.com/Pushedskydiver/clancy/stargazers)
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npx chief-clancy
|
|
@@ -188,7 +188,7 @@ Clancy also merges a section into your `CLAUDE.md` (or creates one) that tells C
|
|
|
188
188
|
|
|
189
189
|
## Optional enhancements
|
|
190
190
|
|
|
191
|
-
Set during `/clancy:init` advanced setup, or by editing `.clancy/.env` directly.
|
|
191
|
+
Set during `/clancy:init` advanced setup, or by editing `.clancy/.env` directly. Use `/clancy:settings` → "Save as defaults" to save non-credential settings to `~/.clancy/defaults.json` — new projects created with `/clancy:init` will inherit them automatically.
|
|
192
192
|
|
|
193
193
|
### Figma MCP
|
|
194
194
|
|
|
@@ -405,6 +405,8 @@ lsof -ti:5173 | xargs kill -9 # replace 5173 with your PLAYWRIGHT_DEV_PORT
|
|
|
405
405
|
|
|
406
406
|
Or directly: `npx chief-clancy@latest`
|
|
407
407
|
|
|
408
|
+
The update workflow shows what's changed (changelog diff) and asks for confirmation before overwriting. If you've customised any command or workflow files, they're automatically backed up to `.claude/clancy/local-patches/` before the update — check there to reapply your changes afterwards.
|
|
409
|
+
|
|
408
410
|
---
|
|
409
411
|
|
|
410
412
|
**Uninstalling?**
|
|
@@ -413,7 +415,7 @@ Or directly: `npx chief-clancy@latest`
|
|
|
413
415
|
/clancy:uninstall
|
|
414
416
|
```
|
|
415
417
|
|
|
416
|
-
Removes slash commands from your chosen location. Optionally removes `.clancy/` (credentials and docs).
|
|
418
|
+
Removes slash commands from your chosen location. Cleans up the `<!-- clancy:start -->` / `<!-- clancy:end -->` block from `CLAUDE.md` (or deletes it entirely if Clancy created it) and removes the `.clancy/.env` entry from `.gitignore`. Optionally removes `.clancy/` (credentials and docs).
|
|
417
419
|
|
|
418
420
|
---
|
|
419
421
|
|
package/package.json
CHANGED