chore: version packages for release
This commit is contained in:
parent
53d30f7eca
commit
dcab29baa2
4 changed files with 66 additions and 8 deletions
18
packages/tools/registryExecute/CHANGELOG.md
Normal file
18
packages/tools/registryExecute/CHANGELOG.md
Normal file
|
|
@ -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
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
18
packages/tools/registrySearch/CHANGELOG.md
Normal file
18
packages/tools/registrySearch/CHANGELOG.md
Normal file
|
|
@ -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
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue