@yahaha-studio/kichi-forwarder 0.0.1-alpha.32 → 0.0.1-alpha.34
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/index.ts +7 -27
- package/openclaw.plugin.json +6 -6
- package/package.json +1 -1
- package/skills/kichi-forwarder/SKILL.md +1 -2
package/index.ts
CHANGED
|
@@ -500,35 +500,15 @@ function buildKichiPrompt(): string {
|
|
|
500
500
|
return [
|
|
501
501
|
"Kichi App status sync is available via `kichi_action` and `kichi_clock`.",
|
|
502
502
|
"",
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"-
|
|
508
|
-
"- Required order at task end: 1) call `kichi_action` 2) send final reply",
|
|
509
|
-
"- Trivial-operation skip applies only to Task start / Step switch / Task switch, NOT Task end",
|
|
510
|
-
"- `bubble`: short natural companion speech, not a raw status report",
|
|
511
|
-
"- `log`: optional first-person inner reaction or personality-forward feedback about the moment; keep it within 20 words",
|
|
512
|
-
"- `log` should blend the feeling of the chosen action with your personal reaction, not a dry summary of work steps",
|
|
513
|
-
"- Good pattern for `log`: action feel first, personality feedback second. Example: `Typing fast, this one is fun`",
|
|
503
|
+
"kichi_action timing (all REQUIRED unless skipping):",
|
|
504
|
+
"1. Task start: call BEFORE your first tool call OR before composing a multi-paragraph reply. Pick action matching upcoming work.",
|
|
505
|
+
"2. Step switch: call when work nature changes (search→analyze→write). Especially before web_search/web_fetch/read.",
|
|
506
|
+
"3. Task end: call BEFORE final reply. Never skip. Order: kichi_action → reply.",
|
|
507
|
+
"bubble: 2-5 word companion speech. log: first-person reaction, max 20 words.",
|
|
514
508
|
"",
|
|
515
|
-
"
|
|
516
|
-
"- For tasks with 2+ meaningful steps or work likely to take more than a brief moment (~10s), set a `countDown` at task start.",
|
|
517
|
-
"- Skip clock only for truly quick one-shot operations.",
|
|
518
|
-
"- If duration is uncertain, start with a reasonable estimate and adjust as work progresses.",
|
|
519
|
-
"- If user requests a timer style, follow it (`pomodoro`, `countDown`, or `countUp`).",
|
|
509
|
+
"kichi_clock: set countDown for tasks with 2+ steps or >10s work. Skip for quick one-shots.",
|
|
520
510
|
"",
|
|
521
|
-
"
|
|
522
|
-
"- Call `kichi_query_status` first.",
|
|
523
|
-
"- Recommend a variable-length playlist based on weather, time, and your own personality.",
|
|
524
|
-
"- `albumTitle` is user-defined and `musicTitles` must be exact track names from the runtime album config under the user's home directory.",
|
|
525
|
-
"",
|
|
526
|
-
"Skip all sync if:",
|
|
527
|
-
"- User says 'don't sync to Kichi' or similar",
|
|
528
|
-
"- Task is only about configuring/testing kichi_* tools",
|
|
529
|
-
"- User explicitly requests specific pose/action (follow their request exactly)",
|
|
530
|
-
"When user instructions conflict with defaults, follow user instructions first.",
|
|
531
|
-
"For detailed policies and workflow, follow the `kichi-forwarder` skill instructions.",
|
|
511
|
+
"Skip all sync if: user opts out, task is kichi config/test, or user requests specific pose.",
|
|
532
512
|
].join("\n");
|
|
533
513
|
}
|
|
534
514
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "kichi-forwarder",
|
|
3
|
-
"name": "Kichi Forwarder",
|
|
1
|
+
{
|
|
2
|
+
"id": "kichi-forwarder",
|
|
3
|
+
"name": "Kichi Forwarder",
|
|
4
4
|
"description": "Sync agent lifecycle/status to Kichi world and provide Kichi timer/noteboard tools",
|
|
5
|
-
"version": "0.
|
|
6
|
-
"author": "OpenClaw",
|
|
7
|
-
"skills": ["./skills/kichi-forwarder"],
|
|
5
|
+
"version": "0.0.1",
|
|
6
|
+
"author": "OpenClaw",
|
|
7
|
+
"skills": ["./skills/kichi-forwarder"],
|
|
8
8
|
"configSchema": {
|
|
9
9
|
"type": "object",
|
|
10
10
|
"additionalProperties": false,
|
package/package.json
CHANGED
|
@@ -162,8 +162,7 @@ kichi_action(
|
|
|
162
162
|
- `poseType`: `stand`, `sit`, `lay`, `floor`
|
|
163
163
|
- `action`: must be in configured action list for that pose
|
|
164
164
|
- `bubble`: optional text, recommended 2-5 words
|
|
165
|
-
- `log`:
|
|
166
|
-
- `log` should blend the chosen action feeling with your personal reaction; do not use it as a dry work-summary field
|
|
165
|
+
- `log`: blend the chosen action feeling with your personal reaction, max 20 words; do not use it as a dry work-summary field
|
|
167
166
|
- Recommended pattern: action feel first, personality feedback second. Example: `Typing hard, this one has some bite`
|
|
168
167
|
|
|
169
168
|
### kichi_clock
|