task-pipeline-skill 1.48.0 → 1.49.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,54 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.49.1 — the entry states the count its own guard reads
4
+
5
+ ### Fixed
6
+
7
+ - **v1.49.0 tagged but never released.** Its CHANGELOG entry stated no
8
+ `Guards: N → **M**` count, so two of this repo's negative self-tests had
9
+ nothing to patch and reported `PLANT DID NOT LAND` — the release job failed
10
+ after the tag was already public. Same class as v1.45.0, and the guard worked
11
+ exactly as designed: a probe that cannot plant says so instead of passing.
12
+
13
+ The count is unchanged because v1.49.0 added a feature, not enforcement.
14
+
15
+ Guards: 309 → **309**. Property checks: 9 → 9. The installer change is
16
+ behavioural and carries no new guard; the count is stated because two probes read
17
+ the newest section and a count-shaped sentence with no count is the one case
18
+ where silence and agreement look the same.
19
+
20
+ ### Changed
21
+
22
+ - Everything in v1.49.0, which never shipped: the installer now offers the
23
+ family's routing block via `npx sshlg-skills routers --member task-pipeline`,
24
+ scoped so it repairs only this skill's own section. See that entry below.
25
+
26
+ ## v1.49.0 — the installer stops leaving the skill unrouted
27
+
28
+ ### Changed
29
+
30
+ - **The installer now offers the family's routing block** (closing B-06 in the
31
+ umbrella). Until now only `super-ux` delegated: install this skill on its own
32
+ and no router was written at all, so an agent had the skill and no rule saying
33
+ when to reach for it. The bundle installer wrote all eight, which is why
34
+ nothing looked broken — the gap only opened for someone installing one member.
35
+
36
+ Delegated to `npx sshlg-skills routers --member task-pipeline` rather than
37
+ reimplemented, for three reasons:
38
+
39
+ - The block describes what the machine actually has. A lone member rendering
40
+ the whole thing would print a table for routers nobody installed.
41
+ - `--member` scopes the write to this skill's own section. Verified by damaging
42
+ two sections of a real block and running this installer: its own was
43
+ repaired, the other left exactly as it was.
44
+ - The launcher is the only writer that copies the operator's global instruction
45
+ file before touching it. That file has no version control behind it.
46
+
47
+ `--no-install` keeps it from silently downloading a package nobody asked for.
48
+ When the launcher is absent the command is printed instead of failing: ending
49
+ an install in an error over an optional follow-up reads as a failed install.
50
+ Both paths were exercised.
51
+
3
52
  ## v1.48.0 — a screen is the frame implemented, and four mechanisms this project owed itself
4
53
 
5
54
  **A screen is the frame, implemented.** Until now Figma was an address and a link: the
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.48.0 |
15
+ | **Version** | 1.49.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. 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` |
@@ -54,6 +54,39 @@ function installOne(label, src, dest, isDir, force) {
54
54
  console.log(`Installed ${label} -> ${dest}`);
55
55
  }
56
56
 
57
+ /**
58
+ * Ask the family launcher to write the routing block, for this member only.
59
+ *
60
+ * Delegated rather than reimplemented, for three reasons. The block describes
61
+ * what the machine actually has, so a lone member rendering the whole thing
62
+ * would produce a table for routers nobody installed. `--member` limits this to
63
+ * the `task-pipeline` section and leaves everyone else's alone, which is what
64
+ * lets the bundle and a single installer both write. And the launcher is the
65
+ * only writer that copies the operator's global instruction file before touching
66
+ * it — that file has no version control behind it, and two defects in this
67
+ * family's history destroyed it.
68
+ *
69
+ * `--no-install` keeps this from silently downloading a package the user did not
70
+ * ask for. When the launcher is absent, print the one command instead of
71
+ * failing: an installer that ends in an error because an OPTIONAL follow-up is
72
+ * missing reads as a failed install.
73
+ */
74
+ function offerRouters() {
75
+ const { spawnSync } = require('child_process');
76
+ const r = spawnSync(
77
+ 'npx',
78
+ ['--no-install', 'sshlg-skills', 'routers', '--member', 'task-pipeline'],
79
+ { stdio: 'inherit', shell: process.platform === 'win32' }
80
+ );
81
+ if (r.status !== 0) {
82
+ console.log(
83
+ '\nTo have this skill apply by default in every project, add the\n' +
84
+ "family's routing block to your agent's global instructions:\n\n" +
85
+ ' npx --yes sshlg-skills routers --member task-pipeline\n'
86
+ );
87
+ }
88
+ }
89
+
57
90
  function main(argv) {
58
91
  const args = argv.slice(2);
59
92
  if (args.includes('--help') || args.includes('-h')) {
@@ -115,6 +148,7 @@ Rerun with --force if you deliberately want the plain copy instead.`);
115
148
  false,
116
149
  force
117
150
  );
151
+ offerRouters();
118
152
  return 0;
119
153
  }
120
154
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "task-pipeline-skill",
3
- "version": "1.48.0",
3
+ "version": "1.49.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.48.0",
5
+ "version": "1.49.1",
6
6
  "author": {
7
7
  "name": "ssheleg",
8
8
  "url": "https://x.com/sshlg93"