task-pipeline-skill 1.6.0 → 1.6.1
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,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.6.1 — 2026-08-01
|
|
4
|
+
|
|
5
|
+
### Fixed — v1.6.0 shipped without `displayName`, because a release lived only on a tag
|
|
6
|
+
|
|
7
|
+
**`v1.4.4` was tagged, released and published to npm, and its commit was never in
|
|
8
|
+
`main`.** It added `displayName` ("Task Pipeline") to both manifests — the label the
|
|
9
|
+
plugin picker shows. Every branch cut from `main` afterwards therefore started from a
|
|
10
|
+
tree that had never seen it, and v1.6.0 published a manifest without the field,
|
|
11
|
+
quietly returning the picker to the kebab-case `name`.
|
|
12
|
+
|
|
13
|
+
Nothing inside either record looked wrong: `main` was consistent with itself, the tag
|
|
14
|
+
was consistent with itself, CI was green on both, and the registry served a 1.4.4 no
|
|
15
|
+
branch contained. That is the same shape as the parent/submodule pointer this
|
|
16
|
+
project's own stage-10 doctrine already guards against — **a disagreement that lives
|
|
17
|
+
between two records and survives every check that runs inside one.**
|
|
18
|
+
|
|
19
|
+
- `displayName` restored, and the v1.4.4 section restored to this file. The fix is a
|
|
20
|
+
**merge of the tag**, not a re-typed field: copying the content back would have
|
|
21
|
+
left the tag still outside `main`, which is the condition that caused this.
|
|
22
|
+
- **CI now refuses an orphaned release:** every `v*` tag must be an ancestor of
|
|
23
|
+
`main`, checked on every push. The next tag that lands outside the branch is a red
|
|
24
|
+
build, not a feature that disappears three releases later.
|
|
25
|
+
- **The validator now rejects unresolved merge conflict markers.** Resolving the
|
|
26
|
+
merge above surfaced it: a `CHANGELOG.md` carrying three `<<<<<<<` markers passed
|
|
27
|
+
every existing check, because they all look at structure and none at the text. In a
|
|
28
|
+
repo that is almost entirely prose, a half-resolved merge ships as doctrine an
|
|
29
|
+
agent reads and obeys. (34 guards now, each with its negative self-test; the
|
|
30
|
+
tag-ancestry check is a CI step rather than a validator guard, since it needs git
|
|
31
|
+
history the offline validator does not have.)
|
|
32
|
+
|
|
3
33
|
## v1.6.0 — 2026-08-01
|
|
4
34
|
|
|
5
35
|
### `references/retrospective.md` — the run teaches the next run, and the list stays short
|
|
@@ -109,6 +139,12 @@ shipped graph doctrine must reach the **stage-9 gate** in `pipeline.example.json
|
|
|
109
139
|
*and* the stage-9 section of `references/stages.md`. That is the third time this repo
|
|
110
140
|
has shipped a rule to `SKILL.md` and not to the surface that enforces it — a gate
|
|
111
141
|
declared where it is not enforced is inert.
|
|
142
|
+
## v1.4.4 — 2026-07-30
|
|
143
|
+
|
|
144
|
+
### Added
|
|
145
|
+
- **`displayName`** ("Task Pipeline") in both manifests — `name` stays kebab-case
|
|
146
|
+
because it namespaces components; the picker shows this instead.
|
|
147
|
+
|
|
112
148
|
## v1.4.3 — 2026-07-30
|
|
113
149
|
|
|
114
150
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "task-pipeline-skill",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Full-cycle delivery pipeline for coding agents: a mandatory built-in intake grill, then 10 gated stages (docs, brainstorm+decompose, spec, plan, build, tests, lint/deploy, post-deploy, docs/wiki, acceptance). Every stage's doctrine ships inside the skill — no companion plugin required. This package is the installer CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"task-pipeline": "bin/task-pipeline.js"
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "task-pipeline",
|
|
3
|
+
"displayName": "Task Pipeline",
|
|
3
4
|
"description": "Runs a substantial task through a mandatory built-in intake grill, then 10 gated stages (docs, brainstorm+decompose, spec, plan, subagent build, tests, lint/deploy, post-deploy, docs/wiki, acceptance). Every stage's doctrine is built into the skill — no companion plugin required — with typed auto/manual gates, a frozen requirement spine that must close with evidence, a loop guard that breaks churn, one provider-agnostic model confirmed up front, and an optional super-ux UX track for user-facing work.",
|
|
4
|
-
"version": "1.6.
|
|
5
|
+
"version": "1.6.1",
|
|
5
6
|
"author": {
|
|
6
7
|
"name": "ssheleg"
|
|
7
8
|
},
|