Skip to content

Commit a7d5d18

Browse files
author
codejunkie99
committed
chore: prepare v0.16.0 release
1 parent a03c3a3 commit a7d5d18

3 files changed

Lines changed: 29 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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-
## [Unreleased]
8+
## [0.16.0] — 2026-05-09
9+
10+
Minor release. Adds a safe installed-project upgrade path and repairs skill
11+
manifest drift so newly copied skills can trigger reliably after version
12+
upgrades.
913

1014
### Added
1115
- **`agentic-stack upgrade`.** Adds a safe project migration verb that refreshes
@@ -21,6 +25,12 @@ and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.
2125
Python files or when hook scripts are present but not wired in
2226
`.claude/settings.json`.
2327

28+
### Migration
29+
After upgrading the CLI, run `agentic-stack upgrade --dry-run` in installed
30+
projects to preview safe `.agent` infrastructure updates, then
31+
`agentic-stack upgrade --yes` to apply them. Run `agentic-stack sync-manifest`
32+
if a project's skill manifest needs repair without copying files.
33+
2434
## [0.15.0] — 2026-05-06
2535

2636
Minor release. Adds a production dashboard TUI for installed agentic-stack

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,23 @@ metrics without training a model or sending telemetry.
2525
<img src="docs/diagram.svg" alt="agentic-stack architecture" width="880"/>
2626
</p>
2727

28-
### New in v0.15.0 — dashboard TUI
29-
30-
Minor release. Adds `agentic-stack dashboard` as the production front door for
31-
installed projects: one terminal screen for health, adapters, verification,
32-
memory, team brain, skills, instances, transfer, and local dashboard exports.
33-
34-
- **Dashboard command.** Run `agentic-stack dashboard` or `./install.sh dashboard`
35-
to open the TUI; use `dash` or `--plain` for a compact script-safe view.
36-
- **Trust-console parity.** The dashboard includes a per-harness verify matrix,
37-
accepted/rejected memory, `memory_why()` evidence lookup, team brain
38-
status/init, skills, and managed instances.
39-
- **Safer installed-project default.** Bare interactive `./install.sh` opens the
40-
dashboard once `.agent/install.json` exists; non-TTY shells still print
41-
script-safe command guidance instead of launching a TUI.
42-
- **Production coverage.** Renderer, CLI, parity, non-TTY fallback, and
43-
interactive keypress navigation are covered by local tests.
28+
### New in v0.16.0 — safe project upgrades
29+
30+
Minor release. Adds `agentic-stack upgrade` and `agentic-stack sync-manifest`
31+
so installed projects can pick up new `.agent` infrastructure and skill
32+
metadata without clobbering adapter settings or user memory.
33+
34+
- **Safe upgrade command.** Run `agentic-stack upgrade --dry-run` to preview
35+
skeleton-owned `.agent` file updates, then `agentic-stack upgrade --yes` to
36+
apply them.
37+
- **Manifest repair.** Run `agentic-stack sync-manifest` to rebuild
38+
`.agent/skills/_manifest.jsonl` from installed `SKILL.md` frontmatter.
39+
- **No config overwrite.** Upgrade leaves `CLAUDE.md`, `.claude/settings.json`,
40+
personal/semantic/episodic/working memory, candidates, and existing skill
41+
directories untouched.
42+
- **Stricter doctor.** `agentic-stack doctor` now warns when Claude Code hook
43+
commands point to missing `.agent` files or hook scripts are present but
44+
unwired.
4445

4546
See [CHANGELOG.md](CHANGELOG.md) for the full list.
4647

harness_manager/__init__.py

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

0 commit comments

Comments
 (0)