@ssheleg/agent-stack 0.6.0 → 0.6.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
@@ -4,6 +4,26 @@ All notable changes to this project are documented here.
4
4
  Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
5
  Versioning: [SemVer](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## v0.6.1 — 2026-08-13
8
+
9
+ Two CI fixes that had been sitting on `main` unreleased ship here, and the half of
10
+ standing instruction #6 that was missing arrives with them.
11
+
12
+ ### Fixed
13
+
14
+ - **Two plants used `sed -i` and were no-ops on macOS.** BSD sed requires an argument to
15
+ `-i`, so they errored and changed nothing; they could only ever be exercised in CI.
16
+ Converted to Python — the rule `task-pipeline` has enforced on itself for months.
17
+ - **Every plant now asserts that it changed the file.** The 2026-08-13 commit
18
+ *anchor the description plant on the file's shape, not its wording* applied one half of
19
+ instruction #6; this applies the corollary to the rest, so a plant that stops landing
20
+ says `PLANT DID NOT LAND: <why>` rather than reporting a healthy guard as broken.
21
+ - Also shipping, previously merged and unreleased: *one CHANGELOG-extraction pattern for
22
+ the whole family* (B-11), which is why this release can be cut at all.
23
+
24
+ All six plants verified by running them locally: each lands, and each makes the
25
+ validator fail.
26
+
7
27
  ## [0.6.0] — 2026-08-12
8
28
 
9
29
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssheleg/agent-stack",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Production patterns for AI agent orchestrators — tool-calling loops, multi-stage pipelines with checkpoints, LLM provider routing with fallback, four-layer memory with confidence decay — 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.6.0",
5
+ "version": "0.6.1",
6
6
  "author": {
7
7
  "name": "ssheleg",
8
8
  "url": "https://x.com/sshlg93"