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
14 changes: 0 additions & 14 deletions .changeset/vnext-pluggable-seams.md

This file was deleted.

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

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-session@1.1.0
- @reaatech/agent-mesh-gateway@1.0.1
- @reaatech/agent-mesh-mcp-server@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
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.0",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "End-to-end tests for agent-mesh",
Expand Down
17 changes: 17 additions & 0 deletions examples/orchestrator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @reaatech/agent-mesh-orchestrator

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-classifier@1.1.0
- @reaatech/agent-mesh-session@1.1.0
- @reaatech/agent-mesh-utils@1.1.0
- @reaatech/agent-mesh-confidence@1.0.1
- @reaatech/agent-mesh-gateway@1.0.1
- @reaatech/agent-mesh-mcp-server@1.0.1
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
- @reaatech/agent-mesh-router@1.0.1
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.0",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "Agent Mesh orchestrator — reference deployment example",
Expand Down
20 changes: 20 additions & 0 deletions packages/classifier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# @reaatech/agent-mesh-classifier

## 1.1.0

### Minor Changes

- [#37](https://github.com/reaatech/agent-mesh/pull/37) [`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next groundwork — provider-agnostic, backend-agnostic, and host-embeddable, all additive and backward-compatible:

- **classifier:** pluggable `ClassifierProvider` (+ `createClassifier`) — inject any intent classifier (self-hosted, a different provider, or a host-resolved model) instead of the hard-wired Gemini classifier. Default (no provider) is unchanged: Gemini with a mock fallback.
- **session / utils:** pluggable `SessionStore` and `BreakerStore` with Firestore as the default implementation, dependency-free `InMemory*` adapters, and injection via `setSessionStore` / `setBreakerStore`. The exported service/module functions delegate to the active store; signatures unchanged. (Postgres/Redis adapters to follow.)
- **core:** optional `metadata` passthrough on `IncomingRequest` / `ContextPacket` / `SessionRecord` so an embedding host can carry its own identifiers (e.g. a multi-tenant `orgId`) without the HR-specific `employee_id`; plus the `SessionStore` / `BreakerStore` / `LeaderState` interfaces.

No breaking changes: the default behaviour (Gemini classifier, Firestore persistence, no metadata) is byte-for-byte unchanged.

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
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.0.0",
"version": "1.1.0",
"type": "module",
"description": "Gemini Flash intent classifier for agent-mesh",
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/confidence/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @reaatech/agent-mesh-confidence

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-classifier@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
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.0",
"version": "1.0.1",
"type": "module",
"description": "Confidence gate and clarification for agent-mesh routing",
"license": "MIT",
Expand Down
13 changes: 13 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @reaatech/agent-mesh

## 1.1.0

### Minor Changes

- [#37](https://github.com/reaatech/agent-mesh/pull/37) [`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next groundwork — provider-agnostic, backend-agnostic, and host-embeddable, all additive and backward-compatible:

- **classifier:** pluggable `ClassifierProvider` (+ `createClassifier`) — inject any intent classifier (self-hosted, a different provider, or a host-resolved model) instead of the hard-wired Gemini classifier. Default (no provider) is unchanged: Gemini with a mock fallback.
- **session / utils:** pluggable `SessionStore` and `BreakerStore` with Firestore as the default implementation, dependency-free `InMemory*` adapters, and injection via `setSessionStore` / `setBreakerStore`. The exported service/module functions delegate to the active store; signatures unchanged. (Postgres/Redis adapters to follow.)
- **core:** optional `metadata` passthrough on `IncomingRequest` / `ContextPacket` / `SessionRecord` so an embedding host can carry its own identifiers (e.g. a multi-tenant `orgId`) without the HR-specific `employee_id`; plus the `SessionStore` / `BreakerStore` / `LeaderState` interfaces.

No breaking changes: the default behaviour (Gemini classifier, Firestore persistence, no metadata) is byte-for-byte unchanged.
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.0.0",
"version": "1.1.0",
"type": "module",
"description": "Core domain types and configuration for agent-mesh",
"license": "MIT",
Expand Down
14 changes: 14 additions & 0 deletions packages/gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @reaatech/agent-mesh-gateway

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-classifier@1.1.0
- @reaatech/agent-mesh-session@1.1.0
- @reaatech/agent-mesh-confidence@1.0.1
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
- @reaatech/agent-mesh-router@1.0.1
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.0",
"version": "1.0.1",
"type": "module",
"description": "HTTP gateway for agent-mesh (auth, rate limiting, TLS, entry handler)",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @reaatech/agent-mesh-mcp-server

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-session@1.1.0
- @reaatech/agent-mesh-gateway@1.0.1
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
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.0",
"version": "1.0.1",
"type": "module",
"description": "MCP server layer exposing agent-mesh orchestrator as an MCP agent",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/observability/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @reaatech/agent-mesh-observability

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
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.0",
"version": "1.0.1",
"type": "module",
"description": "Observability layer for agent-mesh (logging, metrics, tracing, audit)",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @reaatech/agent-mesh-registry

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
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.0",
"version": "1.0.1",
"type": "module",
"description": "Agent registry loader with SIGHUP hot-reload for agent-mesh",
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @reaatech/agent-mesh-router

## 1.0.1

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-utils@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
- @reaatech/agent-mesh-registry@1.0.1
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.0",
"version": "1.0.1",
"type": "module",
"description": "MCP-based agent routing and dispatch for agent-mesh",
"license": "MIT",
Expand Down
19 changes: 19 additions & 0 deletions packages/session/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# @reaatech/agent-mesh-session

## 1.1.0

### Minor Changes

- [#37](https://github.com/reaatech/agent-mesh/pull/37) [`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next groundwork — provider-agnostic, backend-agnostic, and host-embeddable, all additive and backward-compatible:

- **classifier:** pluggable `ClassifierProvider` (+ `createClassifier`) — inject any intent classifier (self-hosted, a different provider, or a host-resolved model) instead of the hard-wired Gemini classifier. Default (no provider) is unchanged: Gemini with a mock fallback.
- **session / utils:** pluggable `SessionStore` and `BreakerStore` with Firestore as the default implementation, dependency-free `InMemory*` adapters, and injection via `setSessionStore` / `setBreakerStore`. The exported service/module functions delegate to the active store; signatures unchanged. (Postgres/Redis adapters to follow.)
- **core:** optional `metadata` passthrough on `IncomingRequest` / `ContextPacket` / `SessionRecord` so an embedding host can carry its own identifiers (e.g. a multi-tenant `orgId`) without the HR-specific `employee_id`; plus the `SessionStore` / `BreakerStore` / `LeaderState` interfaces.

No breaking changes: the default behaviour (Gemini classifier, Firestore persistence, no metadata) is byte-for-byte unchanged.

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
2 changes: 1 addition & 1 deletion packages/session/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reaatech/agent-mesh-session",
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"description": "Firestore-backed session management for agent-mesh",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# @reaatech/agent-mesh-utils

## 1.1.0

### Minor Changes

- [#37](https://github.com/reaatech/agent-mesh/pull/37) [`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e) Thanks [@reaatech](https://github.com/reaatech)! - agent-mesh v-next groundwork — provider-agnostic, backend-agnostic, and host-embeddable, all additive and backward-compatible:

- **classifier:** pluggable `ClassifierProvider` (+ `createClassifier`) — inject any intent classifier (self-hosted, a different provider, or a host-resolved model) instead of the hard-wired Gemini classifier. Default (no provider) is unchanged: Gemini with a mock fallback.
- **session / utils:** pluggable `SessionStore` and `BreakerStore` with Firestore as the default implementation, dependency-free `InMemory*` adapters, and injection via `setSessionStore` / `setBreakerStore`. The exported service/module functions delegate to the active store; signatures unchanged. (Postgres/Redis adapters to follow.)
- **core:** optional `metadata` passthrough on `IncomingRequest` / `ContextPacket` / `SessionRecord` so an embedding host can carry its own identifiers (e.g. a multi-tenant `orgId`) without the HR-specific `employee_id`; plus the `SessionStore` / `BreakerStore` / `LeaderState` interfaces.

No breaking changes: the default behaviour (Gemini classifier, Firestore persistence, no metadata) is byte-for-byte unchanged.

### Patch Changes

- Updated dependencies [[`00427b3`](https://github.com/reaatech/agent-mesh/commit/00427b32ce7da4ab1037d7a20d1b071dc6a3279e)]:
- @reaatech/agent-mesh@1.1.0
- @reaatech/agent-mesh-session@1.1.0
- @reaatech/agent-mesh-observability@1.0.1
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": "@reaatech/agent-mesh-utils",
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"description": "Circuit breaker and utility modules for agent-mesh",
"license": "MIT",
Expand Down