@@ -5,6 +5,54 @@ All notable changes to this project.
55The format follows [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
1058Minor release. Adds the ` design-md ` seed skill (sixth seed skill in the
0 commit comments