agent-messenger 1.13.0 → 1.13.1

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-messenger",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Messaging platform interaction skills for AI agents. Interact with Slack, Discord, and Microsoft Teams - send messages, read channels, manage reactions, upload files, and more through simple CLI interfaces.",
5
5
  "author": {
6
6
  "name": "devxoul",
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-messenger",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Multi-platform messaging CLI for AI agents (Slack, Discord, Teams)",
5
5
  "repository": {
6
6
  "type": "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-messenger",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Multi-platform messaging CLI for AI agents (Slack, Discord, Teams)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agent-discord
3
3
  description: Interact with Discord servers - send messages, read channels, manage reactions
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  allowed-tools: Bash(agent-discord:*)
6
6
  metadata:
7
7
  openclaw:
@@ -419,7 +419,7 @@ If the package is installed globally, use `agent-discord` directly:
419
419
  agent-discord server list
420
420
  ```
421
421
 
422
- If the package is NOT installed, run it directly using a package runner. Ask the user which one to use:
422
+ If the package is NOT installed, use `npx -y` by default. **Do NOT ask the user which package runner to use** — just run it:
423
423
 
424
424
  ```bash
425
425
  npx -y agent-messenger discord server list
@@ -427,7 +427,7 @@ bunx agent-messenger discord server list
427
427
  pnpm dlx agent-messenger discord server list
428
428
  ```
429
429
 
430
- If you already know the user's preferred package runner, use it directly instead of asking.
430
+ > If you already know the user's preferred package runner (e.g., `bunx`, `pnpm dlx`), use that instead.
431
431
 
432
432
  **NEVER run `npx agent-discord`, `bunx agent-discord`, or `pnpm dlx agent-discord`** — it will fail or install a wrong package since `agent-discord` is not the npm package name.
433
433
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agent-discordbot
3
3
  description: Interact with Discord servers using bot tokens - send messages, read channels, manage reactions
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  allowed-tools: Bash(agent-discordbot:*)
6
6
  metadata:
7
7
  openclaw:
@@ -377,7 +377,7 @@ If the package is installed globally, use `agent-discordbot` directly:
377
377
  agent-discordbot message send 1234567890123456789 "Hello"
378
378
  ```
379
379
 
380
- If the package is NOT installed, run it directly using a package runner. Ask the user which one to use:
380
+ If the package is NOT installed, use `npx -y` by default. **Do NOT ask the user which package runner to use** — just run it:
381
381
 
382
382
  ```bash
383
383
  npx -y agent-messenger discordbot message send 1234567890123456789 "Hello"
@@ -385,7 +385,7 @@ bunx agent-messenger discordbot message send 1234567890123456789 "Hello"
385
385
  pnpm dlx agent-messenger discordbot message send 1234567890123456789 "Hello"
386
386
  ```
387
387
 
388
- If you already know the user's preferred package runner, use it directly instead of asking.
388
+ > If you already know the user's preferred package runner (e.g., `bunx`, `pnpm dlx`), use that instead.
389
389
 
390
390
  **NEVER run `npx agent-discordbot`, `bunx agent-discordbot`, or `pnpm dlx agent-discordbot`** -- it will fail or install a wrong package since `agent-discordbot` is not the npm package name.
391
391
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agent-slack
3
3
  description: Interact with Slack workspaces - send messages, read channels, manage reactions
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  allowed-tools: Bash(agent-slack:*)
6
6
  metadata:
7
7
  openclaw:
@@ -402,7 +402,7 @@ If the package is installed globally, use `agent-slack` directly:
402
402
  agent-slack message list general
403
403
  ```
404
404
 
405
- If the package is NOT installed, run it directly using a package runner. Ask the user which one to use:
405
+ If the package is NOT installed, use `npx -y` by default. **Do NOT ask the user which package runner to use** — just run it:
406
406
 
407
407
  ```bash
408
408
  npx -y agent-messenger slack message list general
@@ -410,10 +410,20 @@ bunx agent-messenger slack message list general
410
410
  pnpm dlx agent-messenger slack message list general
411
411
  ```
412
412
 
413
- If you already know the user's preferred package runner, use it directly instead of asking.
413
+ > If you already know the user's preferred package runner (e.g., `bunx`, `pnpm dlx`), use that instead.
414
414
 
415
415
  **NEVER run `npx agent-slack`, `bunx agent-slack`, or `pnpm dlx agent-slack`** — a separate, unrelated npm package named `agent-slack` exists on npm. It will silently install the **wrong package** with different (fewer) commands.
416
416
 
417
+ ### `Failed to read Slack cookies`
418
+
419
+ If you see:
420
+
421
+ ```json
422
+ {"error":"Failed to read Slack cookies. The Slack app is currently running and locking the cookie database. Quit the Slack app completely and try again."}
423
+ ```
424
+
425
+ Tell the user you need to quit the Slack app to extract credentials, and ask for confirmation. If the user agrees, quit Slack and retry the command.
426
+
417
427
  For other troubleshooting (auth extraction, token issues, Keychain), see [references/authentication.md](references/authentication.md).
418
428
 
419
429
  ## References
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agent-slackbot
3
3
  description: Interact with Slack workspaces using bot tokens - send messages, read channels, manage reactions
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  allowed-tools: Bash(agent-slackbot:*)
6
6
  metadata:
7
7
  openclaw:
@@ -318,7 +318,7 @@ If the package is installed globally, use `agent-slackbot` directly:
318
318
  agent-slackbot message send general "Hello"
319
319
  ```
320
320
 
321
- If the package is NOT installed, run it directly using a package runner. Ask the user which one to use:
321
+ If the package is NOT installed, use `npx -y` by default. **Do NOT ask the user which package runner to use** — just run it:
322
322
 
323
323
  ```bash
324
324
  npx -y agent-messenger slackbot message send general "Hello"
@@ -326,7 +326,7 @@ bunx agent-messenger slackbot message send general "Hello"
326
326
  pnpm dlx agent-messenger slackbot message send general "Hello"
327
327
  ```
328
328
 
329
- If you already know the user's preferred package runner, use it directly instead of asking.
329
+ > If you already know the user's preferred package runner (e.g., `bunx`, `pnpm dlx`), use that instead.
330
330
 
331
331
  **NEVER run `npx agent-slackbot`, `bunx agent-slackbot`, or `pnpm dlx agent-slackbot`** — it will fail or install a wrong package since `agent-slackbot` is not the npm package name.
332
332
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: agent-teams
3
3
  description: Interact with Microsoft Teams - send messages, read channels, manage reactions
4
- version: 1.13.0
4
+ version: 1.13.1
5
5
  allowed-tools: Bash(agent-teams:*)
6
6
  metadata:
7
7
  openclaw:
@@ -366,7 +366,7 @@ If the package is installed globally, use `agent-teams` directly:
366
366
  agent-teams team list
367
367
  ```
368
368
 
369
- If the package is NOT installed, run it directly using a package runner. Ask the user which one to use:
369
+ If the package is NOT installed, use `npx -y` by default. **Do NOT ask the user which package runner to use** — just run it:
370
370
 
371
371
  ```bash
372
372
  npx -y agent-messenger teams team list
@@ -374,7 +374,7 @@ bunx agent-messenger teams team list
374
374
  pnpm dlx agent-messenger teams team list
375
375
  ```
376
376
 
377
- If you already know the user's preferred package runner, use it directly instead of asking.
377
+ > If you already know the user's preferred package runner (e.g., `bunx`, `pnpm dlx`), use that instead.
378
378
 
379
379
  **NEVER run `npx agent-teams`, `bunx agent-teams`, or `pnpm dlx agent-teams`** — it will fail or install a wrong package since `agent-teams` is not the npm package name.
380
380