@chief-clancy/terminal 0.1.4 → 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.
- package/dist/installer/brief-content/brief-content.d.ts +62 -0
- package/dist/installer/brief-content/brief-content.d.ts.map +1 -0
- package/dist/installer/brief-content/brief-content.js +95 -0
- package/dist/installer/brief-content/brief-content.js.map +1 -0
- package/dist/installer/brief-content/index.d.ts +2 -0
- package/dist/installer/brief-content/index.d.ts.map +1 -0
- package/dist/installer/brief-content/index.js +2 -0
- package/dist/installer/brief-content/index.js.map +1 -0
- package/dist/installer/install/install.d.ts +8 -7
- package/dist/installer/install/install.d.ts.map +1 -1
- package/dist/installer/install/install.js +17 -18
- package/dist/installer/install/install.js.map +1 -1
- package/dist/installer/plan-content/index.d.ts +2 -0
- package/dist/installer/plan-content/index.d.ts.map +1 -0
- package/dist/installer/plan-content/index.js +2 -0
- package/dist/installer/plan-content/index.js.map +1 -0
- package/dist/installer/plan-content/plan-content.d.ts +55 -0
- package/dist/installer/plan-content/plan-content.d.ts.map +1 -0
- package/dist/installer/plan-content/plan-content.js +87 -0
- package/dist/installer/plan-content/plan-content.js.map +1 -0
- package/dist/installer/shared/fs-guards/fs-guards.d.ts +4 -0
- package/dist/installer/shared/fs-guards/fs-guards.d.ts.map +1 -1
- package/dist/installer/shared/fs-guards/fs-guards.js +13 -0
- package/dist/installer/shared/fs-guards/fs-guards.js.map +1 -1
- package/dist/installer/shared/fs-guards/index.d.ts +1 -1
- package/dist/installer/shared/fs-guards/index.d.ts.map +1 -1
- package/dist/installer/shared/fs-guards/index.js +1 -1
- package/dist/installer/shared/fs-guards/index.js.map +1 -1
- package/package.json +1 -1
- package/src/roles/planner/commands/plan.md +0 -22
- package/src/roles/planner/workflows/plan.md +0 -868
- package/src/roles/strategist/commands/brief.md +0 -29
- package/src/roles/strategist/workflows/brief.md +0 -1330
|
@@ -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.
|