@ssheleg/agent-stack 0.19.0 → 0.19.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,3 +1,25 @@
1
+ ## v0.19.1 — the class the umbrella had been catching for us, twice
2
+
3
+ `B-126`'s board row shipped in v0.19.0 with **nine cells against the eight its header
4
+ declares**, and the umbrella's validator refused the re-pin. That is the **second** time in
5
+ three releases: `B-124` did the same in v0.18.0, also caught by the umbrella rather than
6
+ here.
7
+
8
+ **A class seen twice becomes a script.** `check_ledger_tables_keep_their_shape()` counts the
9
+ cells of every row in `docs/evidence/*.md` against the header its table declares, splitting
10
+ on an unescaped `|` exactly as a reader does — so a member now refuses what a sibling had
11
+ been catching on its behalf.
12
+
13
+ **It found a pre-existing defect on its first run**, older than either of mine:
14
+ `verification.md`'s row 016 quotes a shell pipeline inside backticks — `… \| grep -c '^ - name:'`
15
+ — and that bare `|` had been splitting the row into five cells since it was written.
16
+
17
+ **Both of my own breakages were the same underlying mistake, and it was not markdown.**
18
+ v0.18.0's came from a grep pattern pasted into a cell. This one came from a Python edit
19
+ where adjacent string literals were written across lines *without parentheses*, so only the
20
+ first fragment bound to the variable and the replacement left an orphaned tail — carrying a
21
+ bare `|` with it. The row was malformed because the edit that wrote it was silently partial.
22
+
1
23
  ## v0.19.0 — the prompt cache is an architectural constraint, and the gate that never watched the body
2
24
 
3
25
  Fourteen findings from nine independent bundles of the 2026-08-31 harvest said the same
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-stack",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "scripts": {
5
5
  "test": "python3 test/validate.py && python3 test/plant_guard_test.py && node test/installer_test.js"
6
6
  },
@@ -3,7 +3,7 @@
3
3
  "name": "agent-stack",
4
4
  "displayName": "Agent Stack",
5
5
  "description": "Four skills: agent-orchestrator — tool-calling loops, pipelines with checkpoints, provider routing with fallback, memory architecture, plus the wallet side of reselling LLM access; agent-evals — run/trace/thread evals, LLM judges, and fixtures grown from production; agent-interop — MCP servers and clients, A2A agent cards, the MCP Registry, and gateways; agent-harness — system prompts, tool shaping, workflow-vs-agent, and auditing an agent system.",
6
- "version": "0.19.0",
6
+ "version": "0.19.1",
7
7
  "author": {
8
8
  "name": "ssheleg",
9
9
  "url": "https://x.com/sshlg93"