clawvoice 0.0.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.
Files changed (2) hide show
  1. package/index.js +4 -0
  2. package/package.json +14 -0
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // ClawVoice - Voice calling plugin for OpenClaw agents
2
+ // https://clawvoice.io
3
+ // This is a placeholder. Full release coming soon.
4
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "clawvoice",
3
+ "version": "0.0.1",
4
+ "description": "Voice calling plugin for OpenClaw agents. Make and receive real phone calls with memory isolation and post-call intelligence.",
5
+ "main": "index.js",
6
+ "keywords": ["openclaw", "voice", "phone", "calling", "telnyx", "deepgram", "ai-agent", "telephony"],
7
+ "author": "neocody",
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/clawvoice/clawvoice"
12
+ },
13
+ "homepage": "https://clawvoice.io"
14
+ }