From 5696fc009b25ecd158f5be31e9ecb61d537c8ad4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 05:06:30 +0000 Subject: [PATCH] chore: release packages Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/remove-storage-postgres.md | 11 ----------- examples/minimal-agent-server/CHANGELOG.md | 8 ++++++++ examples/minimal-agent-server/package.json | 2 +- examples/multiple-profiles/CHANGELOG.md | 8 ++++++++ examples/multiple-profiles/package.json | 2 +- examples/with-custom-hooks/CHANGELOG.md | 8 ++++++++ examples/with-custom-hooks/package.json | 2 +- examples/with-custom-plugins/CHANGELOG.md | 8 ++++++++ examples/with-custom-plugins/package.json | 2 +- examples/with-custom-skills/CHANGELOG.md | 9 +++++++++ examples/with-custom-skills/package.json | 2 +- examples/with-custom-tools/CHANGELOG.md | 8 ++++++++ examples/with-custom-tools/package.json | 2 +- packages/app/CHANGELOG.md | 7 +++++++ packages/app/package.json | 2 +- packages/capabilities/CHANGELOG.md | 12 ++++++++++++ packages/capabilities/package.json | 2 +- packages/cli/CHANGELOG.md | 7 +++++++ packages/cli/package.json | 2 +- packages/create-agentrail-app/CHANGELOG.md | 7 +++++++ packages/create-agentrail-app/package.json | 2 +- packages/deep-research/CHANGELOG.md | 7 +++++++ packages/deep-research/package.json | 2 +- 23 files changed, 100 insertions(+), 22 deletions(-) delete mode 100644 .changeset/remove-storage-postgres.md create mode 100644 examples/minimal-agent-server/CHANGELOG.md create mode 100644 examples/multiple-profiles/CHANGELOG.md create mode 100644 examples/with-custom-hooks/CHANGELOG.md create mode 100644 examples/with-custom-plugins/CHANGELOG.md create mode 100644 examples/with-custom-skills/CHANGELOG.md create mode 100644 examples/with-custom-tools/CHANGELOG.md diff --git a/.changeset/remove-storage-postgres.md b/.changeset/remove-storage-postgres.md deleted file mode 100644 index ddc6981..0000000 --- a/.changeset/remove-storage-postgres.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@agentrail/capabilities": minor ---- - -Remove the first-party PostgreSQL storage backend. - -`@agentrail/storage-postgres` has been removed. The package was incomplete — `listToolResultArtifactIds`, `createTodoStorage`, and `persistSkillSubAgentLog` were defined in the schema but never implemented — and its documentation overstated its capabilities. - -**Migration:** For horizontal scaling, mount a shared filesystem (NFS, EFS, etc.) at the same `dataDir` path on all instances. The `AgentrailSessionStore` interface remains available as an advanced extension point for custom implementations. - -`WorkerStorageConfig` in `@agentrail/capabilities` no longer includes a `postgres` branch. If you were passing `storageConfig: { type: "postgres", ... }` to sub-agent workers, switch to `{ type: "filesystem", dataDir }` with a shared volume. diff --git a/examples/minimal-agent-server/CHANGELOG.md b/examples/minimal-agent-server/CHANGELOG.md new file mode 100644 index 0000000..fdf157e --- /dev/null +++ b/examples/minimal-agent-server/CHANGELOG.md @@ -0,0 +1,8 @@ +# @agentrail/minimal-agent-server-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 diff --git a/examples/minimal-agent-server/package.json b/examples/minimal-agent-server/package.json index 7420267..b1c19eb 100644 --- a/examples/minimal-agent-server/package.json +++ b/examples/minimal-agent-server/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/minimal-agent-server-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Minimal Agentrail server example.", "type": "module", diff --git a/examples/multiple-profiles/CHANGELOG.md b/examples/multiple-profiles/CHANGELOG.md new file mode 100644 index 0000000..55384c9 --- /dev/null +++ b/examples/multiple-profiles/CHANGELOG.md @@ -0,0 +1,8 @@ +# @agentrail/multiple-profiles-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 diff --git a/examples/multiple-profiles/package.json b/examples/multiple-profiles/package.json index 2af17c2..c5888b5 100644 --- a/examples/multiple-profiles/package.json +++ b/examples/multiple-profiles/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/multiple-profiles-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Multiple agent profiles example for Agentrail.", "type": "module", diff --git a/examples/with-custom-hooks/CHANGELOG.md b/examples/with-custom-hooks/CHANGELOG.md new file mode 100644 index 0000000..047da2d --- /dev/null +++ b/examples/with-custom-hooks/CHANGELOG.md @@ -0,0 +1,8 @@ +# @agentrail/with-custom-hooks-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 diff --git a/examples/with-custom-hooks/package.json b/examples/with-custom-hooks/package.json index 096cc46..9448da8 100644 --- a/examples/with-custom-hooks/package.json +++ b/examples/with-custom-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/with-custom-hooks-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Agentrail server example demonstrating app-layer tool and request lifecycle hooks.", "type": "module", diff --git a/examples/with-custom-plugins/CHANGELOG.md b/examples/with-custom-plugins/CHANGELOG.md new file mode 100644 index 0000000..337d42f --- /dev/null +++ b/examples/with-custom-plugins/CHANGELOG.md @@ -0,0 +1,8 @@ +# @agentrail/with-custom-plugins-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 diff --git a/examples/with-custom-plugins/package.json b/examples/with-custom-plugins/package.json index 4f170af..b2e7ba4 100644 --- a/examples/with-custom-plugins/package.json +++ b/examples/with-custom-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/with-custom-plugins-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Agentrail server example demonstrating a custom AgentrailPlugin.", "type": "module", diff --git a/examples/with-custom-skills/CHANGELOG.md b/examples/with-custom-skills/CHANGELOG.md new file mode 100644 index 0000000..b84b31c --- /dev/null +++ b/examples/with-custom-skills/CHANGELOG.md @@ -0,0 +1,9 @@ +# @agentrail/with-custom-skills-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies [[`d1280e1`](https://github.com/yai-dev/agentrail/commit/d1280e18f26aa7a13a2defb3bcc62d4817688255)]: + - @agentrail/capabilities@0.5.0 + - @agentrail/app@0.7.1 diff --git a/examples/with-custom-skills/package.json b/examples/with-custom-skills/package.json index 6cba766..8d97d1c 100644 --- a/examples/with-custom-skills/package.json +++ b/examples/with-custom-skills/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/with-custom-skills-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Agentrail server example demonstrating custom skills via SkillManager.", "type": "module", diff --git a/examples/with-custom-tools/CHANGELOG.md b/examples/with-custom-tools/CHANGELOG.md new file mode 100644 index 0000000..f68ca40 --- /dev/null +++ b/examples/with-custom-tools/CHANGELOG.md @@ -0,0 +1,8 @@ +# @agentrail/with-custom-tools-example + +## 0.0.2 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 diff --git a/examples/with-custom-tools/package.json b/examples/with-custom-tools/package.json index 0350d7a..e214540 100644 --- a/examples/with-custom-tools/package.json +++ b/examples/with-custom-tools/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/with-custom-tools-example", - "version": "0.0.1", + "version": "0.0.2", "private": true, "description": "Agentrail server example demonstrating custom tool definitions.", "type": "module", diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index fe7d2ac..d48cf54 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -1,5 +1,12 @@ # @agentrail/app +## 0.7.1 + +### Patch Changes + +- Updated dependencies [[`d1280e1`](https://github.com/yai-dev/agentrail/commit/d1280e18f26aa7a13a2defb3bcc62d4817688255)]: + - @agentrail/capabilities@0.5.0 + ## 0.7.0 ### Minor Changes diff --git a/packages/app/package.json b/packages/app/package.json index 1f4cd2f..a913320 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/app", - "version": "0.7.0", + "version": "0.7.1", "description": "App-layer hosting, profiles, session management, and createAgentApp for Agentrail.", "type": "module", "files": [ diff --git a/packages/capabilities/CHANGELOG.md b/packages/capabilities/CHANGELOG.md index 8c5babe..b136f22 100644 --- a/packages/capabilities/CHANGELOG.md +++ b/packages/capabilities/CHANGELOG.md @@ -4,6 +4,18 @@ ### Minor Changes +- [#146](https://github.com/yai-dev/agentrail/pull/146) [`d1280e1`](https://github.com/yai-dev/agentrail/commit/d1280e18f26aa7a13a2defb3bcc62d4817688255) Thanks [@yai-dev](https://github.com/yai-dev)! - Remove the first-party PostgreSQL storage backend. + + `@agentrail/storage-postgres` has been removed. The package was incomplete — `listToolResultArtifactIds`, `createTodoStorage`, and `persistSkillSubAgentLog` were defined in the schema but never implemented — and its documentation overstated its capabilities. + + **Migration:** For horizontal scaling, mount a shared filesystem (NFS, EFS, etc.) at the same `dataDir` path on all instances. The `AgentrailSessionStore` interface remains available as an advanced extension point for custom implementations. + + `WorkerStorageConfig` in `@agentrail/capabilities` no longer includes a `postgres` branch. If you were passing `storageConfig: { type: "postgres", ... }` to sub-agent workers, switch to `{ type: "filesystem", dataDir }` with a shared volume. + +## 0.5.0 + +### Minor Changes + - **Remove PostgreSQL storage backend support** — `WorkerStorageConfig` no longer includes a `postgres` branch. The type is now `{ type: "filesystem"; dataDir: string }` only. If you were passing `storageConfig: { type: "postgres", ... }` to sub-agent workers, migrate to a shared filesystem mount for horizontal scaling. ## 0.4.0 diff --git a/packages/capabilities/package.json b/packages/capabilities/package.json index d1a5c8a..58df9c3 100644 --- a/packages/capabilities/package.json +++ b/packages/capabilities/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/capabilities", - "version": "0.4.0", + "version": "0.5.0", "description": "App-layer capability descriptors: filesystem, browser, knowledge, skills, orchestration, and memory for Agentrail.", "type": "module", "files": [ diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e78b0d5..5296780 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @agentrail/cli +## 0.2.7 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/app@0.7.1 + ## 0.2.6 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d8cefbe..6a5dc4f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/cli", - "version": "0.2.6", + "version": "0.2.7", "description": "Official CLI for Agentrail — scaffold, diagnose, and validate your agent applications", "type": "module", "main": "./dist/index.js", diff --git a/packages/create-agentrail-app/CHANGELOG.md b/packages/create-agentrail-app/CHANGELOG.md index 5c1864b..8a0cb4e 100644 --- a/packages/create-agentrail-app/CHANGELOG.md +++ b/packages/create-agentrail-app/CHANGELOG.md @@ -1,5 +1,12 @@ # @agentrail/create-agentrail-app +## 0.2.7 + +### Patch Changes + +- Updated dependencies []: + - @agentrail/cli@0.2.7 + ## 0.2.6 ### Patch Changes diff --git a/packages/create-agentrail-app/package.json b/packages/create-agentrail-app/package.json index 29261e7..3f691cd 100644 --- a/packages/create-agentrail-app/package.json +++ b/packages/create-agentrail-app/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/create-agentrail-app", - "version": "0.2.6", + "version": "0.2.7", "description": "Create a new Agentrail application from a template (delegates to @agentrail/cli)", "type": "module", "bin": { diff --git a/packages/deep-research/CHANGELOG.md b/packages/deep-research/CHANGELOG.md index d6b0b69..dd2d23d 100644 --- a/packages/deep-research/CHANGELOG.md +++ b/packages/deep-research/CHANGELOG.md @@ -1,5 +1,12 @@ # @agentrail/deep-research +## 0.0.15 + +### Patch Changes + +- Updated dependencies [[`d1280e1`](https://github.com/yai-dev/agentrail/commit/d1280e18f26aa7a13a2defb3bcc62d4817688255)]: + - @agentrail/capabilities@0.5.0 + ## 0.0.14 ### Patch Changes diff --git a/packages/deep-research/package.json b/packages/deep-research/package.json index 2842a3f..6238ec7 100644 --- a/packages/deep-research/package.json +++ b/packages/deep-research/package.json @@ -1,6 +1,6 @@ { "name": "@agentrail/deep-research", - "version": "0.0.14", + "version": "0.0.15", "description": "Reusable Deep Research workflow package for Agentrail examples.", "type": "module", "files": [