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
107 changes: 0 additions & 107 deletions .changeset/native-feedback-helper.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/github-repo-analyzer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@octokit/rest": "^21.0.0",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
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
# Verify `@voltagent/core`@2.1.0 is published and inspect peers
curl -s https://registry.npmjs.org/@voltagent%2fcore > /tmp/voltagent-core.json
python3 <<'PY'
import json
try:
    data = json.load(open("/tmp/voltagent-core.json"))
    print("latest:", data.get("dist-tags", {}).get("latest"))
    print("has 2.1.0:", "2.1.0" in data.get("versions", {}))
    if "2.1.0" in data.get("versions", {}):
        pkg_info = data["versions"]["2.1.0"]
        print("peerDependencies:", pkg_info.get("peerDependencies", "none"))
        print("version found successfully")
    else:
        print("2.1.0 not found in versions")
except Exception as e:
    print(f"Error: {e}")
PY

Repository: VoltAgent/voltagent

Length of output: 149


🏁 Script executed:

# Check if there's a lock file with version info
find . -name "package-lock.json" -o -name "yarn.lock" -o -name "pnpm-lock.yaml" | head -10

Repository: VoltAgent/voltagent

Length of output: 155


🌐 Web query:

@voltagent/core version 2.1.0 npm package release

💡 Result:

I couldn't find a published npm package for @voltagent/core version 2.1.0. The VoltAgent project is on 2.x releases, and the latest 2.0.x release listed in release feeds is 2.0.13. [1][2]

Sources:

  • Release feed listing @voltagent/core versions (shows 2.0.13 as a recent 2.x release). [1]
  • Official VoltAgent site / docs (VoltAgent 2.x migration and package info). [2]

If you want, I can check the npm registry or the GitHub releases/tags again for a specific publish date — which would let me confirm whether 2.1.0 was published after these sources.


🏁 Script executed:

# Check what version is in the example's lock file
if [ -f "./examples/github-repo-analyzer/pnpm-lock.yaml" ]; then
  grep -A 2 "@voltagent/core" ./examples/github-repo-analyzer/pnpm-lock.yaml | head -20
elif [ -f "./examples/github-repo-analyzer/package-lock.json" ]; then
  cat ./examples/github-repo-analyzer/package-lock.json | grep -A 3 "voltagent/core" | head -20
fi

# Also check the package.json to confirm the requested version
cat ./examples/github-repo-analyzer/package.json | grep -A 1 -B 1 "voltagent"

Repository: VoltAgent/voltagent

Length of output: 552


@voltagent/[email protected] does not exist on npm—revert to 2.0.13 or later verified release.

The version 2.1.0 has not been published to the npm registry. Web search shows the latest 2.x release is 2.0.13. The other @voltagent packages in this file are pinned to 2.0.x versions (2.0.2, 2.0.3). Update this to an existing version or confirm 2.1.0 is published before merging.

🤖 Prompt for AI Agents
In `@examples/github-repo-analyzer/package.json` at line 7, The package.json
dependency "@voltagent/core" is pinned to a non-published version "2.1.0";
change it to a published 2.x release (e.g., "2.0.13") to match the other
`@voltagent` packages or verify and replace with the correct published version;
update the "@voltagent/core" version string in package.json accordingly and run
a quick npm install to confirm the dependency resolves.

"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/github-star-stories/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"@voltagent/serverless-hono": "^2.0.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/next-js-chatbot-starter-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"@xyflow/react": "^12.9.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-a2a-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/a2a-server": "^2.0.2",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/internal": "^1.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
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.14",
"@voltagent/core": "^2.1.0",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/with-airtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/internal": "^1.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/sdk": "^2.0.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-amazon-bedrock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@ai-sdk/amazon-bedrock": "^3.0.0",
"@aws-sdk/credential-providers": "~3.799.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/anthropic": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-cerbos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@cerbos/grpc": "^0.23.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"express": "^5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-chroma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@chroma-core/ollama": "^0.1.7",
"@chroma-core/openai": "^0.1.7",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
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.14",
"@voltagent/core": "^2.1.0",
"@voltagent/server-hono": "^2.0.3",
"@voltagent/vercel-ai": "^1.0.0",
"@voltagent/vercel-ui": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "1.0.0",
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/serverless-hono": "^2.0.5",
"ai": "^6.0.0",
"hono": "^4.7.7",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-composio-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-custom-endpoints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-dynamic-parameters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-dynamic-prompts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-feedback/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-google-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/google": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-google-drive-mcp/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@hono/node-server": "^1.14.0",
"@libsql/client": "^0.15.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-google-vertex-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/google-vertex": "^3.0.25",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-groq-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/groq": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-guardrails/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-hugging-face-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-langfuse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/langfuse-exporter": "^2.0.2",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-mcp-elicitation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/mcp-server": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "voltagent-example-with-mcp-server",
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/mcp-server": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-memory-rest-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/logger": "^2.0.2",
"@voltagent/postgres": "^2.0.2",
"@voltagent/server-hono": "^2.0.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@voltagent/core": "^2.0.14",
"@voltagent/core": "^2.1.0",
"@voltagent/server-core": "^2.1.2",
"@voltagent/server-hono": "^2.0.3",
"hono": "^4.7.7",
Expand Down
Loading