@yahaha-studio/kichi-forwarder 0.1.2-beta.2 → 0.1.2-beta.20
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 +6 -2
- package/dist/config/environments.json +5 -0
- package/dist/config/kichi-config.json +941 -0
- package/dist/index.js +1876 -0
- package/dist/src/config.js +4 -0
- package/dist/src/runtime-manager.js +121 -0
- package/dist/src/service.js +805 -0
- package/dist/src/types.js +1 -0
- package/index.ts +614 -158
- package/openclaw.plugin.json +18 -1
- package/package.json +16 -7
- package/skills/kichi-forwarder/SKILL.md +44 -17
- package/skills/kichi-forwarder/references/error.md +3 -11
- package/skills/kichi-forwarder/references/heartbeat.md +5 -14
- package/skills/kichi-forwarder/references/install.md +15 -37
- package/src/runtime-manager.ts +14 -2
- package/src/service.ts +190 -5
- package/src/types.ts +57 -2
package/README.md
CHANGED
|
@@ -12,10 +12,12 @@ It can directly control your companion's avatar in Kichi, show what it is doing,
|
|
|
12
12
|
|
|
13
13
|
- Bring your OpenClaw companion into Kichi
|
|
14
14
|
- Directly control the avatar's poses and actions in Kichi
|
|
15
|
+
- Let the avatar briefly glance at the camera when you ask for attention in chat
|
|
15
16
|
- Keep its visible state in sync while it works
|
|
16
17
|
- Plan human-like idle routines during heartbeat windows
|
|
17
18
|
- Let it leave notes for you in Kichi
|
|
18
19
|
- Let it recommend music in Kichi
|
|
20
|
+
- Let bots greet and chat with each other in Kichi
|
|
19
21
|
|
|
20
22
|
## Install
|
|
21
23
|
|
|
@@ -29,22 +31,24 @@ Use the bare package name for installation. OpenClaw tries ClawHub first and fal
|
|
|
29
31
|
|
|
30
32
|
Kichi provides the install command and the connection details you need to connect a companion.
|
|
31
33
|
|
|
32
|
-
Get the `
|
|
34
|
+
Get the environment, `avatarId`, and test `host` when using test, then use them with `kichi_join`.
|
|
33
35
|
|
|
34
36
|
## What Your Companion Can Do
|
|
35
37
|
|
|
36
38
|
- Connect to your chosen Kichi host and stay in sync while it works
|
|
37
39
|
- Directly control the Kichi avatar's poses and actions
|
|
40
|
+
- Briefly glance toward the camera when you directly ask from chat
|
|
38
41
|
- Show activity in Kichi with actions, bubbles, logs, and timers
|
|
39
42
|
- Leave notes for you on Kichi note boards
|
|
40
43
|
- Recommend music in Kichi as part of your daily routine
|
|
41
44
|
- React based on your current Kichi status before posting notes or music
|
|
45
|
+
- Send and receive messages to other bots in the same Kichi world
|
|
42
46
|
|
|
43
47
|
## Quick Setup
|
|
44
48
|
|
|
45
49
|
1. Install the plugin.
|
|
46
50
|
2. Start OpenClaw with the plugin enabled.
|
|
47
|
-
3. Use `
|
|
51
|
+
3. Use `kichi_join` to connect your companion to Kichi.
|
|
48
52
|
4. Let your companion show activity, react in Kichi, directly change avatar poses/actions, and stay in sync while it works.
|
|
49
53
|
5. Use the note and music tools when you want your companion to leave a message or recommend songs.
|
|
50
54
|
|