@chief-clancy/terminal 0.1.3 → 0.1.5

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.
Files changed (34) hide show
  1. package/dist/hooks/clancy-statusline.js +1 -1
  2. package/dist/installer/brief-content/brief-content.d.ts +62 -0
  3. package/dist/installer/brief-content/brief-content.d.ts.map +1 -0
  4. package/dist/installer/brief-content/brief-content.js +95 -0
  5. package/dist/installer/brief-content/brief-content.js.map +1 -0
  6. package/dist/installer/brief-content/index.d.ts +2 -0
  7. package/dist/installer/brief-content/index.d.ts.map +1 -0
  8. package/dist/installer/brief-content/index.js +2 -0
  9. package/dist/installer/brief-content/index.js.map +1 -0
  10. package/dist/installer/install/install.d.ts +8 -7
  11. package/dist/installer/install/install.d.ts.map +1 -1
  12. package/dist/installer/install/install.js +17 -18
  13. package/dist/installer/install/install.js.map +1 -1
  14. package/dist/installer/plan-content/index.d.ts +2 -0
  15. package/dist/installer/plan-content/index.d.ts.map +1 -0
  16. package/dist/installer/plan-content/index.js +2 -0
  17. package/dist/installer/plan-content/index.js.map +1 -0
  18. package/dist/installer/plan-content/plan-content.d.ts +55 -0
  19. package/dist/installer/plan-content/plan-content.d.ts.map +1 -0
  20. package/dist/installer/plan-content/plan-content.js +87 -0
  21. package/dist/installer/plan-content/plan-content.js.map +1 -0
  22. package/dist/installer/shared/fs-guards/fs-guards.d.ts +4 -0
  23. package/dist/installer/shared/fs-guards/fs-guards.d.ts.map +1 -1
  24. package/dist/installer/shared/fs-guards/fs-guards.js +13 -0
  25. package/dist/installer/shared/fs-guards/fs-guards.js.map +1 -1
  26. package/dist/installer/shared/fs-guards/index.d.ts +1 -1
  27. package/dist/installer/shared/fs-guards/index.d.ts.map +1 -1
  28. package/dist/installer/shared/fs-guards/index.js +1 -1
  29. package/dist/installer/shared/fs-guards/index.js.map +1 -1
  30. package/package.json +1 -1
  31. package/src/roles/planner/commands/plan.md +0 -22
  32. package/src/roles/planner/workflows/plan.md +0 -868
  33. package/src/roles/strategist/commands/brief.md +0 -29
  34. package/src/roles/strategist/workflows/brief.md +0 -1330
@@ -1,2 +1,2 @@
1
- export { rejectSymlink } from './fs-guards.js';
1
+ export { rejectSymlink, requirePath, validateOptionalDirs, } from './fs-guards.js';
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/installer/shared/fs-guards/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/installer/shared/fs-guards/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,WAAW,EACX,oBAAoB,GACrB,MAAM,gBAAgB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chief-clancy/terminal",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Installer, slash commands, hooks, AFK runner, agents, Claude CLI bridge",
5
5
  "author": "Alex Clapperton",
6
6
  "license": "MIT",
@@ -1,22 +0,0 @@
1
- # /clancy:plan
2
-
3
- Fetch backlog tickets from the board, explore the codebase, and generate structured implementation plans. Plans are posted as comments on the ticket for human review.
4
-
5
- Accepts optional arguments:
6
-
7
- - **Batch mode:** `/clancy:plan 3` — plan up to 3 tickets from the queue
8
- - **Specific ticket:** `/clancy:plan PROJ-123`, `/clancy:plan #42`, `/clancy:plan ENG-42` — plan a single ticket by key
9
- - **Fresh start:** `--fresh` — discard any existing plan and start over
10
- - **Skip confirmations:** `--afk` — auto-confirm all prompts (for automation)
11
-
12
- Examples:
13
-
14
- - `/clancy:plan` — plan 1 ticket from queue
15
- - `/clancy:plan 3` — plan 3 tickets from queue
16
- - `/clancy:plan PROJ-123` — plan a specific Jira/Linear ticket
17
- - `/clancy:plan #42` — plan a specific GitHub issue
18
- - `/clancy:plan --fresh PROJ-123` — discard existing plan and start over
19
-
20
- @.claude/clancy/workflows/plan.md
21
-
22
- Follow the plan workflow above. For each ticket: run the feasibility scan, explore the codebase, generate the plan, and post it as a comment. Do not implement anything — planning only.