agent-messenger 2.20.4 → 2.21.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-plugin/plugin.json +1 -1
- package/README.md +8 -5
- package/bun.lock +2 -2
- package/dist/package.json +10 -2
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +3 -0
- package/dist/src/cli.js.map +1 -1
- package/dist/src/platforms/webexbot/cli.d.ts +5 -0
- package/dist/src/platforms/webexbot/cli.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/cli.js +30 -0
- package/dist/src/platforms/webexbot/cli.js.map +1 -0
- package/dist/src/platforms/webexbot/client.d.ts +41 -0
- package/dist/src/platforms/webexbot/client.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/client.js +66 -0
- package/dist/src/platforms/webexbot/client.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/auth.d.ts +28 -0
- package/dist/src/platforms/webexbot/commands/auth.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/auth.js +166 -0
- package/dist/src/platforms/webexbot/commands/auth.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/index.d.ts +7 -0
- package/dist/src/platforms/webexbot/commands/index.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/index.js +7 -0
- package/dist/src/platforms/webexbot/commands/index.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/listen.d.ts +12 -0
- package/dist/src/platforms/webexbot/commands/listen.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/listen.js +85 -0
- package/dist/src/platforms/webexbot/commands/listen.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/member.d.ts +19 -0
- package/dist/src/platforms/webexbot/commands/member.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/member.js +33 -0
- package/dist/src/platforms/webexbot/commands/member.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/message.d.ts +37 -0
- package/dist/src/platforms/webexbot/commands/message.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/message.js +142 -0
- package/dist/src/platforms/webexbot/commands/message.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/shared.d.ts +9 -0
- package/dist/src/platforms/webexbot/commands/shared.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/shared.js +13 -0
- package/dist/src/platforms/webexbot/commands/shared.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/space.d.ts +28 -0
- package/dist/src/platforms/webexbot/commands/space.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/space.js +61 -0
- package/dist/src/platforms/webexbot/commands/space.js.map +1 -0
- package/dist/src/platforms/webexbot/commands/whoami.d.ts +16 -0
- package/dist/src/platforms/webexbot/commands/whoami.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/commands/whoami.js +29 -0
- package/dist/src/platforms/webexbot/commands/whoami.js.map +1 -0
- package/dist/src/platforms/webexbot/credential-manager.d.ts +17 -0
- package/dist/src/platforms/webexbot/credential-manager.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/credential-manager.js +120 -0
- package/dist/src/platforms/webexbot/credential-manager.js.map +1 -0
- package/dist/src/platforms/webexbot/index.d.ts +9 -0
- package/dist/src/platforms/webexbot/index.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/index.js +6 -0
- package/dist/src/platforms/webexbot/index.js.map +1 -0
- package/dist/src/platforms/webexbot/listener.d.ts +44 -0
- package/dist/src/platforms/webexbot/listener.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/listener.js +214 -0
- package/dist/src/platforms/webexbot/listener.js.map +1 -0
- package/dist/src/platforms/webexbot/types.d.ts +60 -0
- package/dist/src/platforms/webexbot/types.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/types.js +28 -0
- package/dist/src/platforms/webexbot/types.js.map +1 -0
- package/dist/src/platforms/webexbot/wdm-discovery.d.ts +4 -0
- package/dist/src/platforms/webexbot/wdm-discovery.d.ts.map +1 -0
- package/dist/src/platforms/webexbot/wdm-discovery.js +36 -0
- package/dist/src/platforms/webexbot/wdm-discovery.js.map +1 -0
- package/docs/content/docs/cli/meta.json +1 -0
- package/docs/content/docs/cli/webexbot.mdx +290 -0
- package/docs/content/docs/sdk/meta.json +1 -0
- package/docs/content/docs/sdk/webexbot.mdx +340 -0
- package/docs/src/app/page.tsx +115 -19
- package/package.json +10 -2
- package/skills/agent-channeltalk/SKILL.md +1 -1
- package/skills/agent-channeltalkbot/SKILL.md +1 -1
- package/skills/agent-discord/SKILL.md +1 -1
- package/skills/agent-discordbot/SKILL.md +1 -1
- package/skills/agent-instagram/SKILL.md +1 -1
- package/skills/agent-kakaotalk/SKILL.md +1 -1
- package/skills/agent-line/SKILL.md +1 -1
- package/skills/agent-slack/SKILL.md +1 -1
- package/skills/agent-slackbot/SKILL.md +1 -1
- package/skills/agent-teams/SKILL.md +1 -1
- package/skills/agent-telegram/SKILL.md +1 -1
- package/skills/agent-telegrambot/SKILL.md +1 -1
- package/skills/agent-webex/SKILL.md +1 -1
- package/skills/agent-webexbot/SKILL.md +361 -0
- package/skills/agent-webexbot/references/authentication.md +225 -0
- package/skills/agent-webexbot/references/common-patterns.md +590 -0
- package/skills/agent-wechatbot/SKILL.md +1 -1
- package/skills/agent-whatsapp/SKILL.md +1 -1
- package/skills/agent-whatsappbot/SKILL.md +1 -1
- package/src/cli.ts +4 -0
- package/src/platforms/webex/typings/webex-message-handler.d.ts +360 -29
- package/src/platforms/webexbot/cli.ts +42 -0
- package/src/platforms/webexbot/client.ts +87 -0
- package/src/platforms/webexbot/commands/auth.test.ts +185 -0
- package/src/platforms/webexbot/commands/auth.ts +210 -0
- package/src/platforms/webexbot/commands/index.ts +6 -0
- package/src/platforms/webexbot/commands/listen.test.ts +20 -0
- package/src/platforms/webexbot/commands/listen.ts +104 -0
- package/src/platforms/webexbot/commands/member.ts +51 -0
- package/src/platforms/webexbot/commands/message.ts +197 -0
- package/src/platforms/webexbot/commands/shared.ts +22 -0
- package/src/platforms/webexbot/commands/space.ts +88 -0
- package/src/platforms/webexbot/commands/whoami.ts +43 -0
- package/src/platforms/webexbot/credential-manager.test.ts +182 -0
- package/src/platforms/webexbot/credential-manager.ts +149 -0
- package/src/platforms/webexbot/index.ts +8 -0
- package/src/platforms/webexbot/listener.test.ts +234 -0
- package/src/platforms/webexbot/listener.ts +255 -0
- package/src/platforms/webexbot/types.test.ts +87 -0
- package/src/platforms/webexbot/types.ts +72 -0
- package/src/platforms/webexbot/wdm-discovery.test.ts +97 -0
- package/src/platforms/webexbot/wdm-discovery.ts +43 -0
package/docs/src/app/page.tsx
CHANGED
|
@@ -89,11 +89,23 @@ function TeamsIcon({ className, style }: { className?: string; style?: React.CSS
|
|
|
89
89
|
|
|
90
90
|
function TelegramIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
91
91
|
return (
|
|
92
|
-
<svg viewBox="0 0
|
|
92
|
+
<svg viewBox="0 0 240 240" className={className} style={style}>
|
|
93
93
|
<title>Telegram icon</title>
|
|
94
|
+
<defs>
|
|
95
|
+
<linearGradient id="telegram-grad" x1="120" y1="240" x2="120" gradientUnits="userSpaceOnUse">
|
|
96
|
+
<stop offset="0" stopColor="#1D93D2" />
|
|
97
|
+
<stop offset="1" stopColor="#38B0E3" />
|
|
98
|
+
</linearGradient>
|
|
99
|
+
</defs>
|
|
100
|
+
<circle cx="120" cy="120" r="120" fill="url(#telegram-grad)" />
|
|
101
|
+
<path
|
|
102
|
+
fill="#C8DAEA"
|
|
103
|
+
d="M81.229,128.772l14.237,39.406s1.78,3.687,3.686,3.687,30.255-29.492,30.255-29.492l31.525-60.89L81.737,118.6Z"
|
|
104
|
+
/>
|
|
105
|
+
<path fill="#A9C6D8" d="M100.106,138.878l-2.733,29.046s-1.144,8.9,7.754,0,17.415-15.763,17.415-15.763" />
|
|
94
106
|
<path
|
|
95
|
-
|
|
96
|
-
|
|
107
|
+
fill="#FFFFFF"
|
|
108
|
+
d="M81.486,130.178,52.2,120.636s-3.5-1.42-2.373-4.64c.232-.664.7-1.229,2.1-2.2,6.489-4.523,120.106-45.36,120.106-45.36s3.208-1.081,5.1-.362a2.766,2.766,0,0,1,1.885,2.055,9.357,9.357,0,0,1,.254,2.585c-.009.752-.1,1.449-.169,2.542-.692,11.165-21.4,94.493-21.4,94.493s-1.239,4.876-5.678,5.043A8.13,8.13,0,0,1,146.1,172.5c-8.711-7.493-38.819-27.727-45.472-32.177a1.27,1.27,0,0,1-.546-.9c-.093-.469.417-1.05.417-1.05s52.426-46.6,53.821-51.492c.108-.379-.3-.566-.848-.4-3.482,1.281-63.844,39.4-70.506,43.607A3.21,3.21,0,0,1,81.486,130.178Z"
|
|
97
109
|
/>
|
|
98
110
|
</svg>
|
|
99
111
|
)
|
|
@@ -101,11 +113,11 @@ function TelegramIcon({ className, style }: { className?: string; style?: React.
|
|
|
101
113
|
|
|
102
114
|
function WhatsAppIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
103
115
|
return (
|
|
104
|
-
<svg viewBox="0 0
|
|
116
|
+
<svg viewBox="0 0 24 24" className={className} style={style}>
|
|
105
117
|
<title>WhatsApp icon</title>
|
|
106
118
|
<path
|
|
107
|
-
d="M64 0C28.7 0 0 28.7 0 64c0 11.3 2.9 21.9 8.1 31.1L0 128l33.6-8.8C42.5 124.7 53 128 64 128c35.3 0 64-28.7 64-64S99.3 0 64 0zm0 117.1c-10.1 0-19.6-2.8-27.7-7.6l-2-1.2-20.5 5.4 5.5-20.1-1.3-2.1C12.7 83.3 9.6 73.9 9.6 64c0-30 24.4-54.4 54.4-54.4S118.4 34 118.4 64s-24.4 53.1-54.4 53.1zm29.8-40.7c-1.6-.8-9.6-4.7-11.1-5.3-1.5-.5-2.6-.8-3.7.8s-4.2 5.3-5.2 6.4c-1 1.1-1.9 1.2-3.5.4-1.6-.8-6.8-2.5-13-8-4.8-4.3-8-9.5-9-11.1-.9-1.6-.1-2.5.7-3.3.8-.7 1.6-1.9 2.4-2.8.8-1 1.1-1.6 1.6-2.7.5-1.1.3-2-.1-2.8-.5-.8-3.7-8.9-5.1-12.2-1.3-3.2-2.7-2.8-3.7-2.8-1 0-2.1-.1-3.2-.1s-2.9.4-4.4 2c-1.5 1.6-5.8 5.7-5.8 13.8s5.9 16 6.7 17.1c.8 1.1 11.6 17.7 28.1 24.8 3.9 1.7 7 2.7 9.4 3.5 3.9 1.2 7.5 1.1 10.3.6 3.2-.5 9.6-3.9 10.9-7.7 1.4-3.8 1.4-7 1-7.7-.5-.7-1.6-1.1-3.2-1.9z"
|
|
108
119
|
fill="#25D366"
|
|
120
|
+
d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"
|
|
109
121
|
/>
|
|
110
122
|
</svg>
|
|
111
123
|
)
|
|
@@ -113,12 +125,19 @@ function WhatsAppIcon({ className, style }: { className?: string; style?: React.
|
|
|
113
125
|
|
|
114
126
|
function KakaoTalkIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
115
127
|
return (
|
|
116
|
-
<svg viewBox="0 0
|
|
128
|
+
<svg viewBox="0 0 256 256" className={className} style={style}>
|
|
117
129
|
<title>KakaoTalk icon</title>
|
|
118
|
-
<rect width="128" height="128" rx="28" fill="#FEE500" />
|
|
119
130
|
<path
|
|
120
|
-
|
|
131
|
+
fill="#FFE812"
|
|
132
|
+
d="M256 236c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20V20C0 8.954 8.954 0 20 0h216c11.046 0 20 8.954 20 20v216z"
|
|
133
|
+
/>
|
|
134
|
+
<path
|
|
121
135
|
fill="#3C1E1E"
|
|
136
|
+
d="M128 36C70.562 36 24 72.713 24 118c0 29.279 19.466 54.97 48.748 69.477-1.593 5.494-10.237 35.344-10.581 37.689 0 0-.207 1.762.934 2.434s2.483.15 2.483.15c3.272-.457 37.943-24.811 43.944-29.04 5.995.849 12.168 1.29 18.472 1.29 57.438 0 104-36.712 104-82 0-45.287-46.562-82-104-82z"
|
|
137
|
+
/>
|
|
138
|
+
<path
|
|
139
|
+
fill="#FFE812"
|
|
140
|
+
d="M70.5 146.625c-3.309 0-6-2.57-6-5.73V105.25h-9.362c-3.247 0-5.888-2.636-5.888-5.875s2.642-5.875 5.888-5.875h30.724c3.247 0 5.888 2.636 5.888 5.875s-2.642 5.875-5.888 5.875H76.5v35.645c0 3.16-2.691 5.73-6 5.73zM123.112 146.547c-2.502 0-4.416-1.016-4.993-2.65l-2.971-7.778-18.296-.001-2.973 7.783c-.575 1.631-2.488 2.646-4.99 2.646a9.155 9.155 0 0 1-3.814-.828c-1.654-.763-3.244-2.861-1.422-8.52l14.352-37.776c1.011-2.873 4.082-5.833 7.99-5.922 3.919.088 6.99 3.049 8.003 5.928l14.346 37.759c1.826 5.672.236 7.771-1.418 8.532a9.176 9.176 0 0 1-3.814.827zm-11.119-21.056L106 108.466l-5.993 17.025h11.986zM138 145.75c-3.171 0-5.75-2.468-5.75-5.5V99.5c0-3.309 2.748-6 6.125-6s6.125 2.691 6.125 6v35.25h12.75c3.171 0 5.75 2.468 5.75 5.5s-2.579 5.5-5.75 5.5H138zM171.334 146.547c-3.309 0-6-2.691-6-6V99.5c0-3.309 2.691-6 6-6s6 2.691 6 6v12.896l16.74-16.74c.861-.861 2.044-1.335 3.328-1.335 1.498 0 3.002.646 4.129 1.772 1.051 1.05 1.678 2.401 1.764 3.804.087 1.415-.384 2.712-1.324 3.653l-13.673 13.671 14.769 19.566a5.951 5.951 0 0 1 1.152 4.445 5.956 5.956 0 0 1-2.328 3.957 5.94 5.94 0 0 1-3.609 1.211 5.953 5.953 0 0 1-4.793-2.385l-14.071-18.644-2.082 2.082v13.091a6.01 6.01 0 0 1-6.002 6.003z"
|
|
122
141
|
/>
|
|
123
142
|
</svg>
|
|
124
143
|
)
|
|
@@ -126,30 +145,78 @@ function KakaoTalkIcon({ className, style }: { className?: string; style?: React
|
|
|
126
145
|
|
|
127
146
|
function LineIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
128
147
|
return (
|
|
129
|
-
<svg viewBox="0 0 24 24"
|
|
148
|
+
<svg viewBox="0 0 24 24" className={className} style={style}>
|
|
130
149
|
<title>LINE icon</title>
|
|
131
|
-
<path
|
|
150
|
+
<path
|
|
151
|
+
fill="#06C755"
|
|
152
|
+
d="M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314"
|
|
153
|
+
/>
|
|
132
154
|
</svg>
|
|
133
155
|
)
|
|
134
156
|
}
|
|
135
157
|
|
|
136
158
|
function InstagramIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
137
159
|
return (
|
|
138
|
-
<svg viewBox="0 0
|
|
160
|
+
<svg viewBox="0 0 3364.7 3364.7" className={className} style={style}>
|
|
139
161
|
<title>Instagram icon</title>
|
|
140
|
-
<
|
|
162
|
+
<defs>
|
|
163
|
+
<radialGradient id="insta-grad-a" cx="217.8" cy="3291" r="4271.9" gradientUnits="userSpaceOnUse">
|
|
164
|
+
<stop offset=".1" stopColor="#FA8F21" />
|
|
165
|
+
<stop offset=".8" stopColor="#D82D7E" />
|
|
166
|
+
</radialGradient>
|
|
167
|
+
<radialGradient id="insta-grad-b" cx="2330.6" cy="3182.9" r="3759.3" gradientUnits="userSpaceOnUse">
|
|
168
|
+
<stop offset=".6" stopColor="#8C3AAA" stopOpacity="0" />
|
|
169
|
+
<stop offset="1" stopColor="#8C3AAA" />
|
|
170
|
+
</radialGradient>
|
|
171
|
+
</defs>
|
|
172
|
+
<path
|
|
173
|
+
fill="url(#insta-grad-a)"
|
|
174
|
+
d="M853.2 3352.8c-200.1-9.1-308.8-42.4-381.1-70.6-95.8-37.3-164.1-81.7-236-153.5s-116.4-140.1-153.5-235.9c-28.2-72.3-61.5-181-70.6-381.1-10-216.3-12-281.2-12-829.2s2.2-612.8 11.9-829.3C21 653.1 54.5 544.6 82.5 472.1A640 640 0 0 1 236 236 633.5 633.5 0 0 1 472 82.5C544.3 54.3 653 21 853.1 11.9 1069.5 2 1134.5 0 1682.3 0c548 0 612.8 2.2 829.3 11.9 200.1 9.1 308.6 42.6 381.1 70.6 95.8 37.1 164.1 81.7 236 153.5s116.2 140.2 153.5 236c28.2 72.3 61.5 181 70.6 381.1 9.9 216.5 11.9 281.3 11.9 829.3 0 547.8-2 612.8-11.9 829.3-9.1 200.1-42.6 308.8-70.6 381.1-37.3 95.8-81.7 164.1-153.5 235.9s-140.2 116.2-236 153.5c-72.3 28.2-181 61.5-381.1 70.6-216.3 9.9-281.3 11.9-829.3 11.9-547.8 0-612.8-1.9-829.1-11.9"
|
|
175
|
+
/>
|
|
176
|
+
<path
|
|
177
|
+
fill="url(#insta-grad-b)"
|
|
178
|
+
d="M853.2 3352.8c-200.1-9.1-308.8-42.4-381.1-70.6-95.8-37.3-164.1-81.7-236-153.5s-116.4-140.1-153.5-235.9c-28.2-72.3-61.5-181-70.6-381.1-10-216.3-12-281.2-12-829.2s2.2-612.8 11.9-829.3C21 653.1 54.5 544.6 82.5 472.1A640 640 0 0 1 236 236 633.5 633.5 0 0 1 472 82.5C544.3 54.3 653 21 853.1 11.9 1069.5 2 1134.5 0 1682.3 0c548 0 612.8 2.2 829.3 11.9 200.1 9.1 308.6 42.6 381.1 70.6 95.8 37.1 164.1 81.7 236 153.5s116.2 140.2 153.5 236c28.2 72.3 61.5 181 70.6 381.1 9.9 216.5 11.9 281.3 11.9 829.3 0 547.8-2 612.8-11.9 829.3-9.1 200.1-42.6 308.8-70.6 381.1-37.3 95.8-81.7 164.1-153.5 235.9s-140.2 116.2-236 153.5c-72.3 28.2-181 61.5-381.1 70.6-216.3 9.9-281.3 11.9-829.3 11.9-547.8 0-612.8-1.9-829.1-11.9"
|
|
179
|
+
/>
|
|
180
|
+
<path
|
|
181
|
+
fill="#FFFFFF"
|
|
182
|
+
d="M1269.3 1689.5a416.6 416.6 0 1 1 833.2 0 416.6 416.6 0 0 1-833.3 0m-225.2 0a641.8 641.8 0 1 0 1283.7 0 641.8 641.8 0 0 0-1283.7 0m1159.1-667.3a150 150 0 1 0 150-150 150 150 0 0 0-150 150M1181 2707c-122-5.5-188.2-25.8-232.2-43-58.3-22.7-100-49.8-143.8-93.5s-70.8-85.3-93.5-143.7c-17.1-44-37.4-110.2-43-232.1-6-131.8-7.2-171.3-7.2-505.2s1.3-373.2 7.2-505.1c5.6-121.9 26-188 43-232.1 22.8-58.4 49.8-100 93.5-143.8s85.4-70.9 143.8-93.5c44-17.2 110.3-37.5 232.1-43 131.8-6 171.4-7.3 505-7.3s373.3 1.3 505.2 7.3c121.9 5.6 188 26 232.1 43 58.4 22.6 100 49.8 143.8 93.5s70.8 85.4 93.5 143.8c17.2 44 37.5 110.2 43 232.1 6 131.9 7.3 171.3 7.3 505.2s-1.2 373.2-7.3 505.1c-5.5 121.9-26 188.1-43 232.1-22.7 58.4-49.8 100-93.5 143.7s-85.4 70.8-143.8 93.5c-44 17.2-110.2 37.5-232.1 43-131.8 6-171.3 7.3-505.1 7.3s-373.3-1.2-505-7.3m-10.4-2260c-133 6.2-224 27.3-303.4 58.2-82.2 31.9-151.9 74.7-221.4 144.1S533.4 788.5 501.5 870.8c-31 79.4-52 170.3-58 303.4-6.2 133.3-7.6 175.9-7.6 515.3s1.4 382 7.5 515.4c6 133 27.2 224 58 303.4 32 82.2 74.7 152 144.3 221.4S784.8 2842 867 2874c79.6 30.9 170.3 52 303.4 58 133.4 6.1 175.9 7.6 515.4 7.6s382-1.4 515.3-7.6c133-6 224-27.1 303.4-58 82.2-32 151.9-74.7 221.4-144.2s112.2-139.2 144.2-221.4c31-79.5 52.1-170.4 58-303.4 6.1-133.4 7.5-176 7.5-515.4s-1.4-382-7.4-515.3c-6-133.1-27.2-224-58-303.4-32-82.2-74.8-151.9-144.3-221.5s-139.2-112.2-221.3-144.2c-79.5-30.9-170.4-52-303.4-58-133.3-6.1-175.9-7.6-515.3-7.6s-382.1 1.4-515.4 7.6"
|
|
183
|
+
/>
|
|
141
184
|
</svg>
|
|
142
185
|
)
|
|
143
186
|
}
|
|
144
187
|
|
|
145
188
|
function ChannelTalkIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
146
189
|
return (
|
|
147
|
-
<svg viewBox="0 0
|
|
190
|
+
<svg viewBox="0 0 24 24" className={className} style={style}>
|
|
148
191
|
<title>Channel Talk icon</title>
|
|
149
|
-
<
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
192
|
+
<path
|
|
193
|
+
fill="#1B64DA"
|
|
194
|
+
d="M14.72 2A7.28 7.28 0 0 1 22 9.28v5.44A7.28 7.28 0 0 1 14.72 22H9.28A7.28 7.28 0 0 1 2 14.72V9.28A7.28 7.28 0 0 1 9.28 2zm-2.713 4a6 6 0 0 0-6.003 6.002c0 3.303 2.7 5.999 6.003 5.999.822 0 1.604-.166 2.318-.466a2.24 2.24 0 0 1 1.404-.102l1.304.325a.6.6 0 0 0 .728-.727l-.326-1.304a2.24 2.24 0 0 1 .103-1.405c.3-.715.465-1.497.465-2.32C18.003 8.699 15.31 6 12.007 6m-2.345 6.191a.303.303 0 0 1 .425.127 2.149 2.149 0 0 0 3.824 0 .304.304 0 0 1 .425-.127l1.074.644a.3.3 0 0 1 .113.397A4 4 0 0 1 12 15.336h-.004a4 4 0 0 1-3.521-2.104.3.3 0 0 1 .11-.397z"
|
|
195
|
+
/>
|
|
196
|
+
</svg>
|
|
197
|
+
)
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
function WebexIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
201
|
+
return (
|
|
202
|
+
<svg viewBox="0 0 24 24" className={className} style={style}>
|
|
203
|
+
<title>Webex icon</title>
|
|
204
|
+
<path
|
|
205
|
+
fill="#07C3F2"
|
|
206
|
+
d="M21.78 7.376c.512 1.181.032 2.644-1.11 3.106-2.157.888-3-1.295-3-1.295-.236-.55-.727-1.496-1.335-1.496-.204 0-.503 0-.94.844-.229.443-.434 1.185-.616 1.84l-.09.32c-.373-1.587-.821-3.454-1.536-4.816-.195-.38-.42-.74-.673-1.08a5.135 5.135 0 0 1 1.743-1.337 4.891 4.891 0 0 1 2.112-.463c1.045 0 2.765.338 4.227 2.227.167.206.317.424.448.654.278.441.52.904.726 1.383l.043.113zM.02 8.4C-.15 7.105.8 5.845 1.953 5.755c1.794-.157 2.36 1.385 2.455 1.89l.022.137c.07.44.29 1.838.48 2.744.078.4.244 1.013.353 1.416l.006.022.026.092c.11.4.232.799.362 1.193.185.548.399 1.085.641 1.61.47.955.93 1.45 1.367 1.45.203 0 .512 0 .96-.878.283-.59.512-1.208.684-1.845.373 1.598.811 3.128 1.495 4.456.205.406.444.794.715 1.16a5.124 5.124 0 0 1-1.742 1.338 4.88 4.88 0 0 1-2.112.461c-1.548 0-3.727-.698-5.339-4.005a22.407 22.407 0 0 1-1.078-2.824 26.848 26.848 0 0 1-.693-2.656 48.56 48.56 0 0 1-.215-1.114C.191 9.603.074 8.872.02 8.4zm22.047-2.645-.202-.022h-.052c.222.392.421.797.597 1.215l.053.113c.322.76.346 1.614.068 2.391a3.079 3.079 0 0 1-1.552 1.749 2.93 2.93 0 0 1-1.228.28 3.115 3.115 0 0 1-.854-.135c-.299 1.182-.768 2.634-1.195 3.511-.427.877-.93 1.451-1.378 1.451-.192 0-.501 0-.95-.877a10.746 10.746 0 0 1-.683-1.845 38.722 38.722 0 0 1-.396-1.575 12.67 12.67 0 0 1-.136-.598l-.002-.01c-.406-1.778-.865-3.645-1.655-5.142A8.263 8.263 0 0 0 11.52 4.8a5.136 5.136 0 0 0-1.748-1.34A4.892 4.892 0 0 0 7.654 3c-1.036 0-2.754.338-4.217 2.228.466.223.867.562 1.164.984.305.433.499.933.565 1.458.076.563.256 1.654.47 2.688l.001.007c.021.11.042.221.073.342.126-.34.25-.642.38-.955l.112-.271.128-.293c.235-.55.726-1.496 1.324-1.496.213 0 .513 0 .95.844.296.606.532 1.239.706 1.89.138.507.276 1.047.394 1.587.04.148.07.296.101.444l.006.028c.427 1.879.875 3.69 1.644 5.187.159.317.34.622.545.911.15.215.31.422.48.62 1.27 1.45 2.733 1.8 3.843 1.8 1.548 0 3.738-.698 5.35-4.006.822-1.7 1.515-4.208 1.772-5.48.256-1.27.449-2.419.534-3.115.04-.307.023-.618-.051-.918-.075-.299-.205-.579-.382-.825a2.247 2.247 0 0 0-.653-.607 2.143 2.143 0 0 0-.826-.296z"
|
|
207
|
+
/>
|
|
208
|
+
</svg>
|
|
209
|
+
)
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
function WeChatIcon({ className, style }: { className?: string; style?: React.CSSProperties }) {
|
|
213
|
+
return (
|
|
214
|
+
<svg viewBox="0 0 24 24" className={className} style={style}>
|
|
215
|
+
<title>WeChat icon</title>
|
|
216
|
+
<path
|
|
217
|
+
fill="#07C160"
|
|
218
|
+
d="M8.691 2.188C3.891 2.188 0 5.476 0 9.53c0 2.212 1.17 4.203 3.002 5.55a.59.59 0 0 1 .213.665l-.39 1.48c-.019.07-.048.141-.048.213 0 .163.13.295.29.295a.326.326 0 0 0 .167-.054l1.903-1.114a.864.864 0 0 1 .717-.098 10.16 10.16 0 0 0 2.837.403c.276 0 .543-.027.811-.05-.857-2.578.157-4.972 1.932-6.446 1.703-1.415 3.882-1.98 5.853-1.838-.576-3.583-4.196-6.348-8.596-6.348zM5.785 5.991c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178A1.17 1.17 0 0 1 4.623 7.17c0-.651.52-1.18 1.162-1.18zm5.813 0c.642 0 1.162.529 1.162 1.18a1.17 1.17 0 0 1-1.162 1.178 1.17 1.17 0 0 1-1.162-1.178c0-.651.52-1.18 1.162-1.18zm5.34 2.867c-1.797-.052-3.746.512-5.28 1.786-1.72 1.428-2.687 3.72-1.78 6.22.942 2.453 3.666 4.229 6.884 4.229.826 0 1.622-.12 2.361-.336a.722.722 0 0 1 .598.082l1.584.926a.272.272 0 0 0 .14.047c.134 0 .24-.111.24-.247 0-.06-.023-.12-.038-.177l-.327-1.233a.582.582 0 0 1-.023-.156.49.49 0 0 1 .201-.398C23.024 18.48 24 16.82 24 14.98c0-3.21-2.931-5.837-6.656-6.088V8.89c-.135-.01-.27-.027-.407-.03zm-2.53 3.274c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.97-.982zm4.844 0c.535 0 .969.44.969.982a.976.976 0 0 1-.969.983.976.976 0 0 1-.969-.983c0-.542.434-.982.969-.982z"
|
|
219
|
+
/>
|
|
153
220
|
</svg>
|
|
154
221
|
)
|
|
155
222
|
}
|
|
@@ -611,6 +678,7 @@ const PLATFORMS = [
|
|
|
611
678
|
glowColor: 'rgba(88,101,242,0.4)',
|
|
612
679
|
},
|
|
613
680
|
{ name: 'Teams', href: '/docs/cli/teams', Icon: TeamsIcon, color: '#6264A7', glowColor: 'rgba(98,100,167,0.4)' },
|
|
681
|
+
{ name: 'Webex', href: '/docs/cli/webex', Icon: WebexIcon, color: '#07C3F2', glowColor: 'rgba(7,195,242,0.4)' },
|
|
614
682
|
{
|
|
615
683
|
name: 'Telegram',
|
|
616
684
|
href: '/docs/cli/telegram',
|
|
@@ -626,6 +694,7 @@ const PLATFORMS = [
|
|
|
626
694
|
glowColor: 'rgba(37,211,102,0.4)',
|
|
627
695
|
},
|
|
628
696
|
{ name: 'LINE', href: '/docs/cli/line', Icon: LineIcon, color: '#06C755', glowColor: 'rgba(6,199,85,0.4)' },
|
|
697
|
+
{ name: 'WeChat', href: '/docs/cli/wechatbot', Icon: WeChatIcon, color: '#07C160', glowColor: 'rgba(7,193,96,0.4)' },
|
|
629
698
|
{
|
|
630
699
|
name: 'Instagram',
|
|
631
700
|
href: '/docs/cli/instagram',
|
|
@@ -687,9 +756,11 @@ const CAPABILITIES: {
|
|
|
687
756
|
slack: boolean
|
|
688
757
|
discord: boolean
|
|
689
758
|
teams: boolean
|
|
759
|
+
webex: boolean
|
|
690
760
|
telegram: boolean
|
|
691
761
|
whatsapp: boolean
|
|
692
762
|
line: boolean
|
|
763
|
+
wechat: boolean
|
|
693
764
|
instagram: boolean
|
|
694
765
|
kakaotalk: boolean
|
|
695
766
|
channeltalk: boolean
|
|
@@ -699,9 +770,11 @@ const CAPABILITIES: {
|
|
|
699
770
|
slack: true,
|
|
700
771
|
discord: true,
|
|
701
772
|
teams: true,
|
|
773
|
+
webex: true,
|
|
702
774
|
telegram: false,
|
|
703
775
|
whatsapp: false,
|
|
704
776
|
line: false,
|
|
777
|
+
wechat: false,
|
|
705
778
|
instagram: false,
|
|
706
779
|
kakaotalk: true,
|
|
707
780
|
channeltalk: true,
|
|
@@ -711,9 +784,11 @@ const CAPABILITIES: {
|
|
|
711
784
|
slack: true,
|
|
712
785
|
discord: true,
|
|
713
786
|
teams: true,
|
|
787
|
+
webex: true,
|
|
714
788
|
telegram: true,
|
|
715
789
|
whatsapp: true,
|
|
716
790
|
line: true,
|
|
791
|
+
wechat: false,
|
|
717
792
|
instagram: true,
|
|
718
793
|
kakaotalk: true,
|
|
719
794
|
channeltalk: true,
|
|
@@ -723,9 +798,11 @@ const CAPABILITIES: {
|
|
|
723
798
|
slack: true,
|
|
724
799
|
discord: true,
|
|
725
800
|
teams: false,
|
|
801
|
+
webex: false,
|
|
726
802
|
telegram: false,
|
|
727
803
|
whatsapp: true,
|
|
728
804
|
line: false,
|
|
805
|
+
wechat: false,
|
|
729
806
|
instagram: true,
|
|
730
807
|
kakaotalk: false,
|
|
731
808
|
channeltalk: true,
|
|
@@ -735,9 +812,11 @@ const CAPABILITIES: {
|
|
|
735
812
|
slack: true,
|
|
736
813
|
discord: true,
|
|
737
814
|
teams: false,
|
|
815
|
+
webex: false,
|
|
738
816
|
telegram: false,
|
|
739
817
|
whatsapp: false,
|
|
740
818
|
line: false,
|
|
819
|
+
wechat: false,
|
|
741
820
|
instagram: false,
|
|
742
821
|
kakaotalk: false,
|
|
743
822
|
channeltalk: false,
|
|
@@ -747,9 +826,11 @@ const CAPABILITIES: {
|
|
|
747
826
|
slack: true,
|
|
748
827
|
discord: true,
|
|
749
828
|
teams: true,
|
|
829
|
+
webex: false,
|
|
750
830
|
telegram: false,
|
|
751
831
|
whatsapp: true,
|
|
752
832
|
line: false,
|
|
833
|
+
wechat: false,
|
|
753
834
|
instagram: false,
|
|
754
835
|
kakaotalk: false,
|
|
755
836
|
channeltalk: false,
|
|
@@ -759,9 +840,11 @@ const CAPABILITIES: {
|
|
|
759
840
|
slack: true,
|
|
760
841
|
discord: true,
|
|
761
842
|
teams: true,
|
|
843
|
+
webex: false,
|
|
762
844
|
telegram: false,
|
|
763
845
|
whatsapp: false,
|
|
764
846
|
line: false,
|
|
847
|
+
wechat: false,
|
|
765
848
|
instagram: false,
|
|
766
849
|
kakaotalk: false,
|
|
767
850
|
channeltalk: false,
|
|
@@ -771,9 +854,11 @@ const CAPABILITIES: {
|
|
|
771
854
|
slack: true,
|
|
772
855
|
discord: true,
|
|
773
856
|
teams: true,
|
|
857
|
+
webex: true,
|
|
774
858
|
telegram: false,
|
|
775
859
|
whatsapp: false,
|
|
776
860
|
line: false,
|
|
861
|
+
wechat: false,
|
|
777
862
|
instagram: false,
|
|
778
863
|
kakaotalk: false,
|
|
779
864
|
channeltalk: true,
|
|
@@ -783,9 +868,11 @@ const CAPABILITIES: {
|
|
|
783
868
|
slack: true,
|
|
784
869
|
discord: true,
|
|
785
870
|
teams: true,
|
|
871
|
+
webex: false,
|
|
786
872
|
telegram: true,
|
|
787
873
|
whatsapp: true,
|
|
788
874
|
line: true,
|
|
875
|
+
wechat: true,
|
|
789
876
|
instagram: true,
|
|
790
877
|
kakaotalk: false,
|
|
791
878
|
channeltalk: true,
|
|
@@ -795,9 +882,11 @@ const CAPABILITIES: {
|
|
|
795
882
|
slack: true,
|
|
796
883
|
discord: true,
|
|
797
884
|
teams: false,
|
|
885
|
+
webex: false,
|
|
798
886
|
telegram: false,
|
|
799
887
|
whatsapp: true,
|
|
800
888
|
line: false,
|
|
889
|
+
wechat: true,
|
|
801
890
|
instagram: false,
|
|
802
891
|
kakaotalk: false,
|
|
803
892
|
channeltalk: true,
|
|
@@ -807,9 +896,11 @@ const CAPABILITIES: {
|
|
|
807
896
|
slack: true,
|
|
808
897
|
discord: false,
|
|
809
898
|
teams: false,
|
|
899
|
+
webex: false,
|
|
810
900
|
telegram: false,
|
|
811
901
|
whatsapp: false,
|
|
812
902
|
line: true,
|
|
903
|
+
wechat: false,
|
|
813
904
|
instagram: true,
|
|
814
905
|
kakaotalk: false,
|
|
815
906
|
channeltalk: false,
|
|
@@ -820,9 +911,11 @@ const PLATFORM_COLUMNS = [
|
|
|
820
911
|
'Slack',
|
|
821
912
|
'Discord',
|
|
822
913
|
'Teams',
|
|
914
|
+
'Webex',
|
|
823
915
|
'Telegram',
|
|
824
916
|
'WhatsApp',
|
|
825
917
|
'LINE',
|
|
918
|
+
'WeChat',
|
|
826
919
|
'Instagram',
|
|
827
920
|
'KakaoTalk',
|
|
828
921
|
'Ch. Talk',
|
|
@@ -831,9 +924,11 @@ const PLATFORM_KEYS = [
|
|
|
831
924
|
'slack',
|
|
832
925
|
'discord',
|
|
833
926
|
'teams',
|
|
927
|
+
'webex',
|
|
834
928
|
'telegram',
|
|
835
929
|
'whatsapp',
|
|
836
930
|
'line',
|
|
931
|
+
'wechat',
|
|
837
932
|
'instagram',
|
|
838
933
|
'kakaotalk',
|
|
839
934
|
'channeltalk',
|
|
@@ -900,8 +995,9 @@ export default function Home() {
|
|
|
900
995
|
|
|
901
996
|
{/* Subtitle */}
|
|
902
997
|
<p className="mx-auto mt-6 max-w-2xl text-lg leading-relaxed text-zinc-600 dark:text-zinc-400">
|
|
903
|
-
One CLI for Slack, Discord, Teams, Webex, Telegram, WhatsApp, LINE, Instagram, KakaoTalk, and
|
|
904
|
-
Credentials extracted from desktop apps or authenticated in seconds — no API keys, no admin
|
|
998
|
+
One CLI for Slack, Discord, Teams, Webex, Telegram, WhatsApp, LINE, WeChat, Instagram, KakaoTalk, and
|
|
999
|
+
Channel Talk. Credentials extracted from desktop apps or authenticated in seconds — no API keys, no admin
|
|
1000
|
+
approval.
|
|
905
1001
|
</p>
|
|
906
1002
|
|
|
907
1003
|
{/* CTAs with glass treatment in dark mode */}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-messenger",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.21.0",
|
|
4
4
|
"description": "Multi-platform messaging CLI for AI agents (Slack, Discord, Teams, Webex, Telegram, Telegram Bot, WhatsApp, LINE, Instagram, KakaoTalk, Channel Talk)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"agent-telegram": "dist/src/platforms/telegram/cli.js",
|
|
22
22
|
"agent-telegrambot": "dist/src/platforms/telegrambot/cli.js",
|
|
23
23
|
"agent-webex": "dist/src/platforms/webex/cli.js",
|
|
24
|
+
"agent-webexbot": "dist/src/platforms/webexbot/cli.js",
|
|
24
25
|
"agent-wechatbot": "dist/src/platforms/wechatbot/cli.js",
|
|
25
26
|
"agent-whatsapp": "dist/src/platforms/whatsapp/cli.js",
|
|
26
27
|
"agent-whatsappbot": "dist/src/platforms/whatsappbot/cli.js",
|
|
@@ -49,6 +50,9 @@
|
|
|
49
50
|
"webex": [
|
|
50
51
|
"./dist/src/platforms/webex/index.d.ts"
|
|
51
52
|
],
|
|
53
|
+
"webexbot": [
|
|
54
|
+
"./dist/src/platforms/webexbot/index.d.ts"
|
|
55
|
+
],
|
|
52
56
|
"whatsapp": [
|
|
53
57
|
"./dist/src/platforms/whatsapp/index.d.ts"
|
|
54
58
|
],
|
|
@@ -108,6 +112,10 @@
|
|
|
108
112
|
"types": "./dist/src/platforms/webex/index.d.ts",
|
|
109
113
|
"default": "./dist/src/platforms/webex/index.js"
|
|
110
114
|
},
|
|
115
|
+
"./webexbot": {
|
|
116
|
+
"types": "./dist/src/platforms/webexbot/index.d.ts",
|
|
117
|
+
"default": "./dist/src/platforms/webexbot/index.js"
|
|
118
|
+
},
|
|
111
119
|
"./whatsapp": {
|
|
112
120
|
"types": "./dist/src/platforms/whatsapp/index.d.ts",
|
|
113
121
|
"default": "./dist/src/platforms/whatsapp/index.js"
|
|
@@ -165,7 +173,7 @@
|
|
|
165
173
|
"@whiskeysockets/baileys": "^7.0.0-rc.9",
|
|
166
174
|
"better-sqlite3": "^12.0.0",
|
|
167
175
|
"blessed": "^0.1.81",
|
|
168
|
-
"bson": "^
|
|
176
|
+
"bson": "^6.10.4",
|
|
169
177
|
"classic-level": "^3.0.0",
|
|
170
178
|
"commander": "^11.1.0",
|
|
171
179
|
"crypto-js": "^4.2.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agent-channeltalk
|
|
3
3
|
description: Interact with Channel Talk using extracted desktop app or browser credentials - read chats, send messages, search messages, manage groups
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.21.0
|
|
5
5
|
allowed-tools: Bash(agent-channeltalk:*)
|
|
6
6
|
metadata:
|
|
7
7
|
openclaw:
|