openclaw/extensions/plivo/package.json
Narayan Vyas 40538b5a30 feat(channels): add Plivo SMS/MMS channel extension
Add a new channel extension for Plivo SMS/MMS messaging, enabling
universal phone-based access to Clawdbot from any device.

Features:
- Two-way SMS messaging via Plivo API
- MMS media support (images, videos, documents)
- Quick command shortcuts (e.g., "cal" -> "show my calendar")
- Auto-configuration of Plivo webhooks on startup
- Multi-account support
- DM policies (pairing, allowlist, open)

Implements ideas 3.1, 3.3, 3.4, 3.7 from PLIVO_INTEGRATION_IDEAS.md:
- 3.1 SMS Channel Adapter
- 3.3 Quick Commands via SMS
- 3.4 MMS Media Sharing
- 3.7 Critical Alerts via SMS

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 20:36:22 -08:00

57 lines
1.2 KiB
JSON

{
"name": "@clawdbot/plivo",
"version": "2026.1.26",
"type": "module",
"description": "Clawdbot Plivo SMS/MMS channel plugin - Universal SMS access to your AI assistant",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"keywords": [
"clawdbot",
"plivo",
"sms",
"mms",
"channel",
"messaging"
],
"author": "",
"license": "MIT",
"clawdbot": {
"extensions": ["./dist/index.js"],
"channel": {
"id": "plivo",
"label": "Plivo",
"selectionLabel": "Plivo SMS",
"docsPath": "/channels/plivo",
"docsLabel": "plivo",
"blurb": "SMS/MMS via Plivo; universal phone access to your AI assistant.",
"order": 45
},
"install": {
"npmSpec": "@clawdbot/plivo",
"localPath": "extensions/plivo",
"defaultChoice": "local"
}
},
"dependencies": {
"plivo": "^4.58.0"
},
"peerDependencies": {
"clawdbot": "*"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2"
}
}