pi-gauntlet 4.8.1 → 4.8.2
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v4.8.2 - 2026-08-14
|
|
4
|
+
|
|
5
|
+
Tracker-neutral skill wording - Linear is an example, not the canonical vocabulary.
|
|
6
|
+
|
|
7
|
+
- `brainstorming`: `## Linear Ticket Handling` renamed to `## Ticket Handling` (consumer overrides matching by name/topic keep working - the substring survives); filename convention now `With ticket: YYYY-MM-DD-<ticket-id>-<topic>.md` with `<ticket-id>` defined as a filename-safe slug of the tracker reference (Linear keys verbatim, e.g. `gh-123` for GitHub issue `#123`); plan headers and commit messages use the tracker's native reference form.
|
|
8
|
+
- `writing-plans`: plan header field `**Linear:** E-XXXX` -> `**Ticket:** <ticket-id>`; "same Linear ID" -> "same ticket ID"; commit example `(ref E-XXXX)` -> `(ref <ticket-id>)`.
|
|
9
|
+
- `finishing-a-development-branch`: squash-commit example `(ref E-XXXX)` -> `(ref <ticket-id>)`.
|
|
10
|
+
- AGENTS core: no-new-machinery rule added to the shared Code & Documentation Discipline section.
|
|
11
|
+
|
|
3
12
|
## v4.8.1 - 2026-08-12
|
|
4
13
|
|
|
5
14
|
Fix-loop escalation now tracks convergence, not just round count (#7).
|
package/package.json
CHANGED
|
@@ -180,7 +180,7 @@ Cover at minimum:
|
|
|
180
180
|
|
|
181
181
|
Be ready to go back and clarify when something doesn't make sense.
|
|
182
182
|
|
|
183
|
-
##
|
|
183
|
+
## Ticket Handling
|
|
184
184
|
|
|
185
185
|
When a ticket ID is given, fetch the ticket and treat it as **guidance, not the sole source of truth**. Propose changes to scope, approach, or acceptance criteria when they don't align with the codebase. Surface deviations in the spec doc.
|
|
186
186
|
|
|
@@ -213,8 +213,8 @@ If the change truly is mechanical and contained (rename, formatter run, dependen
|
|
|
213
213
|
|
|
214
214
|
Spec lives in the project's `doc/specs/` (see [Project Routing](#project-routing)) with one of:
|
|
215
215
|
|
|
216
|
-
- With
|
|
217
|
-
- Without
|
|
216
|
+
- With ticket: `YYYY-MM-DD-<ticket-id>-<topic>.md` — `<ticket-id>` is a filename-safe slug of the tracker reference (e.g. `E-12345` for Linear, used verbatim; `gh-123` for GitHub issue `#123`). Plan headers and commit messages use the tracker's native reference form, not the filename slug.
|
|
217
|
+
- Without ticket: `YYYY-MM-DD-<topic>.md`
|
|
218
218
|
|
|
219
219
|
`<topic>` is a short kebab-case slug (3–6 words). Do **not** append `-design` or any other suffix.
|
|
220
220
|
|
|
@@ -178,7 +178,7 @@ git merge --squash <feature-branch>
|
|
|
178
178
|
git rm doc/plans/<plan-file>.md # or <service>/doc/plans/<plan-file>.md
|
|
179
179
|
|
|
180
180
|
# Single commit covering spec + code + review fixes.
|
|
181
|
-
git commit -m "<imperative summary> (ref
|
|
181
|
+
git commit -m "<imperative summary> (ref <ticket-id>)"
|
|
182
182
|
|
|
183
183
|
# Verify tests on merged result
|
|
184
184
|
<Step 1 command for the service(s) touched>
|
|
@@ -19,7 +19,7 @@ Before drafting the plan, call `phase_tracker({ action: "start", phase: "plan" }
|
|
|
19
19
|
|
|
20
20
|
**Input:** an approved spec in `<project>/doc/specs/<filename>.md` — produced by `/skill:brainstorming` in this session, or handed off from another session (see "Resuming with a spec in hand").
|
|
21
21
|
|
|
22
|
-
**Save plans to:** the sibling `doc/plans/` directory next to the spec. The plan filename matches the spec filename exactly — same date, same
|
|
22
|
+
**Save plans to:** the sibling `doc/plans/` directory next to the spec. The plan filename matches the spec filename exactly — same date, same ticket ID (if any), same topic slug, no `-design` suffix.
|
|
23
23
|
|
|
24
24
|
| Spec path | Plan path |
|
|
25
25
|
|---|---|
|
|
@@ -185,7 +185,7 @@ Each step is **one action, 2-5 minutes**:
|
|
|
185
185
|
|
|
186
186
|
**Verification:** `<full verification command set — tests + style + format; a single bundling entrypoint, or the listed individual commands; from the recon report / project overrides>`
|
|
187
187
|
|
|
188
|
-
**
|
|
188
|
+
**Ticket:** `<ticket-id>` (omit if none)
|
|
189
189
|
|
|
190
190
|
---
|
|
191
191
|
```
|
|
@@ -240,7 +240,7 @@ Each task uses `- [ ]` checkbox steps so execution tools (and humans) can track
|
|
|
240
240
|
|
|
241
241
|
```bash
|
|
242
242
|
git add tests/path/test.py src/path/file.py
|
|
243
|
-
git commit -m "<imperative subject> (ref
|
|
243
|
+
git commit -m "<imperative subject> (ref <ticket-id>)"
|
|
244
244
|
```
|
|
245
245
|
```
|
|
246
246
|
|