@ssheleg/agent-stack 0.7.0 → 0.7.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,9 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.7.2 — the plants say whether they landed, and two of them were not
|
|
4
|
+
|
|
5
|
+
Eight negative self-tests asserted inline, in Python, that their edit had happened —
|
|
6
|
+
which works, and is the **fifth** careful copy of an idea this family already scripted.
|
|
7
|
+
`plant_guard.py`'s own docstring was written against exactly that shape: five hand-written
|
|
8
|
+
variants produced five different bugs, one of which reached a pull request.
|
|
9
|
+
|
|
10
|
+
Adopting the shared implementation found two plants that were doing nothing at all.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **`cp -R . /tmp/x` into an existing `/tmp/x` nests the tree instead of replacing it.**
|
|
15
|
+
The plant then edits a file left by the previous run, and `touch` on a file that already
|
|
16
|
+
exists changes neither content nor mode — so *a reference nobody links* and *stray
|
|
17
|
+
SKILL.md* both planted nothing, the validator honestly passed, and the step would have
|
|
18
|
+
reported a healthy guard as broken. CI is always fresh, so this was invisible there and
|
|
19
|
+
only ever bit the machine the plants were written on. Every copy is now `rm -rf`'d first.
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- **`test/plant_guard.py` and its nine fixtures**, shared with `make-skill`, the umbrella
|
|
24
|
+
and `seo-aeo-audit`. It compares content **and permission bits**, because the variant
|
|
25
|
+
that shipped compared bytes against a plant whose whole effect was `chmod`.
|
|
26
|
+
- **Every plant wrapped in `snap` / `verify`**, the description being the step's own name,
|
|
27
|
+
so a refusal names which plant died.
|
|
28
|
+
- **A negative for the guard itself**: an unchanged copy must be reported, not passed.
|
|
29
|
+
|
|
30
|
+
All eight plants were then watched landing on the machine they were written on.
|
|
31
|
+
|
|
3
32
|
All notable changes to this project are documented here.
|
|
4
33
|
Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
34
|
Versioning: [SemVer](https://semver.org/spec/v2.0.0.html).
|
|
6
35
|
|
|
36
|
+
## [0.7.1] - 2026-08-14
|
|
37
|
+
|
|
38
|
+
A red `validate` could not stop a publish anywhere in this family, and one member
|
|
39
|
+
proved it: on 2026-08-12 `sheleg-dev` tagged v0.4.1 while its own validate run for that
|
|
40
|
+
exact tag **failed**, and npm served 0.4.1 four minutes later.
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- **The release now runs the whole validate suite before anything is published.**
|
|
45
|
+
`validate.yml` gained a `workflow_call` trigger and `release.yml` calls it with
|
|
46
|
+
`needs: validate` — the release runs *after* the real suite rather than beside a copy
|
|
47
|
+
of it. **Not one plant is duplicated:** each still has exactly one home.
|
|
48
|
+
- **A guard keeps the connection there.** It fails when the trigger, the call, or the
|
|
49
|
+
`needs` goes missing — calling the suite without depending on it lets the jobs run in
|
|
50
|
+
parallel, which looks gated and is not. Watched failing against the planted removal.
|
|
51
|
+
|
|
52
|
+
Proven end to end on `sheleg-dev` v0.4.3 before it reached here: the release run shows
|
|
53
|
+
`validate / validate` completing first, then `release`, then `publish`.
|
|
54
|
+
|
|
7
55
|
## [0.7.0] — 2026-08-14
|
|
8
56
|
|
|
9
57
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssheleg/agent-stack",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
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.7.
|
|
5
|
+
"version": "0.7.2",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "ssheleg",
|
|
8
8
|
"url": "https://x.com/sshlg93"
|