@newbase-clawchat/openclaw-clawchat 2026.5.12-2 → 2026.5.12-21
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/README.md +39 -17
- package/dist/index.js +3 -1
- package/dist/src/api-client.js +71 -12
- package/dist/src/api-types.test-d.js +10 -0
- package/dist/src/channel.js +5 -5
- package/dist/src/channel.setup.js +4 -17
- package/dist/src/clawchat-memory.js +290 -0
- package/dist/src/clawchat-metadata.js +235 -0
- package/dist/src/client.js +31 -93
- package/dist/src/commands.js +3 -3
- package/dist/src/config.js +58 -3
- package/dist/src/group-message-coalescer.js +107 -0
- package/dist/src/inbound.js +24 -28
- package/dist/src/login.runtime.js +82 -19
- package/dist/src/media-runtime.js +2 -3
- package/dist/src/message-mapper.js +1 -1
- package/dist/src/mock-transport.js +31 -0
- package/dist/src/outbound.js +281 -56
- package/dist/src/plugin-prompts.js +76 -0
- package/dist/src/profile-prompt.js +150 -0
- package/dist/src/profile-sync.js +169 -0
- package/dist/src/prompt-injection.js +25 -0
- package/dist/src/protocol-types.js +63 -0
- package/dist/src/protocol-types.typecheck.js +1 -0
- package/dist/src/protocol.js +2 -2
- package/dist/src/reply-dispatcher.js +143 -40
- package/dist/src/runtime.js +813 -109
- package/dist/src/storage.js +636 -0
- package/dist/src/tools-schema.js +70 -10
- package/dist/src/tools.js +600 -112
- package/dist/src/ws-alignment.js +8 -0
- package/dist/src/ws-client.js +588 -0
- package/index.ts +6 -1
- package/openclaw.plugin.json +44 -4
- package/package.json +4 -3
- package/prompts/platform.md +7 -0
- package/skills/clawchat/SKILL.md +90 -0
- package/src/api-client.test.ts +360 -15
- package/src/api-client.ts +127 -25
- package/src/api-types.test-d.ts +12 -0
- package/src/api-types.ts +71 -4
- package/src/buffered-stream.test.ts +1 -1
- package/src/buffered-stream.ts +1 -1
- package/src/channel.outbound.test.ts +270 -60
- package/src/channel.setup.ts +9 -18
- package/src/channel.test.ts +33 -25
- package/src/channel.ts +5 -7
- package/src/clawchat-memory.test.ts +372 -0
- package/src/clawchat-memory.ts +363 -0
- package/src/clawchat-metadata.test.ts +350 -0
- package/src/clawchat-metadata.ts +352 -0
- package/src/client.test.ts +57 -48
- package/src/client.ts +37 -129
- package/src/commands.test.ts +2 -2
- package/src/commands.ts +3 -3
- package/src/config.test.ts +169 -4
- package/src/config.ts +86 -6
- package/src/group-message-coalescer.test.ts +223 -0
- package/src/group-message-coalescer.ts +154 -0
- package/src/inbound.test.ts +106 -19
- package/src/inbound.ts +31 -35
- package/src/login.runtime.test.ts +294 -11
- package/src/login.runtime.ts +90 -21
- package/src/manifest.test.ts +86 -14
- package/src/media-runtime.test.ts +31 -2
- package/src/media-runtime.ts +7 -10
- package/src/message-mapper.test.ts +2 -2
- package/src/message-mapper.ts +2 -2
- package/src/mock-transport.test.ts +35 -0
- package/src/mock-transport.ts +38 -0
- package/src/outbound.test.ts +811 -95
- package/src/outbound.ts +332 -65
- package/src/plugin-entry.test.ts +3 -1
- package/src/plugin-prompts.test.ts +78 -0
- package/src/plugin-prompts.ts +92 -0
- package/src/profile-prompt.test.ts +435 -0
- package/src/profile-prompt.ts +208 -0
- package/src/profile-sync.test.ts +611 -0
- package/src/profile-sync.ts +268 -0
- package/src/prompt-injection.test.ts +39 -0
- package/src/prompt-injection.ts +45 -0
- package/src/protocol-types.test.ts +69 -0
- package/src/protocol-types.ts +296 -0
- package/src/protocol-types.typecheck.ts +89 -0
- package/src/protocol.ts +2 -2
- package/src/reply-dispatcher.test.ts +720 -135
- package/src/reply-dispatcher.ts +174 -42
- package/src/runtime.test.ts +3884 -337
- package/src/runtime.ts +956 -128
- package/src/storage.test.ts +692 -0
- package/src/storage.ts +989 -0
- package/src/streaming.test.ts +1 -1
- package/src/streaming.ts +1 -1
- package/src/tools-schema.ts +115 -13
- package/src/tools.test.ts +501 -10
- package/src/tools.ts +739 -133
- package/src/ws-alignment.ts +9 -0
- package/src/ws-client.test.ts +1218 -0
- package/src/ws-client.ts +662 -0
package/dist/src/tools-schema.js
CHANGED
|
@@ -1,31 +1,91 @@
|
|
|
1
1
|
import { Type } from "@sinclair/typebox";
|
|
2
|
+
const targetProperties = {
|
|
3
|
+
targetType: Type.Union([Type.Literal("owner"), Type.Literal("user"), Type.Literal("group")], {
|
|
4
|
+
description: "Explicit ClawChat memory target type.",
|
|
5
|
+
}),
|
|
6
|
+
targetId: Type.String({
|
|
7
|
+
minLength: 1,
|
|
8
|
+
description: "Explicit target id. Use owner for owner targets. Do not infer ids from names.",
|
|
9
|
+
}),
|
|
10
|
+
};
|
|
11
|
+
const ClawchatMetadataPatchSchema = Type.Object({
|
|
12
|
+
nickname: Type.Optional(Type.String()),
|
|
13
|
+
avatar_url: Type.Optional(Type.String()),
|
|
14
|
+
bio: Type.Optional(Type.String()),
|
|
15
|
+
behavior: Type.Optional(Type.String()),
|
|
16
|
+
title: Type.Optional(Type.String()),
|
|
17
|
+
description: Type.Optional(Type.String()),
|
|
18
|
+
}, { additionalProperties: false, minProperties: 1 });
|
|
19
|
+
const readBoundsProperties = {
|
|
20
|
+
offset: Type.Optional(Type.Integer({
|
|
21
|
+
minimum: 0,
|
|
22
|
+
description: "Zero-based content offset. Default 0.",
|
|
23
|
+
})),
|
|
24
|
+
limit: Type.Optional(Type.Integer({
|
|
25
|
+
minimum: 1,
|
|
26
|
+
maximum: 100000,
|
|
27
|
+
description: "Maximum returned characters. Default 20000, max 100000.",
|
|
28
|
+
})),
|
|
29
|
+
};
|
|
30
|
+
export const ClawchatMemoryReadSchema = Type.Object({ ...targetProperties, ...readBoundsProperties }, { additionalProperties: false });
|
|
31
|
+
const memoryWriteProperties = {
|
|
32
|
+
mode: Type.Union([Type.Literal("append"), Type.Literal("replace")]),
|
|
33
|
+
content: Type.String({
|
|
34
|
+
description: "Markdown body content. Append requires non-empty content; replace may be empty.",
|
|
35
|
+
}),
|
|
36
|
+
};
|
|
37
|
+
export const ClawchatMemoryWriteSchema = Type.Object({ ...targetProperties, ...memoryWriteProperties }, { additionalProperties: false });
|
|
38
|
+
const memoryEditProperties = {
|
|
39
|
+
oldText: Type.String({
|
|
40
|
+
minLength: 1,
|
|
41
|
+
description: "Existing body text span to replace. Must match exactly once.",
|
|
42
|
+
}),
|
|
43
|
+
newText: Type.String({
|
|
44
|
+
description: "Replacement body text.",
|
|
45
|
+
}),
|
|
46
|
+
};
|
|
47
|
+
export const ClawchatMemoryEditSchema = Type.Object({ ...targetProperties, ...memoryEditProperties }, { additionalProperties: false });
|
|
48
|
+
const metadataSyncProperties = {
|
|
49
|
+
direction: Type.Union([Type.Literal("pull"), Type.Literal("push")]),
|
|
50
|
+
fields: Type.Optional(Type.Array(Type.String({ minLength: 1 }), {
|
|
51
|
+
minItems: 1,
|
|
52
|
+
description: "Required for direction=push. Push only these local metadata fields.",
|
|
53
|
+
})),
|
|
54
|
+
};
|
|
55
|
+
export const ClawchatMetadataSyncSchema = Type.Object({ ...targetProperties, ...metadataSyncProperties }, { additionalProperties: false });
|
|
56
|
+
export const ClawchatMetadataUpdateSchema = Type.Object({ ...targetProperties, patch: ClawchatMetadataPatchSchema }, { additionalProperties: false });
|
|
2
57
|
export const ClawchatGetAccountProfileSchema = Type.Object({});
|
|
3
58
|
export const ClawchatGetUserProfileSchema = Type.Object({
|
|
4
59
|
userId: Type.String({
|
|
5
60
|
description: "Explicit target ClawChat user id (required). Do not infer this from a nickname; use clawchat_get_account_profile for the agent's own connected ClawChat account unless an explicit userId is provided.",
|
|
6
61
|
}),
|
|
7
62
|
});
|
|
8
|
-
export const ClawchatListAccountFriendsSchema = Type.Object({
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
description: "
|
|
63
|
+
export const ClawchatListAccountFriendsSchema = Type.Object({});
|
|
64
|
+
export const ClawchatSearchUsersSchema = Type.Object({
|
|
65
|
+
q: Type.Optional(Type.String({
|
|
66
|
+
description: "Search query for ClawChat username or nickname",
|
|
12
67
|
})),
|
|
13
|
-
|
|
68
|
+
limit: Type.Optional(Type.Integer({
|
|
14
69
|
minimum: 1,
|
|
15
70
|
maximum: 100,
|
|
16
|
-
description: "
|
|
71
|
+
description: "Max results (default 20)",
|
|
17
72
|
})),
|
|
18
73
|
});
|
|
19
|
-
export const
|
|
20
|
-
|
|
21
|
-
description: "
|
|
74
|
+
export const ClawchatListConversationsSchema = Type.Object({
|
|
75
|
+
before: Type.Optional(Type.String({
|
|
76
|
+
description: "Cursor; return conversations before this value",
|
|
22
77
|
})),
|
|
23
78
|
limit: Type.Optional(Type.Integer({
|
|
24
79
|
minimum: 1,
|
|
25
80
|
maximum: 100,
|
|
26
|
-
description: "Max
|
|
81
|
+
description: "Max conversations to return",
|
|
27
82
|
})),
|
|
28
83
|
});
|
|
84
|
+
export const ClawchatGetConversationSchema = Type.Object({
|
|
85
|
+
conversationId: Type.String({
|
|
86
|
+
description: "Concrete ClawChat conversation id to fetch",
|
|
87
|
+
}),
|
|
88
|
+
});
|
|
29
89
|
export const ClawchatListMomentsSchema = Type.Object({
|
|
30
90
|
before: Type.Optional(Type.Integer({
|
|
31
91
|
minimum: 1,
|