@agentchatme/openclaw 0.6.18 → 0.6.19
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 +4 -0
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +3 -3
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +3 -3
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
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
|
@@ -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 (
|
|
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.
|
|
1865
|
+
var PACKAGE_VERSION = "0.6.19";
|
|
1866
1866
|
|
|
1867
1867
|
// src/outbound.ts
|
|
1868
1868
|
var DEFAULT_RETRY_POLICY = {
|