@chris1807/claude-kit 2.1.18 → 2.1.19
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.19",
|
|
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": {
|
|
@@ -237,6 +237,17 @@ Azure DevOps description and acceptance criteria fields are HTML — they do not
|
|
|
237
237
|
|
|
238
238
|
Wrap each top-level section in `<p>...</p>`. Preserve any user-supplied `<img>` tags from Step 2 as-is.
|
|
239
239
|
|
|
240
|
+
### Emphasis and code spans (required)
|
|
241
|
+
|
|
242
|
+
A description that is one long paragraph of plain prose is not acceptable — even after Markdown is converted, the rendered output must guide the reader's eye. Before rendering, edit the draft so that:
|
|
243
|
+
|
|
244
|
+
- **Key terms, values, and outcomes** in each sentence are wrapped in `**bold**` (renders as `<strong>...</strong>`). Bold the noun phrase that carries the claim, not the whole sentence.
|
|
245
|
+
- **Code identifiers** — method names, class names, field names, file paths, route paths, JSON keys, env vars, commit hashes, IDs, literal values like `true` / `null` / numeric thresholds — are wrapped in `` `code spans` `` (renders as `<code>...</code>`).
|
|
246
|
+
- **Lists** are used instead of comma-separated prose whenever the draft contains 2+ parallel items (steps, files, references, acceptance criteria).
|
|
247
|
+
- **Section headings** (`### Description`, `### Acceptance Criteria`, etc.) are kept — they become `<h3>` and structure the rendered output.
|
|
248
|
+
|
|
249
|
+
Apply this pass to every section (Description, Acceptance Criteria, Steps to Reproduce, Expected/Actual Behavior, Environment/Scope, Open Questions). Apply it equally to Bugs and User Stories.
|
|
250
|
+
|
|
240
251
|
### Call the create API
|
|
241
252
|
|
|
242
253
|
Call `mcp__azure-devops__wit_create_work_item` with:
|
|
@@ -161,7 +161,23 @@ If the user provided hours (suggested or overridden):
|
|
|
161
161
|
- **workItemType**: `Task`
|
|
162
162
|
- **title**: `Rework AB#{id} — round {N}`
|
|
163
163
|
- **fields**: JSON Patch document setting:
|
|
164
|
-
- `System.Description` —
|
|
164
|
+
- `System.Description` — structured **HTML** (Azure DevOps does not render Markdown in this field). Use exactly these three sections, in this order, omitting any that have no content:
|
|
165
|
+
|
|
166
|
+
```html
|
|
167
|
+
<h3>Summary</h3>
|
|
168
|
+
<p>{1–2 sentences describing the problem the rework addresses. Bold key terms, values, and outcomes with <strong>...</strong>.}</p>
|
|
169
|
+
<h3>Fix</h3>
|
|
170
|
+
<ul>
|
|
171
|
+
<li>{What changes. Wrap code identifiers, method names, fields, file paths, and literal values in <code>...</code>.}</li>
|
|
172
|
+
</ul>
|
|
173
|
+
<h3>Reference</h3>
|
|
174
|
+
<ul>
|
|
175
|
+
<li>Rework round {N} of AB#{id} ({date or tester} feedback).</li>
|
|
176
|
+
<li><a href="{PR url}">PR #{n}</a> — {one-line context, e.g. test-plan scenario, submission id in <code>...</code>}</li>
|
|
177
|
+
</ul>
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
Render any code identifiers (method names, fields, file paths, hashes, literal values) inside `<code>` spans, and emphasize the key claim/value in each sentence with `<strong>`. Do not submit a wall of plain prose — every rework task must have at least the `Summary` and `Fix` sections in this shape.
|
|
165
181
|
- `Microsoft.VSTS.Scheduling.OriginalEstimate` — the agreed hours
|
|
166
182
|
- `Microsoft.VSTS.Scheduling.RemainingWork` — the agreed hours
|
|
167
183
|
- `System.AreaPath` — same as the parent
|