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
26 changes: 0 additions & 26 deletions .changeset/vnext-inprocess-adapters.md

This file was deleted.

11 changes: 11 additions & 0 deletions e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @reaatech/agent-mesh-e2e

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-gateway@1.0.2
- @reaatech/agent-mesh-mcp-server@1.0.2
- @reaatech/agent-mesh-registry@1.0.2
- @reaatech/agent-mesh-session@1.1.1

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-e2e",
"version": "1.0.1",
"version": "1.0.2",
"private": true,
"type": "module",
"description": "End-to-end tests for agent-mesh",
Expand Down
16 changes: 16 additions & 0 deletions examples/orchestrator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @reaatech/agent-mesh-orchestrator

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-router@1.1.0
- @reaatech/agent-mesh-classifier@1.1.1
- @reaatech/agent-mesh-confidence@1.0.2
- @reaatech/agent-mesh-gateway@1.0.2
- @reaatech/agent-mesh-mcp-server@1.0.2
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2
- @reaatech/agent-mesh-session@1.1.1
- @reaatech/agent-mesh-utils@1.1.1

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/orchestrator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-orchestrator",
"version": "1.0.1",
"version": "1.0.2",
"private": true,
"type": "module",
"description": "Agent Mesh orchestrator — reference deployment example",
Expand Down
9 changes: 9 additions & 0 deletions packages/classifier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @reaatech/agent-mesh-classifier

## 1.1.1

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/classifier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-classifier",
"version": "1.1.0",
"version": "1.1.1",
"type": "module",
"description": "Gemini Flash intent classifier for agent-mesh",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/confidence/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @reaatech/agent-mesh-confidence

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-classifier@1.1.1
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/confidence/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-confidence",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "Confidence gate and clarification for agent-mesh routing",
"license": "MIT",
Expand Down
24 changes: 24 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @reaatech/agent-mesh

## 1.2.0

### Minor Changes

- [#39](https://github.com/reaatech/agent-mesh/pull/39) [`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next, part 2 — in-process transport and Postgres/Redis persistence:

- **router / core: in-process transport.** Agents can now be dispatched in-process
(`type: 'inprocess'`, no HTTP hop) via `registerInProcessAgent`, alongside the MCP
transport. `dispatchToAgent` routes by `agent.type` and threads an optional
`metadata` passthrough (e.g. a tenant `orgId`) into the `ContextPacket`. Existing
`type: 'mcp'` agents are unchanged.
- **core: consolidate the duplicated `AgentConfig`.** It was defined in both core and
the registry; it now lives once in core (with the SSRF-safe endpoint check) and the
registry re-exports it. `type` is `enum(['mcp','inprocess'])` and `endpoint` is
optional (required for mcp via a refine).
- **new `@reaatech/agent-mesh-postgres`** — Postgres-backed `SessionStore` +
`BreakerStore` adapters (+ `ensureSchema` / `SCHEMA_SQL`), leader election via a
single-row lease with `SELECT … FOR UPDATE`.
- **new `@reaatech/agent-mesh-redis`** — Redis-backed `SessionStore` + `BreakerStore`
adapters, leader election via a `SET NX PX` lease.

Docs, examples, and package READMEs updated for the pluggable classifier/persistence
and the in-process transport.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"description": "Core domain types and configuration for agent-mesh",
"license": "MIT",
Expand Down
13 changes: 13 additions & 0 deletions packages/gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @reaatech/agent-mesh-gateway

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-router@1.1.0
- @reaatech/agent-mesh-classifier@1.1.1
- @reaatech/agent-mesh-confidence@1.0.2
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2
- @reaatech/agent-mesh-session@1.1.1

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-gateway",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "HTTP gateway for agent-mesh (auth, rate limiting, TLS, entry handler)",
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @reaatech/agent-mesh-mcp-server

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-gateway@1.0.2
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2
- @reaatech/agent-mesh-session@1.1.1

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-mcp-server",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "MCP server layer exposing agent-mesh orchestrator as an MCP agent",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/observability/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @reaatech/agent-mesh-observability

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/observability/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-observability",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "Observability layer for agent-mesh (logging, metrics, tracing, audit)",
"license": "MIT",
Expand Down
30 changes: 30 additions & 0 deletions packages/postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# @reaatech/agent-mesh-postgres

## 0.2.0

### Minor Changes

- [#39](https://github.com/reaatech/agent-mesh/pull/39) [`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next, part 2 — in-process transport and Postgres/Redis persistence:

- **router / core: in-process transport.** Agents can now be dispatched in-process
(`type: 'inprocess'`, no HTTP hop) via `registerInProcessAgent`, alongside the MCP
transport. `dispatchToAgent` routes by `agent.type` and threads an optional
`metadata` passthrough (e.g. a tenant `orgId`) into the `ContextPacket`. Existing
`type: 'mcp'` agents are unchanged.
- **core: consolidate the duplicated `AgentConfig`.** It was defined in both core and
the registry; it now lives once in core (with the SSRF-safe endpoint check) and the
registry re-exports it. `type` is `enum(['mcp','inprocess'])` and `endpoint` is
optional (required for mcp via a refine).
- **new `@reaatech/agent-mesh-postgres`** — Postgres-backed `SessionStore` +
`BreakerStore` adapters (+ `ensureSchema` / `SCHEMA_SQL`), leader election via a
single-row lease with `SELECT … FOR UPDATE`.
- **new `@reaatech/agent-mesh-redis`** — Redis-backed `SessionStore` + `BreakerStore`
adapters, leader election via a `SET NX PX` lease.

Docs, examples, and package READMEs updated for the pluggable classifier/persistence
and the in-process transport.

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
2 changes: 1 addition & 1 deletion packages/postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-postgres",
"version": "0.1.0",
"version": "0.2.0",
"type": "module",
"description": "Postgres-backed SessionStore and BreakerStore adapters for agent-mesh",
"license": "MIT",
Expand Down
30 changes: 30 additions & 0 deletions packages/redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# @reaatech/agent-mesh-redis

## 0.2.0

### Minor Changes

- [#39](https://github.com/reaatech/agent-mesh/pull/39) [`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next, part 2 — in-process transport and Postgres/Redis persistence:

- **router / core: in-process transport.** Agents can now be dispatched in-process
(`type: 'inprocess'`, no HTTP hop) via `registerInProcessAgent`, alongside the MCP
transport. `dispatchToAgent` routes by `agent.type` and threads an optional
`metadata` passthrough (e.g. a tenant `orgId`) into the `ContextPacket`. Existing
`type: 'mcp'` agents are unchanged.
- **core: consolidate the duplicated `AgentConfig`.** It was defined in both core and
the registry; it now lives once in core (with the SSRF-safe endpoint check) and the
registry re-exports it. `type` is `enum(['mcp','inprocess'])` and `endpoint` is
optional (required for mcp via a refine).
- **new `@reaatech/agent-mesh-postgres`** — Postgres-backed `SessionStore` +
`BreakerStore` adapters (+ `ensureSchema` / `SCHEMA_SQL`), leader election via a
single-row lease with `SELECT … FOR UPDATE`.
- **new `@reaatech/agent-mesh-redis`** — Redis-backed `SessionStore` + `BreakerStore`
adapters, leader election via a `SET NX PX` lease.

Docs, examples, and package READMEs updated for the pluggable classifier/persistence
and the in-process transport.

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
2 changes: 1 addition & 1 deletion packages/redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-redis",
"version": "0.1.0",
"version": "0.2.0",
"type": "module",
"description": "Redis-backed SessionStore and BreakerStore adapters for agent-mesh",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @reaatech/agent-mesh-registry

## 1.0.2

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-observability@1.0.2

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-registry",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "Agent registry loader with SIGHUP hot-reload for agent-mesh",
"license": "MIT",
Expand Down
32 changes: 32 additions & 0 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @reaatech/agent-mesh-router

## 1.1.0

### Minor Changes

- [#39](https://github.com/reaatech/agent-mesh/pull/39) [`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next, part 2 — in-process transport and Postgres/Redis persistence:

- **router / core: in-process transport.** Agents can now be dispatched in-process
(`type: 'inprocess'`, no HTTP hop) via `registerInProcessAgent`, alongside the MCP
transport. `dispatchToAgent` routes by `agent.type` and threads an optional
`metadata` passthrough (e.g. a tenant `orgId`) into the `ContextPacket`. Existing
`type: 'mcp'` agents are unchanged.
- **core: consolidate the duplicated `AgentConfig`.** It was defined in both core and
the registry; it now lives once in core (with the SSRF-safe endpoint check) and the
registry re-exports it. `type` is `enum(['mcp','inprocess'])` and `endpoint` is
optional (required for mcp via a refine).
- **new `@reaatech/agent-mesh-postgres`** — Postgres-backed `SessionStore` +
`BreakerStore` adapters (+ `ensureSchema` / `SCHEMA_SQL`), leader election via a
single-row lease with `SELECT … FOR UPDATE`.
- **new `@reaatech/agent-mesh-redis`** — Redis-backed `SessionStore` + `BreakerStore`
adapters, leader election via a `SET NX PX` lease.

Docs, examples, and package READMEs updated for the pluggable classifier/persistence
and the in-process transport.

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-observability@1.0.2
- @reaatech/agent-mesh-registry@1.0.2
- @reaatech/agent-mesh-utils@1.1.1

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-router",
"version": "1.0.1",
"version": "1.1.0",
"type": "module",
"description": "MCP-based agent routing and dispatch for agent-mesh",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/session/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @reaatech/agent-mesh-session

## 1.1.1

### Patch Changes

- Updated dependencies [[`420c0f8`](https://github.com/reaatech/agent-mesh/commit/420c0f8be17446810124a4fb4073e455a6a4c900)]:
- @reaatech/agent-mesh@1.2.0
- @reaatech/agent-mesh-observability@1.0.2

## 1.1.0

### Minor Changes
Expand Down
Loading