@chris1807/claude-kit 2.1.22 → 2.1.23
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chris1807/claude-kit",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.23",
|
|
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": {
|
|
@@ -67,6 +67,12 @@ When tasks are independent, delegate in parallel:
|
|
|
67
67
|
- Build validation and lint checking can run simultaneously
|
|
68
68
|
- Frontend work depends on backend APIs being defined (but not necessarily implemented)
|
|
69
69
|
|
|
70
|
+
Issue independent delegations as multiple `Task` calls in a single message so they run concurrently.
|
|
71
|
+
|
|
72
|
+
### Ultracode is not yours to run
|
|
73
|
+
|
|
74
|
+
**Ultracode** (the `Workflow` tool — deterministic fan-out across many agents) is a *main-loop* capability. You run as a subagent under `Task` and do **not** have the `Workflow` tool, so never assume you can author a workflow. Your parallelism is limited to issuing several `Task` delegations at once (above). If a job genuinely calls for ultracode-scale fan-out — e.g. one agent per work item across a whole backlog — that belongs to the main loop or a slash command; surface the suggestion to the user rather than attempting it yourself.
|
|
75
|
+
|
|
70
76
|
## How to Start a Feature
|
|
71
77
|
|
|
72
78
|
When the user says "implement Feature X" or "work on [feature]":
|
|
@@ -111,6 +117,8 @@ The user may invoke slash commands directly instead of asking you to orchestrate
|
|
|
111
117
|
| `/status release 24` | Check release, pipeline, or work item status |
|
|
112
118
|
| `/review 142` | Code review a PR |
|
|
113
119
|
| `/cleanup-branches` | Delete merged branches |
|
|
120
|
+
| `/close-orphan-tasks` | Close open Tasks whose parent has shipped (Ready to Deploy / Deployed / Closed) |
|
|
121
|
+
| `/plan-backlog` | Sweep the backlog for Dev Ready stories and propose child tasks |
|
|
114
122
|
|
|
115
123
|
If the user asks you to "deploy to staging" or "create a release", suggest the appropriate slash command.
|
|
116
124
|
|
|
@@ -89,6 +89,15 @@ Continue? (yes / cancel)
|
|
|
89
89
|
|
|
90
90
|
**Wait for the user.** If `cancel`, stop with no changes.
|
|
91
91
|
|
|
92
|
+
### Ultracode mode (optional fan-out)
|
|
93
|
+
|
|
94
|
+
Only when **ultracode is on** (a system-reminder confirms it, or the user typed `ultracode`): the analysis in 5a–5c is independent per story, so pre-compute all proposals in parallel with the `Workflow` tool instead of analyzing one story at a time.
|
|
95
|
+
|
|
96
|
+
- Fan out **one agent per story** that does 5a–5c — re-read the story, map points → budget, tailor the task list — and returns a structured proposal (story id, points, budget, and the list of `{title, hours}` tasks). Use a `schema` so each agent returns validated JSON.
|
|
97
|
+
- Then run Step 5's loop **using the pre-computed proposals** — but keep 5d (approval) and 5e (creation) exactly as written: present each proposal, wait for `yes / edit / skip / cancel-all`, and create tasks only after approval. **Never fan out the approval or the work-item creation** — those stay sequential and interactive.
|
|
98
|
+
|
|
99
|
+
If ultracode is off, ignore this and run Step 5 the normal sequential way. The output is identical either way; ultracode only makes the analysis faster for large backlogs.
|
|
100
|
+
|
|
92
101
|
## Step 5: Per-Story Task Breakdown (loop)
|
|
93
102
|
|
|
94
103
|
For each remaining story, in order:
|
|
@@ -29,6 +29,25 @@ You (give task)
|
|
|
29
29
|
└── reviewer → reviews code quality
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
### Ultracode (multi-agent workflows)
|
|
33
|
+
|
|
34
|
+
The **agent pipeline** above (`manager` → specialists) is sequential delegation: one agent at a time, through the `Task` tool. **Ultracode** is a different, harness-level gear — it authorizes the `Workflow` tool to fan out many agents in parallel under a deterministic script. The two compose; ultracode does not replace the pipeline, it parallelizes the parts of it that are embarrassingly parallel.
|
|
35
|
+
|
|
36
|
+
Ultracode is **opt-in**. It is on only when a system-reminder confirms it, when you type `ultracode` in a prompt, or when a slash command's instructions say to use `Workflow`. When it is off, everything below runs the normal sequential way — nothing changes.
|
|
37
|
+
|
|
38
|
+
**Who can call `Workflow`:** the main Claude Code loop, and slash commands (they expand into the main conversation). **Subagents cannot** — so the `manager` agent, running under `Task`, never authors a workflow. Ultracode-scale fan-out is a main-loop / slash-command concern.
|
|
39
|
+
|
|
40
|
+
**Kit operations that benefit from ultracode (when it's on):**
|
|
41
|
+
|
|
42
|
+
| Operation | Fan-out unit |
|
|
43
|
+
|-----------|--------------|
|
|
44
|
+
| `/plan-backlog` | one agent per Dev Ready story — analyze, point, and propose tasks in parallel |
|
|
45
|
+
| Backlog / board audits | one agent per work item — find stale, mislabeled, orphaned, or unestimated items |
|
|
46
|
+
| Multi-file or cross-layer review | one agent per file/dimension, then adversarial verify before reporting |
|
|
47
|
+
| Repo-wide sweeps (rename, dependency bump, pattern migration) | one agent per site, worktree-isolated |
|
|
48
|
+
|
|
49
|
+
Short, single-query operations (`/status`, `/explain`, `/close-orphan-tasks`) do **not** need ultracode — they are already one pass and gain nothing from fan-out. Reach for `Workflow` when the work-list is large and the per-item work is independent.
|
|
50
|
+
|
|
32
51
|
### Sensitive Data Policy
|
|
33
52
|
|
|
34
53
|
**NEVER query, display, or expose sensitive PII fields from the database — even if the values are encrypted.** This includes TIN, SSN, EIN, TaxId, BankAccountNumber, RoutingNumber, and any `Encrypted*` variants. Even encrypted/hashed values must not appear in output, logs, or summaries. When querying collections that may contain sensitive fields, always use explicit inclusion projections listing only the non-sensitive fields needed. If a user requests access to sensitive data, direct them to use the application UI.
|