@yesod/openclaw 0.0.1 → 0.0.2
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 +24 -0
- package/package.json +5 -3
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @yesod/openclaw
|
|
2
|
+
|
|
3
|
+
OpenClaw runtime adapter for [Yesod](https://github.com/eryv-ai/yesod) — orchestration toolkit that makes AI agents delegate better and lets humans see why.
|
|
4
|
+
|
|
5
|
+
Translates Yesod's orchestration primitives into OpenClaw API calls (`sessions_spawn`, `sessions_send`, etc.) and handles event translation, result parsing, and MCP tool registration.
|
|
6
|
+
|
|
7
|
+
## Supported Runtimes
|
|
8
|
+
|
|
9
|
+
- **Claude Code** — `sessions_spawn({ runtime: "acp", agentId: "claude-code" })`
|
|
10
|
+
- **Codex** — `sessions_spawn({ runtime: "acp", agentId: "codex" })`
|
|
11
|
+
- **Subagent** — `sessions_spawn({ runtime: "subagent" })`
|
|
12
|
+
|
|
13
|
+
## Status
|
|
14
|
+
|
|
15
|
+
Pre-alpha. Adapter interface is defined; implementation is stubbed.
|
|
16
|
+
|
|
17
|
+
## Links
|
|
18
|
+
|
|
19
|
+
- [GitHub](https://github.com/eryv-ai/yesod)
|
|
20
|
+
- [Adapter Design](https://github.com/eryv-ai/yesod/blob/main/docs/concept/06-openclaw-adapter.md)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
|
|
24
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yesod/openclaw",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/eryv-ai/yesod.git",
|
|
@@ -16,14 +16,16 @@
|
|
|
16
16
|
"main": "./dist/index.cjs",
|
|
17
17
|
"module": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
|
-
"files": [
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
20
22
|
"publishConfig": {
|
|
21
23
|
"access": "public"
|
|
22
24
|
},
|
|
23
25
|
"scripts": {
|
|
24
26
|
"build": "tsup",
|
|
25
27
|
"dev": "tsup --watch",
|
|
26
|
-
"test": "vitest run",
|
|
28
|
+
"test": "vitest run --passWithNoTests",
|
|
27
29
|
"clean": "rm -rf dist"
|
|
28
30
|
},
|
|
29
31
|
"dependencies": {
|