Skip to content

Commit 3a7aa45

Browse files
author
codejunkie99
committed
docs: v0.11.0 release notes
1 parent 30bbf50 commit 3a7aa45

3 files changed

Lines changed: 70 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,54 @@ All notable changes to this project.
55
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.11.0] — 2026-04-26
9+
10+
Minor release. Adds two local-first data capabilities: a cross-harness
11+
monitoring/data layer and an approved-run data flywheel. Both stay private by
12+
default, write regenerated runtime artifacts under ignored `.agent/`
13+
subdirectories, and avoid remote telemetry or model training.
14+
15+
### Added
16+
- **`data-layer` seed skill — local cross-harness monitoring.** Adds
17+
`.agent/skills/data-layer/SKILL.md` and
18+
`.agent/tools/data_layer_export.py` to export dashboard-ready local data
19+
across Claude Code, Hermes, OpenClaw, Codex, Cursor, OpenCode, and custom
20+
loops sharing the same `.agent/` brain. Outputs include agent events, cron
21+
timelines, KPI summaries, token/cost estimates, category breakdowns,
22+
`dashboard.html`, and `daily-report.md`. Runtime exports live under
23+
`.agent/data-layer/`, which is gitignored. Thanks to @danielfoch for PR #25.
24+
- **`data-flywheel` seed skill — approved runs to reusable artifacts.** Adds
25+
`.agent/skills/data-flywheel/SKILL.md` and
26+
`.agent/tools/data_flywheel_export.py` to turn human-approved, redacted runs
27+
into trace records, context cards, eval cases, training-ready JSONL, and
28+
flywheel metrics. Runtime exports live under `.agent/flywheel/`, which is
29+
gitignored. The tool is local-only, model-agnostic, and does not train
30+
models or call external APIs. Thanks to @danielfoch for PR #26.
31+
- Schemas, sanitized examples, tests, README sections, and architecture docs
32+
for both local data features.
33+
34+
### Changed
35+
- Seed skill count is now eight: `skillforge`, `memory-manager`, `git-proxy`,
36+
`debug-investigator`, `deploy-checklist`, `design-md`, `data-layer`, and
37+
`data-flywheel`.
38+
- `docs/architecture.md` now describes five local modules: memory, skills,
39+
protocols, data layer, and data flywheel.
40+
41+
### Migration
42+
`brew upgrade agentic-stack` is enough. There are no on-disk schema changes.
43+
The new runtime directories, `.agent/data-layer/` and `.agent/flywheel/`, are
44+
private and regenerated; both are gitignored.
45+
46+
### Release
47+
- Tag `v0.11.0` cut from master.
48+
- GitHub release: <https://github.com/codejunkie99/agentic-stack/releases/tag/v0.11.0>
49+
- `Formula/agentic-stack.rb` bumped to v0.11.0 in a follow-up commit after
50+
the tag tarball existed and its sha256 could be computed.
51+
52+
### Credits
53+
- PR #25 and PR #26 by @danielfoch.
54+
- Merge conflict resolution, verification, and release prep by Codex.
55+
856
## [0.10.0] — 2026-04-26
957

1058
Minor release. Adds the `design-md` seed skill (sixth seed skill in the

README.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ agents from one place: harness activity, cron runs, active agents, token/cost
99
estimates, KPI summaries, user-defined resource categories, and
1010
screenshot-ready daily dashboards.
1111

12+
And it can turn approved, redacted runs into local flywheel artifacts:
13+
trace records, context cards, eval cases, training-ready JSONL, and readiness
14+
metrics without training a model or sending telemetry.
15+
1216
<p align="center">
1317
<img src="docs/demo.gif" alt="agentic-stack demo" width="880"/>
1418
</p>
@@ -17,25 +21,28 @@ screenshot-ready daily dashboards.
1721
<img src="docs/diagram.svg" alt="agentic-stack architecture" width="880"/>
1822
</p>
1923

20-
### New in v0.10.0 — design-md skill + Python 3.9 fix
24+
### New in v0.11.0 — data layer + data flywheel
2125

22-
Minor release. Adds a sixth seed skill and unbreaks `brew install` for
23-
every macOS user on the system Python.
26+
Minor release. Adds two local-first data capabilities for teams running
27+
multiple agent harnesses against the same `.agent/` brain.
2428

25-
- **`design-md` seed skill.** Drop a Google Stitch-style `DESIGN.md` in
26-
your project root and the skill points coding agents at it as the
27-
visual-system source of truth — colors, typography, spacing, components,
28-
rationale. Loads only when `DESIGN.md` exists; default behavior is
29-
read-only on the contract file.
30-
- **Python 3.9 crash on first run is fixed (#27).** Every brew user on
31-
macOS-default Python 3.9 hit `TypeError: unsupported operand type(s) for
32-
|: 'type' and 'type'` immediately after install. Root cause: PEP 604
33-
union annotations (`Path | str`) that require Python 3.10+. Fixed by
34-
adding `from __future__ import annotations` to the eight affected
35-
`harness_manager/` files; works on Python 3.7+.
29+
- **`data-layer` seed skill.** Generate local dashboard exports across Claude
30+
Code, Hermes, OpenClaw, Codex, Cursor, OpenCode, and custom loops:
31+
harness events, cron timelines, KPI summaries, token/cost estimates,
32+
categories, `dashboard.html`, and `daily-report.md`.
33+
- **`data-flywheel` seed skill.** Export approved, redacted runs into trace
34+
records, context cards, eval cases, training-ready JSONL, and flywheel
35+
metrics. It is local-only and model-agnostic; it prepares artifacts but
36+
does not train models or call external APIs.
3637

3738
See [CHANGELOG.md](CHANGELOG.md) for the full list.
3839

40+
### v0.10.0 — design-md skill + Python 3.9 fix
41+
42+
Added the `design-md` seed skill for root `DESIGN.md` / Google Stitch
43+
workflows, and fixed the Python 3.9 crash that hit macOS-default brew users
44+
on first run.
45+
3946
### v0.9.1 — pi adapter fixes + tz correctness
4047

4148
Closed the gap between v0.9.0 and a working pi adapter, plus a timezone

harness_manager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
The "harness_manager" name is internal only and never appears in CLI help, docs,
66
or error messages users see.
77
"""
8-
__version__ = "0.10.0"
8+
__version__ = "0.11.0"

0 commit comments

Comments
 (0)