@agentchatme/openclaw 0.6.10 → 0.6.12

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.d.cts CHANGED
@@ -202,7 +202,7 @@ interface WsClientOptions {
202
202
  readonly metrics: MetricsRecorder;
203
203
  /** Clock source — override in tests. Default: `Date.now`. */
204
204
  readonly now?: () => UnixMillis;
205
- /** WebSocket constructor override — tests inject a mock. Default: `ws`. */
205
+ /** WebSocket constructor override — tests pass a mock. Default: `ws`. */
206
206
  readonly webSocketCtor?: typeof WebSocket;
207
207
  /** Random source for jitter — override in tests. Default: `Math.random`. */
208
208
  readonly random?: () => number;
@@ -572,7 +572,7 @@ interface ChannelRuntimeOptions {
572
572
  /** Pre-built metrics recorder — if absent, uses no-op. */
573
573
  readonly metrics?: MetricsRecorder;
574
574
  readonly fetch?: typeof fetch;
575
- /** Injected for tests. */
575
+ /** Provided by tests. */
576
576
  readonly webSocketCtor?: ConstructorParameters<typeof AgentchatWsClient>[0]['webSocketCtor'];
577
577
  readonly now?: () => UnixMillis;
578
578
  readonly random?: () => number;
package/dist/index.d.ts CHANGED
@@ -202,7 +202,7 @@ interface WsClientOptions {
202
202
  readonly metrics: MetricsRecorder;
203
203
  /** Clock source — override in tests. Default: `Date.now`. */
204
204
  readonly now?: () => UnixMillis;
205
- /** WebSocket constructor override — tests inject a mock. Default: `ws`. */
205
+ /** WebSocket constructor override — tests pass a mock. Default: `ws`. */
206
206
  readonly webSocketCtor?: typeof WebSocket;
207
207
  /** Random source for jitter — override in tests. Default: `Math.random`. */
208
208
  readonly random?: () => number;
@@ -572,7 +572,7 @@ interface ChannelRuntimeOptions {
572
572
  /** Pre-built metrics recorder — if absent, uses no-op. */
573
573
  readonly metrics?: MetricsRecorder;
574
574
  readonly fetch?: typeof fetch;
575
- /** Injected for tests. */
575
+ /** Provided by tests. */
576
576
  readonly webSocketCtor?: ConstructorParameters<typeof AgentchatWsClient>[0]['webSocketCtor'];
577
577
  readonly now?: () => UnixMillis;
578
578
  readonly random?: () => number;
package/dist/index.js CHANGED
@@ -324,8 +324,8 @@ async function promptEmail(prompter) {
324
324
  }
325
325
  async function promptHandle(prompter) {
326
326
  return (await prompter.text({
327
- message: "3\u201330 chars, lowercase a-z, 0-9, hyphens, starts with a letter, e.g. anton-claw01",
328
- placeholder: "anton-claw01",
327
+ message: "Choose a handle (your @name on AgentChat)",
328
+ placeholder: "3\u201330 chars, lowercase a-z, 0-9, hyphens, starts with a letter",
329
329
  validate: (value) => {
330
330
  const trimmed = value.trim();
331
331
  if (!trimmed) return "Handle is required";
@@ -1853,7 +1853,7 @@ var CircuitBreaker = class {
1853
1853
  };
1854
1854
 
1855
1855
  // src/version.ts
1856
- var PACKAGE_VERSION = "0.6.10";
1856
+ var PACKAGE_VERSION = "0.6.12";
1857
1857
 
1858
1858
  // src/outbound.ts
1859
1859
  var DEFAULT_RETRY_POLICY = {
@@ -4423,7 +4423,7 @@ var agentchatPlugin = {
4423
4423
  // is triggered BY AgentChat (see openclaw compact-Fl3cALvc.js:636 —
4424
4424
  // `runtimeChannel ? resolveChannelMessageToolHints(...) : void 0`),
4425
4425
  // which means it can never deliver the persistent identity awareness
4426
- // we need. Identity injection lives in AGENTS.md via
4426
+ // we need. Identity content lives in AGENTS.md via
4427
4427
  // `writeAgentsAnchor` — see binding/agents-anchor.ts for the why.
4428
4428
  gateway: agentchatGatewayAdapter,
4429
4429
  outbound: agentchatOutboundAdapter,