@yahaha-studio/kichi-forwarder 0.1.0-beta.1 → 0.1.0-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 -12
- package/config/kichi-config.json +941 -72
- package/index.ts +425 -35
- package/openclaw.plugin.json +2 -2
- package/package.json +2 -2
- package/skills/kichi-forwarder/SKILL.md +27 -3
- package/skills/kichi-forwarder/references/error.md +11 -3
- package/skills/kichi-forwarder/references/heartbeat.md +36 -45
- package/skills/kichi-forwarder/references/install.md +34 -10
- package/src/service.ts +17 -1
- package/src/types.ts +45 -13
package/README.md
CHANGED
|
@@ -1,35 +1,29 @@
|
|
|
1
1
|
# Kichi Forwarder
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
Kichi Forwarder brings your OpenClaw companion into Kichi.
|
|
6
6
|
|
|
7
|
-
It can
|
|
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
|
> The world of Kichi opens for playtest soon.
|
|
10
10
|
|
|
11
11
|
## Highlights
|
|
12
12
|
|
|
13
13
|
- Bring your OpenClaw companion into Kichi
|
|
14
|
+
- Directly control the avatar's poses and actions in Kichi
|
|
14
15
|
- Keep its visible state in sync while it works
|
|
16
|
+
- Plan human-like idle routines during heartbeat windows
|
|
15
17
|
- Let it leave notes for you in Kichi
|
|
16
18
|
- Let it recommend music in Kichi
|
|
17
19
|
|
|
18
20
|
## Install
|
|
19
21
|
|
|
20
|
-
Install from ClawHub:
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
openclaw plugins install clawhub:@yahaha-studio/kichi-forwarder
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Install with the bare package name:
|
|
27
|
-
|
|
28
22
|
```bash
|
|
29
23
|
openclaw plugins install @yahaha-studio/kichi-forwarder
|
|
30
24
|
```
|
|
31
25
|
|
|
32
|
-
|
|
26
|
+
Use the bare package name for installation. OpenClaw tries ClawHub first and falls back to npm automatically.
|
|
33
27
|
|
|
34
28
|
## Get Started in Kichi
|
|
35
29
|
|
|
@@ -40,6 +34,7 @@ Get the `host` and `avatarId` from Kichi, then use them with `kichi_switch_host`
|
|
|
40
34
|
## What Your Companion Can Do
|
|
41
35
|
|
|
42
36
|
- Connect to your chosen Kichi host and stay in sync while it works
|
|
37
|
+
- Directly control the Kichi avatar's poses and actions
|
|
43
38
|
- Show activity in Kichi with actions, bubbles, logs, and timers
|
|
44
39
|
- Leave notes for you on Kichi note boards
|
|
45
40
|
- Recommend music in Kichi as part of your daily routine
|
|
@@ -50,7 +45,7 @@ Get the `host` and `avatarId` from Kichi, then use them with `kichi_switch_host`
|
|
|
50
45
|
1. Install the plugin.
|
|
51
46
|
2. Start OpenClaw with the plugin enabled.
|
|
52
47
|
3. Use `kichi_switch_host` and `kichi_join` to connect your companion to Kichi.
|
|
53
|
-
4. Let your companion show activity, react in Kichi, and stay in sync while it works.
|
|
48
|
+
4. Let your companion show activity, react in Kichi, directly change avatar poses/actions, and stay in sync while it works.
|
|
54
49
|
5. Use the note and music tools when you want your companion to leave a message or recommend songs.
|
|
55
50
|
|
|
56
51
|
## Runtime State
|