@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/CHANGELOG.md +81 -1032
- package/README.md +50 -0
- package/RUNBOOK.md +1 -1
- package/dist/binding/agents-anchor.cjs.map +1 -1
- package/dist/binding/agents-anchor.d.cts +2 -2
- package/dist/binding/agents-anchor.d.ts +2 -2
- package/dist/binding/agents-anchor.js.map +1 -1
- package/dist/configured-state.cjs.map +1 -1
- package/dist/configured-state.d.cts +1 -1
- package/dist/configured-state.d.ts +1 -1
- package/dist/configured-state.js.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +4 -4
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +4 -4
- 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
|
@@ -316,8 +316,8 @@ async function promptEmail(prompter) {
|
|
|
316
316
|
}
|
|
317
317
|
async function promptHandle(prompter) {
|
|
318
318
|
return (await prompter.text({
|
|
319
|
-
message: "
|
|
320
|
-
placeholder: "
|
|
319
|
+
message: "Choose a handle (your @name on AgentChat)",
|
|
320
|
+
placeholder: "3\u201330 chars, lowercase a-z, 0-9, hyphens, starts with a letter",
|
|
321
321
|
validate: (value) => {
|
|
322
322
|
const trimmed = value.trim();
|
|
323
323
|
if (!trimmed) return "Handle is required";
|
|
@@ -1845,7 +1845,7 @@ var CircuitBreaker = class {
|
|
|
1845
1845
|
};
|
|
1846
1846
|
|
|
1847
1847
|
// src/version.ts
|
|
1848
|
-
var PACKAGE_VERSION = "0.6.
|
|
1848
|
+
var PACKAGE_VERSION = "0.6.12";
|
|
1849
1849
|
|
|
1850
1850
|
// src/outbound.ts
|
|
1851
1851
|
var DEFAULT_RETRY_POLICY = {
|
|
@@ -4415,7 +4415,7 @@ var agentchatPlugin = {
|
|
|
4415
4415
|
// is triggered BY AgentChat (see openclaw compact-Fl3cALvc.js:636 —
|
|
4416
4416
|
// `runtimeChannel ? resolveChannelMessageToolHints(...) : void 0`),
|
|
4417
4417
|
// which means it can never deliver the persistent identity awareness
|
|
4418
|
-
// we need. Identity
|
|
4418
|
+
// we need. Identity content lives in AGENTS.md via
|
|
4419
4419
|
// `writeAgentsAnchor` — see binding/agents-anchor.ts for the why.
|
|
4420
4420
|
gateway: agentchatGatewayAdapter,
|
|
4421
4421
|
outbound: agentchatOutboundAdapter,
|