@chris1807/claude-kit 2.1.36 → 2.1.38
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.38",
|
|
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": {
|
|
@@ -153,6 +153,14 @@ If the branch already exists, switch to it with `git checkout <branch-name>` ins
|
|
|
153
153
|
|
|
154
154
|
Remember the `BASE_BRANCH` — you will need it for the PR step.
|
|
155
155
|
|
|
156
|
+
### Move the Work Item to Active
|
|
157
|
+
|
|
158
|
+
Once the branch is created, move the work item (User Story, Bug, Hot Fix, or other single work item — never a Feature) to `Active` via `wit_update_work_item`:
|
|
159
|
+
- **path**: `/fields/System.State`
|
|
160
|
+
- **value**: `Active`
|
|
161
|
+
|
|
162
|
+
If the work item is already `Active`, skip the update. If the project's process template does not have an `Active` state (the update call returns an invalid-state error), fall back in this order: `In Progress` → `Doing` → leave the current state and warn the user that the state could not be advanced automatically. Do not silently swallow the error.
|
|
163
|
+
|
|
156
164
|
## Step 5: Implement
|
|
157
165
|
|
|
158
166
|
1. **Implement** using backend and/or frontend agents according to the approved plan
|
|
@@ -384,6 +392,7 @@ For each wave in ascending order:
|
|
|
384
392
|
|
|
385
393
|
1. **Explore & plan** each story in the wave (Step 3 rules; Ultracode fan-outs apply per story if opted in). Present **one combined plan** with a section per story — each section covering approach, files, unit tests, and agents — plus a note on any files touched by more than one story in the wave (a conflict warning). **One approval gate per wave**; wait for the user.
|
|
386
394
|
2. **Implement:**
|
|
395
|
+
- **Move every story in the wave to `Active`** first (same rules and fallbacks as "Move the Work Item to Active" in Step 4). The Feature's state is never changed.
|
|
387
396
|
- **Single-story wave** → implement directly on the feature branch in the main loop (Step 5).
|
|
388
397
|
- **Multi-story wave** → isolate each story in its own worktree so parallel agents never clobber each other:
|
|
389
398
|
|
|
@@ -221,6 +221,8 @@ Hot Fix work items follow the same automated checks (build, lint, tests, review)
|
|
|
221
221
|
|
|
222
222
|
Running `/implement` on a **Feature** implements its child User Stories in **waves** driven by the `Custom.Order` field: stories sharing the same order value are implemented **in parallel** (one agent per story, each in an isolated git worktree), and waves run sequentially in ascending order so later stories build on earlier ones. All work merges into a single `feature/AB#<id>-...` branch; quality checks, code review, UAT, and one PR happen at the feature level, and every implemented story is linked to that PR. Stories without a `Custom.Order` value run in a final catch-all wave (flagged for confirmation first).
|
|
223
223
|
|
|
224
|
+
**Work item states:** `/implement` moves the work item to `Active` when implementation starts — for a single work item (User Story, Bug, Hot Fix) right after the branch is created; for a Feature, each child story goes `Active` as its wave begins. When the PR is created, each implemented child **User Story** moves to `Code Review` — the **Feature's state is never changed**. The Feature is a parent container; it advances only as its child stories are verified/closed. When the PR merges, only child **Tasks** are closed — never the stories or the Feature.
|
|
225
|
+
|
|
224
226
|
#### Slash Commands Reference
|
|
225
227
|
|
|
226
228
|
All deployment and release operations are available as slash commands:
|