Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [Unreleased]

## [0.0.10] - 2026-08-21

### Added

- Add a durable delegated-session control plane with one shared Agent Tree,
live `steer` or next-run `queue` messaging, background result reads, direct
child waiting and resumption, and strong descendant-subtree cancellation.
- Add automatic Fast-profile review for unresolved `ask` permission decisions
before HITL, with fail-closed fallback and an explicit Security setting.

### Changed

- Project the same persisted Session and live Execution facts into Agent tools,
SSE, and the Web inspector so parent and child lifecycle state stays
consistent across restart, suspension, cancellation, and continuation.
- Refresh the public product narrative, concepts, screenshots, and README around
the Todo-first engineering workbench and its durable orchestration model.

## [0.0.9] - 2026-08-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@archcode/server",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"type": "module",
"main": "./src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@archcode/web",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"type": "module",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "archcode",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"description": "The open-source, self-hosted workbench for AI coding.",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@archcode/agent-core",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"type": "module",
"main": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@archcode/protocol",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"type": "module",
"main": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@archcode/utils",
"version": "0.0.9",
"version": "0.0.10",
"private": true,
"type": "module",
"main": "./src/index.ts",
Expand Down
8 changes: 4 additions & 4 deletions scripts/release.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ describe("release metadata", () => {
test("compares complete release asset directories by content", async () => {
const expectedDir = await mkdtemp(join(tmpdir(), "archcode-release-expected-"));
const actualDir = await mkdtemp(join(tmpdir(), "archcode-release-actual-"));
const releaseAssetNames = releaseAssetNamesForVersion("0.0.9");
const releaseAssetNames = releaseAssetNamesForVersion("0.0.10");
try {
for (const name of releaseAssetNames) {
await Promise.all([
Expand All @@ -258,14 +258,14 @@ describe("release metadata", () => {
try {
for (const target of releaseTargets) {
await writeTestArchive(
join(assetDir, releaseArchiveAssetName(target, "0.0.9")),
"0.0.9",
join(assetDir, releaseArchiveAssetName(target, "0.0.10")),
"0.0.10",
);
}
const template = await Bun.file(join(import.meta.dir, "install.sh")).text();
await Bun.write(
join(assetDir, "install.sh"),
renderReleaseInstaller(template, "0.0.9"),
renderReleaseInstaller(template, "0.0.10"),
);

await writeBundleMetadata(assetDir);
Expand Down