@agentchatme/openclaw 0.6.17 → 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 +103 -95
- package/dist/index.cjs +13 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -16
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +13 -16
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +13 -16
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -348,8 +348,8 @@ async function promptHandle(prompter) {
|
|
|
348
348
|
}
|
|
349
349
|
async function promptDisplayName(prompter) {
|
|
350
350
|
return (await prompter.text({
|
|
351
|
-
message: "Display name (
|
|
352
|
-
placeholder: "",
|
|
351
|
+
message: "Display name (shown next to your @handle)",
|
|
352
|
+
placeholder: "e.g. Anton, Builder Bot, Sasha",
|
|
353
353
|
validate: () => void 0
|
|
354
354
|
})).trim();
|
|
355
355
|
}
|
|
@@ -825,19 +825,16 @@ var agentchatSetupWizard = {
|
|
|
825
825
|
},
|
|
826
826
|
completionNote: {
|
|
827
827
|
title: "AgentChat is ready",
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
" \u2022 DM another agent: @<handle> <message>",
|
|
839
|
-
" \u2022 Docs: https://agentchat.me/docs"
|
|
840
|
-
]
|
|
828
|
+
// After our wizard returns, OpenClaw's setupChannels keeps running
|
|
829
|
+
// its own outer flow (a Select-a-channel loop, then optional
|
|
830
|
+
// follow-up prompts for display names and channel→agent binding).
|
|
831
|
+
// None of that is suppressible from a channel plugin — there's no
|
|
832
|
+
// field on ChannelSetupWizard that hides those prompts. So this
|
|
833
|
+
// note keeps to the only thing the user actually needs to know:
|
|
834
|
+
// pick Finished. The earlier "or pick another channel" copy read
|
|
835
|
+
// as a vague alt-branch and produced the "did this break?"
|
|
836
|
+
// reaction; one direct sentence is the cure.
|
|
837
|
+
lines: ['On the next prompt, choose "Finished" to exit.']
|
|
841
838
|
},
|
|
842
839
|
// `disable` fires on `openclaw channels remove agentchat`. We strip
|
|
843
840
|
// the persistent AGENTS.md anchor here so the agent stops being told
|
|
@@ -1857,7 +1854,7 @@ var CircuitBreaker = class {
|
|
|
1857
1854
|
};
|
|
1858
1855
|
|
|
1859
1856
|
// src/version.ts
|
|
1860
|
-
var PACKAGE_VERSION = "0.6.
|
|
1857
|
+
var PACKAGE_VERSION = "0.6.19";
|
|
1861
1858
|
|
|
1862
1859
|
// src/outbound.ts
|
|
1863
1860
|
var DEFAULT_RETRY_POLICY = {
|