@agentchatme/openclaw 0.2.0 → 0.3.0
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 +67 -0
- package/dist/configured-state.cjs.map +1 -1
- package/dist/configured-state.js.map +1 -1
- package/dist/index.cjs +544 -475
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +120 -117
- package/dist/index.d.ts +120 -117
- package/dist/index.js +545 -475
- package/dist/index.js.map +1 -1
- package/dist/{setup-entry-CU0vHfyd.d.cts → setup-entry-1vjPD1gu.d.cts} +5 -9
- package/dist/{setup-entry-CU0vHfyd.d.ts → setup-entry-1vjPD1gu.d.ts} +5 -9
- package/dist/setup-entry.cjs +541 -471
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.d.cts +1 -1
- package/dist/setup-entry.d.ts +1 -1
- package/dist/setup-entry.js +541 -471
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +5 -3
- package/package.json +128 -129
- package/skills/agentchat/SKILL.md +128 -100
|
@@ -53,22 +53,18 @@ declare function parseChannelConfig(input: unknown): AgentchatChannelConfig;
|
|
|
53
53
|
/**
|
|
54
54
|
* AgentChat channel plugin — entry point.
|
|
55
55
|
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
56
|
+
* Wires the real OpenClaw SDK contracts — builds a
|
|
57
|
+
* `ChannelPlugin<AgentchatResolvedAccount>` with id / meta / capabilities /
|
|
58
|
+
* config-adapter / config-schema / setup + setupWizard, and wraps it via
|
|
59
|
+
* `defineChannelPluginEntry(...)` for OpenClaw's extension loader.
|
|
60
60
|
*
|
|
61
61
|
* Config adapter supports both:
|
|
62
62
|
* - single-account flat form: `channels.agentchat.{ apiKey, apiBase, ... }`
|
|
63
63
|
* - multi-account form: `channels.agentchat.accounts.<id>.{ apiKey, ... }`
|
|
64
64
|
*
|
|
65
|
-
* Runtime (WS client, inbound normalizer, outbound adapter) arrives in P2+.
|
|
66
|
-
*
|
|
67
65
|
* Loaded by OpenClaw via `package.json`'s `openclaw.extensions` entry.
|
|
68
66
|
*/
|
|
69
67
|
|
|
70
|
-
declare const AGENTCHAT_CHANNEL_ID: "agentchat";
|
|
71
|
-
declare const AGENTCHAT_DEFAULT_ACCOUNT_ID = "default";
|
|
72
68
|
interface AgentchatResolvedAccount {
|
|
73
69
|
accountId: string;
|
|
74
70
|
enabled: boolean;
|
|
@@ -93,4 +89,4 @@ declare const agentchatSetupEntry: {
|
|
|
93
89
|
plugin: openclaw_plugin_sdk_channel_core.ChannelPlugin<AgentchatResolvedAccount>;
|
|
94
90
|
};
|
|
95
91
|
|
|
96
|
-
export { type AgentchatChannelConfig as A,
|
|
92
|
+
export { type AgentchatChannelConfig as A, type AgentchatResolvedAccount as a, agentchatChannelEntry as b, agentchatPlugin as c, agentchatSetupEntry as d, parseChannelConfig as p };
|
|
@@ -53,22 +53,18 @@ declare function parseChannelConfig(input: unknown): AgentchatChannelConfig;
|
|
|
53
53
|
/**
|
|
54
54
|
* AgentChat channel plugin — entry point.
|
|
55
55
|
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
*
|
|
59
|
-
*
|
|
56
|
+
* Wires the real OpenClaw SDK contracts — builds a
|
|
57
|
+
* `ChannelPlugin<AgentchatResolvedAccount>` with id / meta / capabilities /
|
|
58
|
+
* config-adapter / config-schema / setup + setupWizard, and wraps it via
|
|
59
|
+
* `defineChannelPluginEntry(...)` for OpenClaw's extension loader.
|
|
60
60
|
*
|
|
61
61
|
* Config adapter supports both:
|
|
62
62
|
* - single-account flat form: `channels.agentchat.{ apiKey, apiBase, ... }`
|
|
63
63
|
* - multi-account form: `channels.agentchat.accounts.<id>.{ apiKey, ... }`
|
|
64
64
|
*
|
|
65
|
-
* Runtime (WS client, inbound normalizer, outbound adapter) arrives in P2+.
|
|
66
|
-
*
|
|
67
65
|
* Loaded by OpenClaw via `package.json`'s `openclaw.extensions` entry.
|
|
68
66
|
*/
|
|
69
67
|
|
|
70
|
-
declare const AGENTCHAT_CHANNEL_ID: "agentchat";
|
|
71
|
-
declare const AGENTCHAT_DEFAULT_ACCOUNT_ID = "default";
|
|
72
68
|
interface AgentchatResolvedAccount {
|
|
73
69
|
accountId: string;
|
|
74
70
|
enabled: boolean;
|
|
@@ -93,4 +89,4 @@ declare const agentchatSetupEntry: {
|
|
|
93
89
|
plugin: openclaw_plugin_sdk_channel_core.ChannelPlugin<AgentchatResolvedAccount>;
|
|
94
90
|
};
|
|
95
91
|
|
|
96
|
-
export { type AgentchatChannelConfig as A,
|
|
92
|
+
export { type AgentchatChannelConfig as A, type AgentchatResolvedAccount as a, agentchatChannelEntry as b, agentchatPlugin as c, agentchatSetupEntry as d, parseChannelConfig as p };
|