agent-messenger 1.0.0 → 1.2.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/.claude/commands/release.md +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.github/workflows/ci.yml +1 -1
- package/.github/workflows/e2e.yml.disabled +69 -0
- package/CONTRIBUTING.md +2 -2
- package/README.md +18 -15
- package/biome.json +34 -2
- package/bun.lock +63 -0
- package/dist/package.json +8 -4
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +4 -1
- package/dist/src/cli.js.map +1 -1
- package/dist/src/platforms/discord/cli.js +4 -4
- package/dist/src/platforms/discord/cli.js.map +1 -1
- package/dist/src/platforms/discord/client.d.ts +26 -5
- package/dist/src/platforms/discord/client.d.ts.map +1 -1
- package/dist/src/platforms/discord/client.js +115 -17
- package/dist/src/platforms/discord/client.js.map +1 -1
- package/dist/src/platforms/discord/commands/auth.js +16 -16
- package/dist/src/platforms/discord/commands/auth.js.map +1 -1
- package/dist/src/platforms/discord/commands/channel.js +4 -4
- package/dist/src/platforms/discord/commands/channel.js.map +1 -1
- package/dist/src/platforms/discord/commands/dm.d.ts +9 -0
- package/dist/src/platforms/discord/commands/dm.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/dm.js +68 -0
- package/dist/src/platforms/discord/commands/dm.js.map +1 -0
- package/dist/src/platforms/discord/commands/friend.d.ts +3 -0
- package/dist/src/platforms/discord/commands/friend.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/friend.js +39 -0
- package/dist/src/platforms/discord/commands/friend.js.map +1 -0
- package/dist/src/platforms/discord/commands/index.d.ts +1 -1
- package/dist/src/platforms/discord/commands/index.d.ts.map +1 -1
- package/dist/src/platforms/discord/commands/index.js +1 -1
- package/dist/src/platforms/discord/commands/index.js.map +1 -1
- package/dist/src/platforms/discord/commands/member.d.ts +3 -0
- package/dist/src/platforms/discord/commands/member.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/member.js +47 -0
- package/dist/src/platforms/discord/commands/member.js.map +1 -0
- package/dist/src/platforms/discord/commands/mention.d.ts +8 -0
- package/dist/src/platforms/discord/commands/mention.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/mention.js +47 -0
- package/dist/src/platforms/discord/commands/mention.js.map +1 -0
- package/dist/src/platforms/discord/commands/message.d.ts +13 -0
- package/dist/src/platforms/discord/commands/message.d.ts.map +1 -1
- package/dist/src/platforms/discord/commands/message.js +95 -1
- package/dist/src/platforms/discord/commands/message.js.map +1 -1
- package/dist/src/platforms/discord/commands/note.d.ts +3 -0
- package/dist/src/platforms/discord/commands/note.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/note.js +56 -0
- package/dist/src/platforms/discord/commands/note.js.map +1 -0
- package/dist/src/platforms/discord/commands/profile.d.ts +3 -0
- package/dist/src/platforms/discord/commands/profile.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/profile.js +47 -0
- package/dist/src/platforms/discord/commands/profile.js.map +1 -0
- package/dist/src/platforms/discord/commands/server.d.ts +15 -0
- package/dist/src/platforms/discord/commands/server.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/server.js +102 -0
- package/dist/src/platforms/discord/commands/server.js.map +1 -0
- package/dist/src/platforms/discord/commands/snapshot.js +10 -10
- package/dist/src/platforms/discord/commands/snapshot.js.map +1 -1
- package/dist/src/platforms/discord/commands/thread.d.ts +10 -0
- package/dist/src/platforms/discord/commands/thread.d.ts.map +1 -0
- package/dist/src/platforms/discord/commands/thread.js +67 -0
- package/dist/src/platforms/discord/commands/thread.js.map +1 -0
- package/dist/src/platforms/discord/commands/user.d.ts.map +1 -1
- package/dist/src/platforms/discord/commands/user.js +14 -5
- package/dist/src/platforms/discord/commands/user.js.map +1 -1
- package/dist/src/platforms/discord/credential-manager.d.ts +13 -13
- package/dist/src/platforms/discord/credential-manager.d.ts.map +1 -1
- package/dist/src/platforms/discord/credential-manager.js +28 -22
- package/dist/src/platforms/discord/credential-manager.js.map +1 -1
- package/dist/src/platforms/discord/super-properties.d.ts +4 -0
- package/dist/src/platforms/discord/super-properties.d.ts.map +1 -0
- package/dist/src/platforms/discord/super-properties.js +50 -0
- package/dist/src/platforms/discord/super-properties.js.map +1 -0
- package/dist/src/platforms/discord/token-extractor.d.ts +6 -1
- package/dist/src/platforms/discord/token-extractor.d.ts.map +1 -1
- package/dist/src/platforms/discord/token-extractor.js +27 -2
- package/dist/src/platforms/discord/token-extractor.js.map +1 -1
- package/dist/src/platforms/discord/types.d.ts +389 -22
- package/dist/src/platforms/discord/types.d.ts.map +1 -1
- package/dist/src/platforms/discord/types.js +46 -4
- package/dist/src/platforms/discord/types.js.map +1 -1
- package/dist/src/platforms/slack/cli.d.ts.map +1 -1
- package/dist/src/platforms/slack/cli.js +7 -2
- package/dist/src/platforms/slack/cli.js.map +1 -1
- package/dist/src/platforms/slack/client.d.ts +19 -1
- package/dist/src/platforms/slack/client.d.ts.map +1 -1
- package/dist/src/platforms/slack/client.js +134 -0
- package/dist/src/platforms/slack/client.js.map +1 -1
- package/dist/src/platforms/slack/commands/activity.d.ts +3 -0
- package/dist/src/platforms/slack/commands/activity.d.ts.map +1 -0
- package/dist/src/platforms/slack/commands/activity.js +40 -0
- package/dist/src/platforms/slack/commands/activity.js.map +1 -0
- package/dist/src/platforms/slack/commands/drafts.d.ts +3 -0
- package/dist/src/platforms/slack/commands/drafts.d.ts.map +1 -0
- package/dist/src/platforms/slack/commands/drafts.js +45 -0
- package/dist/src/platforms/slack/commands/drafts.js.map +1 -0
- package/dist/src/platforms/slack/commands/index.d.ts +5 -0
- package/dist/src/platforms/slack/commands/index.d.ts.map +1 -1
- package/dist/src/platforms/slack/commands/index.js +5 -0
- package/dist/src/platforms/slack/commands/index.js.map +1 -1
- package/dist/src/platforms/slack/commands/saved.d.ts +3 -0
- package/dist/src/platforms/slack/commands/saved.d.ts.map +1 -0
- package/dist/src/platforms/slack/commands/saved.js +54 -0
- package/dist/src/platforms/slack/commands/saved.js.map +1 -0
- package/dist/src/platforms/slack/commands/sections.d.ts +3 -0
- package/dist/src/platforms/slack/commands/sections.d.ts.map +1 -0
- package/dist/src/platforms/slack/commands/sections.js +37 -0
- package/dist/src/platforms/slack/commands/sections.js.map +1 -0
- package/dist/src/platforms/slack/commands/unread.d.ts +12 -0
- package/dist/src/platforms/slack/commands/unread.d.ts.map +1 -0
- package/dist/src/platforms/slack/commands/unread.js +89 -0
- package/dist/src/platforms/slack/commands/unread.js.map +1 -0
- package/dist/src/platforms/slack/credential-manager.d.ts.map +1 -1
- package/dist/src/platforms/slack/credential-manager.js +20 -6
- package/dist/src/platforms/slack/credential-manager.js.map +1 -1
- package/dist/src/platforms/slack/token-extractor.d.ts +8 -1
- package/dist/src/platforms/slack/token-extractor.d.ts.map +1 -1
- package/dist/src/platforms/slack/token-extractor.js +83 -11
- package/dist/src/platforms/slack/token-extractor.js.map +1 -1
- package/dist/src/platforms/slack/types.d.ts +52 -0
- package/dist/src/platforms/slack/types.d.ts.map +1 -1
- package/dist/src/platforms/slack/types.js.map +1 -1
- package/dist/src/platforms/teams/cli.d.ts.map +1 -0
- package/dist/{cli.js → src/platforms/teams/cli.js} +11 -10
- package/dist/src/platforms/teams/cli.js.map +1 -0
- package/dist/src/platforms/teams/client.d.ts +32 -0
- package/dist/src/platforms/teams/client.d.ts.map +1 -0
- package/dist/src/platforms/teams/client.js +202 -0
- package/dist/src/platforms/teams/client.js.map +1 -0
- package/dist/src/platforms/teams/commands/auth.d.ts +14 -0
- package/dist/src/platforms/teams/commands/auth.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/auth.js +176 -0
- package/dist/src/platforms/teams/commands/auth.js.map +1 -0
- package/dist/src/platforms/teams/commands/channel.d.ts +13 -0
- package/dist/src/platforms/teams/commands/channel.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/channel.js +97 -0
- package/dist/src/platforms/teams/commands/channel.js.map +1 -0
- package/dist/src/platforms/teams/commands/file.d.ts +12 -0
- package/dist/src/platforms/teams/commands/file.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/file.js +104 -0
- package/dist/src/platforms/teams/commands/file.js.map +1 -0
- package/dist/{commands → src/platforms/teams/commands}/index.d.ts +5 -2
- package/dist/src/platforms/teams/commands/index.d.ts.map +1 -0
- package/dist/{commands → src/platforms/teams/commands}/index.js +5 -2
- package/dist/src/platforms/teams/commands/index.js.map +1 -0
- package/dist/src/platforms/teams/commands/message.d.ts +17 -0
- package/dist/src/platforms/teams/commands/message.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/message.js +133 -0
- package/dist/src/platforms/teams/commands/message.js.map +1 -0
- package/dist/src/platforms/teams/commands/reaction.d.ts +9 -0
- package/dist/src/platforms/teams/commands/reaction.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/reaction.js +68 -0
- package/dist/src/platforms/teams/commands/reaction.js.map +1 -0
- package/dist/src/platforms/teams/commands/snapshot.d.ts +10 -0
- package/dist/src/platforms/teams/commands/snapshot.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/snapshot.js +85 -0
- package/dist/src/platforms/teams/commands/snapshot.js.map +1 -0
- package/dist/src/platforms/teams/commands/team.d.ts +18 -0
- package/dist/src/platforms/teams/commands/team.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/team.js +130 -0
- package/dist/src/platforms/teams/commands/team.js.map +1 -0
- package/dist/src/platforms/teams/commands/user.d.ts.map +1 -0
- package/dist/src/platforms/teams/commands/user.js +88 -0
- package/dist/src/platforms/teams/commands/user.js.map +1 -0
- package/dist/src/platforms/teams/credential-manager.d.ts +18 -0
- package/dist/src/platforms/teams/credential-manager.d.ts.map +1 -0
- package/dist/src/platforms/teams/credential-manager.js +81 -0
- package/dist/src/platforms/teams/credential-manager.js.map +1 -0
- package/dist/src/platforms/teams/index.d.ts +4 -0
- package/dist/src/platforms/teams/index.d.ts.map +1 -0
- package/dist/src/platforms/teams/index.js +6 -0
- package/dist/src/platforms/teams/index.js.map +1 -0
- package/dist/src/platforms/teams/token-extractor.d.ts +41 -0
- package/dist/src/platforms/teams/token-extractor.d.ts.map +1 -0
- package/dist/src/platforms/teams/token-extractor.js +360 -0
- package/dist/src/platforms/teams/token-extractor.js.map +1 -0
- package/dist/src/platforms/teams/types.d.ts +209 -0
- package/dist/src/platforms/teams/types.d.ts.map +1 -0
- package/dist/src/platforms/teams/types.js +65 -0
- package/dist/src/platforms/teams/types.js.map +1 -0
- package/dist/src/shared/utils/derived-key-cache.d.ts +20 -0
- package/dist/src/shared/utils/derived-key-cache.d.ts.map +1 -0
- package/dist/src/shared/utils/derived-key-cache.js +52 -0
- package/dist/src/shared/utils/derived-key-cache.js.map +1 -0
- package/docs/README.md +113 -0
- package/docs/biome.json +8 -0
- package/docs/bun.lock +1426 -0
- package/docs/content/docs/agent-skills.mdx +98 -0
- package/docs/content/docs/index.mdx +124 -0
- package/docs/{discord.md → content/docs/integrations/discord.mdx} +46 -21
- package/docs/content/docs/integrations/meta.json +5 -0
- package/docs/{slack.md → content/docs/integrations/slack.mdx} +5 -4
- package/docs/content/docs/integrations/teams.mdx +322 -0
- package/docs/content/docs/meta.json +8 -0
- package/docs/content/docs/quick-start.mdx +103 -0
- package/docs/eslint.config.mjs +30 -0
- package/docs/next.config.ts +10 -0
- package/docs/package.json +42 -0
- package/docs/postcss.config.mjs +7 -0
- package/docs/public/file.svg +1 -0
- package/docs/public/globe.svg +1 -0
- package/docs/public/next.svg +1 -0
- package/docs/public/vercel.svg +1 -0
- package/docs/public/window.svg +1 -0
- package/docs/source.config.ts +11 -0
- package/docs/src/app/api/search/route.ts +4 -0
- package/docs/src/app/docs/[[...slug]]/page.tsx +53 -0
- package/docs/src/app/docs/layout.tsx +21 -0
- package/docs/src/app/globals.css +10 -0
- package/docs/src/app/icon.png +0 -0
- package/docs/src/app/layout.config.tsx +7 -0
- package/docs/src/app/layout.tsx +35 -0
- package/docs/src/app/page.tsx +489 -0
- package/docs/src/lib/source.ts +15 -0
- package/docs/src/mdx-components.tsx +18 -0
- package/docs/tsconfig.json +36 -0
- package/e2e/README.md +256 -0
- package/e2e/config.ts +51 -0
- package/e2e/discord.e2e.test.ts +252 -0
- package/e2e/helpers.ts +107 -0
- package/e2e/slack.e2e.test.ts +309 -0
- package/package.json +8 -4
- package/scripts/postbuild.ts +15 -0
- package/skills/agent-discord/SKILL.md +96 -30
- package/skills/agent-discord/references/authentication.md +27 -27
- package/skills/agent-discord/references/common-patterns.md +15 -15
- package/skills/agent-discord/templates/post-message.sh +6 -6
- package/skills/agent-discord/templates/{guild-summary.sh → server-summary.sh} +20 -20
- package/skills/agent-slack/SKILL.md +53 -0
- package/skills/agent-teams/SKILL.md +292 -0
- package/skills/agent-teams/references/authentication.md +375 -0
- package/skills/agent-teams/references/common-patterns.md +596 -0
- package/skills/agent-teams/templates/monitor-channel.sh +239 -0
- package/skills/agent-teams/templates/post-message.sh +224 -0
- package/skills/agent-teams/templates/team-summary.sh +210 -0
- package/src/cli.ts +4 -0
- package/src/platforms/discord/cli.ts +3 -3
- package/src/platforms/discord/client.test.ts +15 -15
- package/src/platforms/discord/client.ts +163 -17
- package/src/platforms/discord/commands/auth.test.ts +53 -37
- package/src/platforms/discord/commands/auth.ts +16 -16
- package/src/platforms/discord/commands/channel.test.ts +58 -46
- package/src/platforms/discord/commands/channel.ts +4 -4
- package/src/platforms/discord/commands/dm.test.ts +146 -0
- package/src/platforms/discord/commands/dm.ts +85 -0
- package/src/platforms/discord/commands/file.test.ts +40 -53
- package/src/platforms/discord/commands/friend.test.ts +134 -0
- package/src/platforms/discord/commands/friend.ts +45 -0
- package/src/platforms/discord/commands/index.ts +1 -1
- package/src/platforms/discord/commands/member.test.ts +98 -0
- package/src/platforms/discord/commands/member.ts +59 -0
- package/src/platforms/discord/commands/mention.test.ts +129 -0
- package/src/platforms/discord/commands/mention.ts +59 -0
- package/src/platforms/discord/commands/message.test.ts +139 -44
- package/src/platforms/discord/commands/message.ts +134 -1
- package/src/platforms/discord/commands/note.test.ts +84 -0
- package/src/platforms/discord/commands/note.ts +73 -0
- package/src/platforms/discord/commands/profile.test.ts +107 -0
- package/src/platforms/discord/commands/profile.ts +55 -0
- package/src/platforms/discord/commands/reaction.test.ts +54 -42
- package/src/platforms/discord/commands/server.test.ts +137 -0
- package/src/platforms/discord/commands/{guild.ts → server.ts} +31 -31
- package/src/platforms/discord/commands/snapshot.test.ts +1 -1
- package/src/platforms/discord/commands/snapshot.ts +10 -10
- package/src/platforms/discord/commands/thread.test.ts +121 -0
- package/src/platforms/discord/commands/thread.ts +92 -0
- package/src/platforms/discord/commands/user.test.ts +8 -8
- package/src/platforms/discord/commands/user.ts +16 -5
- package/src/platforms/discord/credential-manager.test.ts +137 -136
- package/src/platforms/discord/credential-manager.ts +35 -26
- package/src/platforms/discord/super-properties.ts +55 -0
- package/src/platforms/discord/token-extractor.test.ts +133 -383
- package/src/platforms/discord/token-extractor.ts +37 -3
- package/src/platforms/discord/types.test.ts +8 -8
- package/src/platforms/discord/types.ts +144 -8
- package/{tests → src/platforms/slack}/cli.test.ts +3 -3
- package/src/platforms/slack/cli.ts +10 -0
- package/{tests/slack-client.test.ts → src/platforms/slack/client.test.ts} +1 -1
- package/src/platforms/slack/client.ts +172 -1
- package/src/platforms/slack/commands/activity.test.ts +147 -0
- package/src/platforms/slack/commands/activity.ts +65 -0
- package/{tests → src/platforms/slack}/commands/auth.test.ts +25 -13
- package/{tests → src/platforms/slack}/commands/channel.test.ts +2 -2
- package/src/platforms/slack/commands/drafts.test.ts +136 -0
- package/src/platforms/slack/commands/drafts.ts +62 -0
- package/{tests → src/platforms/slack}/commands/file.test.ts +2 -2
- package/src/platforms/slack/commands/index.ts +5 -0
- package/{tests → src/platforms/slack}/commands/message.test.ts +2 -2
- package/{tests → src/platforms/slack}/commands/reaction.test.ts +1 -1
- package/src/platforms/slack/commands/saved.test.ts +140 -0
- package/src/platforms/slack/commands/saved.ts +71 -0
- package/src/platforms/slack/commands/sections.test.ts +80 -0
- package/src/platforms/slack/commands/sections.ts +50 -0
- package/{tests → src/platforms/slack}/commands/snapshot.test.ts +117 -105
- package/src/platforms/slack/commands/unread.test.ts +139 -0
- package/src/platforms/slack/commands/unread.ts +129 -0
- package/{tests → src/platforms/slack}/commands/user.test.ts +3 -3
- package/{tests → src/platforms/slack}/commands/workspace.test.ts +44 -95
- package/{tests → src/platforms/slack}/credential-manager.test.ts +2 -2
- package/src/platforms/slack/credential-manager.ts +22 -7
- package/src/platforms/slack/token-extractor-node-test.ts +40 -0
- package/src/platforms/slack/token-extractor-node.test.ts +10 -0
- package/src/platforms/slack/token-extractor.ts +93 -12
- package/{tests → src/platforms/slack}/types.test.ts +1 -1
- package/src/platforms/slack/types.ts +58 -0
- package/src/platforms/teams/cli.ts +36 -0
- package/src/platforms/teams/client.test.ts +500 -0
- package/src/platforms/teams/client.ts +365 -0
- package/src/platforms/teams/commands/auth.test.ts +99 -0
- package/src/platforms/teams/commands/auth.ts +232 -0
- package/src/platforms/teams/commands/channel.test.ts +147 -0
- package/src/platforms/teams/commands/channel.ts +129 -0
- package/src/platforms/teams/commands/file.test.ts +88 -0
- package/src/platforms/teams/commands/file.ts +144 -0
- package/src/platforms/teams/commands/index.ts +12 -0
- package/src/platforms/teams/commands/message.test.ts +110 -0
- package/src/platforms/teams/commands/message.ts +188 -0
- package/src/platforms/teams/commands/reaction.test.ts +87 -0
- package/src/platforms/teams/commands/reaction.ts +104 -0
- package/src/platforms/teams/commands/snapshot.test.ts +35 -0
- package/src/platforms/teams/commands/snapshot.ts +115 -0
- package/src/platforms/teams/commands/team.test.ts +157 -0
- package/src/platforms/teams/commands/team.ts +164 -0
- package/src/platforms/teams/commands/user.test.ts +83 -0
- package/src/platforms/teams/commands/user.ts +112 -0
- package/src/platforms/teams/credential-manager.test.ts +178 -0
- package/src/platforms/teams/credential-manager.ts +92 -0
- package/src/platforms/teams/index.ts +5 -0
- package/src/platforms/teams/token-extractor.test.ts +429 -0
- package/src/platforms/teams/token-extractor.ts +490 -0
- package/src/platforms/teams/types.test.ts +226 -0
- package/src/platforms/teams/types.ts +140 -0
- package/src/shared/utils/derived-key-cache.test.ts +136 -0
- package/src/shared/utils/derived-key-cache.ts +63 -0
- package/tsconfig.json +1 -1
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/commands/auth.d.ts +0 -3
- package/dist/commands/auth.d.ts.map +0 -1
- package/dist/commands/auth.js +0 -140
- package/dist/commands/auth.js.map +0 -1
- package/dist/commands/channel.d.ts +0 -3
- package/dist/commands/channel.d.ts.map +0 -1
- package/dist/commands/channel.js +0 -118
- package/dist/commands/channel.js.map +0 -1
- package/dist/commands/file.d.ts +0 -3
- package/dist/commands/file.d.ts.map +0 -1
- package/dist/commands/file.js +0 -113
- package/dist/commands/file.js.map +0 -1
- package/dist/commands/index.d.ts.map +0 -1
- package/dist/commands/index.js.map +0 -1
- package/dist/commands/message.d.ts +0 -3
- package/dist/commands/message.d.ts.map +0 -1
- package/dist/commands/message.js +0 -214
- package/dist/commands/message.js.map +0 -1
- package/dist/commands/reaction.d.ts +0 -3
- package/dist/commands/reaction.d.ts.map +0 -1
- package/dist/commands/reaction.js +0 -100
- package/dist/commands/reaction.js.map +0 -1
- package/dist/commands/snapshot.d.ts +0 -3
- package/dist/commands/snapshot.d.ts.map +0 -1
- package/dist/commands/snapshot.js +0 -88
- package/dist/commands/snapshot.js.map +0 -1
- package/dist/commands/user.d.ts.map +0 -1
- package/dist/commands/user.js +0 -96
- package/dist/commands/user.js.map +0 -1
- package/dist/commands/workspace.d.ts +0 -3
- package/dist/commands/workspace.d.ts.map +0 -1
- package/dist/commands/workspace.js +0 -89
- package/dist/commands/workspace.js.map +0 -1
- package/dist/lib/credential-manager.d.ts +0 -13
- package/dist/lib/credential-manager.d.ts.map +0 -1
- package/dist/lib/credential-manager.js +0 -58
- package/dist/lib/credential-manager.js.map +0 -1
- package/dist/lib/index.d.ts +0 -3
- package/dist/lib/index.d.ts.map +0 -1
- package/dist/lib/index.js +0 -3
- package/dist/lib/index.js.map +0 -1
- package/dist/lib/ref-manager.d.ts +0 -26
- package/dist/lib/ref-manager.d.ts.map +0 -1
- package/dist/lib/ref-manager.js +0 -92
- package/dist/lib/ref-manager.js.map +0 -1
- package/dist/lib/slack-client.d.ts +0 -37
- package/dist/lib/slack-client.d.ts.map +0 -1
- package/dist/lib/slack-client.js +0 -379
- package/dist/lib/slack-client.js.map +0 -1
- package/dist/lib/token-extractor.d.ts +0 -28
- package/dist/lib/token-extractor.d.ts.map +0 -1
- package/dist/lib/token-extractor.js +0 -401
- package/dist/lib/token-extractor.js.map +0 -1
- package/dist/src/platforms/discord/client.test.d.ts +0 -2
- package/dist/src/platforms/discord/client.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/client.test.js +0 -367
- package/dist/src/platforms/discord/client.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/auth.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/auth.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/auth.test.js +0 -65
- package/dist/src/platforms/discord/commands/auth.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/channel.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/channel.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/channel.test.js +0 -136
- package/dist/src/platforms/discord/commands/channel.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/file.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/file.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/file.test.js +0 -83
- package/dist/src/platforms/discord/commands/file.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/guild.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/guild.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/guild.test.js +0 -100
- package/dist/src/platforms/discord/commands/guild.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/message.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/message.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/message.test.js +0 -91
- package/dist/src/platforms/discord/commands/message.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/reaction.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/reaction.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/reaction.test.js +0 -115
- package/dist/src/platforms/discord/commands/reaction.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/snapshot.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/snapshot.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/snapshot.test.js +0 -25
- package/dist/src/platforms/discord/commands/snapshot.test.js.map +0 -1
- package/dist/src/platforms/discord/commands/user.test.d.ts +0 -2
- package/dist/src/platforms/discord/commands/user.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/commands/user.test.js +0 -103
- package/dist/src/platforms/discord/commands/user.test.js.map +0 -1
- package/dist/src/platforms/discord/credential-manager.test.d.ts +0 -2
- package/dist/src/platforms/discord/credential-manager.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/credential-manager.test.js +0 -136
- package/dist/src/platforms/discord/credential-manager.test.js.map +0 -1
- package/dist/src/platforms/discord/token-extractor.test.d.ts +0 -2
- package/dist/src/platforms/discord/token-extractor.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/token-extractor.test.js +0 -789
- package/dist/src/platforms/discord/token-extractor.test.js.map +0 -1
- package/dist/src/platforms/discord/types.test.d.ts +0 -2
- package/dist/src/platforms/discord/types.test.d.ts.map +0 -1
- package/dist/src/platforms/discord/types.test.js +0 -211
- package/dist/src/platforms/discord/types.test.js.map +0 -1
- package/dist/src/shared/utils/concurrency.test.d.ts +0 -2
- package/dist/src/shared/utils/concurrency.test.d.ts.map +0 -1
- package/dist/src/shared/utils/concurrency.test.js +0 -39
- package/dist/src/shared/utils/concurrency.test.js.map +0 -1
- package/dist/tests/cli.test.d.ts +0 -2
- package/dist/tests/cli.test.d.ts.map +0 -1
- package/dist/tests/cli.test.js +0 -83
- package/dist/tests/cli.test.js.map +0 -1
- package/dist/tests/commands/.test-slack-data/Local Storage/leveldb/CURRENT +0 -1
- package/dist/tests/commands/.test-slack-data/Local Storage/leveldb/LOCK +0 -0
- package/dist/tests/commands/.test-slack-data/Local Storage/leveldb/LOG +0 -3
- package/dist/tests/commands/.test-slack-data/Local Storage/leveldb/LOG.old +0 -1
- package/dist/tests/commands/.test-slack-data/Local Storage/leveldb/MANIFEST-000004 +0 -0
- package/dist/tests/commands/auth.test.d.ts +0 -2
- package/dist/tests/commands/auth.test.d.ts.map +0 -1
- package/dist/tests/commands/auth.test.js +0 -304
- package/dist/tests/commands/auth.test.js.map +0 -1
- package/dist/tests/commands/channel.test.d.ts +0 -2
- package/dist/tests/commands/channel.test.d.ts.map +0 -1
- package/dist/tests/commands/channel.test.js +0 -166
- package/dist/tests/commands/channel.test.js.map +0 -1
- package/dist/tests/commands/file.test.d.ts +0 -2
- package/dist/tests/commands/file.test.d.ts.map +0 -1
- package/dist/tests/commands/file.test.js +0 -175
- package/dist/tests/commands/file.test.js.map +0 -1
- package/dist/tests/commands/message.test.d.ts +0 -2
- package/dist/tests/commands/message.test.d.ts.map +0 -1
- package/dist/tests/commands/message.test.js +0 -293
- package/dist/tests/commands/message.test.js.map +0 -1
- package/dist/tests/commands/reaction.test.d.ts +0 -2
- package/dist/tests/commands/reaction.test.d.ts.map +0 -1
- package/dist/tests/commands/reaction.test.js +0 -84
- package/dist/tests/commands/reaction.test.js.map +0 -1
- package/dist/tests/commands/snapshot.test.d.ts +0 -2
- package/dist/tests/commands/snapshot.test.d.ts.map +0 -1
- package/dist/tests/commands/snapshot.test.js +0 -280
- package/dist/tests/commands/snapshot.test.js.map +0 -1
- package/dist/tests/commands/user.test.d.ts +0 -2
- package/dist/tests/commands/user.test.d.ts.map +0 -1
- package/dist/tests/commands/user.test.js +0 -117
- package/dist/tests/commands/user.test.js.map +0 -1
- package/dist/tests/commands/workspace.test.d.ts +0 -2
- package/dist/tests/commands/workspace.test.d.ts.map +0 -1
- package/dist/tests/commands/workspace.test.js +0 -453
- package/dist/tests/commands/workspace.test.js.map +0 -1
- package/dist/tests/credential-manager.test.d.ts +0 -2
- package/dist/tests/credential-manager.test.d.ts.map +0 -1
- package/dist/tests/credential-manager.test.js +0 -199
- package/dist/tests/credential-manager.test.js.map +0 -1
- package/dist/tests/slack-client.test.d.ts +0 -2
- package/dist/tests/slack-client.test.d.ts.map +0 -1
- package/dist/tests/slack-client.test.js +0 -741
- package/dist/tests/slack-client.test.js.map +0 -1
- package/dist/tests/types.test.d.ts +0 -2
- package/dist/tests/types.test.d.ts.map +0 -1
- package/dist/tests/types.test.js +0 -215
- package/dist/tests/types.test.js.map +0 -1
- package/dist/types/index.d.ts +0 -369
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -92
- package/dist/types/index.js.map +0 -1
- package/dist/utils/error-handler.d.ts +0 -2
- package/dist/utils/error-handler.d.ts.map +0 -1
- package/dist/utils/error-handler.js +0 -5
- package/dist/utils/error-handler.js.map +0 -1
- package/dist/utils/output.d.ts +0 -2
- package/dist/utils/output.d.ts.map +0 -1
- package/dist/utils/output.js +0 -4
- package/dist/utils/output.js.map +0 -1
- package/src/platforms/discord/commands/guild.test.ts +0 -117
- /package/dist/{cli.d.ts → src/platforms/teams/cli.d.ts} +0 -0
- /package/dist/{commands → src/platforms/teams/commands}/user.d.ts +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command } from 'commander'
|
|
2
|
+
import { handleError } from '../../../shared/utils/error-handler'
|
|
3
|
+
import { formatOutput } from '../../../shared/utils/output'
|
|
4
|
+
import { SlackClient } from '../client'
|
|
5
|
+
import { CredentialManager } from '../credential-manager'
|
|
6
|
+
|
|
7
|
+
async function listAction(options: { pretty?: boolean }): Promise<void> {
|
|
8
|
+
try {
|
|
9
|
+
const credManager = new CredentialManager()
|
|
10
|
+
const workspace = await credManager.getWorkspace()
|
|
11
|
+
|
|
12
|
+
if (!workspace) {
|
|
13
|
+
console.log(
|
|
14
|
+
formatOutput(
|
|
15
|
+
{ error: 'No current workspace set. Run "auth extract" first.' },
|
|
16
|
+
options.pretty
|
|
17
|
+
)
|
|
18
|
+
)
|
|
19
|
+
process.exit(1)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const client = new SlackClient(workspace.token, workspace.cookie)
|
|
23
|
+
const sections = await client.getChannelSections()
|
|
24
|
+
|
|
25
|
+
const output = sections.map((section) => ({
|
|
26
|
+
id: section.id,
|
|
27
|
+
name: section.name,
|
|
28
|
+
channel_count: section.channel_ids.length,
|
|
29
|
+
channel_ids: section.channel_ids,
|
|
30
|
+
date_created: section.date_created,
|
|
31
|
+
date_updated: section.date_updated,
|
|
32
|
+
}))
|
|
33
|
+
|
|
34
|
+
console.log(formatOutput(output, options.pretty))
|
|
35
|
+
} catch (error) {
|
|
36
|
+
handleError(error as Error)
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const sections = new Command('sections').description(
|
|
41
|
+
'Manage Slack channel sections (sidebar folders)'
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
sections
|
|
45
|
+
.command('list')
|
|
46
|
+
.description('List all channel sections')
|
|
47
|
+
.option('--pretty', 'Pretty print output')
|
|
48
|
+
.action(listAction)
|
|
49
|
+
|
|
50
|
+
export const sectionsCommand = sections
|
|
@@ -1,113 +1,10 @@
|
|
|
1
|
-
import { expect,
|
|
1
|
+
import { afterEach, beforeEach, expect, spyOn, test } from 'bun:test'
|
|
2
2
|
import { SlackClient } from '@/platforms/slack/client'
|
|
3
3
|
import { snapshotCommand } from '@/platforms/slack/commands/snapshot'
|
|
4
4
|
import { CredentialManager } from '@/platforms/slack/credential-manager'
|
|
5
5
|
import type { SlackChannel, SlackMessage, SlackUser } from '@/platforms/slack/types'
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
CredentialManager: class {
|
|
9
|
-
async getWorkspace() {
|
|
10
|
-
return {
|
|
11
|
-
workspace_id: 'T123',
|
|
12
|
-
workspace_name: 'Test Workspace',
|
|
13
|
-
token: 'xoxc-test',
|
|
14
|
-
cookie: 'test-cookie',
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
}))
|
|
19
|
-
|
|
20
|
-
mock.module('@/platforms/slack/client', () => ({
|
|
21
|
-
SlackClient: class {
|
|
22
|
-
async testAuth() {
|
|
23
|
-
return {
|
|
24
|
-
user_id: 'U123',
|
|
25
|
-
team_id: 'T123',
|
|
26
|
-
user: 'testuser',
|
|
27
|
-
team: 'Test Workspace',
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
async listChannels(): Promise<SlackChannel[]> {
|
|
31
|
-
return [
|
|
32
|
-
{
|
|
33
|
-
id: 'C123',
|
|
34
|
-
name: 'general',
|
|
35
|
-
is_private: false,
|
|
36
|
-
is_archived: false,
|
|
37
|
-
created: 1234567890,
|
|
38
|
-
creator: 'U123',
|
|
39
|
-
topic: { value: 'General discussion', creator: 'U123', last_set: 1234567890 },
|
|
40
|
-
purpose: { value: 'General channel', creator: 'U123', last_set: 1234567890 },
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
id: 'C456',
|
|
44
|
-
name: 'random',
|
|
45
|
-
is_private: false,
|
|
46
|
-
is_archived: false,
|
|
47
|
-
created: 1234567891,
|
|
48
|
-
creator: 'U123',
|
|
49
|
-
topic: { value: 'Random stuff', creator: 'U123', last_set: 1234567891 },
|
|
50
|
-
purpose: { value: 'Random channel', creator: 'U123', last_set: 1234567891 },
|
|
51
|
-
},
|
|
52
|
-
]
|
|
53
|
-
}
|
|
54
|
-
async getMessages(_channel: string, _limit?: number): Promise<SlackMessage[]> {
|
|
55
|
-
return [
|
|
56
|
-
{
|
|
57
|
-
ts: '1234567890.000100',
|
|
58
|
-
text: 'Hello world',
|
|
59
|
-
type: 'message',
|
|
60
|
-
user: 'U123',
|
|
61
|
-
username: 'testuser',
|
|
62
|
-
thread_ts: undefined,
|
|
63
|
-
reply_count: 0,
|
|
64
|
-
edited: undefined,
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
ts: '1234567890.000200',
|
|
68
|
-
text: 'Second message',
|
|
69
|
-
type: 'message',
|
|
70
|
-
user: 'U456',
|
|
71
|
-
username: 'otheruser',
|
|
72
|
-
thread_ts: undefined,
|
|
73
|
-
reply_count: 0,
|
|
74
|
-
edited: undefined,
|
|
75
|
-
},
|
|
76
|
-
]
|
|
77
|
-
}
|
|
78
|
-
async listUsers(): Promise<SlackUser[]> {
|
|
79
|
-
return [
|
|
80
|
-
{
|
|
81
|
-
id: 'U123',
|
|
82
|
-
name: 'alice',
|
|
83
|
-
real_name: 'Alice Smith',
|
|
84
|
-
is_admin: true,
|
|
85
|
-
is_owner: false,
|
|
86
|
-
is_bot: false,
|
|
87
|
-
is_app_user: false,
|
|
88
|
-
profile: {
|
|
89
|
-
email: 'alice@example.com',
|
|
90
|
-
title: 'Engineer',
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
id: 'U456',
|
|
95
|
-
name: 'bob',
|
|
96
|
-
real_name: 'Bob Jones',
|
|
97
|
-
is_admin: false,
|
|
98
|
-
is_owner: false,
|
|
99
|
-
is_bot: false,
|
|
100
|
-
is_app_user: false,
|
|
101
|
-
profile: {
|
|
102
|
-
email: 'bob@example.com',
|
|
103
|
-
title: 'Designer',
|
|
104
|
-
},
|
|
105
|
-
},
|
|
106
|
-
]
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
|
-
}))
|
|
110
|
-
|
|
7
|
+
// Test the command structure (no mocks needed)
|
|
111
8
|
test('snapshot command exports correctly', () => {
|
|
112
9
|
expect(snapshotCommand).toBeDefined()
|
|
113
10
|
expect(typeof snapshotCommand).toBe('object')
|
|
@@ -136,6 +33,121 @@ test('snapshot command has --limit option', () => {
|
|
|
136
33
|
expect(hasLimit).toBe(true)
|
|
137
34
|
})
|
|
138
35
|
|
|
36
|
+
// Test snapshot logic using spyOn (no global mock pollution)
|
|
37
|
+
let credManagerSpy: ReturnType<typeof spyOn>
|
|
38
|
+
let clientTestAuthSpy: ReturnType<typeof spyOn>
|
|
39
|
+
let clientListChannelsSpy: ReturnType<typeof spyOn>
|
|
40
|
+
let clientListUsersSpy: ReturnType<typeof spyOn>
|
|
41
|
+
let clientGetMessagesSpy: ReturnType<typeof spyOn>
|
|
42
|
+
|
|
43
|
+
const mockChannels: SlackChannel[] = [
|
|
44
|
+
{
|
|
45
|
+
id: 'C123',
|
|
46
|
+
name: 'general',
|
|
47
|
+
is_private: false,
|
|
48
|
+
is_archived: false,
|
|
49
|
+
created: 1234567890,
|
|
50
|
+
creator: 'U123',
|
|
51
|
+
topic: { value: 'General discussion', creator: 'U123', last_set: 1234567890 },
|
|
52
|
+
purpose: { value: 'General channel', creator: 'U123', last_set: 1234567890 },
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
id: 'C456',
|
|
56
|
+
name: 'random',
|
|
57
|
+
is_private: false,
|
|
58
|
+
is_archived: false,
|
|
59
|
+
created: 1234567891,
|
|
60
|
+
creator: 'U123',
|
|
61
|
+
topic: { value: 'Random stuff', creator: 'U123', last_set: 1234567891 },
|
|
62
|
+
purpose: { value: 'Random channel', creator: 'U123', last_set: 1234567891 },
|
|
63
|
+
},
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
const mockMessages: SlackMessage[] = [
|
|
67
|
+
{
|
|
68
|
+
ts: '1234567890.000100',
|
|
69
|
+
text: 'Hello world',
|
|
70
|
+
type: 'message',
|
|
71
|
+
user: 'U123',
|
|
72
|
+
username: 'testuser',
|
|
73
|
+
thread_ts: undefined,
|
|
74
|
+
reply_count: 0,
|
|
75
|
+
edited: undefined,
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
ts: '1234567890.000200',
|
|
79
|
+
text: 'Second message',
|
|
80
|
+
type: 'message',
|
|
81
|
+
user: 'U456',
|
|
82
|
+
username: 'otheruser',
|
|
83
|
+
thread_ts: undefined,
|
|
84
|
+
reply_count: 0,
|
|
85
|
+
edited: undefined,
|
|
86
|
+
},
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
const mockUsers: SlackUser[] = [
|
|
90
|
+
{
|
|
91
|
+
id: 'U123',
|
|
92
|
+
name: 'alice',
|
|
93
|
+
real_name: 'Alice Smith',
|
|
94
|
+
is_admin: true,
|
|
95
|
+
is_owner: false,
|
|
96
|
+
is_bot: false,
|
|
97
|
+
is_app_user: false,
|
|
98
|
+
profile: {
|
|
99
|
+
email: 'alice@example.com',
|
|
100
|
+
title: 'Engineer',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
id: 'U456',
|
|
105
|
+
name: 'bob',
|
|
106
|
+
real_name: 'Bob Jones',
|
|
107
|
+
is_admin: false,
|
|
108
|
+
is_owner: false,
|
|
109
|
+
is_bot: false,
|
|
110
|
+
is_app_user: false,
|
|
111
|
+
profile: {
|
|
112
|
+
email: 'bob@example.com',
|
|
113
|
+
title: 'Designer',
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
beforeEach(() => {
|
|
119
|
+
// Spy on CredentialManager.prototype.getWorkspace
|
|
120
|
+
credManagerSpy = spyOn(CredentialManager.prototype, 'getWorkspace').mockResolvedValue({
|
|
121
|
+
workspace_id: 'T123',
|
|
122
|
+
workspace_name: 'Test Workspace',
|
|
123
|
+
token: 'xoxc-test',
|
|
124
|
+
cookie: 'test-cookie',
|
|
125
|
+
})
|
|
126
|
+
|
|
127
|
+
// Spy on SlackClient.prototype methods
|
|
128
|
+
clientTestAuthSpy = spyOn(SlackClient.prototype, 'testAuth').mockResolvedValue({
|
|
129
|
+
user_id: 'U123',
|
|
130
|
+
team_id: 'T123',
|
|
131
|
+
user: 'testuser',
|
|
132
|
+
team: 'Test Workspace',
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
clientListChannelsSpy = spyOn(SlackClient.prototype, 'listChannels').mockResolvedValue(
|
|
136
|
+
mockChannels
|
|
137
|
+
)
|
|
138
|
+
clientListUsersSpy = spyOn(SlackClient.prototype, 'listUsers').mockResolvedValue(mockUsers)
|
|
139
|
+
clientGetMessagesSpy = spyOn(SlackClient.prototype, 'getMessages').mockResolvedValue(mockMessages)
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
afterEach(() => {
|
|
143
|
+
// Restore all spies
|
|
144
|
+
credManagerSpy?.mockRestore()
|
|
145
|
+
clientTestAuthSpy?.mockRestore()
|
|
146
|
+
clientListChannelsSpy?.mockRestore()
|
|
147
|
+
clientListUsersSpy?.mockRestore()
|
|
148
|
+
clientGetMessagesSpy?.mockRestore()
|
|
149
|
+
})
|
|
150
|
+
|
|
139
151
|
test('full snapshot returns workspace, channels, messages, and users', async () => {
|
|
140
152
|
const credManager = new CredentialManager()
|
|
141
153
|
const client = new SlackClient('xoxc-test', 'test-cookie')
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { afterEach, beforeEach, describe, expect, it, mock, spyOn } from 'bun:test'
|
|
2
|
+
import { SlackClient } from '../client'
|
|
3
|
+
import { CredentialManager } from '../credential-manager'
|
|
4
|
+
import { countsAction, markAction, threadsAction } from './unread'
|
|
5
|
+
|
|
6
|
+
let credManagerGetWorkspaceSpy: ReturnType<typeof spyOn>
|
|
7
|
+
let clientGetUnreadCountsSpy: ReturnType<typeof spyOn>
|
|
8
|
+
let clientGetThreadViewSpy: ReturnType<typeof spyOn>
|
|
9
|
+
let clientMarkReadSpy: ReturnType<typeof spyOn>
|
|
10
|
+
|
|
11
|
+
beforeEach(() => {
|
|
12
|
+
credManagerGetWorkspaceSpy = spyOn(CredentialManager.prototype, 'getWorkspace').mockResolvedValue(
|
|
13
|
+
{
|
|
14
|
+
workspace_id: 'T123',
|
|
15
|
+
workspace_name: 'Test Workspace',
|
|
16
|
+
token: 'xoxc-test',
|
|
17
|
+
cookie: 'test-cookie',
|
|
18
|
+
}
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
clientGetUnreadCountsSpy = spyOn(SlackClient.prototype, 'getUnreadCounts').mockResolvedValue({
|
|
22
|
+
channels: [{ id: 'C123', name: 'general', unread_count: 5, mention_count: 2 }],
|
|
23
|
+
total_unread: 5,
|
|
24
|
+
total_mentions: 2,
|
|
25
|
+
})
|
|
26
|
+
|
|
27
|
+
clientGetThreadViewSpy = spyOn(SlackClient.prototype, 'getThreadView').mockResolvedValue({
|
|
28
|
+
channel_id: 'C123',
|
|
29
|
+
thread_ts: '1234567890.123456',
|
|
30
|
+
unread_count: 3,
|
|
31
|
+
last_read: '1234567890.123450',
|
|
32
|
+
subscribed: true,
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
clientMarkReadSpy = spyOn(SlackClient.prototype, 'markRead').mockResolvedValue(undefined)
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
afterEach(() => {
|
|
39
|
+
credManagerGetWorkspaceSpy?.mockRestore()
|
|
40
|
+
clientGetUnreadCountsSpy?.mockRestore()
|
|
41
|
+
clientGetThreadViewSpy?.mockRestore()
|
|
42
|
+
clientMarkReadSpy?.mockRestore()
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
describe('unread commands', () => {
|
|
46
|
+
describe('getUnreadCounts', () => {
|
|
47
|
+
it('should return unread counts', async () => {
|
|
48
|
+
const mockCounts = {
|
|
49
|
+
channels: [
|
|
50
|
+
{ id: 'C123', name: 'general', unread_count: 5, mention_count: 2 },
|
|
51
|
+
{ id: 'C456', name: 'random', unread_count: 3, mention_count: 0 },
|
|
52
|
+
],
|
|
53
|
+
total_unread: 8,
|
|
54
|
+
total_mentions: 2,
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
clientGetUnreadCountsSpy.mockResolvedValue(mockCounts)
|
|
58
|
+
|
|
59
|
+
const mockClient = new SlackClient('xoxc-test', 'test-cookie')
|
|
60
|
+
const result = await mockClient.getUnreadCounts()
|
|
61
|
+
|
|
62
|
+
expect(result).toEqual(mockCounts)
|
|
63
|
+
expect(result.total_unread).toBe(8)
|
|
64
|
+
expect(result.total_mentions).toBe(2)
|
|
65
|
+
expect(result.channels).toHaveLength(2)
|
|
66
|
+
})
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
describe('getThreadView', () => {
|
|
70
|
+
it('should return thread subscription details', async () => {
|
|
71
|
+
const mockThreadView = {
|
|
72
|
+
channel_id: 'C123',
|
|
73
|
+
thread_ts: '1234567890.123456',
|
|
74
|
+
unread_count: 3,
|
|
75
|
+
last_read: '1234567890.123450',
|
|
76
|
+
subscribed: true,
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
clientGetThreadViewSpy.mockResolvedValue(mockThreadView)
|
|
80
|
+
|
|
81
|
+
const mockClient = new SlackClient('xoxc-test', 'test-cookie')
|
|
82
|
+
const result = await mockClient.getThreadView('C123', '1234567890.123456')
|
|
83
|
+
|
|
84
|
+
expect(result).toEqual(mockThreadView)
|
|
85
|
+
expect(result.unread_count).toBe(3)
|
|
86
|
+
expect(result.subscribed).toBe(true)
|
|
87
|
+
})
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
describe('markRead', () => {
|
|
91
|
+
it('should mark channel as read', async () => {
|
|
92
|
+
const mockClient = new SlackClient('xoxc-test', 'test-cookie')
|
|
93
|
+
await mockClient.markRead('C123', '1234567890.123456')
|
|
94
|
+
|
|
95
|
+
expect(clientMarkReadSpy).toHaveBeenCalledWith('C123', '1234567890.123456')
|
|
96
|
+
})
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
describe('CLI commands', () => {
|
|
100
|
+
it('should handle unread counts command', async () => {
|
|
101
|
+
const mockConsoleLog = mock(() => {})
|
|
102
|
+
const originalLog = console.log
|
|
103
|
+
console.log = mockConsoleLog
|
|
104
|
+
|
|
105
|
+
await countsAction({ pretty: false })
|
|
106
|
+
|
|
107
|
+
expect(clientGetUnreadCountsSpy).toHaveBeenCalled()
|
|
108
|
+
expect(mockConsoleLog).toHaveBeenCalled()
|
|
109
|
+
|
|
110
|
+
console.log = originalLog
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
it('should handle unread threads command', async () => {
|
|
114
|
+
const mockConsoleLog = mock(() => {})
|
|
115
|
+
const originalLog = console.log
|
|
116
|
+
console.log = mockConsoleLog
|
|
117
|
+
|
|
118
|
+
await threadsAction('C123', '1234567890.123456', { pretty: false })
|
|
119
|
+
|
|
120
|
+
expect(clientGetThreadViewSpy).toHaveBeenCalledWith('C123', '1234567890.123456')
|
|
121
|
+
expect(mockConsoleLog).toHaveBeenCalled()
|
|
122
|
+
|
|
123
|
+
console.log = originalLog
|
|
124
|
+
})
|
|
125
|
+
|
|
126
|
+
it('should handle mark read command', async () => {
|
|
127
|
+
const mockConsoleLog = mock(() => {})
|
|
128
|
+
const originalLog = console.log
|
|
129
|
+
console.log = mockConsoleLog
|
|
130
|
+
|
|
131
|
+
await markAction('C123', '1234567890.123456', { pretty: false })
|
|
132
|
+
|
|
133
|
+
expect(clientMarkReadSpy).toHaveBeenCalledWith('C123', '1234567890.123456')
|
|
134
|
+
expect(mockConsoleLog).toHaveBeenCalled()
|
|
135
|
+
|
|
136
|
+
console.log = originalLog
|
|
137
|
+
})
|
|
138
|
+
})
|
|
139
|
+
})
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { Command } from 'commander'
|
|
2
|
+
import { handleError } from '../../../shared/utils/error-handler'
|
|
3
|
+
import { formatOutput } from '../../../shared/utils/output'
|
|
4
|
+
import { SlackClient } from '../client'
|
|
5
|
+
import { CredentialManager } from '../credential-manager'
|
|
6
|
+
|
|
7
|
+
export async function countsAction(options: { pretty?: boolean }): Promise<void> {
|
|
8
|
+
try {
|
|
9
|
+
const credManager = new CredentialManager()
|
|
10
|
+
const workspace = await credManager.getWorkspace()
|
|
11
|
+
|
|
12
|
+
if (!workspace) {
|
|
13
|
+
console.log(
|
|
14
|
+
formatOutput(
|
|
15
|
+
{ error: 'No current workspace set. Run "auth extract" first.' },
|
|
16
|
+
options.pretty
|
|
17
|
+
)
|
|
18
|
+
)
|
|
19
|
+
process.exit(1)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const client = new SlackClient(workspace.token, workspace.cookie)
|
|
23
|
+
const counts = await client.getUnreadCounts()
|
|
24
|
+
|
|
25
|
+
const output = {
|
|
26
|
+
total_unread: counts.total_unread,
|
|
27
|
+
total_mentions: counts.total_mentions,
|
|
28
|
+
channels: counts.channels.map((ch) => ({
|
|
29
|
+
id: ch.id,
|
|
30
|
+
name: ch.name,
|
|
31
|
+
unread_count: ch.unread_count,
|
|
32
|
+
mention_count: ch.mention_count,
|
|
33
|
+
})),
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
console.log(formatOutput(output, options.pretty))
|
|
37
|
+
} catch (error) {
|
|
38
|
+
handleError(error as Error)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export async function threadsAction(
|
|
43
|
+
channel: string,
|
|
44
|
+
threadTs: string,
|
|
45
|
+
options: { pretty?: boolean }
|
|
46
|
+
): Promise<void> {
|
|
47
|
+
try {
|
|
48
|
+
const credManager = new CredentialManager()
|
|
49
|
+
const workspace = await credManager.getWorkspace()
|
|
50
|
+
|
|
51
|
+
if (!workspace) {
|
|
52
|
+
console.log(
|
|
53
|
+
formatOutput(
|
|
54
|
+
{ error: 'No current workspace set. Run "auth extract" first.' },
|
|
55
|
+
options.pretty
|
|
56
|
+
)
|
|
57
|
+
)
|
|
58
|
+
process.exit(1)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const client = new SlackClient(workspace.token, workspace.cookie)
|
|
62
|
+
const threadView = await client.getThreadView(channel, threadTs)
|
|
63
|
+
|
|
64
|
+
const output = {
|
|
65
|
+
channel_id: threadView.channel_id,
|
|
66
|
+
thread_ts: threadView.thread_ts,
|
|
67
|
+
unread_count: threadView.unread_count,
|
|
68
|
+
last_read: threadView.last_read,
|
|
69
|
+
subscribed: threadView.subscribed,
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
console.log(formatOutput(output, options.pretty))
|
|
73
|
+
} catch (error) {
|
|
74
|
+
handleError(error as Error)
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export async function markAction(
|
|
79
|
+
channel: string,
|
|
80
|
+
ts: string,
|
|
81
|
+
options: { pretty?: boolean }
|
|
82
|
+
): Promise<void> {
|
|
83
|
+
try {
|
|
84
|
+
const credManager = new CredentialManager()
|
|
85
|
+
const workspace = await credManager.getWorkspace()
|
|
86
|
+
|
|
87
|
+
if (!workspace) {
|
|
88
|
+
console.log(
|
|
89
|
+
formatOutput(
|
|
90
|
+
{ error: 'No current workspace set. Run "auth extract" first.' },
|
|
91
|
+
options.pretty
|
|
92
|
+
)
|
|
93
|
+
)
|
|
94
|
+
process.exit(1)
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const client = new SlackClient(workspace.token, workspace.cookie)
|
|
98
|
+
await client.markRead(channel, ts)
|
|
99
|
+
|
|
100
|
+
console.log(formatOutput({ marked_read: true, channel, ts }, options.pretty))
|
|
101
|
+
} catch (error) {
|
|
102
|
+
handleError(error as Error)
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export const unreadCommand = new Command('unread')
|
|
107
|
+
.description('Unread message commands')
|
|
108
|
+
.addCommand(
|
|
109
|
+
new Command('counts')
|
|
110
|
+
.description('Get unread counts for all channels')
|
|
111
|
+
.option('--pretty', 'Pretty print JSON output')
|
|
112
|
+
.action(countsAction)
|
|
113
|
+
)
|
|
114
|
+
.addCommand(
|
|
115
|
+
new Command('threads')
|
|
116
|
+
.description('Get thread subscription details')
|
|
117
|
+
.argument('<channel>', 'Channel ID or name')
|
|
118
|
+
.argument('<thread_ts>', 'Thread timestamp')
|
|
119
|
+
.option('--pretty', 'Pretty print JSON output')
|
|
120
|
+
.action(threadsAction)
|
|
121
|
+
)
|
|
122
|
+
.addCommand(
|
|
123
|
+
new Command('mark')
|
|
124
|
+
.description('Mark channel as read up to timestamp')
|
|
125
|
+
.argument('<channel>', 'Channel ID or name')
|
|
126
|
+
.argument('<ts>', 'Message timestamp to mark as read')
|
|
127
|
+
.option('--pretty', 'Pretty print JSON output')
|
|
128
|
+
.action(markAction)
|
|
129
|
+
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { describe, expect, test } from 'bun:test'
|
|
2
|
-
import { SlackClient } from '
|
|
3
|
-
import { userCommand } from '
|
|
4
|
-
import type { SlackUser } from '
|
|
2
|
+
import { SlackClient } from '@/platforms/slack/client'
|
|
3
|
+
import { userCommand } from '@/platforms/slack/commands/user'
|
|
4
|
+
import type { SlackUser } from '@/platforms/slack/types'
|
|
5
5
|
|
|
6
6
|
// Mock users
|
|
7
7
|
const mockUsers: SlackUser[] = [
|