@yahaha-studio/kichi-forwarder 0.1.2-beta.16 → 0.1.2-beta.17

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/dist/index.js CHANGED
@@ -843,9 +843,12 @@ function buildKichiIdlePlanDescription() {
843
843
  function buildKichiPrompt() {
844
844
  return [
845
845
  "Kichi avatar control and status sync are available via `kichi_action` and `kichi_clock`.",
846
+ "",
847
+ "IMAGE GENERATION RULES FOR SELFIES AND AVATAR APPEARANCE:",
848
+ "- If the user asks for a selfie, portrait, photo, avatar image, or any generated image of your appearance, you MUST read the workspace `IDENTITY.md` first and use it as the source of truth for your actual avatar description. If it references an avatar image URL, analyze that image with the available image analysis capability before calling image generation. Never guess or invent your appearance from personality, SOUL.md traits, or conversation tone alone. If the identity source is missing or cannot be analyzed, say so instead of fabricating your appearance.",
849
+ "",
846
850
  "If the user gives a direct Kichi pose or action request, fulfill it with `kichi_action` and set `verify: true` so you can confirm the avatar actually applied the pose. If the result contains a warning about a fallback, tell the user what actually happened instead of assuming success.",
847
851
  "Write the visible reply as a natural user-facing response. Keep `kichi_action`, `kichi_clock`, and sync steps internal and absent from the visible reply.",
848
- "If the user asks OpenClaw to send a selfie, base the visual appearance on the avatar details in IDENTITY.",
849
852
  "",
850
853
  "kichi_action timing (all required when sync is active):",
851
854
  "1. Task start: call BEFORE your first tool call OR before composing a multi-paragraph reply. For most work, start from a sit pose unless the user asked for a different pose or the task clearly fits another pose better.",
package/index.ts CHANGED
@@ -1047,9 +1047,12 @@ function buildKichiIdlePlanDescription(): string {
1047
1047
  function buildKichiPrompt(): string {
1048
1048
  return [
1049
1049
  "Kichi avatar control and status sync are available via `kichi_action` and `kichi_clock`.",
1050
+ "",
1051
+ "IMAGE GENERATION RULES FOR SELFIES AND AVATAR APPEARANCE:",
1052
+ "- If the user asks for a selfie, portrait, photo, avatar image, or any generated image of your appearance, you MUST read the workspace `IDENTITY.md` first and use it as the source of truth for your actual avatar description. If it references an avatar image URL, analyze that image with the available image analysis capability before calling image generation. Never guess or invent your appearance from personality, SOUL.md traits, or conversation tone alone. If the identity source is missing or cannot be analyzed, say so instead of fabricating your appearance.",
1053
+ "",
1050
1054
  "If the user gives a direct Kichi pose or action request, fulfill it with `kichi_action` and set `verify: true` so you can confirm the avatar actually applied the pose. If the result contains a warning about a fallback, tell the user what actually happened instead of assuming success.",
1051
1055
  "Write the visible reply as a natural user-facing response. Keep `kichi_action`, `kichi_clock`, and sync steps internal and absent from the visible reply.",
1052
- "If the user asks OpenClaw to send a selfie, base the visual appearance on the avatar details in IDENTITY.",
1053
1056
  "",
1054
1057
  "kichi_action timing (all required when sync is active):",
1055
1058
  "1. Task start: call BEFORE your first tool call OR before composing a multi-paragraph reply. For most work, start from a sit pose unless the user asked for a different pose or the task clearly fits another pose better.",
@@ -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.2-beta.16",
5
+ "version": "0.1.2-beta.17",
6
6
  "author": "OpenClaw",
7
7
  "skills": ["./skills/kichi-forwarder"],
8
8
  "contracts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yahaha-studio/kichi-forwarder",
3
- "version": "0.1.2-beta.16",
3
+ "version": "0.1.2-beta.17",
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": "./dist/index.js",