chief-clancy 0.5.0 → 0.5.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 CHANGED
@@ -168,7 +168,30 @@ npx chief-clancy
168
168
  | `/clancy:uninstall` | Remove Clancy commands — optionally remove `.clancy/` too |
169
169
  | `/clancy:help` | Command reference |
170
170
 
171
- ¹ Planner is an optional role. Enable with `CLANCY_ROLES=planner` in `.clancy/.env` and re-run the installer.
171
+ ¹ Planner is an optional role see [Roles](#roles) below.
172
+
173
+ ---
174
+
175
+ ## Roles
176
+
177
+ Clancy organises its commands into **roles** — each role handles a different stage of the development workflow.
178
+
179
+ | Role | Purpose | Commands |
180
+ | --- | --- | --- |
181
+ | **Implementer** | Plan → code. Picks up tickets, implements, commits, merges | `/clancy:once`, `/clancy:run`, `/clancy:dry-run` |
182
+ | **Reviewer** | Score ticket readiness and track progress | `/clancy:review`, `/clancy:status`, `/clancy:logs` |
183
+ | **Setup** | Configure and maintain Clancy | `/clancy:init`, `/clancy:settings`, `/clancy:doctor`, etc. |
184
+ | **Planner** *(optional)* | Refine backlog tickets into structured implementation plans | `/clancy:plan`, `/clancy:approve` |
185
+
186
+ **Core roles** (Implementer, Reviewer, Setup) are always installed. **Optional roles** (Planner) are opt-in — add them to `CLANCY_ROLES` in `.clancy/.env` and re-run the installer:
187
+
188
+ ```bash
189
+ # Enable the Planner role
190
+ echo 'CLANCY_ROLES="planner"' >> .clancy/.env
191
+ npx chief-clancy@latest --local # or --global
192
+ ```
193
+
194
+ You can also toggle roles from within Claude Code using `/clancy:settings`.
172
195
 
173
196
  ---
174
197
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chief-clancy",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Autonomous, board-driven development for Claude Code — scaffolds docs, integrates Kanban boards, runs tickets in a loop.",
5
5
  "keywords": [
6
6
  "claude",
@@ -22,9 +22,9 @@ Before asking any questions, silently check:
22
22
  - Is this an existing project? Check for `package.json`, `.git`, `src/`, `app/`, `lib/`
23
23
  - Is a board already configured? Check `.clancy/.env` for `JIRA_BASE_URL`, `GITHUB_TOKEN`, `LINEAR_API_KEY`
24
24
  - Does `CLAUDE.md` already exist? Flag for merge — never overwrite
25
- - Does `.clancy/` already exist? Warn and offer re-init or abort
25
+ - Does `.clancy/.env` already exist? This means init has been completed before — warn and offer re-init or abort. Note: `.clancy/` alone may exist from the installer (runtime scripts) without init having run.
26
26
 
27
- If `.clancy/` exists, output:
27
+ If `.clancy/.env` exists, output:
28
28
 
29
29
  It looks like Clancy is already set up in this project.
30
30