@kynver-app/openclaw-agent-os 0.1.8 → 0.1.10
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 -3
- package/openclaw.plugin.json +0 -27
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ identity, goals, projects, contacts, sessions, daily logs, and long-term memory.
|
|
|
7
7
|
|
|
8
8
|
## What It Provides
|
|
9
9
|
|
|
10
|
-
-
|
|
10
|
+
- 25 explicit `agent_os_*` tools in the OpenClaw tool namespace.
|
|
11
11
|
- Direct Kynver HTTP transport for low-latency calls.
|
|
12
12
|
- `mcporter` fallback for compatibility with existing MCP setups.
|
|
13
13
|
- Optional OpenClaw session lifecycle hooks that automatically open/close AgentOS sessions.
|
|
@@ -17,7 +17,7 @@ identity, goals, projects, contacts, sessions, daily logs, and long-term memory.
|
|
|
17
17
|
## Install
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
openclaw plugins install @kynver-app/openclaw-agent-os
|
|
20
|
+
openclaw plugins install @kynver-app/openclaw-agent-os@latest --force
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
If your OpenClaw install does not support package installs yet, install this package into the OpenClaw
|
|
@@ -69,7 +69,24 @@ Use your platform's real home directory path for `<home>`, for example
|
|
|
69
69
|
|
|
70
70
|
## Verify
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
After changing config, restart the OpenClaw gateway/MCP host and start a fresh
|
|
73
|
+
assistant session. First verify the runtime-loaded plugin:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
openclaw plugins inspect kynver-agent-os-tools --runtime --json
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Expected plugin runtime response:
|
|
80
|
+
|
|
81
|
+
- `imported: true`
|
|
82
|
+
- `toolNames` includes `agent_os_get_context`
|
|
83
|
+
|
|
84
|
+
Do not use plain `openclaw plugins inspect kynver-agent-os-tools --json` as
|
|
85
|
+
the runtime check. That command is a metadata snapshot and can show
|
|
86
|
+
`imported: false` or empty `toolNames` even when the runtime plugin imports
|
|
87
|
+
successfully.
|
|
88
|
+
|
|
89
|
+
Then ask OpenClaw to run:
|
|
73
90
|
|
|
74
91
|
```text
|
|
75
92
|
Use agent_os_health_check with my AgentOS slug.
|
|
@@ -82,6 +99,10 @@ Expected healthy response:
|
|
|
82
99
|
- `transport: "direct-http"` when `kynverApiUrl` is configured
|
|
83
100
|
- counts for goals/projects/contacts/memory stats
|
|
84
101
|
|
|
102
|
+
If runtime inspect is healthy but a fresh OpenClaw Codex session still has no
|
|
103
|
+
`agent_os_*` tools, use the MCP fallback config and report this as an OpenClaw
|
|
104
|
+
native Codex dynamic-tool bridge issue.
|
|
105
|
+
|
|
85
106
|
## Tools
|
|
86
107
|
|
|
87
108
|
- `agent_os_health_check`
|
package/openclaw.plugin.json
CHANGED
|
@@ -34,33 +34,6 @@
|
|
|
34
34
|
"agent_os_update_contact"
|
|
35
35
|
]
|
|
36
36
|
},
|
|
37
|
-
"toolMetadata": {
|
|
38
|
-
"agent_os_health_check": { "optional": true },
|
|
39
|
-
"agent_os_get_context": { "optional": true },
|
|
40
|
-
"agent_os_open_session": { "optional": true },
|
|
41
|
-
"agent_os_close_session": { "optional": true },
|
|
42
|
-
"agent_os_log_session_event": { "optional": true },
|
|
43
|
-
"agent_os_log_session": { "optional": true },
|
|
44
|
-
"agent_os_list_goals": { "optional": true },
|
|
45
|
-
"agent_os_update_goal": { "optional": true },
|
|
46
|
-
"agent_os_get_projects": { "optional": true },
|
|
47
|
-
"agent_os_create_project": { "optional": true },
|
|
48
|
-
"agent_os_update_project": { "optional": true },
|
|
49
|
-
"agent_os_search_memory": { "optional": true },
|
|
50
|
-
"agent_os_write_memory": { "optional": true },
|
|
51
|
-
"agent_os_update_memory": { "optional": true },
|
|
52
|
-
"agent_os_consolidate_memory": { "optional": true },
|
|
53
|
-
"agent_os_list_skills": { "optional": true },
|
|
54
|
-
"agent_os_get_skill": { "optional": true },
|
|
55
|
-
"agent_os_create_skill": { "optional": true },
|
|
56
|
-
"agent_os_update_skill": { "optional": true },
|
|
57
|
-
"agent_os_import_skills": { "optional": true },
|
|
58
|
-
"agent_os_bind_skill": { "optional": true },
|
|
59
|
-
"agent_os_write_skill_memory": { "optional": true },
|
|
60
|
-
"agent_os_get_contacts": { "optional": true },
|
|
61
|
-
"agent_os_create_contact": { "optional": true },
|
|
62
|
-
"agent_os_update_contact": { "optional": true }
|
|
63
|
-
},
|
|
64
37
|
"configSchema": {
|
|
65
38
|
"type": "object",
|
|
66
39
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@kynver-app/openclaw-agent-os",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.10",
|
|
6
6
|
"description": "OpenClaw plugin that exposes Kynver AgentOS as first-class agent tools",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -20,8 +20,12 @@
|
|
|
20
20
|
"prepublishOnly": "npm run build"
|
|
21
21
|
},
|
|
22
22
|
"openclaw": {
|
|
23
|
-
"extensions": [
|
|
24
|
-
|
|
23
|
+
"extensions": [
|
|
24
|
+
"./dist/index.js"
|
|
25
|
+
],
|
|
26
|
+
"runtimeExtensions": [
|
|
27
|
+
"./dist/index.js"
|
|
28
|
+
]
|
|
25
29
|
},
|
|
26
30
|
"files": [
|
|
27
31
|
"dist/**",
|