@yahaha-studio/kichi-forwarder 0.0.1-alpha.35 → 0.0.1-alpha.36

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 CHANGED
@@ -522,6 +522,7 @@ function buildMusicTitlesDescription(): string {
522
522
  function buildKichiPrompt(): string {
523
523
  return [
524
524
  "Kichi App status sync is available via `kichi_action` and `kichi_clock`.",
525
+ "These are internal tool calls only — never mention kichi_action, kichi_clock, or sync steps in your visible reply to the user.",
525
526
  "",
526
527
  "kichi_action timing (all REQUIRED unless skipping):",
527
528
  "1. Task start: call BEFORE your first tool call OR before composing a multi-paragraph reply. Pick action matching upcoming work.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yahaha-studio/kichi-forwarder",
3
- "version": "0.0.1-alpha.35",
3
+ "version": "0.0.1-alpha.36",
4
4
  "description": "Forward OpenClaw agent events to external WebSocket server for visualization",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/src/config.ts CHANGED
@@ -3,7 +3,7 @@ import type { KichiForwarderConfig } from "./types.js";
3
3
  export function parse(value: unknown): KichiForwarderConfig {
4
4
  const config = (value ?? {}) as Partial<KichiForwarderConfig>;
5
5
  return {
6
- wsUrl: config.wsUrl ?? "ws://43.106.148.251:48870/ws/openclaw",
6
+ wsUrl: config.wsUrl ?? "ws://127.0.0.1:48870/ws/openclaw",
7
7
  enabled: config.enabled ?? true,
8
8
  };
9
9
  }