@ssheleg/agent-stack 0.23.1 → 0.23.2

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,36 @@
1
+ ## v0.23.2 — a path that resolves only from the neighbour's directory, and the description with no room left
2
+
3
+ Family audit 2026-09-06 (wave AUDIT-WAVE-0906) brought three findings for this member.
4
+ Two changed files; the third changed a board instead.
5
+
6
+ **Two references pointed at `references/kv-cache.md` from directories where it does not
7
+ exist.** `agent-evals/references/otel-genai.md:137` and
8
+ `agent-interop/references/mcp-scale.md:92` both named the bare path; the file lives only
9
+ in sibling `agent-orchestrator`. The prose around each named the sibling, so a reader
10
+ could recover the target — but the path as written resolves to nothing from either
11
+ skill's own root, and a bare `references/x.md` means *this skill's file* by the
12
+ validator's own rule (`test/validate.py:263-267`). The check never saw them because it
13
+ reads SKILL.md alone; these sat in reference files nothing scans. Both now read
14
+ `../agent-orchestrator/references/kv-cache.md`, which resolves from each skill's root —
15
+ and the leading `../` keeps the validator's lookbehind from reading it as a claim on a
16
+ local file.
17
+
18
+ **`agent-interop`'s description sat at exactly 970/970 — the working limit with zero
19
+ headroom** — so the next trigger, the next boundary clause, any edit at all would have
20
+ fought the gate before doing its work. Eleven characters of connective prose trimmed
21
+ ("another agent" → "an agent"; two list-internal "and"s → commas): now **959/970**, with
22
+ every quoted trigger phrase untouched — **14 before, 14 after**, English and Russian,
23
+ counted by re-folding the YAML scalar rather than by eyeballing the diff.
24
+
25
+ **The audit also asked for a debulk of `agent-orchestrator` and `agent-evals`, and that
26
+ was declined rather than done blind.** Re-measured at this commit: **4655/4750** (98.0%)
27
+ and **4631/4750** (97.5%), both `0 GAP`. The family precedent (B-141 class) is that
28
+ manufacturing headroom with no pending edit is negative-value work: room bought today is
29
+ spent by nobody, and a trim chosen without the edit it serves cuts on the wrong line.
30
+ Filed as board row **B-135** — the debulk belongs to the release that next edits these
31
+ bodies, beside B-129's standing record that the durable remedy for `agent-orchestrator`
32
+ is a split, not a trim.
33
+
1
34
  ## v0.23.1 — the registry card stopped being ten releases stale
2
35
 
3
36
  `SKILL-CARD.md` carries the fields Anthropic's Skills-for-enterprise guidance asks every
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-stack",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
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.23.1",
6
+ "version": "0.23.2",
7
7
  "author": {
8
8
  "name": "ssheleg",
9
9
  "url": "https://x.com/sshlg93"
@@ -134,7 +134,7 @@ per-modality `text.*` / `image.*` / `audio.*` splits including
134
134
 
135
135
  **A cost computed from `input_tokens + output_tokens` alone is wrong in both directions.** It
136
136
  bills cache reads at full price — they are the cheap ones — and it misses reasoning tokens and
137
- cache writes entirely. `references/kv-cache.md` in `agent-orchestrator` is the other half of
137
+ cache writes entirely. `../agent-orchestrator/references/kv-cache.md` is the other half of
138
138
  this: the cache read is the case worth getting right, because at scale it is most of the
139
139
  traffic.
140
140
 
@@ -2,11 +2,11 @@
2
2
  name: agent-interop
3
3
  description: >-
4
4
  Use when an agent must talk to something outside its own process — building or consuming an
5
- MCP server, exposing or calling another agent over A2A, publishing to the MCP Registry, or
5
+ MCP server, exposing or calling an agent over A2A, publishing to the MCP Registry, or
6
6
  putting a gateway in front of agent traffic. Carries the MCP 2026-07-28 wire surface and what it
7
7
  deprecated (server/discover, stateless per-request _meta, elicitation in form and URL mode,
8
8
  subscriptions/listen; sampling, roots, logging and dynamic client registration going),
9
- A2A 1.0 agent cards, task states and three bindings, registry namespaces and server.json, tool
9
+ A2A 1.0 agent cards, task states, three bindings, registry namespaces, server.json, tool
10
10
  federation, and what a gateway must do that an API gateway does not. Triggers - "MCP server",
11
11
  "MCP client", "A2A", "agent card", "agent interoperability", "MCP registry", "server.json",
12
12
  "agentgateway", "tool federation", "MCP-сервер", "карточка агента", "интероперабельность
@@ -88,8 +88,8 @@ tokens than the definitions you so carefully removed.
88
88
  mitigations below were approximating: `defer_loading` keeps deferred definitions out of the
89
89
  system-prompt prefix and appends discovered ones inline as `tool_reference` blocks, leaving the
90
90
  cached prefix untouched (at least one tool must stay non-deferred — all-deferred is a 400). The
91
- economics, the arithmetic and the other invalidators are in `agent-orchestrator`'s
92
- `references/kv-cache.md`.
91
+ economics, the arithmetic and the other invalidators are in
92
+ `../agent-orchestrator/references/kv-cache.md`.
93
93
 
94
94
  Three mitigations, in the order they are usually right:
95
95