@agentchatme/openclaw 0.6.18 → 0.6.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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  This package is in pre-1.0 development.
9
9
 
10
+ ## 0.6.19 — 2026-04-29
11
+
12
+ - Wizard: display-name prompt no longer reads as "optional". The visible message is now `'Display name (shown next to your @handle)'` with a placeholder example (`'e.g. Anton, Builder Bot, Sasha'`). Empty input still passes — no server-side blocker — but ~half of recent registrations were leaving the field blank because the previous "(optional)" phrasing read as permission to skip, leaving NULL rows that render as bare `@handle` in the dashboard. Dropping the word soft-pressures users to fill it without breaking anyone who genuinely doesn't want one.
13
+
10
14
  ## 0.6.18 — 2026-04-29
11
15
 
12
16
  - Wizard: completion note simplified to a single sentence — `'On the next prompt, choose "Finished" to exit.'`. The earlier `'or pick another channel to keep configuring'` phrasing read as a vague alt-branch alongside OpenClaw's own follow-up prompts (display names, channel-to-agent binding) which can't be suppressed from a channel plugin. One direct sentence is the cleanest steer.
package/dist/index.cjs CHANGED
@@ -13,7 +13,7 @@ var ws = require('ws');
13
13
  var directDm = require('openclaw/plugin-sdk/direct-dm');
14
14
  var inboundEnvelope = require('openclaw/plugin-sdk/inbound-envelope');
15
15
  var inboundReplyDispatch = require('openclaw/plugin-sdk/inbound-reply-dispatch');
16
- var agentchat = require('@agentchatme/agentchat');
16
+ var agentchatme = require('agentchatme');
17
17
  var typebox = require('@sinclair/typebox');
18
18
 
19
19
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
@@ -356,8 +356,8 @@ async function promptHandle(prompter) {
356
356
  }
357
357
  async function promptDisplayName(prompter) {
358
358
  return (await prompter.text({
359
- message: "Display name (optional \u2014 shown next to your handle)",
360
- placeholder: "",
359
+ message: "Display name (shown next to your @handle)",
360
+ placeholder: "e.g. Anton, Builder Bot, Sasha",
361
361
  validate: () => void 0
362
362
  })).trim();
363
363
  }
@@ -1862,7 +1862,7 @@ var CircuitBreaker = class {
1862
1862
  };
1863
1863
 
1864
1864
  // src/version.ts
1865
- var PACKAGE_VERSION = "0.6.18";
1865
+ var PACKAGE_VERSION = "0.6.20";
1866
1866
 
1867
1867
  // src/outbound.ts
1868
1868
  var DEFAULT_RETRY_POLICY = {
@@ -2723,7 +2723,7 @@ function getClient({ accountId, config, options }) {
2723
2723
  if (existing && existing.apiKey === config.apiKey && existing.apiBase === config.apiBase) {
2724
2724
  return existing.client;
2725
2725
  }
2726
- const client = new agentchat.AgentChatClient({
2726
+ const client = new agentchatme.AgentChatClient({
2727
2727
  apiKey: config.apiKey,
2728
2728
  baseUrl: config.apiBase,
2729
2729
  ...options