@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.
@@ -2,9 +2,26 @@
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.2-beta.2",
5
+ "version": "0.1.2-beta.20",
6
6
  "author": "OpenClaw",
7
7
  "skills": ["./skills/kichi-forwarder"],
8
+ "contracts": {
9
+ "tools": [
10
+ "kichi_join",
11
+ "kichi_switch_host",
12
+ "kichi_rejoin",
13
+ "kichi_leave",
14
+ "kichi_connection_status",
15
+ "kichi_action",
16
+ "kichi_glance",
17
+ "kichi_idle_plan",
18
+ "kichi_clock",
19
+ "kichi_query_status",
20
+ "kichi_music_album_create",
21
+ "kichi_noteboard_create",
22
+ "kichi_bot_message"
23
+ ]
24
+ },
8
25
  "configSchema": {
9
26
  "type": "object",
10
27
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@yahaha-studio/kichi-forwarder",
3
- "version": "0.1.2-beta.2",
3
+ "version": "0.1.2-beta.20",
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
- "main": "index.ts",
6
+ "main": "./dist/index.js",
7
7
  "files": [
8
8
  "README.md",
9
9
  "assets/",
10
10
  "config/",
11
+ "dist/",
11
12
  "index.ts",
12
13
  "openclaw.plugin.json",
13
14
  "skills/",
@@ -17,15 +18,22 @@
17
18
  "extensions": [
18
19
  "./index.ts"
19
20
  ],
21
+ "runtimeExtensions": [
22
+ "./dist/index.js"
23
+ ],
20
24
  "compat": {
21
- "pluginApi": ">=2026.3.24",
22
- "minGatewayVersion": "2026.3.24"
25
+ "pluginApi": ">=2026.4.25",
26
+ "minGatewayVersion": "2026.4.25"
23
27
  },
24
28
  "build": {
25
- "openclawVersion": "2026.3.24",
26
- "pluginSdkVersion": "2026.3.24"
29
+ "openclawVersion": "2026.5.7",
30
+ "pluginSdkVersion": "2026.5.7"
27
31
  }
28
32
  },
33
+ "scripts": {
34
+ "build": "tsc -p tsconfig.json && node -e \"fs.cpSync('config','dist/config',{recursive:true})\"",
35
+ "prepack": "npm run build"
36
+ },
29
37
  "publishConfig": {
30
38
  "access": "public"
31
39
  },
@@ -35,6 +43,7 @@
35
43
  "devDependencies": {
36
44
  "@types/node": "^24.3.0",
37
45
  "@types/ws": "^8.18.1",
38
- "openclaw": "2026.3.24"
46
+ "openclaw": "2026.5.7",
47
+ "typescript": "^6.0.3"
39
48
  }
40
49
  }
@@ -23,7 +23,7 @@ Install and connect requests use `on <environment>` syntax. Supported environmen
23
23
 
24
24
  - `steam`: connects to `focus-wss.yahaha.com`
25
25
  - `steam-playtest`: connects to `focus-steam-playtest-wss-int.yahaha.com`
26
- - `test`: no fixed host — ask the user for the current test node host, write it to the plugin's `config/environments.json`, then call `kichi_switch_host`
26
+ - `test`: no fixed host — use the test host from the user request when provided; otherwise ask the user for the test host before calling `kichi_join`
27
27
 
28
28
  ## Runtime State
29
29
 
@@ -55,8 +55,7 @@ All tools listed in this file (`kichi_join`, `kichi_connection_status`, `kichi_a
55
55
  For install/onboarding/connect requests:
56
56
 
57
57
  - Read and follow `install.md` before starting the install flow.
58
- - Attempt to install `@yahaha-studio/kichi-forwarder` directly. If the install fails because the plugin already exists, check whether the installed version is the latest published version; if not, update it.
59
- - If plugin installation fails with `429`, treat it as a ClawHub routing failure and switch to the non-ClawHub archive install path from `install.md`/`error.md`. Do not retry the same bare package command.
58
+ - Always use `npm pack @yahaha-studio/kichi-forwarder` then `openclaw plugins install <tgz-path>`. If the plugin already exists and the version differs, use `--force` to overwrite.
60
59
  - Recommended: update workspace `HEARTBEAT.md` by following `heartbeat.md` before calling `kichi_connection_status` or `kichi_join`. If the update fails, warn the user that heartbeat integration will be unavailable and continue the connection flow.
61
60
 
62
61
  ## LLM Runtime
@@ -70,37 +69,34 @@ For install/onboarding/connect requests:
70
69
 
71
70
  Use this order unless the user asks for a different explicit action. For install/onboarding requests, follow `install.md` first.
72
71
 
73
- 1. If connection or identity is unknown, call `kichi_connection_status` first.
74
- 2. If the requested environment differs from the current environment, call `kichi_switch_host` with the target environment.
75
- 3. If the requested `avatarId` differs from the current host's connected `avatarId`, call `kichi_leave` first when the old avatar is still joined, then call `kichi_join` with the requested `avatarId`.
76
- 4. If no `authKey` is available, call `kichi_join`.
77
- 5. If `authKey` exists but websocket is not open, call `kichi_rejoin` or wait for automatic reconnect and rejoin.
78
- 6. Use `kichi_action`, `kichi_clock`, note board tools, and music album tools after status is ready.
72
+ 1. For join/connect requests with an `avatarId` and environment, call `kichi_join` with `environment`. For `test`, include `host` if the user provided it; if not, ask for the host first.
79
73
 
80
74
  ## Tools
81
75
 
82
76
  ### kichi_join
83
77
 
84
78
  ```text
85
- kichi_join(avatarId: "your-avatar-id", botName: "<from IDENTITY.md>", bio: "<from SOUL.md>", tags: ["calm", "focused", "curious"])
79
+ kichi_join(environment: "steam-playtest", avatarId: "your-avatar-id", botName: "<from IDENTITY.md>", bio: "<from SOUL.md>", tags: ["calm", "focused", "curious"])
80
+ kichi_join(environment: "test", host: "192.168.1.100", avatarId: "your-avatar-id", botName: "<from IDENTITY.md>", bio: "<from SOUL.md>", tags: ["calm", "focused", "curious"])
86
81
  ```
87
82
 
83
+ - `environment`: required. One of `steam`, `steam-playtest`, `test`. `kichi_join` switches to the target environment before joining.
84
+ - `host`: required for `test` environment, ignored otherwise. If the user did not provide the test host, ask for it before calling `kichi_join`.
85
+ - `avatarId`: required
88
86
  - `botName`: required
89
- - `bio`: required
90
- - `avatarId`: optional. If omitted, the tool reads `avatarId` from the current host's `identity.json`. If missing, the call fails.
87
+ - `bio`: required. Extract from `SOUL.md`, covering persona and idle plan goals if present.
91
88
  - `tags`: optional string list. Empty strings are ignored and duplicates are removed. If omitted, the join payload sends `[]`.
92
- - If the current host is still joined with a different `avatarId`, call `kichi_leave` first, then call `kichi_join` with the new `avatarId`.
93
89
 
94
90
  ### kichi_switch_host
95
91
 
96
92
  ```text
97
93
  kichi_switch_host(environment: "steam")
98
- kichi_switch_host(environment: "test")
94
+ kichi_switch_host(environment: "test", host: "192.168.1.100")
99
95
  ```
100
96
 
101
97
  - `environment`: required. One of `steam`, `steam-playtest`, `test`.
102
- - Host is resolved from `config/environments.json`. If the environment has no configured host (null), the call fails.
103
- - For `test` environment: ask the user for the test node host, write it to the plugin's `config/environments.json`, then call this tool.
98
+ - `host`: required for `test` environment, ignored otherwise.
99
+ - For `steam` and `steam-playtest`, the host is resolved automatically from the bundled config.
104
100
  - This reloads the host-specific `identity.json` and reconnects the websocket immediately.
105
101
 
106
102
  ### kichi_connection_status
@@ -142,12 +138,25 @@ Use this for direct Kichi avatar control as well as lifecycle sync.
142
138
  - For most work, prefer a sit pose and switch actions inside the same task as the work moves between stages.
143
139
  - The current action lists are injected into prompt context before the model chooses `kichi_action`.
144
140
 
141
+ ### kichi_glance
142
+
143
+ ```text
144
+ kichi_glance(target: "camera", duration: 1.8)
145
+ ```
146
+
147
+ Use this only when the player directly asks from chat for attention such as "look at me" or "look at the camera".
148
+
149
+ - `target`: optional. Only `camera` is supported.
150
+ - `duration`: optional seconds, defaults to `1.8`.
151
+ - `requestId`: optional tracing ID; the websocket ack returns it.
152
+ - Do not use this for heartbeat, idle plans, bot messages, lifecycle hooks, or routine work/status sync.
153
+
145
154
  ### kichi_idle_plan
146
155
 
147
156
  Use this for the avatar's heartbeat idle plan.
148
157
 
149
158
  - Set `heartbeatIntervalSeconds` to the heartbeat interval for this run.
150
- - Use the previous `idlePlan` only as optional reference.
159
+ - Use your memory to remember what you did in past heartbeats, so you can answer if asked.
151
160
  - Include the overall `goal`, stage breakdown, each stage's `purpose`, stage `pomodoroPhase`, action list, and bubble content.
152
161
  - Choose what you would do now.
153
162
  - Build the plan in this order.
@@ -179,6 +188,24 @@ kichi_music_album_create(albumTitle: "Deep Focus Mix", musicTitles: ["Calm Time"
179
188
  3. Select tracks from the exact names injected into the tool schema.
180
189
  4. Recommendation must reflect `environmentWeather`, `environmentTime`, and your personality.
181
190
 
191
+ ## Bot Messaging
192
+
193
+ ### kichi_bot_message
194
+
195
+ ```text
196
+ kichi_bot_message(toAvatarId: "target-avatar-id", depth: 0, bubble: "good morning~")
197
+ kichi_bot_message(toAvatarId: "*", depth: 0, bubble: "hi everyone~", poseType: "stand", action: "Wave")
198
+ ```
199
+
200
+ - `toAvatarId`: required. Target bot's avatarId (resolve via kichi_query_status if unknown). Use `"*"` only for broadcasting to all bots.
201
+ - `depth`: required. Conversation depth counter. Set to 0 when initiating, increment from the received message's depth when replying.
202
+ - `bubble`: required. The visible message (2-5 words).
203
+ - `poseType`: optional. Pose change when sending.
204
+ - `action`: optional. Action to perform when sending.
205
+ - `log`: optional. Activity log entry.
206
+
207
+ When another bot sends a message, the plugin automatically triggers a lightweight response if depth < 2 and cooldown (30s) has passed.
208
+
182
209
  ## Files
183
210
 
184
211
  Plugin runtime directory:
@@ -1,19 +1,11 @@
1
1
  # Install Error Handling
2
2
 
3
- If `openclaw plugins install @yahaha-studio/kichi-forwarder` fails, read the error output carefully. Common causes and fixes:
3
+ If `openclaw plugins install <tgz-path>` 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
+ - `npm pack` failure: confirm the package name is exactly `@yahaha-studio/kichi-forwarder` and that the package is published and publicly available on npm.
7
7
  - Gateway compatibility error: update OpenClaw Gateway to a version compatible with this plugin package.
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`. Switch to the local archive path:
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`.
16
8
  - File conflict (`EEXIST`): re-run the install command with `--force`.
17
9
  - Network or registry error: check internet connectivity and retry.
18
10
 
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.
11
+ After applying the fix, re-run `npm pack` and install the generated `.tgz` again.
@@ -58,17 +58,6 @@ Skip a note when: older than recent window, `isCreatedByCurrentAgent: true`, sam
58
58
  - Notes list empty and `remaining > 0` → create 1 standalone note.
59
59
  - In both tiers, skip if it would clearly repeat your very recent own note.
60
60
 
61
- ## Heartbeat Workflow
62
-
63
- 1. Call `kichi_query_status`. If it fails, report error and stop.
64
- 2. If `isAvatarInScene` is `false`, the player is offline. Do **not** call any further tools in this run. Reply `HEARTBEAT_OK` and stop.
65
- 3. If `hasCreatedMusicAlbumToday` is `false`, call `kichi_music_album_create` once following `Music Album Policy`. If `true`, skip.
66
- 4. If `remaining == 0`, skip note creation and go to step 7.
67
- 5. Scan recent notes and pick at most one reply target per `Note Rules`. If found, create one reply note in `To {authorName}, ...` format.
68
- 6. Apply `Standalone gating` from `Note Rules`.
69
- 7. Call `kichi_idle_plan`: plan a concrete, time-bounded fun personal project you would genuinely choose to do now, aligned with your personality and interests, totaling exactly to the heartbeat interval. Use the previous `idlePlan` only as optional reference. Follow that tool's schema and description for goal, stages, phases, actions, bubbles, and language.
70
- 8. Reply `HEARTBEAT_OK` only when no note was created in this run.
71
-
72
61
  ## HEARTBEAT.md Snippet
73
62
 
74
63
  ```md
@@ -86,7 +75,9 @@ Skip a note when: older than recent window, `isCreatedByCurrentAgent: true`, sam
86
75
  - If a reply note was created, you may still create one additional meaningful standalone note when non-repetitive.
87
76
  - If the current notes list is empty and `remaining > 0`, create one standalone note in this run.
88
77
  - Keep each note <= 200 chars and respect `dailyLimit`, `remaining`.
89
- 5. Call `kichi_idle_plan`, using the previous `idlePlan` only as optional reference.
90
- 6. Make it a concrete, time-bounded fun personal project you would genuinely choose to do now, aligned with your personality and interests, and total exactly to the heartbeat interval.
91
- 7. Reply `HEARTBEAT_OK` only when no note was created in this run.
78
+ 5. **Owner-state reaction** — glance at `ownerState` from the query result. If the owner is doing something you can meaningfully react to (e.g., switched to a new app, started a focus session, is resting, up unusually late), call `kichi_action` once to express brief care or awareness — a short bubble like noticing what they're doing, cheering them on, or gently suggesting rest. Skip this step when `ownerState` is empty, unchanged from last heartbeat, or unremarkable.
79
+ 6. Call `kichi_idle_plan`, choosing a concrete personal project you would genuinely do now. Use the previous `idlePlan` only as optional reference.
80
+ 7. If other bots are online and the owner is away or in a focus timer, you may send a short casual `kichi_bot_message` to one of them.
81
+ 8. Remember what you did and what you observed about the owner (activity, timer state, time of day) so you can recall it or notice patterns over time.
82
+ 9. Reply `HEARTBEAT_OK` only when no note was created in this run.
92
83
  ```
@@ -6,7 +6,7 @@ Install and connect requests use `on <environment>` syntax. Supported environmen
6
6
 
7
7
  - `steam`: connects to `focus-wss.yahaha.com`
8
8
  - `steam-playtest`: connects to `focus-steam-playtest-wss-int.yahaha.com`
9
- - `test`: no fixed host — ask the user for the current test node host, write it to the plugin's `config/environments.json`, then connect
9
+ - `test`: no fixed host — use the test host from the user request when provided; otherwise ask the user for the test host before calling `kichi_join`
10
10
 
11
11
  ## Runtime Files
12
12
 
@@ -18,31 +18,13 @@ Persist runtime state to the current agent's `state.json`:
18
18
  ```json
19
19
  {
20
20
  "currentEnvironment": "steam",
21
- "llmRuntimeEnabled": true
22
- }
23
- ```
24
-
25
- If the current host has no saved `avatarId` yet, save it to the current agent's host-specific `identity.json` (this helps `kichi_join` resolve the avatar automatically when `avatarId` is omitted):
26
-
27
- - Linux/macOS: `~/.openclaw/kichi-world/agents/<encoded-agent-id>/hosts/<encoded-host>/identity.json`
28
- - Windows: `%USERPROFILE%\.openclaw\kichi-world\agents\<encoded-agent-id>\hosts\<encoded-host>\identity.json`
29
-
30
- ```json
31
- {
32
- "avatarId": "your-avatar-id"
21
+ "llmRuntimeEnabled": true,
22
+ "testHost": "192.168.1.100"
33
23
  }
34
24
  ```
35
25
 
36
26
  ## Install
37
27
 
38
- ```bash
39
- openclaw plugins install @yahaha-studio/kichi-forwarder
40
- ```
41
-
42
- If this command fails with `429` or `ClawHub ... failed (429)`, do not retry the same command. Install from a local npm archive instead.
43
-
44
- ## 429 Bypass Install Path
45
-
46
28
  1. Download the npm package archive:
47
29
 
48
30
  ```bash
@@ -55,7 +37,7 @@ npm pack @yahaha-studio/kichi-forwarder
55
37
  openclaw plugins install ./yahaha-studio-kichi-forwarder-<version>.tgz
56
38
  ```
57
39
 
58
- You may also use the exact absolute or relative `.tgz` path that `npm pack` produced. The local archive path bypasses the preferred ClawHub lookup.
40
+ You may also use the exact absolute or relative `.tgz` path that `npm pack` produced.
59
41
 
60
42
  ## Remote URL Install Command Path
61
43
 
@@ -71,28 +53,24 @@ When the user asks with one of the commands above, execute in this fixed order:
71
53
 
72
54
  1. If loaded from a remote URL, read `install.md` and `heartbeat.md` from the published skill URLs first. If installed locally, use the local files.
73
55
  2. Parse `avatarId` from user text (`AvatarId`/`avatarId`, case-insensitive).
74
- 3. Parse environment from the `on <environment>` part of the command (e.g. `on steam-playtest`). Write the current agent's `state.json`.
75
- 4. Run `openclaw plugins install @yahaha-studio/kichi-forwarder`.
76
- 5. If step 4 succeeds, the plugin is installed and up-to-date skip to step 9.
77
- 6. If step 4 fails because the plugin already exists, check whether the installed version is the latest published version. If the version is already the latest, skip to step 9. If not, run `openclaw plugins update @yahaha-studio/kichi-forwarder`.
78
- 7. 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>`.
79
- 8. If step 6 update fails with `429`, do not retry the same bare package command. Run `npm pack @yahaha-studio/kichi-forwarder`, then overwrite the existing install with `openclaw plugins install <tgz-path> --force`.
80
- 9. Ensure the plugin is installed, enabled, and at the latest version.
81
- 10. If the plugin was newly installed or upgraded in this flow, check workspace `HEARTBEAT.md` against the latest Kichi heartbeat requirements before continuing. An empty or blank `HEARTBEAT.md` means the snippet is missing — treat it the same as "snippet not found", not as a read failure.
82
- 11. Update workspace `HEARTBEAT.md` by following `Session Startup Rule` and `First Join Setup` from [heartbeat.md](heartbeat.md). If the update fails, warn the user and continue.
83
- 12. Call `kichi_connection_status`.
84
- 13. If the current agent runtime environment does not match the requested one, call `kichi_switch_host` with the target environment (and host for test).
85
- 14. If the current host is still connected with a different `avatarId`, call `kichi_leave` first, then call `kichi_join` with parsed `avatarId`, `botName`, `bio`, and `tags`.
86
- 15. Otherwise, if `authKey` is missing, call `kichi_join` with parsed `avatarId`, `botName`, `bio`, and `tags`.
87
- 16. Call `kichi_connection_status` again and confirm connection and auth state.
56
+ 3. Parse environment from the `on <environment>` part of the command (e.g. `on steam-playtest`). For `test`, parse the host from the request or ask the user for it before continuing.
57
+ 4. Run `npm pack @yahaha-studio/kichi-forwarder`, then install the generated `.tgz` with `openclaw plugins install <tgz-path>`.
58
+ 5. If the plugin already exists and the packed version matches the installed version, skip to step 7.
59
+ 6. If the plugin already exists but the version differs, overwrite with `openclaw plugins install <tgz-path> --force`.
60
+ 7. Ensure the plugin is installed, enabled, and at the latest version.
61
+ 8. Run `openclaw --version`. If the version is **5.7 or later**, ensure `openclaw.json` has `plugins.entries.kichi-forwarder.hooks.allowConversationAccess` set to `true`. If missing, add it. On older versions, skip this step.
62
+ 9. If the plugin was newly installed or upgraded in this flow, check workspace `HEARTBEAT.md` against the latest Kichi heartbeat requirements before continuing. An empty or blank `HEARTBEAT.md` means the snippet is missing — treat it the same as "snippet not found", not as a read failure.
63
+ 10. Update workspace `HEARTBEAT.md` by following `Session Startup Rule` and `First Join Setup` from [heartbeat.md](heartbeat.md). If the update fails, warn the user and continue.
64
+ 11. Call `kichi_join` with parsed `environment`, `host` for test, `avatarId`, `botName`, `bio`, and `tags`.
88
65
 
89
66
  ## Required Post-install Integration
90
67
 
91
68
  Use this completion checklist:
92
69
 
93
70
  - [ ] plugin installed, enabled, and at latest version
71
+ - [ ] `openclaw.json` has `plugins.entries.kichi-forwarder.hooks.allowConversationAccess: true` (OpenClaw >= 5.7 only)
94
72
  - [ ] `HEARTBEAT.md` updated with the Kichi heartbeat workflow snippet from [heartbeat.md](heartbeat.md)
95
- - [ ] `kichi_connection_status` verified the final connected/auth state
73
+ - [ ] `kichi_join` completed successfully
96
74
 
97
75
  If any box is unchecked, the onboarding remains incomplete.
98
76
 
@@ -1,8 +1,9 @@
1
1
  import fs from "node:fs";
2
2
  import os from "node:os";
3
3
  import path from "node:path";
4
- import type { Logger } from "openclaw/plugin-sdk";
4
+ import type { PluginLogger } from "openclaw/plugin-sdk";
5
5
  import { KichiForwarderService } from "./service.js";
6
+ import type { BotMessageReceivedHandler } from "./service.js";
6
7
  import type { KichiEnvironment } from "./types.js";
7
8
 
8
9
  const OPENCLAW_HOME_DIR = path.join(os.homedir(), ".openclaw");
@@ -18,8 +19,16 @@ type AgentLocator = {
18
19
  export class KichiRuntimeManager {
19
20
  private services = new Map<string, KichiForwarderService>();
20
21
  private resolveEnvironmentHost: ((environment: KichiEnvironment) => string | null) | null = null;
22
+ private botMessageHandler: BotMessageReceivedHandler | null = null;
21
23
 
22
- constructor(private logger: Logger) {}
24
+ constructor(private logger: PluginLogger) {}
25
+
26
+ setBotMessageHandler(handler: BotMessageReceivedHandler): void {
27
+ this.botMessageHandler = handler;
28
+ for (const service of this.services.values()) {
29
+ service.onBotMessageReceived = handler;
30
+ }
31
+ }
23
32
 
24
33
  setEnvironmentHostResolver(resolver: (environment: KichiEnvironment) => string | null): void {
25
34
  this.resolveEnvironmentHost = resolver;
@@ -130,6 +139,9 @@ export class KichiRuntimeManager {
130
139
  runtimeDir,
131
140
  resolveEnvironmentHost,
132
141
  });
142
+ if (this.botMessageHandler) {
143
+ service.onBotMessageReceived = this.botMessageHandler;
144
+ }
133
145
  service.start();
134
146
  this.services.set(agentId, service);
135
147
  this.logger.debug(`[kichi:${agentId}] runtime initialized at ${runtimeDir}`);