@ssheleg/agent-stack 0.10.0 → 0.10.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,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.1] — 2026-08-15
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- **`graph-engineering.md`'s stamp names all three of its sources, and the two numbers that
|
|
8
|
+
come from the third say so.** The file pins an article and Claude Code's changelog, and
|
|
9
|
+
its execution section also states a concurrency cap and a lifetime agent cap that come
|
|
10
|
+
from **neither** — they are the Workflow tool contract the host presents at runtime, a
|
|
11
|
+
source with its own lifetime and no public changelog entry to check them against. A
|
|
12
|
+
revision stamp that names two sources for a file carrying three is the exact defect the
|
|
13
|
+
stamp exists to prevent, one level up. Both numbers now carry the instruction to read them
|
|
14
|
+
back from the running host.
|
|
15
|
+
|
|
3
16
|
## [0.10.0] — 2026-08-15
|
|
4
17
|
|
|
5
18
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssheleg/agent-stack",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Production patterns for AI agent orchestrators \u2014 tool-calling loops, multi-stage pipelines with checkpoints, LLM provider routing with fallback, four-layer memory with confidence decay \u2014 plus the wallet side of reselling LLM access. This package is the installer CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agent-stack": "bin/agent-stack.js"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "agent-stack",
|
|
3
3
|
"displayName": "Agent Stack",
|
|
4
4
|
"description": "Two skills: agent-orchestrator \u2014 tool-calling loops, multi-stage pipelines with checkpoints, provider routing with fallback, four-layer memory, context engineering, plus the wallet side of reselling LLM access; and agent-evals \u2014 run/trace/thread evals, judges, and fixtures grown from production.",
|
|
5
|
-
"version": "0.10.
|
|
5
|
+
"version": "0.10.1",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "ssheleg",
|
|
8
8
|
"url": "https://x.com/sshlg93"
|
|
@@ -6,7 +6,8 @@ placing a check between a parallel layer and the node that consumes it, or decid
|
|
|
6
6
|
whether the structure may be discovered while it runs.
|
|
7
7
|
|
|
8
8
|
**Spec pinned:** *Graph Engineering with Claude*, `https://x.com/Mahaximus_/status/2082442856417956173`
|
|
9
|
-
(published 2026-07-29); Claude Code `CHANGELOG.md` v2.1.154 – v2.1.229
|
|
9
|
+
(published 2026-07-29); Claude Code `CHANGELOG.md` v2.1.154 – v2.1.229, and the Workflow
|
|
10
|
+
tool contract as presented in-session at CLI **2.1.223** · read 2026-08-15
|
|
10
11
|
|
|
11
12
|
`SKILL.md` §2 owns the tool-calling loop and §5 the multi-stage pipeline. Both assume
|
|
12
13
|
the shape is already decided. **This file is how it gets decided**, and it is upstream of
|
|
@@ -251,7 +252,10 @@ authors and executes a **script** whose primitives are the real contract:
|
|
|
251
252
|
| `isolation: "worktree"` | a private checkout per agent | the only safe way to fan out writers |
|
|
252
253
|
|
|
253
254
|
Concurrency is capped at `min(16, cores − 2)` per run, and a run's total agents at 1000.
|
|
254
|
-
Passing 100 items is fine — they queue.
|
|
255
|
+
Passing 100 items is fine — they queue. **Those two numbers and the primitive table come
|
|
256
|
+
from the tool contract the host presents to the agent, not from the changelog** — a
|
|
257
|
+
different source with a different lifetime, which is why the stamp above names both. Read
|
|
258
|
+
them back from the running host before relying on them.
|
|
255
259
|
|
|
256
260
|
**Why this matters for the model above:** the article's diamond is `parallel()`, and the
|
|
257
261
|
next section is the distinction it does not draw.
|