@vibe-agent-toolkit/transports 0.1.14 → 0.1.15-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -217,10 +217,10 @@ Transports work with any runtime adapter that implements the conversational func
|
|
|
217
217
|
|
|
218
218
|
```typescript
|
|
219
219
|
import { CLITransport } from '@vibe-agent-toolkit/transports';
|
|
220
|
-
import {
|
|
220
|
+
import { createAgentSkillAdapter } from '@vibe-agent-toolkit/agent-skills';
|
|
221
221
|
|
|
222
|
-
// Create adapter from
|
|
223
|
-
const adapter =
|
|
222
|
+
// Create adapter from agent skill
|
|
223
|
+
const adapter = createAgentSkillAdapter({
|
|
224
224
|
skillDir: './my-skill',
|
|
225
225
|
apiKey: process.env.ANTHROPIC_API_KEY,
|
|
226
226
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-agent-toolkit/transports",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15-rc.1",
|
|
4
4
|
"description": "Transport adapters for VAT conversational agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"typecheck": "tsc --noEmit"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@vibe-agent-toolkit/agent-runtime": "0.1.
|
|
22
|
+
"@vibe-agent-toolkit/agent-runtime": "0.1.15-rc.1",
|
|
23
23
|
"ws": "^8.18.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|