@chris1807/claude-kit 2.1.23 → 2.1.24

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 (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -246,6 +246,25 @@ Verify MCP servers are connected:
246
246
  /mcp
247
247
  ```
248
248
 
249
+ ### Ultracode (multi-agent workflows)
250
+
251
+ The kit's agents normally run as **sequential delegation** — the `manager` agent hands work to one specialist at a time through the `Task` tool. **Ultracode** is a separate, harness-level gear that authorizes the `Workflow` tool to fan out many agents in parallel under a deterministic script. The two compose: ultracode doesn't replace the pipeline, it parallelizes the parts that are embarrassingly parallel.
252
+
253
+ Ultracode is **opt-in**. It's on only when you type `ultracode` in a prompt, when a system-reminder confirms it, or when a slash command's instructions say to use `Workflow`. When it's off, everything runs the normal sequential way — nothing changes.
254
+
255
+ Only the **main Claude Code loop** and **slash commands** can call `Workflow`. Subagents (anything running under `Task`, including `manager`) cannot — so ultracode-scale fan-out is a main-loop / slash-command concern.
256
+
257
+ Kit operations that benefit from ultracode when it's on:
258
+
259
+ | Operation | Fan-out unit |
260
+ |-----------|--------------|
261
+ | `/plan-backlog` | one agent per Dev Ready story — analyze, point, and propose tasks in parallel |
262
+ | Backlog / board audits | one agent per work item — find stale, mislabeled, orphaned, or unestimated items |
263
+ | Multi-file or cross-layer review | one agent per file/dimension, then adversarial verify before reporting |
264
+ | Repo-wide sweeps (rename, dependency bump, pattern migration) | one agent per site, worktree-isolated |
265
+
266
+ Short, single-query operations (`/status`, `/explain`, `/close-orphan-tasks`) don't need ultracode — they're already one pass and gain nothing from fan-out. Reach for it when the work-list is large and the per-item work is independent.
267
+
249
268
  ### Implement a Work Item
250
269
 
251
270
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chris1807/claude-kit",
3
- "version": "2.1.23",
3
+ "version": "2.1.24",
4
4
  "description": "Claude Code starter kit for Azure DevOps teams — agents, hooks, MCP servers, slash commands, and end-to-end work item → PR → release → deploy workflow automation",
5
5
  "type": "module",
6
6
  "bin": {