@songsid/agend-plugin-discord 2.0.3-beta.11 → 2.0.3-beta.13
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/dist/discord-adapter.js
CHANGED
|
@@ -286,7 +286,7 @@ export class DiscordAdapter extends EventEmitter {
|
|
|
286
286
|
name: "chat", description: "[ClassicBot] Send a message to the agent",
|
|
287
287
|
options: [{ name: "message", description: "Your message", type: 3, required: true }],
|
|
288
288
|
},
|
|
289
|
-
{ name: "compact", description: "
|
|
289
|
+
{ name: "compact", description: "Compact agent context window" },
|
|
290
290
|
{
|
|
291
291
|
name: "save", description: "[ClassicBot] Save the agent's conversation",
|
|
292
292
|
options: [
|
|
@@ -298,12 +298,11 @@ export class DiscordAdapter extends EventEmitter {
|
|
|
298
298
|
name: "load", description: "[ClassicBot] Load a saved conversation",
|
|
299
299
|
options: [{ name: "filename", description: "File name to load", type: 3, required: true }],
|
|
300
300
|
},
|
|
301
|
-
{ name: "ctx", description: "
|
|
302
|
-
{ name: "collab", description: "
|
|
301
|
+
{ name: "ctx", description: "Show agent context usage" },
|
|
302
|
+
{ name: "collab", description: "Toggle bot/webhook collaboration mode" },
|
|
303
303
|
{ name: "status", description: "[Fleet] Show fleet status and costs" },
|
|
304
304
|
{ name: "sysinfo", description: "[Fleet] System diagnostics" },
|
|
305
305
|
{ name: "restart", description: "[Fleet] Graceful restart all instances" },
|
|
306
|
-
{ name: "compact", description: "[Fleet] Compact agent context window" },
|
|
307
306
|
{ name: "update", description: "[Fleet] Update AgEnD to latest version" },
|
|
308
307
|
{ name: "doctor", description: "[Fleet] Run health diagnostics" },
|
|
309
308
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@songsid/agend-plugin-discord",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.13",
|
|
4
4
|
"description": "Discord channel adapter plugin for AgEnD",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build": "tsc"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
|
-
"@songsid/agend": ">=2.0.3-beta.
|
|
12
|
+
"@songsid/agend": ">=2.0.3-beta.13"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"discord.js": "^14.25.1"
|
package/src/discord-adapter.ts
CHANGED
|
@@ -316,7 +316,7 @@ export class DiscordAdapter extends EventEmitter implements ChannelAdapter {
|
|
|
316
316
|
name: "chat", description: "[ClassicBot] Send a message to the agent",
|
|
317
317
|
options: [{ name: "message", description: "Your message", type: 3, required: true }],
|
|
318
318
|
},
|
|
319
|
-
{ name: "compact", description: "
|
|
319
|
+
{ name: "compact", description: "Compact agent context window" },
|
|
320
320
|
{
|
|
321
321
|
name: "save", description: "[ClassicBot] Save the agent's conversation",
|
|
322
322
|
options: [
|
|
@@ -328,12 +328,11 @@ export class DiscordAdapter extends EventEmitter implements ChannelAdapter {
|
|
|
328
328
|
name: "load", description: "[ClassicBot] Load a saved conversation",
|
|
329
329
|
options: [{ name: "filename", description: "File name to load", type: 3, required: true }],
|
|
330
330
|
},
|
|
331
|
-
{ name: "ctx", description: "
|
|
332
|
-
{ name: "collab", description: "
|
|
331
|
+
{ name: "ctx", description: "Show agent context usage" },
|
|
332
|
+
{ name: "collab", description: "Toggle bot/webhook collaboration mode" },
|
|
333
333
|
{ name: "status", description: "[Fleet] Show fleet status and costs" },
|
|
334
334
|
{ name: "sysinfo", description: "[Fleet] System diagnostics" },
|
|
335
335
|
{ name: "restart", description: "[Fleet] Graceful restart all instances" },
|
|
336
|
-
{ name: "compact", description: "[Fleet] Compact agent context window" },
|
|
337
336
|
{ name: "update", description: "[Fleet] Update AgEnD to latest version" },
|
|
338
337
|
{ name: "doctor", description: "[Fleet] Run health diagnostics" },
|
|
339
338
|
]);
|