@chris1807/claude-kit 2.1.11 → 2.1.13
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 +1 -1
- package/templates/agents/global/backend.md +1 -1
- package/templates/agents/global/frontend.md +1 -1
- package/templates/agents/global/manager.md +1 -1
- package/templates/agents/global/mockup.md +1 -1
- package/templates/commands/plan-backlog.md +1 -0
- package/templates/commands/rework.md +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chris1807/claude-kit",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.13",
|
|
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": {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: backend
|
|
3
3
|
description: Writes .NET 10/C# backend code following Clean Architecture across Domain, Application, Infrastructure, and API layers. Handles controllers, services, interfaces, DTOs, and repositories (MongoDB + SQL Server).
|
|
4
4
|
tools: Read, Write, Edit, Glob, Grep, Bash
|
|
5
|
-
model: opus
|
|
5
|
+
model: claude-opus-4-8
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Backend Developer
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: frontend
|
|
3
3
|
description: Writes React/TypeScript frontend code with MUI 6, Redux Toolkit, React Hook Form, and TanStack Query. Implements UI matching the HTML mockups.
|
|
4
4
|
tools: Read, Write, Edit, Glob, Grep, Bash
|
|
5
|
-
model: opus
|
|
5
|
+
model: claude-opus-4-8
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Frontend Developer
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: manager
|
|
3
3
|
description: Orchestrates the development workflow. Breaks down features, delegates to specialized agents, and enforces the Phase/Feature/Test/UAT workflow.
|
|
4
4
|
tools: Task, Read, Write, Edit, Glob, Grep, Bash
|
|
5
|
-
model: opus
|
|
5
|
+
model: claude-opus-4-8
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Team Manager
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mockup
|
|
3
3
|
description: Creates and updates HTML mockup files for new features. Maintains the design system and generates screen designs before implementation begins.
|
|
4
4
|
tools: Read, Write, Edit, Glob, Grep
|
|
5
|
-
model: opus
|
|
5
|
+
model: claude-opus-4-8
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Mockup Designer
|
|
@@ -182,6 +182,7 @@ For each approved task, call `mcp__azure-devops__wit_create_work_item` with:
|
|
|
182
182
|
- `Microsoft.VSTS.Scheduling.RemainingWork` — the same hour estimate
|
|
183
183
|
- `System.IterationPath` — copy from the parent (which is the root)
|
|
184
184
|
- `System.AreaPath` — copy from the parent
|
|
185
|
+
- `System.AssignedTo` — copy from the parent (pass the parent's `uniqueName` / email if its `System.AssignedTo` value is an identity object). If the parent is unassigned, leave this field unset rather than failing.
|
|
185
186
|
|
|
186
187
|
Then link the new task as a child of the parent with `mcp__azure-devops__wit_add_child_work_items` (or fall back to `wit_work_items_link` with link type `System.LinkTypes.Hierarchy-Forward` from parent → task).
|
|
187
188
|
|
|
@@ -149,6 +149,7 @@ If the user provided hours (suggested or overridden):
|
|
|
149
149
|
- `Microsoft.VSTS.Scheduling.RemainingWork` — the agreed hours
|
|
150
150
|
- `System.AreaPath` — same as the parent
|
|
151
151
|
- `System.IterationPath` — same as the parent
|
|
152
|
+
- `System.AssignedTo` — same as the parent (copy the parent's `System.AssignedTo` value; pass the `uniqueName` / email if the parent's value is an identity object). If the parent is unassigned, leave this field unset rather than failing.
|
|
152
153
|
|
|
153
154
|
2. Link the new Task as a child of the parent work item via `wit_work_items_link`:
|
|
154
155
|
- **type**: `Child` (the parent → child link from the parent's perspective; equivalent to `Parent` from the task's perspective)
|