openclaw/extensions/kakao/package.json
Hanish Keloth 24ba96a3de feat(channels): add KakaoWork channel plugin
Add KakaoWork Bot API integration for Korea-focused enterprise messaging.

- Support for DM conversations via KakaoWork Web API
- Reactive callback handling for user interactions
- Multi-account configuration support
- Pairing-based DM access control
- Rate limit aware (200 req/min)

Contributed-by: Hanish Keloth <hanishkeloth@users.noreply.github.com>
2026-01-28 15:19:45 +09:00

34 lines
756 B
JSON

{
"name": "@moltbot/kakao",
"version": "2026.1.28",
"type": "module",
"description": "Moltbot KakaoWork channel plugin",
"moltbot": {
"extensions": [
"./index.ts"
],
"channel": {
"id": "kakao",
"label": "KakaoWork",
"selectionLabel": "KakaoWork (Bot API)",
"docsPath": "/channels/kakao",
"docsLabel": "kakao",
"blurb": "Korea-focused enterprise messaging with KakaoWork Bot API.",
"aliases": [
"kw"
],
"order": 85,
"quickstartAllowFrom": true
},
"install": {
"npmSpec": "@moltbot/kakao",
"localPath": "extensions/kakao",
"defaultChoice": "npm"
}
},
"dependencies": {
"moltbot": "workspace:*",
"undici": "7.19.0"
}
}