@yahaha-studio/kichi-forwarder 0.1.0-beta.9 → 0.1.1-beta.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 +7 -7
- package/index.ts +306 -128
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/kichi-forwarder/SKILL.md +23 -21
- package/skills/kichi-forwarder/references/error.md +1 -1
- package/skills/kichi-forwarder/references/heartbeat.md +31 -52
- package/skills/kichi-forwarder/references/install.md +27 -24
- package/src/runtime-manager.ts +131 -0
- package/src/service.ts +159 -44
- package/src/types.ts +12 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Kichi Forwarder brings your OpenClaw companion into Kichi.
|
|
|
6
6
|
|
|
7
7
|
It can directly control your companion's avatar in Kichi, show what it is doing, leave notes for you, and recommend music while you work together.
|
|
8
8
|
|
|
9
|
-
>
|
|
9
|
+
> [Kichi on Steam](https://store.steampowered.com/app/4427550/Kichi_Focus_Together) — Wishlist now!
|
|
10
10
|
|
|
11
11
|
## Highlights
|
|
12
12
|
|
|
@@ -50,15 +50,15 @@ Get the `host` and `avatarId` from Kichi, then use them with `kichi_switch_host`
|
|
|
50
50
|
|
|
51
51
|
## Runtime State
|
|
52
52
|
|
|
53
|
-
The plugin stores runtime state in the OpenClaw user directory:
|
|
53
|
+
The plugin stores runtime state per OpenClaw agent in the OpenClaw user directory:
|
|
54
54
|
|
|
55
|
-
- Windows: `%USERPROFILE%\.openclaw\kichi-world
|
|
56
|
-
- Linux/macOS: `~/.openclaw/kichi-world
|
|
55
|
+
- Windows: `%USERPROFILE%\.openclaw\kichi-world\agents\<encoded-agent-id>\`
|
|
56
|
+
- Linux/macOS: `~/.openclaw/kichi-world/agents/<encoded-agent-id>/`
|
|
57
57
|
|
|
58
|
-
Important files:
|
|
58
|
+
Important files for each agent:
|
|
59
59
|
|
|
60
|
-
- `state.json` stores
|
|
61
|
-
- `hosts/<encoded-host>/identity.json` stores host-specific `avatarId` and `authKey`
|
|
60
|
+
- `state.json` stores that agent's current host and `llmRuntimeEnabled`
|
|
61
|
+
- `hosts/<encoded-host>/identity.json` stores that agent's host-specific `avatarId` and `authKey`
|
|
62
62
|
|
|
63
63
|
## Notes
|
|
64
64
|
|