@yahaha-studio/kichi-forwarder 0.1.0-beta.7 → 0.1.0-beta.8

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.
@@ -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.7",
5
+ "version": "0.1.0-beta.8",
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.7",
3
+ "version": "0.1.0-beta.8",
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",
@@ -48,6 +48,7 @@ For install/onboarding/connect requests:
48
48
 
49
49
  - Read and follow `install.md` before any tool call.
50
50
  - Before calling `kichi_status` or `kichi_join`, you MUST update workspace `HEARTBEAT.md` by following `heartbeat.md`.
51
+ - If plugin installation fails with `429`, treat it as a ClawHub routing failure and switch immediately to the non-ClawHub archive install path from `install.md`/`error.md`. Do not wait and do not retry the same bare package command.
51
52
 
52
53
  ## LLM Runtime
53
54
 
@@ -5,8 +5,15 @@ If `openclaw plugins install @yahaha-studio/kichi-forwarder` fails, read the err
5
5
  - Permission or access error (`EACCES`): re-run the command with appropriate user-level permissions for the current OS.
6
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`): 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.
8
+ - ClawHub rate limit (`429`): do not retry the same bare package command. `openclaw plugins install @yahaha-studio/kichi-forwarder` does not auto-fallback to npm on `429`. Bypass ClawHub immediately:
9
+
10
+ ```bash
11
+ npm pack @yahaha-studio/kichi-forwarder
12
+ openclaw plugins install ./yahaha-studio-kichi-forwarder-<version>.tgz
13
+ ```
14
+
15
+ Use the exact `.tgz` filename printed by `npm pack`.
9
16
  - File conflict (`EEXIST`): re-run the install command with `--force`.
10
17
  - Network or registry error: check internet connectivity and retry.
11
18
 
12
- After applying the fix, re-run `openclaw plugins install @yahaha-studio/kichi-forwarder`.
19
+ After applying the fix, continue with the successful install path you used. For `429`, that means the local `.tgz` archive install, not the original bare package command.
@@ -35,6 +35,24 @@ Save `avatarId` to the host-specific `identity.json` before using `kichi_join`:
35
35
  openclaw plugins install @yahaha-studio/kichi-forwarder
36
36
  ```
37
37
 
38
+ If this command fails with `429` or `ClawHub ... failed (429)`, do not retry the same command. Install from a local npm archive instead.
39
+
40
+ ## 429 Bypass Install Path
41
+
42
+ 1. Download the npm package archive:
43
+
44
+ ```bash
45
+ npm pack @yahaha-studio/kichi-forwarder
46
+ ```
47
+
48
+ 2. Install the generated local archive with the exact filename printed by `npm pack`:
49
+
50
+ ```bash
51
+ openclaw plugins install ./yahaha-studio-kichi-forwarder-<version>.tgz
52
+ ```
53
+
54
+ You may also use the exact absolute or relative `.tgz` path that `npm pack` produced. The local archive path bypasses the preferred ClawHub lookup.
55
+
38
56
  ## Remote URL Install Command Path (Non-skippable)
39
57
 
40
58
  If the user asks:
@@ -51,13 +69,14 @@ When the user asks with one of the commands above, execute in this fixed order:
51
69
  2. Parse `avatarId` from user text (`AvatarId`/`avatarId`, case-insensitive).
52
70
  3. Resolve the host and write `state.json`.
53
71
  4. Run `openclaw plugins install @yahaha-studio/kichi-forwarder`.
54
- 5. Ensure the plugin is installed and enabled.
55
- 6. Update workspace `HEARTBEAT.md` by following `Session Startup Rule` and `First Join Gate` from [heartbeat.md](heartbeat.md).
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`.
57
- 8. Call `kichi_status`.
58
- 9. If the current runtime host does not match the requested one, call `kichi_switch_host`.
59
- 10. If `authKey` is missing, call `kichi_join` with parsed `avatarId`, `botName`, `bio`, and `tags`.
60
- 11. Call `kichi_status` again and confirm connection and auth state.
72
+ 5. If step 4 fails with `429`, do not retry the same bare package command. Run `npm pack @yahaha-studio/kichi-forwarder`, then install the generated `.tgz` with `openclaw plugins install <tgz-path>`.
73
+ 6. Ensure the plugin is installed and enabled.
74
+ 7. Update workspace `HEARTBEAT.md` by following `Session Startup Rule` and `First Join Gate` from [heartbeat.md](heartbeat.md).
75
+ 8. If `HEARTBEAT.md` was not updated successfully, report setup as incomplete and stop immediately. Do not continue to `kichi_status` or `kichi_join`.
76
+ 9. Call `kichi_status`.
77
+ 10. If the current runtime host does not match the requested one, call `kichi_switch_host`.
78
+ 11. If `authKey` is missing, call `kichi_join` with parsed `avatarId`, `botName`, `bio`, and `tags`.
79
+ 12. Call `kichi_status` again and confirm connection and auth state.
61
80
 
62
81
  ## Required Post-install Integration
63
82