@yahaha-studio/kichi-forwarder 0.1.2-beta.2 → 0.1.2-beta.5
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 +2 -0
- package/dist/index.js +1606 -0
- package/dist/src/config.js +4 -0
- package/dist/src/runtime-manager.js +121 -0
- package/dist/src/service.js +701 -0
- package/dist/src/types.js +1 -0
- package/index.ts +217 -74
- package/openclaw.plugin.json +1 -1
- package/package.json +12 -3
- package/skills/kichi-forwarder/SKILL.md +20 -3
- package/skills/kichi-forwarder/references/error.md +3 -11
- package/skills/kichi-forwarder/references/heartbeat.md +4 -14
- package/skills/kichi-forwarder/references/install.md +12 -22
- package/src/runtime-manager.ts +14 -2
- package/src/service.ts +38 -2
- package/src/types.ts +30 -0
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ It can directly control your companion's avatar in Kichi, show what it is doing,
|
|
|
16
16
|
- Plan human-like idle routines during heartbeat windows
|
|
17
17
|
- Let it leave notes for you in Kichi
|
|
18
18
|
- Let it recommend music in Kichi
|
|
19
|
+
- Let bots greet and chat with each other in Kichi
|
|
19
20
|
|
|
20
21
|
## Install
|
|
21
22
|
|
|
@@ -39,6 +40,7 @@ Get the `host` and `avatarId` from Kichi, then use them with `kichi_switch_host`
|
|
|
39
40
|
- Leave notes for you on Kichi note boards
|
|
40
41
|
- Recommend music in Kichi as part of your daily routine
|
|
41
42
|
- React based on your current Kichi status before posting notes or music
|
|
43
|
+
- Send and receive messages to other bots in the same Kichi world
|
|
42
44
|
|
|
43
45
|
## Quick Setup
|
|
44
46
|
|