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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to agent-bridge are documented in this file.

The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.6.3] - 2026-07-26

### Fixed

Expand Down Expand Up @@ -453,7 +453,12 @@ First tagged release. Marks the point where agent-bridge has shipped its initial
- Narrative-leak detection in CI + on commit via `creatornader/textleaks@v0.2.0` (renamed from leakguard).

[0.1.0]: https://github.com/creatornader/agent-bridge/releases/tag/v0.1.0
[Unreleased]: https://github.com/creatornader/agent-bridge/compare/v0.5.1...HEAD
[Unreleased]: https://github.com/creatornader/agent-bridge/compare/v0.6.3...HEAD
[0.6.3]: https://github.com/creatornader/agent-bridge/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/creatornader/agent-bridge/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/creatornader/agent-bridge/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/creatornader/agent-bridge/compare/v0.5.2...v0.6.0
[0.5.2]: https://github.com/creatornader/agent-bridge/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/creatornader/agent-bridge/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/creatornader/agent-bridge/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/creatornader/agent-bridge/compare/v0.3.1...v0.4.0
Expand Down
7 changes: 7 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,13 @@ The published npm version is the authority for whether this package line has shi
- Production proof guidance records the deployed 0.6.1 evidence and uses a
release-specific workspace for fresh proof principals.

### 0.6.3 package contents

- Local SQLite and gateway-edge SQLite mutations coordinate through a durable,
token-checked lease. Concurrent MCP processes serialize writes, recover an
expired crashed-writer lease safely, and keep gateway calls outside the local
write boundary.

### Production validation and adoption

Completed through the published and deployed 0.6.1 package:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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": "@creatornader/agent-bridge",
"version": "0.6.2",
"version": "0.6.3",
"description": "Let AI agents message each other and hand off work across tools, sessions, and machines.",
"type": "module",
"license": "Apache-2.0",
Expand Down
14 changes: 10 additions & 4 deletions test/server_factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,16 @@ describe("configFromEnv", () => {
AGENT_BRIDGE_PROVIDER: "gatewy",
AGENT_BRIDGE_AGENT: "codex",
})).toThrow("Unsupported AGENT_BRIDGE_PROVIDER: gatewy");
expect(() => configFromEnv({
AGENT_BRIDGE_PROVIDER: "gateway",
AGENT_BRIDGE_AGENT: "codex",
})).toThrow("gateway requires AGENT_BRIDGE_URL and AGENT_BRIDGE_TOKEN");
const home = withBridgeConfig("");
try {
expect(() => configFromEnv({
HOME: home,
AGENT_BRIDGE_PROVIDER: "gateway",
AGENT_BRIDGE_AGENT: "codex",
})).toThrow("gateway requires AGENT_BRIDGE_URL and AGENT_BRIDGE_TOKEN");
} finally {
rmSync(home, { recursive: true, force: true });
}
});

it("supports an explicit local config path", () => {
Expand Down