Skip to content

Commit 6017024

Browse files
author
codejunkie99
committed
chore: release v0.13.0
1 parent 26628df commit 6017024

3 files changed

Lines changed: 62 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,47 @@ 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.13.0] — 2026-05-02
9+
10+
Minor release. Adds an onboarding-style transfer wizard for moving a portable
11+
`.agent` brain into Codex, Cursor, Windsurf, or terminal-only projects with a
12+
generated curl/PowerShell import command.
13+
14+
### Added
15+
- **`agentic-stack transfer` wizard.** Adds an onboarding-style TUI that parses
16+
natural-language requests such as `move my memory into Codex`, previews the
17+
target adapter files, asks for confirmation, and either generates an import
18+
command, applies locally, or both.
19+
- **Portable transfer bundles.** Adds canonical JSON + gzip + base64url
20+
bundles with SHA-256 verification. The importer merges preferences and
21+
accepted lessons idempotently, restores selected memory files, copies skills,
22+
records import metadata, and installs selected adapters through the existing
23+
harness manager.
24+
- **Full memory intent.** `move my memory` now means preferences, accepted
25+
lessons, skills, working memory, episodic/history logs, and candidate
26+
lessons. Data-layer exports, flywheel traces, runtime indexes, and caches
27+
stay out unless future scopes explicitly add them.
28+
- **Curl and PowerShell bootstraps.** Adds `scripts/import-transfer.sh` and
29+
`scripts/import-transfer.ps1` so another terminal can import a transfer
30+
bundle without manually cloning the repo first.
31+
32+
### Changed
33+
- Windsurf installs a modern `.windsurf/rules/agentic-stack.md` workspace rule
34+
and still writes legacy `.windsurfrules` for older Windsurf builds.
35+
- `agentic-stack transfer export` and `agentic-stack transfer import` provide
36+
non-interactive surfaces for scripts and CI-style handoff flows.
37+
38+
### Fixed
39+
- Transfer export blocks secret-like content, including private keys and common
40+
API token patterns, before payload generation.
41+
- Fresh Codex imports now copy the full `.agent` brain before installing the
42+
Codex `AGENTS.md` and `.agents/skills` adapter wiring.
43+
44+
### Migration
45+
No migration required. Existing installs keep working. Run
46+
`agentic-stack transfer` from a project that already has `.agent/` to create or
47+
import a transfer bundle.
48+
849
## [0.12.0] — 2026-04-27
950

1051
Minor release. Adds the opt-in `tldraw` seed skill for live canvas diagrams

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,26 @@ 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.12.0 — tldraw visual canvas
28+
### New in v0.13.0 — transfer wizard
29+
30+
Minor release. Adds an onboarding-style `agentic-stack transfer` wizard for
31+
moving a project brain into Codex, Cursor, Windsurf, or a terminal-only
32+
`AGENTS.md` setup.
33+
34+
- **Natural-language transfer plans.** Say things like `move my memory into
35+
Codex`; the wizard detects targets, memory scopes, and whether to generate a
36+
curl command, apply locally, or both.
37+
- **Portable memory bundles.** Transfers preferences, accepted lessons,
38+
skills, working memory, episodic/history logs, and candidate lessons, with
39+
SHA-256 verification and secret-like content blocking.
40+
- **One-line import.** Generated curl/PowerShell bootstraps import the bundle
41+
into another project and install the selected adapter files.
42+
- **Modern Windsurf rules.** Windsurf now gets `.windsurf/rules/agentic-stack.md`
43+
while keeping legacy `.windsurfrules` compatibility.
44+
45+
See [CHANGELOG.md](CHANGELOG.md) for the full list.
46+
47+
### v0.12.0 — tldraw visual canvas
2948

3049
Minor release. Adds an opt-in `tldraw` seed skill for live canvas diagrams and
3150
a skill-local snapshot store. It is beta and off by default.
@@ -39,8 +58,6 @@ a skill-local snapshot store. It is beta and off by default.
3958
enabling it, users manually merge `adapters/_shared/tldraw-mcp.json` into
4059
their harness MCP config.
4160

42-
See [CHANGELOG.md](CHANGELOG.md) for the full list.
43-
4461
### v0.11.0 — data layer + data flywheel
4562

4663
Added two local-first data capabilities for teams running multiple agent

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.12.0"
8+
__version__ = "0.13.0"

0 commit comments

Comments
 (0)