diff --git a/.changeset/read-only-memory-mode.md b/.changeset/read-only-memory-mode.md deleted file mode 100644 index da5be1efb..000000000 --- a/.changeset/read-only-memory-mode.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -"@voltagent/core": patch -"@voltagent/server-core": patch ---- - -feat: add per-call memory read-only mode via `memory.options.readOnly`. - -When `readOnly` is enabled, the agent still reads conversation context and working memory, but skips memory writes for the current call. - -What changes in read-only mode: - -- Conversation message persistence is disabled. -- Step persistence/checkpoint writes are disabled. -- Background input persistence for context hydration is disabled. -- Working memory write tools are disabled (`update_working_memory`, `clear_working_memory`). -- Read-only tool remains available (`get_working_memory`). - -`@voltagent/server-core` now accepts `memory.options.readOnly` in request schema/options parsing. - -### Before - -```ts -await agent.generateText("Summarize this", { - memory: { - userId: "user-123", - conversationId: "conv-456", - }, -}); -// reads + writes memory -``` - -### After - -```ts -await agent.generateText("Summarize this", { - memory: { - userId: "user-123", - conversationId: "conv-456", - options: { - readOnly: true, - }, - }, -}); -// reads memory only, no writes -``` diff --git a/.changeset/tidy-summary-no-dup.md b/.changeset/tidy-summary-no-dup.md deleted file mode 100644 index a88734769..000000000 --- a/.changeset/tidy-summary-no-dup.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@voltagent/core": patch ---- - -fix(core): avoid duplicating stdout/stderr stream content in sandbox summary metadata diff --git a/examples/base/package.json b/examples/base/package.json index 01086d9ae..ff94c08eb 100644 --- a/examples/base/package.json +++ b/examples/base/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/github-repo-analyzer/package.json b/examples/github-repo-analyzer/package.json index 3bb2973a0..0316587a1 100644 --- a/examples/github-repo-analyzer/package.json +++ b/examples/github-repo-analyzer/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@octokit/rest": "^21.0.0", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/github-star-stories/package.json b/examples/github-star-stories/package.json index 450b1f8ab..32b1785ff 100644 --- a/examples/github-star-stories/package.json +++ b/examples/github-star-stories/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "@voltagent/serverless-hono": "^2.0.9", diff --git a/examples/next-js-chatbot-starter-template/package.json b/examples/next-js-chatbot-starter-template/package.json index 98bf065f4..0528da4bd 100644 --- a/examples/next-js-chatbot-starter-template/package.json +++ b/examples/next-js-chatbot-starter-template/package.json @@ -16,7 +16,7 @@ "@radix-ui/react-tooltip": "^1.2.8", "@radix-ui/react-use-controllable-state": "^1.2.2", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/server-hono": "^2.0.7", "@xyflow/react": "^12.9.2", diff --git a/examples/with-a2a-server/package.json b/examples/with-a2a-server/package.json index 5b4a7d3a5..428b0b3f5 100644 --- a/examples/with-a2a-server/package.json +++ b/examples/with-a2a-server/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-a2a-server", "dependencies": { "@voltagent/a2a-server": "^2.0.2", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-agent-tool/package.json b/examples/with-agent-tool/package.json index 4f4a405ac..b4047611a 100644 --- a/examples/with-agent-tool/package.json +++ b/examples/with-agent-tool/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-airtable/package.json b/examples/with-airtable/package.json index 3977e29c0..dedc2ec45 100644 --- a/examples/with-airtable/package.json +++ b/examples/with-airtable/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/internal": "^1.0.3", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-amazon-bedrock/package.json b/examples/with-amazon-bedrock/package.json index 943a53b8e..ffe8fca85 100644 --- a/examples/with-amazon-bedrock/package.json +++ b/examples/with-amazon-bedrock/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-anthropic/package.json b/examples/with-anthropic/package.json index c1b5f4f53..07d735401 100644 --- a/examples/with-anthropic/package.json +++ b/examples/with-anthropic/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-auth/package.json b/examples/with-auth/package.json index 0dece27ce..3dfb3b158 100644 --- a/examples/with-auth/package.json +++ b/examples/with-auth/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-cerbos/package.json b/examples/with-cerbos/package.json index 62cb71e1c..80edfdb16 100644 --- a/examples/with-cerbos/package.json +++ b/examples/with-cerbos/package.json @@ -5,7 +5,7 @@ "@cerbos/grpc": "^0.23.0", "@modelcontextprotocol/sdk": "^1.12.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0", "express": "^5.1.0", diff --git a/examples/with-chat-sdk/package.json b/examples/with-chat-sdk/package.json index 6f9f83e8e..fdbaed76b 100644 --- a/examples/with-chat-sdk/package.json +++ b/examples/with-chat-sdk/package.json @@ -6,7 +6,7 @@ "@chat-adapter/slack": "^4.14.0", "@chat-adapter/state-redis": "^4.14.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "ai": "^6.0.0", "chat": "^4.14.0", "next": "^16.0.7", diff --git a/examples/with-chroma/package.json b/examples/with-chroma/package.json index 82f822811..089f5ce4d 100644 --- a/examples/with-chroma/package.json +++ b/examples/with-chroma/package.json @@ -6,7 +6,7 @@ "@chroma-core/ollama": "^0.1.7", "@chroma-core/openai": "^0.1.7", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-client-side-tools/package.json b/examples/with-client-side-tools/package.json index ba9c4a018..2c10cadee 100644 --- a/examples/with-client-side-tools/package.json +++ b/examples/with-client-side-tools/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/react": "^3.0.0", "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/server-hono": "^2.0.7", "@voltagent/vercel-ai": "^1.0.0", "@voltagent/vercel-ui": "^1.0.1", diff --git a/examples/with-cloudflare-workers/package.json b/examples/with-cloudflare-workers/package.json index af1d840fa..201331ee9 100644 --- a/examples/with-cloudflare-workers/package.json +++ b/examples/with-cloudflare-workers/package.json @@ -3,7 +3,7 @@ "description": "VoltAgent example for Cloudflare Workers deployment with in-memory storage", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/serverless-hono": "^2.0.9", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-composio-mcp/package.json b/examples/with-composio-mcp/package.json index 23dda194c..5512e2944 100644 --- a/examples/with-composio-mcp/package.json +++ b/examples/with-composio-mcp/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-custom-endpoints/package.json b/examples/with-custom-endpoints/package.json index e82604f74..8f9d9f39c 100644 --- a/examples/with-custom-endpoints/package.json +++ b/examples/with-custom-endpoints/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-dynamic-parameters/package.json b/examples/with-dynamic-parameters/package.json index dd70218cc..e4bc82427 100644 --- a/examples/with-dynamic-parameters/package.json +++ b/examples/with-dynamic-parameters/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-dynamic-prompts/package.json b/examples/with-dynamic-prompts/package.json index ac23f6cfd..f9c335e25 100644 --- a/examples/with-dynamic-prompts/package.json +++ b/examples/with-dynamic-prompts/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-feedback/package.json b/examples/with-feedback/package.json index 2fd626211..e87f1ad8a 100644 --- a/examples/with-feedback/package.json +++ b/examples/with-feedback/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0" diff --git a/examples/with-google-ai/package.json b/examples/with-google-ai/package.json index 3e461cb5d..b91c81c93 100644 --- a/examples/with-google-ai/package.json +++ b/examples/with-google-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-google-drive-mcp/server/package.json b/examples/with-google-drive-mcp/server/package.json index 47a073036..f2cd54970 100644 --- a/examples/with-google-drive-mcp/server/package.json +++ b/examples/with-google-drive-mcp/server/package.json @@ -5,7 +5,7 @@ "@hono/node-server": "^1.14.0", "@libsql/client": "^0.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-google-vertex-ai/package.json b/examples/with-google-vertex-ai/package.json index 1d10ae716..a72d96373 100644 --- a/examples/with-google-vertex-ai/package.json +++ b/examples/with-google-vertex-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-groq-ai/package.json b/examples/with-groq-ai/package.json index ae578a275..a63b38a6a 100644 --- a/examples/with-groq-ai/package.json +++ b/examples/with-groq-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-guardrails/package.json b/examples/with-guardrails/package.json index d4f6210ea..c1d0fff41 100644 --- a/examples/with-guardrails/package.json +++ b/examples/with-guardrails/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0" diff --git a/examples/with-hooks/package.json b/examples/with-hooks/package.json index 9026bfb29..64b44882b 100644 --- a/examples/with-hooks/package.json +++ b/examples/with-hooks/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-hugging-face-mcp/package.json b/examples/with-hugging-face-mcp/package.json index 8b52ff3ba..dcd364c25 100644 --- a/examples/with-hugging-face-mcp/package.json +++ b/examples/with-hugging-face-mcp/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-langfuse/package.json b/examples/with-langfuse/package.json index 31b8ab45d..aab819a34 100644 --- a/examples/with-langfuse/package.json +++ b/examples/with-langfuse/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/langfuse-exporter": "^2.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", diff --git a/examples/with-mcp-elicitation/package.json b/examples/with-mcp-elicitation/package.json index 74b78aa52..064360d8a 100644 --- a/examples/with-mcp-elicitation/package.json +++ b/examples/with-mcp-elicitation/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-mcp-server/package.json b/examples/with-mcp-server/package.json index 7d81b9e3d..d50f878a3 100644 --- a/examples/with-mcp-server/package.json +++ b/examples/with-mcp-server/package.json @@ -1,7 +1,7 @@ { "name": "voltagent-example-with-mcp-server", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-mcp/package.json b/examples/with-mcp/package.json index ad4da48f8..2fc924be7 100644 --- a/examples/with-mcp/package.json +++ b/examples/with-mcp/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-memory-rest-api/package.json b/examples/with-memory-rest-api/package.json index b05bfca3d..371c156c8 100644 --- a/examples/with-memory-rest-api/package.json +++ b/examples/with-memory-rest-api/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", "@voltagent/server-hono": "^2.0.7" diff --git a/examples/with-middleware/package.json b/examples/with-middleware/package.json index 45baf511f..bc5e664cf 100644 --- a/examples/with-middleware/package.json +++ b/examples/with-middleware/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-nestjs/package.json b/examples/with-nestjs/package.json index 5e12aabc8..2e99ca503 100644 --- a/examples/with-nestjs/package.json +++ b/examples/with-nestjs/package.json @@ -6,8 +6,8 @@ "@nestjs/common": "^11.0.0", "@nestjs/core": "^11.0.0", "@nestjs/platform-express": "^11.0.0", - "@voltagent/core": "^2.6.6", - "@voltagent/server-core": "^2.1.9", + "@voltagent/core": "^2.6.7", + "@voltagent/server-core": "^2.1.10", "@voltagent/server-hono": "^2.0.7", "hono": "^4.7.7", "reflect-metadata": "^0.2.0", diff --git a/examples/with-netlify-functions/package.json b/examples/with-netlify-functions/package.json index dd67ad44c..ae5dae766 100644 --- a/examples/with-netlify-functions/package.json +++ b/examples/with-netlify-functions/package.json @@ -3,7 +3,7 @@ "description": "VoltAgent example deployed as a Netlify Function", "version": "1.0.0", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/serverless-hono": "^2.0.9", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-nextjs-resumable-stream/package.json b/examples/with-nextjs-resumable-stream/package.json index 2262fed88..1eddf0bd6 100644 --- a/examples/with-nextjs-resumable-stream/package.json +++ b/examples/with-nextjs-resumable-stream/package.json @@ -17,7 +17,7 @@ "@radix-ui/react-use-controllable-state": "^1.2.2", "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/resumable-streams": "^2.0.2", diff --git a/examples/with-nextjs/package.json b/examples/with-nextjs/package.json index 5cf693749..7a334e282 100644 --- a/examples/with-nextjs/package.json +++ b/examples/with-nextjs/package.json @@ -6,7 +6,7 @@ "@libsql/client": "^0.15.0", "@tailwindcss/postcss": "^4.1.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-nuxt/package.json b/examples/with-nuxt/package.json index e862053bd..56d95c5cd 100644 --- a/examples/with-nuxt/package.json +++ b/examples/with-nuxt/package.json @@ -3,7 +3,7 @@ "dependencies": { "@nuxt/eslint": "^1.9.0", "@nuxt/ui": "^4.0.0", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0", diff --git a/examples/with-offline-evals/package.json b/examples/with-offline-evals/package.json index 7163b27fb..53201eef4 100644 --- a/examples/with-offline-evals/package.json +++ b/examples/with-offline-evals/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/evals": "^2.0.4", "@voltagent/scorers": "^2.1.0", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-ollama/package.json b/examples/with-ollama/package.json index eb9adc2e6..c42a5abfd 100644 --- a/examples/with-ollama/package.json +++ b/examples/with-ollama/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-ollama", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0", diff --git a/examples/with-peaka-mcp/package.json b/examples/with-peaka-mcp/package.json index 4c1284d4b..b71844be3 100644 --- a/examples/with-peaka-mcp/package.json +++ b/examples/with-peaka-mcp/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-pinecone/package.json b/examples/with-pinecone/package.json index bae1d3f42..671e26378 100644 --- a/examples/with-pinecone/package.json +++ b/examples/with-pinecone/package.json @@ -4,7 +4,7 @@ "dependencies": { "@pinecone-database/pinecone": "^6.1.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-planagents/package.json b/examples/with-planagents/package.json index d8f0f604a..becd20a54 100644 --- a/examples/with-planagents/package.json +++ b/examples/with-planagents/package.json @@ -5,7 +5,7 @@ "dependencies": { "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-playwright/package.json b/examples/with-playwright/package.json index fac84860a..692f03d82 100644 --- a/examples/with-playwright/package.json +++ b/examples/with-playwright/package.json @@ -7,7 +7,7 @@ "@playwright/browser-webkit": "1.51.1", "@playwright/test": "^1.51.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-postgres/package.json b/examples/with-postgres/package.json index 7a162d587..b0f24ffd4 100644 --- a/examples/with-postgres/package.json +++ b/examples/with-postgres/package.json @@ -4,7 +4,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.1.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-qdrant/package.json b/examples/with-qdrant/package.json index f939842f8..777618592 100644 --- a/examples/with-qdrant/package.json +++ b/examples/with-qdrant/package.json @@ -4,7 +4,7 @@ "dependencies": { "@qdrant/js-client-rest": "^1.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-rag-chatbot/package.json b/examples/with-rag-chatbot/package.json index ee98398c9..84a728925 100644 --- a/examples/with-rag-chatbot/package.json +++ b/examples/with-rag-chatbot/package.json @@ -4,7 +4,7 @@ "version": "0.0.1", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-recipe-generator/package.json b/examples/with-recipe-generator/package.json index af1c627d5..19df3da89 100644 --- a/examples/with-recipe-generator/package.json +++ b/examples/with-recipe-generator/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0", diff --git a/examples/with-research-assistant/package.json b/examples/with-research-assistant/package.json index 1418b6a48..08b0ae251 100644 --- a/examples/with-research-assistant/package.json +++ b/examples/with-research-assistant/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-resumable-streams/package.json b/examples/with-resumable-streams/package.json index 0d570b215..c6b641c58 100644 --- a/examples/with-resumable-streams/package.json +++ b/examples/with-resumable-streams/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-retries-fallback/package.json b/examples/with-retries-fallback/package.json index 53bd7056b..968e7e6fb 100644 --- a/examples/with-retries-fallback/package.json +++ b/examples/with-retries-fallback/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-retrieval/package.json b/examples/with-retrieval/package.json index 0d997bfbb..1ef63247d 100644 --- a/examples/with-retrieval/package.json +++ b/examples/with-retrieval/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-slack/package.json b/examples/with-slack/package.json index 6f848781a..5fafe9b39 100644 --- a/examples/with-slack/package.json +++ b/examples/with-slack/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-subagents/package.json b/examples/with-subagents/package.json index 07fe54bb4..be170f261 100644 --- a/examples/with-subagents/package.json +++ b/examples/with-subagents/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-summarization/package.json b/examples/with-summarization/package.json index 343111d71..58ed6ecbb 100644 --- a/examples/with-summarization/package.json +++ b/examples/with-summarization/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-supabase/package.json b/examples/with-supabase/package.json index 9395bbe54..5592b6f4f 100644 --- a/examples/with-supabase/package.json +++ b/examples/with-supabase/package.json @@ -4,7 +4,7 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "@voltagent/supabase": "^2.1.3", diff --git a/examples/with-tavily-search/package.json b/examples/with-tavily-search/package.json index f12d1a589..2956899aa 100644 --- a/examples/with-tavily-search/package.json +++ b/examples/with-tavily-search/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-thinking-tool/package.json b/examples/with-thinking-tool/package.json index 3a18319ff..6f4d6df99 100644 --- a/examples/with-thinking-tool/package.json +++ b/examples/with-thinking-tool/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-tool-routing/package.json b/examples/with-tool-routing/package.json index d1f7489de..36c08d242 100644 --- a/examples/with-tool-routing/package.json +++ b/examples/with-tool-routing/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "ai": "^6.0.0", diff --git a/examples/with-tools/package.json b/examples/with-tools/package.json index fc6f21bec..bae359f7d 100644 --- a/examples/with-tools/package.json +++ b/examples/with-tools/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-turso/package.json b/examples/with-turso/package.json index b5109a886..c9b5e5fb0 100644 --- a/examples/with-turso/package.json +++ b/examples/with-turso/package.json @@ -4,7 +4,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-vector-search/package.json b/examples/with-vector-search/package.json index 4227b6f61..1b38bcaeb 100644 --- a/examples/with-vector-search/package.json +++ b/examples/with-vector-search/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-vercel-ai/package.json b/examples/with-vercel-ai/package.json index 0a8fea78d..f9f36c6b3 100644 --- a/examples/with-vercel-ai/package.json +++ b/examples/with-vercel-ai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-viteval/package.json b/examples/with-viteval/package.json index feb1f1948..1b11cc276 100644 --- a/examples/with-viteval/package.json +++ b/examples/with-viteval/package.json @@ -3,7 +3,7 @@ "author": "VoltAgent", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voice-elevenlabs/package.json b/examples/with-voice-elevenlabs/package.json index 9c218313a..8eb4f7171 100644 --- a/examples/with-voice-elevenlabs/package.json +++ b/examples/with-voice-elevenlabs/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voice-openai/package.json b/examples/with-voice-openai/package.json index 87f6fe5a5..320c90f70 100644 --- a/examples/with-voice-openai/package.json +++ b/examples/with-voice-openai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voice-xsai/package.json b/examples/with-voice-xsai/package.json index 0901ce3c8..d6fd7ff40 100644 --- a/examples/with-voice-xsai/package.json +++ b/examples/with-voice-xsai/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voltagent-actions/package.json b/examples/with-voltagent-actions/package.json index c10781533..a8cd6d21f 100644 --- a/examples/with-voltagent-actions/package.json +++ b/examples/with-voltagent-actions/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voltagent-exporter/package.json b/examples/with-voltagent-exporter/package.json index bde1c8781..88c65bc44 100644 --- a/examples/with-voltagent-exporter/package.json +++ b/examples/with-voltagent-exporter/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voltagent-managed-memory/package.json b/examples/with-voltagent-managed-memory/package.json index a7806bdaf..043dbedd9 100644 --- a/examples/with-voltagent-managed-memory/package.json +++ b/examples/with-voltagent-managed-memory/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", "@voltagent/voltagent-memory": "^1.0.4", diff --git a/examples/with-voltops-resumable-streams/package.json b/examples/with-voltops-resumable-streams/package.json index 47fcd227b..d74c777a8 100644 --- a/examples/with-voltops-resumable-streams/package.json +++ b/examples/with-voltops-resumable-streams/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-voltops-retrieval/package.json b/examples/with-voltops-retrieval/package.json index 8b5650748..faa2fa730 100644 --- a/examples/with-voltops-retrieval/package.json +++ b/examples/with-voltops-retrieval/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-whatsapp/package.json b/examples/with-whatsapp/package.json index 501ebcba7..ed9a9dcfd 100644 --- a/examples/with-whatsapp/package.json +++ b/examples/with-whatsapp/package.json @@ -4,7 +4,7 @@ "dependencies": { "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-workflow-chain/package.json b/examples/with-workflow-chain/package.json index 84208c2e8..559261d88 100644 --- a/examples/with-workflow-chain/package.json +++ b/examples/with-workflow-chain/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-workflow/package.json b/examples/with-workflow/package.json index 726bbe678..8af1ab319 100644 --- a/examples/with-workflow/package.json +++ b/examples/with-workflow/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-working-memory/package.json b/examples/with-working-memory/package.json index 51215fe72..83ead21b4 100644 --- a/examples/with-working-memory/package.json +++ b/examples/with-working-memory/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-workspace/package.json b/examples/with-workspace/package.json index 423289395..0e64a93db 100644 --- a/examples/with-workspace/package.json +++ b/examples/with-workspace/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-youtube-to-blog/package.json b/examples/with-youtube-to-blog/package.json index 7a5b74b60..066858452 100644 --- a/examples/with-youtube-to-blog/package.json +++ b/examples/with-youtube-to-blog/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/examples/with-zapier-mcp/package.json b/examples/with-zapier-mcp/package.json index 6325fe512..9b884b997 100644 --- a/examples/with-zapier-mcp/package.json +++ b/examples/with-zapier-mcp/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "", "dependencies": { - "@voltagent/core": "~2.6.6", + "@voltagent/core": "~2.6.7", "@voltagent/libsql": "^2.1.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.7", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d91ee319b..3e80464e8 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,51 @@ # @voltagent/core +## 2.6.7 + +### Patch Changes + +- [#1141](https://github.com/VoltAgent/voltagent/pull/1141) [`faa5023`](https://github.com/VoltAgent/voltagent/commit/faa5023ae6983fe5cb165e0fed4ec89882422d7f) Thanks [@omeraplak](https://github.com/omeraplak)! - feat: add per-call memory read-only mode via `memory.options.readOnly`. + + When `readOnly` is enabled, the agent still reads conversation context and working memory, but skips memory writes for the current call. + + What changes in read-only mode: + - Conversation message persistence is disabled. + - Step persistence/checkpoint writes are disabled. + - Background input persistence for context hydration is disabled. + - Working memory write tools are disabled (`update_working_memory`, `clear_working_memory`). + - Read-only tool remains available (`get_working_memory`). + + `@voltagent/server-core` now accepts `memory.options.readOnly` in request schema/options parsing. + + ### Before + + ```ts + await agent.generateText("Summarize this", { + memory: { + userId: "user-123", + conversationId: "conv-456", + }, + }); + // reads + writes memory + ``` + + ### After + + ```ts + await agent.generateText("Summarize this", { + memory: { + userId: "user-123", + conversationId: "conv-456", + options: { + readOnly: true, + }, + }, + }); + // reads memory only, no writes + ``` + +- [#1142](https://github.com/VoltAgent/voltagent/pull/1142) [`0f7ee7c`](https://github.com/VoltAgent/voltagent/commit/0f7ee7cbebec0fac039928af8b0a3a58cfbba82a) Thanks [@SergioChan](https://github.com/SergioChan)! - fix(core): avoid duplicating stdout/stderr stream content in sandbox summary metadata + ## 2.6.6 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index d8431c4c4..a85e71f84 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@voltagent/core", "description": "VoltAgent Core - AI agent framework for JavaScript", - "version": "2.6.6", + "version": "2.6.7", "dependencies": { "@ai-sdk/amazon-bedrock": "^3.0.0", "@ai-sdk/anthropic": "^3.0.0", diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 07256c1a2..bd4448906 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -2,7 +2,7 @@ "name": "@voltagent/e2e", "dependencies": { "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/internal": "^1.0.3", "@voltagent/libsql": "^2.1.2", "@voltagent/postgres": "^2.1.2", diff --git a/packages/server-core/CHANGELOG.md b/packages/server-core/CHANGELOG.md index ea8a6cb39..8065980b7 100644 --- a/packages/server-core/CHANGELOG.md +++ b/packages/server-core/CHANGELOG.md @@ -1,5 +1,52 @@ # @voltagent/server-core +## 2.1.10 + +### Patch Changes + +- [#1141](https://github.com/VoltAgent/voltagent/pull/1141) [`faa5023`](https://github.com/VoltAgent/voltagent/commit/faa5023ae6983fe5cb165e0fed4ec89882422d7f) Thanks [@omeraplak](https://github.com/omeraplak)! - feat: add per-call memory read-only mode via `memory.options.readOnly`. + + When `readOnly` is enabled, the agent still reads conversation context and working memory, but skips memory writes for the current call. + + What changes in read-only mode: + - Conversation message persistence is disabled. + - Step persistence/checkpoint writes are disabled. + - Background input persistence for context hydration is disabled. + - Working memory write tools are disabled (`update_working_memory`, `clear_working_memory`). + - Read-only tool remains available (`get_working_memory`). + + `@voltagent/server-core` now accepts `memory.options.readOnly` in request schema/options parsing. + + ### Before + + ```ts + await agent.generateText("Summarize this", { + memory: { + userId: "user-123", + conversationId: "conv-456", + }, + }); + // reads + writes memory + ``` + + ### After + + ```ts + await agent.generateText("Summarize this", { + memory: { + userId: "user-123", + conversationId: "conv-456", + options: { + readOnly: true, + }, + }, + }); + // reads memory only, no writes + ``` + +- Updated dependencies [[`faa5023`](https://github.com/VoltAgent/voltagent/commit/faa5023ae6983fe5cb165e0fed4ec89882422d7f), [`0f7ee7c`](https://github.com/VoltAgent/voltagent/commit/0f7ee7cbebec0fac039928af8b0a3a58cfbba82a)]: + - @voltagent/core@2.6.7 + ## 2.1.9 ### Patch Changes diff --git a/packages/server-core/package.json b/packages/server-core/package.json index 3bb15f239..9356eabb7 100644 --- a/packages/server-core/package.json +++ b/packages/server-core/package.json @@ -1,10 +1,10 @@ { "name": "@voltagent/server-core", "description": "Framework-agnostic server core for VoltAgent", - "version": "2.1.9", + "version": "2.1.10", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", - "@voltagent/core": "^2.6.6", + "@voltagent/core": "^2.6.7", "@voltagent/internal": "^1.0.2", "ai": "^6.0.0", "jsonwebtoken": "^9.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ed9d84850..8ff94006e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -117,7 +117,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -154,7 +154,7 @@ importers: specifier: ^21.0.0 version: 21.1.1 '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -191,7 +191,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -267,7 +267,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -388,7 +388,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/a2a-server '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -477,7 +477,7 @@ importers: examples/with-agent-tool: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core ai: specifier: ^6.0.0 @@ -502,7 +502,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -539,7 +539,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -573,7 +573,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -716,7 +716,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -756,7 +756,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.7 @@ -793,7 +793,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core ai: specifier: ^6.0.0 @@ -842,7 +842,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -882,7 +882,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.7 @@ -928,7 +928,7 @@ importers: examples/with-cloudflare-workers: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.9 @@ -962,7 +962,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1058,7 +1058,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1092,7 +1092,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1126,7 +1126,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1160,7 +1160,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1188,7 +1188,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1271,7 +1271,7 @@ importers: specifier: ^0.1.21 version: link:../../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1311,7 +1311,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1345,7 +1345,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1379,7 +1379,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1407,7 +1407,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1441,7 +1441,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1549,7 +1549,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/langfuse-exporter': specifier: ^2.0.3 @@ -1611,7 +1611,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1645,7 +1645,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1676,7 +1676,7 @@ importers: examples/with-mcp-server: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1710,7 +1710,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1741,7 +1741,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1781,10 +1781,10 @@ importers: specifier: ^11.0.0 version: 11.1.7(@nestjs/common@11.1.7)(@nestjs/core@11.1.7) '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/server-core': - specifier: ^2.1.9 + specifier: ^2.1.10 version: link:../../packages/server-core '@voltagent/server-hono': specifier: ^2.0.7 @@ -1827,7 +1827,7 @@ importers: examples/with-netlify-functions: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.9 @@ -1867,7 +1867,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -1973,7 +1973,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.3 @@ -2091,7 +2091,7 @@ importers: specifier: ^4.0.0 version: 4.0.1(embla-carousel@8.6.0)(typescript@5.9.3)(vite@7.2.7)(vue-router@4.5.1)(vue@3.5.22)(zod@3.25.76) '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2125,7 +2125,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/evals': specifier: ^2.0.4 @@ -2159,7 +2159,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2193,7 +2193,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2230,7 +2230,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2270,7 +2270,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2316,7 +2316,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2362,7 +2362,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2399,7 +2399,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2436,7 +2436,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2470,7 +2470,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2501,7 +2501,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2529,7 +2529,7 @@ importers: examples/with-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2563,7 +2563,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2597,7 +2597,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2631,7 +2631,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2671,7 +2671,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2708,7 +2708,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2745,7 +2745,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2779,7 +2779,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2813,7 +2813,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2850,7 +2850,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2884,7 +2884,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2918,7 +2918,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2955,7 +2955,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -2989,7 +2989,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3023,7 +3023,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3075,7 +3075,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3112,7 +3112,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3155,7 +3155,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3198,7 +3198,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3229,7 +3229,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3263,7 +3263,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3294,7 +3294,7 @@ importers: examples/with-voltops-resumable-streams: dependencies: '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3325,7 +3325,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3362,7 +3362,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3399,7 +3399,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3433,7 +3433,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3467,7 +3467,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3504,7 +3504,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3538,7 +3538,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -3569,7 +3569,7 @@ importers: examples/with-zapier-mcp: dependencies: '@voltagent/core': - specifier: ~2.6.6 + specifier: ~2.6.7 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.1.2 @@ -4020,7 +4020,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../core '@voltagent/internal': specifier: ^1.0.3 @@ -4281,7 +4281,7 @@ importers: specifier: ^1.12.1 version: 1.17.2 '@voltagent/core': - specifier: ^2.6.6 + specifier: ^2.6.7 version: link:../core '@voltagent/internal': specifier: ^1.0.2