task-pipeline-skill 1.84.0 → 1.84.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 +38 -0
- package/README.md +3 -3
- package/SKILL-CARD.md +1 -1
- package/package.json +1 -1
- package/plugins/task-pipeline/.claude-plugin/plugin.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## v1.84.1 — the conformance sentence is computed, and two of its five figures were wrong
|
|
2
|
+
|
|
3
|
+
**A sentence of five measured figures, and nothing derived any of them.** The README's
|
|
4
|
+
*Held to Anthropic's own Skill authoring guidance* paragraph states `name` length,
|
|
5
|
+
`description` length, `SKILL.md` lines, the reference count and the bundle size. Measured
|
|
6
|
+
2026-09-05:
|
|
7
|
+
|
|
8
|
+
| stated | measured |
|
|
9
|
+
|---|---|
|
|
10
|
+
| `name` 13/64 | 13 ✓ |
|
|
11
|
+
| `description` inside 1024 | 899 ✓ |
|
|
12
|
+
| `SKILL.md` **334**/500 lines | **262** |
|
|
13
|
+
| all **38** references | 38 ✓ |
|
|
14
|
+
| **436 KB** against 30 MB | **1128 KB** |
|
|
15
|
+
|
|
16
|
+
**The line figure was wrong when it was written.** At commit `297a0cb`, which added the
|
|
17
|
+
sentence, the file was **339** lines — not 334. It was never a measurement, and a reader
|
|
18
|
+
had no way to tell which of the five to trust.
|
|
19
|
+
|
|
20
|
+
**The size figure changed SHAPE rather than value, and that is the decision worth
|
|
21
|
+
recording.** It moved on four of the eight commits before this one — 950 → 970 → 980 →
|
|
22
|
+
1128 KB — so an exact figure in prose goes stale by construction, and a check over it
|
|
23
|
+
would fire on nearly every edit. *A check that fires constantly is one somebody turns
|
|
24
|
+
off.* It is a bound now — **far under the 30 MB ceiling** — which stays true across three
|
|
25
|
+
orders of magnitude and still says what the sentence exists to say.
|
|
26
|
+
|
|
27
|
+
The other four are derived and compared on every run. The parser **asserts it found all
|
|
28
|
+
four**: a sentence reworded past it fails here saying so rather than passing quietly,
|
|
29
|
+
which is the shape that has twice made a healthy guard in this family report itself
|
|
30
|
+
broken. Line count is `splitlines()`, stated in the failure message because `wc -l` over
|
|
31
|
+
a file without a trailing newline gives a different number.
|
|
32
|
+
|
|
33
|
+
Both directions watched failing, each plant asserting it landed first: a wrong figure
|
|
34
|
+
gives *states lines = 999 and the tree gives 262*; deleting the reference clause gives
|
|
35
|
+
*no longer states references in a shape this check can read*.
|
|
36
|
+
|
|
37
|
+
Guards: 424 → **424** — the new check is an ordinary step, not a planted-defect guard.
|
|
38
|
+
|
|
1
39
|
## v1.84.0 — fifteen filed findings, and the two rules they mostly refine
|
|
2
40
|
|
|
3
41
|
Every one of the fifteen `ssheleg/sshlg-skills` issues this repository owned, closed in one
|
package/README.md
CHANGED
|
@@ -587,9 +587,9 @@ must say so.
|
|
|
587
587
|
### Held to Anthropic's own Skill authoring guidance
|
|
588
588
|
|
|
589
589
|
Audited against the four Agent Skills pages. Most of it already held — `name`
|
|
590
|
-
13/64 chars, `description`
|
|
591
|
-
linked **directly** from `SKILL.md`,
|
|
592
|
-
now does:
|
|
590
|
+
13/64 chars, `description` 899/1024 chars, `SKILL.md` 262/500 lines, all 38 references
|
|
591
|
+
linked **directly** from `SKILL.md`, and the bundle far under the 30 MB ceiling. What
|
|
592
|
+
did not, now does:
|
|
593
593
|
|
|
594
594
|
- **Every reference over 100 lines carries a `## Contents` list**, and the list is
|
|
595
595
|
*compared against the file's own headings* rather than trusted. The guidance is
|
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.84.
|
|
15
|
+
| **Version** | 1.84.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.84.
|
|
3
|
+
"version": "1.84.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"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "task-pipeline",
|
|
4
4
|
"displayName": "Task Pipeline",
|
|
5
5
|
"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/judgment/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.",
|
|
6
|
-
"version": "1.84.
|
|
6
|
+
"version": "1.84.1",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "ssheleg",
|
|
9
9
|
"url": "https://x.com/sshlg93"
|