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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [Unreleased]

## [0.0.11] - 2026-08-30

### Changed

- Hard-cut the production Web workbench to the approved list-only Todo workflow
and align Runs, Schedules, Session, Root, Settings, global theme, responsive
behavior, and keyboard focus with the current design contracts. The replaced
Board, drag-and-drop, and unmounted UI paths are removed.
- Project each Agent's model-visible tools from a small role Core, current
runtime state, and Execution-local loaded contracts. Local long-tail and MCP
tools now start in a compact namespace/server directory: `tool_search` loads
Expand All @@ -20,6 +26,15 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
read with the canonical empty authorization overlay and no loaded refs;
explicitly malformed values remain invalid.

### Fixed

- Prevent streamed model errors and abort races from reporting false success or
leaving Steps open, and reset Todo continuation stagnation when progress
resumes.
- Synchronize project catalog changes across tabs and reconnects, and cancel
stale MCP Settings refreshes when the panel closes or its configuration
changes.

### Breaking Changes

- `tool_search` Tool Batch calls require the catalog digest captured at their
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.10",
"version": "0.0.11",
"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.10",
"version": "0.0.11",
"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.10",
"version": "0.0.11",
"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.10",
"version": "0.0.11",
"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.10",
"version": "0.0.11",
"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.10",
"version": "0.0.11",
"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.10");
const releaseAssetNames = releaseAssetNamesForVersion("0.0.11");
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.10")),
"0.0.10",
join(assetDir, releaseArchiveAssetName(target, "0.0.11")),
"0.0.11",
);
}
const template = await Bun.file(join(import.meta.dir, "install.sh")).text();
await Bun.write(
join(assetDir, "install.sh"),
renderReleaseInstaller(template, "0.0.10"),
renderReleaseInstaller(template, "0.0.11"),
);

await writeBundleMetadata(assetDir);
Expand Down