@songsid/agend-plugin-discord 2.0.3-beta.1 → 2.0.3-beta.3
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
|
@@ -300,6 +300,10 @@ export class DiscordAdapter extends EventEmitter {
|
|
|
300
300
|
},
|
|
301
301
|
{ name: "ctx", description: "[ClassicBot] Show agent context usage" },
|
|
302
302
|
{ name: "collab", description: "[ClassicBot] Toggle collaboration mode (@mention trigger)" },
|
|
303
|
+
{ name: "status", description: "[Fleet] Show fleet status and costs" },
|
|
304
|
+
{ name: "sysinfo", description: "[Fleet] System diagnostics" },
|
|
305
|
+
{ name: "restart", description: "[Fleet] Graceful restart all instances" },
|
|
306
|
+
{ name: "compact", description: "[Fleet] Compact agent context window" },
|
|
303
307
|
{ name: "update", description: "[Fleet] Update AgEnD to latest version" },
|
|
304
308
|
{ name: "doctor", description: "[Fleet] Run health diagnostics" },
|
|
305
309
|
]);
|
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.3",
|
|
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.3"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"discord.js": "^14.25.1"
|
package/src/discord-adapter.ts
CHANGED
|
@@ -330,6 +330,10 @@ export class DiscordAdapter extends EventEmitter implements ChannelAdapter {
|
|
|
330
330
|
},
|
|
331
331
|
{ name: "ctx", description: "[ClassicBot] Show agent context usage" },
|
|
332
332
|
{ name: "collab", description: "[ClassicBot] Toggle collaboration mode (@mention trigger)" },
|
|
333
|
+
{ name: "status", description: "[Fleet] Show fleet status and costs" },
|
|
334
|
+
{ name: "sysinfo", description: "[Fleet] System diagnostics" },
|
|
335
|
+
{ name: "restart", description: "[Fleet] Graceful restart all instances" },
|
|
336
|
+
{ name: "compact", description: "[Fleet] Compact agent context window" },
|
|
333
337
|
{ name: "update", description: "[Fleet] Update AgEnD to latest version" },
|
|
334
338
|
{ name: "doctor", description: "[Fleet] Run health diagnostics" },
|
|
335
339
|
]);
|