diff --git a/packages/tools/registryExecute/CHANGELOG.md b/packages/tools/registryExecute/CHANGELOG.md new file mode 100644 index 0000000..cfe8d5a --- /dev/null +++ b/packages/tools/registryExecute/CHANGELOG.md @@ -0,0 +1,18 @@ +# @tpmjs/registryExecute + +## 0.2.0 + +### Minor Changes + +- Add @tpmjs/registrySearch and @tpmjs/registryExecute SDK packages + + These packages allow any AI SDK agent to dynamically discover and execute tools from the TPMJS registry: + + - `@tpmjs/registrySearch`: Search the registry for tools by query, category, etc. + - `@tpmjs/registryExecute`: Execute any tool from the registry in a secure sandbox + + Features: + + - Works with AI SDK v4+ (Vercel AI SDK) + - Self-hosted registry support via environment variables + - Secure sandboxed execution via executor.tpmjs.com diff --git a/packages/tools/registryExecute/package.json b/packages/tools/registryExecute/package.json index 747ef63..08d7707 100644 --- a/packages/tools/registryExecute/package.json +++ b/packages/tools/registryExecute/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/registryExecute", - "version": "0.1.0", + "version": "0.2.0", "description": "Execute tools from the TPMJS registry in any AI SDK agent", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -9,7 +9,13 @@ "dev": "tsc --watch", "type-check": "tsc --noEmit" }, - "keywords": ["tpmjs-tool", "ai-sdk", "vercel-ai", "registry", "execute"], + "keywords": [ + "tpmjs-tool", + "ai-sdk", + "vercel-ai", + "registry", + "execute" + ], "dependencies": { "ai": "6.0.0-beta.124" }, @@ -17,7 +23,10 @@ "@tpmjs/tsconfig": "workspace:*", "typescript": "^5.7.2" }, - "files": ["dist", "README.md"], + "files": [ + "dist", + "README.md" + ], "publishConfig": { "access": "public" }, @@ -30,7 +39,9 @@ "license": "MIT", "tpmjs": { "category": "api-integration", - "frameworks": ["vercel-ai"], + "frameworks": [ + "vercel-ai" + ], "tools": [ { "exportName": "registryExecuteTool", diff --git a/packages/tools/registrySearch/CHANGELOG.md b/packages/tools/registrySearch/CHANGELOG.md new file mode 100644 index 0000000..07b6251 --- /dev/null +++ b/packages/tools/registrySearch/CHANGELOG.md @@ -0,0 +1,18 @@ +# @tpmjs/registrySearch + +## 0.2.0 + +### Minor Changes + +- Add @tpmjs/registrySearch and @tpmjs/registryExecute SDK packages + + These packages allow any AI SDK agent to dynamically discover and execute tools from the TPMJS registry: + + - `@tpmjs/registrySearch`: Search the registry for tools by query, category, etc. + - `@tpmjs/registryExecute`: Execute any tool from the registry in a secure sandbox + + Features: + + - Works with AI SDK v4+ (Vercel AI SDK) + - Self-hosted registry support via environment variables + - Secure sandboxed execution via executor.tpmjs.com diff --git a/packages/tools/registrySearch/package.json b/packages/tools/registrySearch/package.json index e52cb15..7e51000 100644 --- a/packages/tools/registrySearch/package.json +++ b/packages/tools/registrySearch/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/registrySearch", - "version": "0.1.0", + "version": "0.2.0", "description": "Search the TPMJS tool registry from any AI SDK agent", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -9,7 +9,13 @@ "dev": "tsc --watch", "type-check": "tsc --noEmit" }, - "keywords": ["tpmjs-tool", "ai-sdk", "vercel-ai", "registry", "search"], + "keywords": [ + "tpmjs-tool", + "ai-sdk", + "vercel-ai", + "registry", + "search" + ], "dependencies": { "ai": "6.0.0-beta.124" }, @@ -17,7 +23,10 @@ "@tpmjs/tsconfig": "workspace:*", "typescript": "^5.7.2" }, - "files": ["dist", "README.md"], + "files": [ + "dist", + "README.md" + ], "publishConfig": { "access": "public" }, @@ -30,7 +39,9 @@ "license": "MIT", "tpmjs": { "category": "api-integration", - "frameworks": ["vercel-ai"], + "frameworks": [ + "vercel-ai" + ], "tools": [ { "exportName": "registrySearchTool",