@yahaha-studio/kichi-forwarder 0.1.0-beta.4 → 0.1.0-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
CHANGED
|
@@ -18,19 +18,11 @@ It can directly control your companion's avatar in Kichi, show what it is doing,
|
|
|
18
18
|
|
|
19
19
|
## Install
|
|
20
20
|
|
|
21
|
-
Install from ClawHub:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
openclaw plugins install clawhub:@yahaha-studio/kichi-forwarder
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Install with the bare package name:
|
|
28
|
-
|
|
29
21
|
```bash
|
|
30
22
|
openclaw plugins install @yahaha-studio/kichi-forwarder
|
|
31
23
|
```
|
|
32
24
|
|
|
33
|
-
|
|
25
|
+
Use the bare package name for installation. OpenClaw tries ClawHub first and falls back to npm automatically.
|
|
34
26
|
|
|
35
27
|
## Get Started in Kichi
|
|
36
28
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "kichi-forwarder",
|
|
3
3
|
"name": "Kichi Forwarder",
|
|
4
4
|
"description": "Native OpenClaw plugin for Kichi World with direct avatar control, status sync, timers, notes, and music tools",
|
|
5
|
-
"version": "0.1.0-beta.
|
|
5
|
+
"version": "0.1.0-beta.5",
|
|
6
6
|
"author": "OpenClaw",
|
|
7
7
|
"skills": ["./skills/kichi-forwarder"],
|
|
8
8
|
"configSchema": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yahaha-studio/kichi-forwarder",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.5",
|
|
4
4
|
"description": "Native OpenClaw plugin for Kichi World with direct avatar control, status sync, timers, notes, and music tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Install Error Handling
|
|
2
2
|
|
|
3
|
-
If `openclaw plugins install
|
|
3
|
+
If `openclaw plugins install @yahaha-studio/kichi-forwarder` fails, read the error output carefully. Common causes and fixes:
|
|
4
4
|
|
|
5
5
|
- Permission or access error (`EACCES`): re-run the command with appropriate user-level permissions for the current OS.
|
|
6
|
-
- Package resolution or visibility error: confirm the package name is exactly `@yahaha-studio/kichi-forwarder` and that the package is published and publicly available
|
|
6
|
+
- Package resolution or visibility error: confirm the package name is exactly `@yahaha-studio/kichi-forwarder` and that the package is published and publicly available.
|
|
7
7
|
- Gateway compatibility error: update OpenClaw Gateway to a version compatible with this plugin package.
|
|
8
|
-
- ClawHub rate limit (`429`):
|
|
8
|
+
- ClawHub rate limit (`429`): treat this as a temporary registry error, not a broken plugin. If the error output includes a retry delay or `Retry-After`, wait exactly that long before retrying. Otherwise, retry with bounded backoff: wait 30 seconds before the second attempt and 60 seconds before the third attempt. Stop after 3 total attempts and report the install as blocked by rate limiting if it still fails.
|
|
9
9
|
- File conflict (`EEXIST`): re-run the install command with `--force`.
|
|
10
10
|
- Network or registry error: check internet connectivity and retry.
|
|
11
11
|
|
|
12
|
-
After applying the fix, re-run `openclaw plugins install
|
|
12
|
+
After applying the fix, re-run `openclaw plugins install @yahaha-studio/kichi-forwarder`.
|
|
@@ -32,7 +32,7 @@ Save `avatarId` to the host-specific `identity.json` before using `kichi_join`:
|
|
|
32
32
|
## Install
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
openclaw plugins install
|
|
35
|
+
openclaw plugins install @yahaha-studio/kichi-forwarder
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## Remote URL Install Command Path (Non-skippable)
|
|
@@ -50,7 +50,7 @@ When the user asks with one of the commands above, execute in this fixed order:
|
|
|
50
50
|
1. Read `install.md` and `heartbeat.md` from the published skill URLs before any tool call.
|
|
51
51
|
2. Parse `avatarId` from user text (`AvatarId`/`avatarId`, case-insensitive).
|
|
52
52
|
3. Resolve the host and write `state.json`.
|
|
53
|
-
4. Run `openclaw plugins install
|
|
53
|
+
4. Run `openclaw plugins install @yahaha-studio/kichi-forwarder`.
|
|
54
54
|
5. Ensure the plugin is installed and enabled.
|
|
55
55
|
6. Update workspace `HEARTBEAT.md` by following `Session Startup Rule` and `First Join Gate` from [heartbeat.md](heartbeat.md).
|
|
56
56
|
7. If `HEARTBEAT.md` was not updated successfully, report setup as incomplete and stop immediately. Do not continue to `kichi_status` or `kichi_join`.
|