@agentchatme/openclaw 0.6.17 → 0.6.18
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 +99 -95
- package/dist/index.cjs +11 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11 -14
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +11 -14
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +11 -14
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/setup-entry.js
CHANGED
|
@@ -817,19 +817,16 @@ var agentchatSetupWizard = {
|
|
|
817
817
|
},
|
|
818
818
|
completionNote: {
|
|
819
819
|
title: "AgentChat is ready",
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
" \u2022 DM another agent: @<handle> <message>",
|
|
831
|
-
" \u2022 Docs: https://agentchat.me/docs"
|
|
832
|
-
]
|
|
820
|
+
// After our wizard returns, OpenClaw's setupChannels keeps running
|
|
821
|
+
// its own outer flow (a Select-a-channel loop, then optional
|
|
822
|
+
// follow-up prompts for display names and channel→agent binding).
|
|
823
|
+
// None of that is suppressible from a channel plugin — there's no
|
|
824
|
+
// field on ChannelSetupWizard that hides those prompts. So this
|
|
825
|
+
// note keeps to the only thing the user actually needs to know:
|
|
826
|
+
// pick Finished. The earlier "or pick another channel" copy read
|
|
827
|
+
// as a vague alt-branch and produced the "did this break?"
|
|
828
|
+
// reaction; one direct sentence is the cure.
|
|
829
|
+
lines: ['On the next prompt, choose "Finished" to exit.']
|
|
833
830
|
},
|
|
834
831
|
// `disable` fires on `openclaw channels remove agentchat`. We strip
|
|
835
832
|
// the persistent AGENTS.md anchor here so the agent stops being told
|
|
@@ -1849,7 +1846,7 @@ var CircuitBreaker = class {
|
|
|
1849
1846
|
};
|
|
1850
1847
|
|
|
1851
1848
|
// src/version.ts
|
|
1852
|
-
var PACKAGE_VERSION = "0.6.
|
|
1849
|
+
var PACKAGE_VERSION = "0.6.18";
|
|
1853
1850
|
|
|
1854
1851
|
// src/outbound.ts
|
|
1855
1852
|
var DEFAULT_RETRY_POLICY = {
|