@telaro/agents 0.1.0

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 ADDED
@@ -0,0 +1,39 @@
1
+ # @telaro/agents
2
+
3
+ Telaro Solana-native agent-kit adapter bundle.
4
+
5
+ Wrap a SendAI / GOAT / BUZZ / Verxio runtime so every tx-emitting
6
+ action auto-records on Telaro. One install, one import per kit.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ pnpm add @telaro/agents
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```ts
17
+ // SendAI Agent Kit
18
+ import { withTelaro } from "@telaro/agents/sendai";
19
+ const bonded = withTelaro(agentKit, { bondAmount: 100_000_000n, scorer });
20
+
21
+ // GOAT (Onchain Agent Toolkit)
22
+ import { withTelaro } from "@telaro/agents/goat";
23
+
24
+ // BUZZ
25
+ import { withTelaro } from "@telaro/agents/buzz";
26
+
27
+ // Verxio
28
+ import { withTelaro } from "@telaro/agents/verxio";
29
+ ```
30
+
31
+ ## Subpaths
32
+
33
+ | Subpath | Wraps |
34
+ |---|---|
35
+ | `@telaro/agents/sendai` | SendAI Agent Kit runtime |
36
+ | `@telaro/agents/goat` | GOAT Onchain Agent Toolkit |
37
+ | `@telaro/agents/buzz` | BUZZ agent framework |
38
+ | `@telaro/agents/verxio` | Verxio agent framework |
39
+ ```
package/dist/buzz.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/buzz` — thin re-export of `@telaro/buzz`. Use this subpath
3
+ * if you only care about the buzz kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/buzz";
7
+ //# sourceMappingURL=buzz.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buzz.d.ts","sourceRoot":"","sources":["../src/buzz.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,cAAc,CAAC"}
package/dist/buzz.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/buzz` — thin re-export of `@telaro/buzz`. Use this subpath
3
+ * if you only care about the buzz kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/buzz";
7
+ //# sourceMappingURL=buzz.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"buzz.js","sourceRoot":"","sources":["../src/buzz.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,cAAc,CAAC"}
package/dist/goat.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/goat` — thin re-export of `@telaro/goat`. Use this subpath
3
+ * if you only care about the goat kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/goat";
7
+ //# sourceMappingURL=goat.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"goat.d.ts","sourceRoot":"","sources":["../src/goat.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,cAAc,CAAC"}
package/dist/goat.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/goat` — thin re-export of `@telaro/goat`. Use this subpath
3
+ * if you only care about the goat kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/goat";
7
+ //# sourceMappingURL=goat.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"goat.js","sourceRoot":"","sources":["../src/goat.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,cAAc,CAAC"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @telaro/agents — Telaro Solana-native agent-kit adapter bundle.
3
+ *
4
+ * One install gives you the Telaro wrappers for the four Solana-native
5
+ * agent kits we support today. Pick the subpath that matches your kit:
6
+ *
7
+ * import { withTelaro } from "@telaro/agents/sendai";
8
+ * import { withTelaro } from "@telaro/agents/goat";
9
+ * import { withTelaro } from "@telaro/agents/buzz";
10
+ * import { withTelaro } from "@telaro/agents/verxio";
11
+ *
12
+ * The root export re-exports the shared `ActionKind` enum and the
13
+ * framework-adapter-core types so you can pass them around without a
14
+ * second import.
15
+ */
16
+ export { ActionKind } from "@telaro/framework-adapter-core";
17
+ export type { BondedFrameworkConfig, FrameworkRuntimeLike, } from "@telaro/framework-adapter-core";
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAC5D,YAAY,EACV,qBAAqB,EACrB,oBAAoB,GACrB,MAAM,gCAAgC,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @telaro/agents — Telaro Solana-native agent-kit adapter bundle.
3
+ *
4
+ * One install gives you the Telaro wrappers for the four Solana-native
5
+ * agent kits we support today. Pick the subpath that matches your kit:
6
+ *
7
+ * import { withTelaro } from "@telaro/agents/sendai";
8
+ * import { withTelaro } from "@telaro/agents/goat";
9
+ * import { withTelaro } from "@telaro/agents/buzz";
10
+ * import { withTelaro } from "@telaro/agents/verxio";
11
+ *
12
+ * The root export re-exports the shared `ActionKind` enum and the
13
+ * framework-adapter-core types so you can pass them around without a
14
+ * second import.
15
+ */
16
+ export { ActionKind } from "@telaro/framework-adapter-core";
17
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/sendai` — thin re-export of `@telaro/sendai`. Use this subpath
3
+ * if you only care about the sendai kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/sendai";
7
+ //# sourceMappingURL=sendai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sendai.d.ts","sourceRoot":"","sources":["../src/sendai.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,gBAAgB,CAAC"}
package/dist/sendai.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/sendai` — thin re-export of `@telaro/sendai`. Use this subpath
3
+ * if you only care about the sendai kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/sendai";
7
+ //# sourceMappingURL=sendai.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sendai.js","sourceRoot":"","sources":["../src/sendai.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/verxio` — thin re-export of `@telaro/verxio`. Use this subpath
3
+ * if you only care about the verxio kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/verxio";
7
+ //# sourceMappingURL=verxio.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verxio.d.ts","sourceRoot":"","sources":["../src/verxio.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,gBAAgB,CAAC"}
package/dist/verxio.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * `@telaro/agents/verxio` — thin re-export of `@telaro/verxio`. Use this subpath
3
+ * if you only care about the verxio kit; the parent `@telaro/agents`
4
+ * exposes the same surface for every kit.
5
+ */
6
+ export * from "@telaro/verxio";
7
+ //# sourceMappingURL=verxio.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"verxio.js","sourceRoot":"","sources":["../src/verxio.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,cAAc,gBAAgB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@telaro/agents",
3
+ "version": "0.1.0",
4
+ "description": "Telaro Solana-native agent-kit adapters bundle. Wrap a SendAI / GOAT / BUZZ / Verxio runtime so every tx-emitting action auto-records on Telaro. One install, one import per kit.",
5
+ "license": "MIT",
6
+ "homepage": "https://telaro.xyz",
7
+ "repository": "https://github.com/Telaro-Protocol/telaro-protocol",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "type": "module",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ },
17
+ "./buzz": {
18
+ "types": "./dist/buzz.d.ts",
19
+ "import": "./dist/buzz.js"
20
+ },
21
+ "./goat": {
22
+ "types": "./dist/goat.d.ts",
23
+ "import": "./dist/goat.js"
24
+ },
25
+ "./sendai": {
26
+ "types": "./dist/sendai.d.ts",
27
+ "import": "./dist/sendai.js"
28
+ },
29
+ "./verxio": {
30
+ "types": "./dist/verxio.d.ts",
31
+ "import": "./dist/verxio.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsc -p tsconfig.json",
40
+ "test": "node --import tsx/esm --test tests/*.test.ts"
41
+ },
42
+ "dependencies": {
43
+ "@telaro/buzz": "workspace:*",
44
+ "@telaro/framework-adapter-core": "workspace:*",
45
+ "@telaro/goat": "workspace:*",
46
+ "@telaro/sendai": "workspace:*",
47
+ "@telaro/verxio": "workspace:*"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^22.0.0",
51
+ "typescript": "^5.5.0",
52
+ "tsx": "^4.16.0"
53
+ },
54
+ "keywords": [
55
+ "telaro",
56
+ "ai-agents",
57
+ "solana",
58
+ "sendai",
59
+ "goat",
60
+ "buzz",
61
+ "verxio"
62
+ ]
63
+ }