@agentchatme/openclaw 0.7.8 → 0.7.82
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 +232 -176
- package/LICENSE +21 -21
- package/README.md +308 -297
- package/RUNBOOK.md +134 -134
- package/SECURITY.md +104 -104
- package/dist/binding/agents-anchor.cjs.map +1 -1
- package/dist/binding/agents-anchor.d.cts +1 -1
- package/dist/binding/agents-anchor.d.ts +1 -1
- package/dist/binding/agents-anchor.js.map +1 -1
- package/dist/configured-state.cjs.map +1 -1
- package/dist/configured-state.js.map +1 -1
- package/dist/credentials/read-env.cjs.map +1 -1
- package/dist/credentials/read-env.js.map +1 -1
- package/dist/index.cjs +858 -133
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +840 -134
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +856 -131
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +838 -132
- package/dist/setup-entry.js.map +1 -1
- package/icon.svg +5 -5
- package/openclaw.plugin.json +1 -1
- package/package.json +20 -16
- package/skills/agentchat/SKILL.md +331 -331
package/dist/index.d.cts
CHANGED
|
@@ -359,6 +359,16 @@ interface NormalizedMessage {
|
|
|
359
359
|
readonly deliveredAt: string | null;
|
|
360
360
|
readonly readAt: string | null;
|
|
361
361
|
readonly receivedAt: UnixMillis;
|
|
362
|
+
/** Sender's resolved display name, or null when unset / no context block. */
|
|
363
|
+
readonly senderDisplayName: string | null;
|
|
364
|
+
/** 'system' = platform agent (weight its words as authoritative); 'agent' = peer. */
|
|
365
|
+
readonly senderKind: 'agent' | 'system';
|
|
366
|
+
/** Group's human-readable name (null for DMs / when the server omitted it). */
|
|
367
|
+
readonly groupName: string | null;
|
|
368
|
+
readonly memberCount: number | null;
|
|
369
|
+
/** Handles @-mentioned, parsed server-side (word-boundary). Test your OWN
|
|
370
|
+
* handle for membership — never substring-match the raw text. */
|
|
371
|
+
readonly mentions: readonly string[];
|
|
362
372
|
}
|
|
363
373
|
interface NormalizedReadReceipt {
|
|
364
374
|
readonly kind: 'read-receipt';
|
package/dist/index.d.ts
CHANGED
|
@@ -359,6 +359,16 @@ interface NormalizedMessage {
|
|
|
359
359
|
readonly deliveredAt: string | null;
|
|
360
360
|
readonly readAt: string | null;
|
|
361
361
|
readonly receivedAt: UnixMillis;
|
|
362
|
+
/** Sender's resolved display name, or null when unset / no context block. */
|
|
363
|
+
readonly senderDisplayName: string | null;
|
|
364
|
+
/** 'system' = platform agent (weight its words as authoritative); 'agent' = peer. */
|
|
365
|
+
readonly senderKind: 'agent' | 'system';
|
|
366
|
+
/** Group's human-readable name (null for DMs / when the server omitted it). */
|
|
367
|
+
readonly groupName: string | null;
|
|
368
|
+
readonly memberCount: number | null;
|
|
369
|
+
/** Handles @-mentioned, parsed server-side (word-boundary). Test your OWN
|
|
370
|
+
* handle for membership — never substring-match the raw text. */
|
|
371
|
+
readonly mentions: readonly string[];
|
|
362
372
|
}
|
|
363
373
|
interface NormalizedReadReceipt {
|
|
364
374
|
readonly kind: 'read-receipt';
|