task-pipeline-skill 1.60.0 → 1.60.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,30 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.60.1 — the gate can see an invariant it breaks elsewhere
4
+
5
+ **This gate can now see an invariant it breaks one repository away.** The family umbrella
6
+ routes work by matching a prompt against a table in `lib/triggers.js`, and every trigger
7
+ there must be a word this skill's own `description` advertises. Nothing here knew that
8
+ table existed. On 2026-08-16 `sheleg-design` 1.37.0 shipped green having dropped a phrase
9
+ that was still a live trigger, the umbrella found out minutes after the tag, and it cost a
10
+ patch release — because the member releases FIRST and the umbrella re-pins after.
11
+
12
+ `test/validate.py` now asks the umbrella's own checker (`test/advertised_check.js`), which
13
+ reads the module the hook itself calls. **No copy of the table lives here**, so there is
14
+ nothing to drift. With no umbrella above this checkout — a standalone clone, and CI — it
15
+ discloses rather than passing, because a check that cannot look must never read as one
16
+ that looked.
17
+
18
+ Guards: 344 → **344**, and the reason no plant joins this repository's own suite is the
19
+ check's shape. It only sees anything when an umbrella checkout sits above this one, which
20
+ is never true in this repository's CI — a negative self-test here would have to assert a
21
+ refusal that cannot happen. The plant lives where the submodules exist: `sshlg-skills`
22
+ runs one against every member's own gate.
23
+
24
+ Watched refusing a real drop before shipping: every one of the seven members carrying
25
+ routed triggers had one of its own advertised phrases removed and every one of them failed
26
+ its own gate.
27
+
3
28
  ## v1.60.0 — the gate this skill ships had never run on this skill
4
29
 
5
30
  Wiring it in was one line. Running it once found five things, and each was silent in a
package/SKILL-CARD.md CHANGED
@@ -12,7 +12,7 @@ harmless.
12
12
  |---|---|
13
13
  | **Purpose** | Runs a substantial task through ten gated delivery stages — intake grill, docs study, brainstorm, spec, plan, subagent build, tests, lint/deploy, post-deploy, docs+registers, acceptance — refusing to advance until each gate passes |
14
14
  | **Owner** | ssheleg ([github.com/ssheleg/task-pipeline](https://github.com/ssheleg/task-pipeline)) |
15
- | **Version** | 1.60.0 |
15
+ | **Version** | 1.60.1 |
16
16
  | **Surface** | Claude Code (filesystem skill + plugin) and the vercel `skills` CLI. **Not** uploaded to the Skills API; custom Skills do not sync across surfaces |
17
17
  | **Dependencies** | None required. Optional: `context7` (MCP), `figma` (MCP), super-ux, agent-sync, graphify, obsidian-wiki, and **one of two browser channels** — `playwright` (CLI or MCP) or `chrome-devtools` (MCP); either satisfies the browser step and neither is required. Every stage's doctrine ships in-repo; the one conditional requirement is super-ux for the stage-3 UX track on a user-facing task |
18
18
  | **Evaluation status** | Suite authored, 5 categories. One recorded run, **self-observed by the author**; **zero blind runs on zero of three models** — the split, and the numbers, live in [`evals/RESULTS.md`](evals/RESULTS.md) and are computed by `evals/run.py` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "task-pipeline-skill",
3
- "version": "1.60.0",
3
+ "version": "1.60.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"
@@ -2,7 +2,7 @@
2
2
  "name": "task-pipeline",
3
3
  "displayName": "Task Pipeline",
4
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 closes with evidence, a work board and a verification ledger that outlive a run, an exposure line naming what shipped unconfirmed, a progress rail computed from the project's own config, a loop guard whose review ceiling measures rather than stops, and stage-3 tracks for what a product does, how it sounds and how it looks. Two modes need no task: `checkup` (what is unverified) and `setup` (audit existing docs). Retro insights can publish upstream as issues, opt-in and redacted.",
5
- "version": "1.60.0",
5
+ "version": "1.60.1",
6
6
  "author": {
7
7
  "name": "ssheleg",
8
8
  "url": "https://x.com/sshlg93"