@ssheleg/agent-stack 0.17.0 → 0.17.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 +41 -0
- package/README.md +3 -2
- package/package.json +1 -1
- package/plugins/agent-stack/.claude-plugin/plugin.json +2 -1
- package/plugins/agent-stack/skills/agent-evals/SKILL.md +7 -0
- package/plugins/agent-stack/skills/agent-harness/SKILL.md +1 -0
- package/plugins/agent-stack/skills/agent-interop/SKILL.md +1 -0
- package/plugins/agent-stack/skills/agent-orchestrator/SKILL.md +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.17.1 — the evals run for the first time, and the tails go to zero
|
|
4
|
+
|
|
5
|
+
Wave-3 of the 2026-08-29 family audit (rows AST-05, AST-07, AST-08, AST-09, AST-10),
|
|
6
|
+
plus the two board rows wave 2 filed (AST-A1, AST-B). All fixes and docs — no
|
|
7
|
+
description or trigger changes, hence a patch.
|
|
8
|
+
|
|
9
|
+
- **AST-05: the eval suite is executed for the first time.** `test/evals/RESULTS.md`
|
|
10
|
+
gains two dated rows — haiku and sonnet, 2026-08-31 — each a fresh blind subagent
|
|
11
|
+
per trigger query against the family's 28 skill descriptions, plus all three
|
|
12
|
+
scenarios scored line by line. Both models: 11/12 triggers. Scenario lines: 10/12
|
|
13
|
+
(haiku), 9/12 (sonnet). Each miss is named — haiku false-triggered `agent-harness`
|
|
14
|
+
on "rewrite this one system prompt so it sounds friendlier" (q09), sonnet answered
|
|
15
|
+
`none` on the Russian harness-audit query (q04) — and the Method section states the
|
|
16
|
+
protocol and its three limits rather than presenting the rates as clean-room.
|
|
17
|
+
- **AST-B: the generator-evaluator citation lands where the doctrine lives.**
|
|
18
|
+
`agent-evals` §5a now cites Anthropic's *tuning a standalone evaluator to be
|
|
19
|
+
skeptical is more tractable than making a generator self-critical* (read
|
|
20
|
+
2026-08-30) beside the sentence making the same claim, marked as convergence
|
|
21
|
+
rather than invention — beside the first executed eval run, as the board row asked.
|
|
22
|
+
- **AST-A1: the nine-subsystem coverage check is done and the row closes.** The ninth
|
|
23
|
+
subsystem the filing row could not name is **Automation**; all nine map to existing
|
|
24
|
+
doctrine with a `file:line` each, and the suspected identity/approval-policy gap
|
|
25
|
+
resolves as a split verdict — approval policy covered (`governance.md`),
|
|
26
|
+
authentication mechanics a named delegation (`layers.md:78-80`), not a hole. The
|
|
27
|
+
map lives in the board row (`docs/evidence/backlog.md`), not in a new reference.
|
|
28
|
+
- **AST-07: the README stops counting its references.** "Twenty references" had
|
|
29
|
+
drifted to 24 actual files within a week of being written; the aggregate count is
|
|
30
|
+
dropped in favour of the per-skill counts that are still true, with the reason
|
|
31
|
+
stated in place.
|
|
32
|
+
- **AST-10: the orchestrator's reference index lists all 11 references.** The three
|
|
33
|
+
memory rows — `memory-architecture.md`, `memory-lifecycle.md`,
|
|
34
|
+
`memory-landscape.md` — join the index table, each paraphrasing its own
|
|
35
|
+
"Load this when" line.
|
|
36
|
+
- **AST-08: `license: MIT` in all four skill front matters** (was 1 of 4 —
|
|
37
|
+
`agent-evals` alone carried it). Every front matter re-checked with
|
|
38
|
+
`yaml.safe_load` after the edit.
|
|
39
|
+
- **AST-09: `$schema` in both manifests** — `claude-code-plugin-manifest.json` for
|
|
40
|
+
`plugin.json`, `claude-code-marketplace.json` for `marketplace.json`, the two
|
|
41
|
+
schemastore addresses that resolve (the third candidate, `claude-code-plugin.json`,
|
|
42
|
+
is a 404 and two siblings currently point at it; referred, not copied).
|
|
43
|
+
|
|
3
44
|
## v0.17.0 — the descriptions stop colliding, and the claims get their dates
|
|
4
45
|
|
|
5
46
|
Wave-2 of the 2026-08-29 family audit (rows AST-02, AST-03, AST-04, AST-06, AST-11), plus
|
package/README.md
CHANGED
|
@@ -33,8 +33,9 @@ Part of the [ssheleg skill family](https://github.com/ssheleg/sshlg-skills).
|
|
|
33
33
|
|
|
34
34
|
Four skills — `agent-orchestrator` for wiring the loop, `agent-evals` for proving it
|
|
35
35
|
behaves, `agent-interop` for everything it talks to outside its own process,
|
|
36
|
-
`agent-harness` for what it is **told** — and
|
|
37
|
-
plus one scanner.
|
|
36
|
+
`agent-harness` for what it is **told** — and the references they load on demand,
|
|
37
|
+
plus one scanner. The per-skill sections below carry their own counts; no total is
|
|
38
|
+
stated here, because the last one drifted stale within a week of being written.
|
|
38
39
|
|
|
39
40
|
**The orchestrator** (`SKILL.md`) — what the agent reads first:
|
|
40
41
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
2
3
|
"name": "agent-stack",
|
|
3
4
|
"displayName": "Agent Stack",
|
|
4
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.",
|
|
5
|
-
"version": "0.17.
|
|
6
|
+
"version": "0.17.1",
|
|
6
7
|
"author": {
|
|
7
8
|
"name": "ssheleg",
|
|
8
9
|
"url": "https://x.com/sshlg93"
|
|
@@ -168,6 +168,13 @@ the one most systems are missing: a **checker node** sitting between a parallel
|
|
|
168
168
|
the node that consumes it. Its only job is *usable / not usable*, and the convergence
|
|
169
169
|
depends on **it** rather than on the branches — otherwise the gate has a bypass.
|
|
170
170
|
|
|
171
|
+
**That split is measured practice, not only this pack's position.** Anthropic's
|
|
172
|
+
harness-design guidance (`anthropic.com/engineering/harness-design-long-running-apps`,
|
|
173
|
+
read 2026-08-30) reports that *tuning a standalone evaluator to be skeptical is more
|
|
174
|
+
tractable than making a generator self-critical* — the same reason the verdict belongs to
|
|
175
|
+
a separate node rather than to the branches grading themselves. Dated and cited so a
|
|
176
|
+
reader can tell doctrine that converged with the field from doctrine invented here.
|
|
177
|
+
|
|
171
178
|
It matters here because it is the same machinery as §5, positioned differently:
|
|
172
179
|
|
|
173
180
|
<!-- checker-contract: missing, empty, unevidenced, malformed, contradictory, off-topic | optional: under-confident -->
|
|
@@ -13,6 +13,7 @@ description: >-
|
|
|
13
13
|
"embed an agent", "agent SDK", "Pi harness", "системный промпт", "агент не вызывает тул",
|
|
14
14
|
"аудит агента", "встроить агента". Not for the loop's plumbing, its evals, or its
|
|
15
15
|
protocols — those are siblings.
|
|
16
|
+
license: MIT
|
|
16
17
|
---
|
|
17
18
|
|
|
18
19
|
# Agent harness — what the agent is told, and how to audit what someone else told theirs
|
|
@@ -12,6 +12,7 @@ description: >-
|
|
|
12
12
|
"agentgateway", "tool federation", "MCP-сервер", "карточка агента", "интероперабельность
|
|
13
13
|
агентов", "реестр MCP", "шлюз для агентов". Not for designing one server's tool set, nor for
|
|
14
14
|
a skill's own construction — that is make-skill.
|
|
15
|
+
license: MIT
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
# Agent interop — the protocols an agent speaks outside its own process
|
|
@@ -12,6 +12,7 @@ description: >-
|
|
|
12
12
|
loop", "memory layer", "LLM billing", "token wallet", "агентная система", "оркестратор",
|
|
13
13
|
"суб-агент", "роутер моделей", "человек в цикле", "слой памяти", "биллинг LLM", "граф задач".
|
|
14
14
|
Not for a single LLM call in a script, or prompt wording.
|
|
15
|
+
license: MIT
|
|
15
16
|
---
|
|
16
17
|
|
|
17
18
|
# Agent Orchestrator — Production Best Practices
|
|
@@ -245,9 +246,7 @@ answer built from nothing, in no error log.
|
|
|
245
246
|
**Design a memory layer from
|
|
246
247
|
[`references/memory-architecture.md`](references/memory-architecture.md)**, not from this
|
|
247
248
|
table — it also carries the context-budget trap, layer 0 carryover and workspace scale.
|
|
248
|
-
The write path
|
|
249
|
-
what to build on and measure with is
|
|
250
|
-
[`references/memory-landscape.md`](references/memory-landscape.md).
|
|
249
|
+
The write path and the build-or-adopt question have their own rows in the index below.
|
|
251
250
|
## 8. Self-Learning Feedback Loops
|
|
252
251
|
|
|
253
252
|
Three cycles feed the memory layers, and they differ by what supplies the signal: a failed
|
|
@@ -373,15 +372,18 @@ heading — the ones that were learned by getting them wrong:
|
|
|
373
372
|
## References
|
|
374
373
|
|
|
375
374
|
Each file opens with its own **Load this when** line — the authoritative trigger lives
|
|
376
|
-
there
|
|
375
|
+
there; this table is only an index.
|
|
377
376
|
|
|
378
377
|
| File | Read it when |
|
|
379
378
|
|---|---|
|
|
380
|
-
| [`references/graph-engineering.md`](references/graph-engineering.md) | you are deciding the **shape of the work** —
|
|
379
|
+
| [`references/graph-engineering.md`](references/graph-engineering.md) | you are deciding the **shape of the work** — fake edges, the diamond, the checker node, static versus dynamic |
|
|
381
380
|
| [`references/pipeline.md`](references/pipeline.md) | one loop is **not the shape** — the planned path, its checkpoints, resume, and the interrupt that asks a person |
|
|
382
381
|
| [`references/patterns.md`](references/patterns.md) | you need the **data models and algorithms** under the body |
|
|
382
|
+
| [`references/memory-architecture.md`](references/memory-architecture.md) | an agent is **being given memory**, or memory is misbehaving |
|
|
383
|
+
| [`references/memory-lifecycle.md`](references/memory-lifecycle.md) | the memory **write path** — what enters, and what leaves |
|
|
384
|
+
| [`references/memory-landscape.md`](references/memory-landscape.md) | **build or adopt** a memory layer, and what is settled practice |
|
|
383
385
|
| [`references/context-engineering.md`](references/context-engineering.md) | the loop is **running out of window** |
|
|
384
386
|
| [`references/runtime.md`](references/runtime.md) | the agent must **survive a crash, a pause, a second message or a schedule** |
|
|
385
387
|
| [`references/governance.md`](references/governance.md) | the question is **permission, not cost** — what it may do, and how you prove it |
|
|
386
388
|
| [`references/llm-proxy-billing.md`](references/llm-proxy-billing.md) | the product **resells LLM access** |
|
|
387
|
-
| [`references/provider-lifecycle.md`](references/provider-lifecycle.md) | the question is the **workforce, not the loop** —
|
|
389
|
+
| [`references/provider-lifecycle.md`](references/provider-lifecycle.md) | the question is the **workforce, not the loop** — provider lifecycle, canary trust, fleet budgets |
|