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
81 changes: 0 additions & 81 deletions .changeset/common-geese-fetch.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/github-repo-analyzer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@octokit/rest": "^21.0.0",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/github-star-stories/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/serverless-hono": "^2.0.4",
"@voltagent/server-hono": "^2.0.3",
"@voltagent/serverless-hono": "^2.0.5",
"dotenv": "^16.4.5",
"wrangler": "^3.38.0",
"zod": "^3.25.76"
Expand Down
4 changes: 2 additions & 2 deletions examples/next-js-chatbot-starter-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Comment on lines +23 to +25
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# First, let's verify the actual package.json content
echo "=== Checking package.json ==="
cat examples/next-js-chatbot-starter-template/package.json | grep -A 3 "@voltagent"

# Try to query npm registry for these package versions
echo -e "\n=== Checking npm registry for @voltagent/[email protected] ==="
curl -s https://registry.npmjs.org/@voltagent/core/2.0.7 | head -20

echo -e "\n=== Checking npm registry for @voltagent/[email protected] ==="
curl -s https://registry.npmjs.org/@voltagent/server-hono/2.0.3 | head -20

echo -e "\n=== Listing available versions for @voltagent/core ==="
curl -s https://registry.npmjs.org/@voltagent/core | jq -r '.versions | keys' 2>/dev/null | tail -20

echo -e "\n=== Listing available versions for @voltagent/server-hono ==="
curl -s https://registry.npmjs.org/@voltagent/server-hono | jq -r '.versions | keys' 2>/dev/null | tail -20

Repository: VoltAgent/voltagent

Length of output: 1041


🌐 Web query:

@voltagent/core npm package security vulnerabilities 2.0.7

💡 Result:

I couldn't find any published security advisories or CVEs for "@voltagent/core" version 2.0.7 — and there does not appear to be a 2.0.7 release on the npm registry (current published versions are 0.x / 1.x on npm). See the package on npm and the project repository for releases. [1][2][3]

If you want a definitive check for your project environment, run:

  • npm audit --json (or pnpm audit / yarn audit) and inspect results
  • or use a vulnerability scanner (Snyk, OSS Index, Socket, etc.) against the exact lockfile that contains the resolved @voltagent/core version.

Sources:
[1] npm package page for @voltagent/core. [2] VoltAgent GitHub repository. [3] Socket package/security overview for @voltagent/core.


🌐 Web query:

@voltagent/server-hono npm package security vulnerabilities 2.0.3

💡 Result:

Short answer: I can't find an @voltagent/server-hono release v2.0.3 on public registries or advisories — the npm listing shows 1.x releases and libraries/docs reference 1.x usage. There are no public security advisories for @voltagent/server-hono itself; however, the Hono ecosystem (used by that package) has had separate vulnerabilities (e.g., CVE-2024-32652 affecting @hono/node-server). Sources:

  • @voltagent/server-hono npm listing (shows 1.x). [1]
  • VoltAgent docs / package references for @voltagent/server-hono. [2]
  • GHSA / CVE and OSV entry for a Hono-related vulnerability (CVE-2024-32652 / GHSA-hgxw-5xg3-69jx). [3]

If you want, I can:

  • re-check npm/registry for any unpublished or newer 2.0.3 release,
  • run an npm audit for your project (paste package-lock or allow me to guide),
  • or search for a specific advisory or CVE tied to a 2.0.3 release. Which would you prefer?

⚠️ Critical: Referenced package versions do not exist on npm registry

The package.json specifies @voltagent/core@^2.0.7 and @voltagent/server-hono@^2.0.3, but these versions are not published on npm:

  • @voltagent/core highest available version: 2.0.6
  • @voltagent/server-hono highest available version: 2.0.2

This will cause npm install to fail. Update to the existing versions (2.0.6 and 2.0.2 respectively) or wait for these versions to be published.

🤖 Prompt for AI Agents
In @examples/next-js-chatbot-starter-template/package.json around lines 23 - 25,
The package.json references non-existent npm versions for @voltagent/core and
@voltagent/server-hono; update the dependency entries for "@voltagent/core" and
"@voltagent/server-hono" to the latest published versions (use 2.0.6 for
@voltagent/core and 2.0.2 for @voltagent/server-hono) so npm install will
succeed, or alternatively defer to the published versions if newer ones become
available before merging.

"@xyflow/react": "^12.9.2",
"ai": "^6.0.0",
"class-variance-authority": "^0.7.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/with-a2a-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/a2a-server": "^2.0.2",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/internal": "^1.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/with-agent-tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "",
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-airtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/internal": "^1.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/sdk": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-amazon-bedrock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"@ai-sdk/amazon-bedrock": "^3.0.0",
"@aws-sdk/credential-providers": "~3.799.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/anthropic": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-cerbos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"@cerbos/grpc": "^0.23.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/core": "^2.0.7",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"express": "^5.1.0",
"zod": "^3.25.76"
Expand Down
4 changes: 2 additions & 2 deletions examples/with-chroma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"@chroma-core/ollama": "^0.1.7",
"@chroma-core/openai": "^0.1.7",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"chromadb": "^3.0.4",
"zod": "^3.25.76"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-client-side-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@ai-sdk/openai": "^3.0.0",
"@ai-sdk/react": "^3.0.0",
"@libsql/client": "^0.15.0",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/vercel-ai": "^1.0.0",
"@voltagent/vercel-ui": "^1.0.1",
"ai": "^6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/with-cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "1.0.0",
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/core": "^2.0.6",
"@voltagent/serverless-hono": "^2.0.4",
"@voltagent/core": "^2.0.7",
"@voltagent/serverless-hono": "^2.0.5",
"ai": "^6.0.0",
"hono": "^4.7.7",
"zod": "^3.25.76"
Expand Down
4 changes: 2 additions & 2 deletions examples/with-composio-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-custom-endpoints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-dynamic-parameters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-dynamic-prompts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-google-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/google": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-google-drive-mcp/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"@hono/node-server": "^1.14.0",
"@libsql/client": "^0.15.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"composio-core": "^0.5.33",
"hono": "^4.7.7",
"zod": "^3.25.76",
Expand Down
4 changes: 2 additions & 2 deletions examples/with-google-vertex-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/google-vertex": "^3.0.25",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-groq-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/groq": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-guardrails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions examples/with-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/with-hugging-face-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.6",
"@voltagent/core": "^2.0.7",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
Loading
Loading