openclaw-pine-voice 0.1.8 → 0.1.10
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/README.md +1 -1
- package/package.json +10 -3
- package/skills/pine-voice/SKILL.md +2 -2
package/README.md
CHANGED
|
@@ -157,7 +157,7 @@ Then try real tasks:
|
|
|
157
157
|
|
|
158
158
|
### Supported countries
|
|
159
159
|
|
|
160
|
-
The voice agent can only speak English. Calls can be placed to phone numbers in the following countries: US, Canada, Puerto Rico (+1), UK (+44), Australia (+61), New Zealand (+64), Singapore (+65),
|
|
160
|
+
The voice agent can only speak English. Calls can be placed to phone numbers in the following countries: US, Canada, Puerto Rico (+1), UK (+44), Australia (+61), New Zealand (+64), Singapore (+65), Ireland (+353), and Hong Kong (+852). Calls to numbers outside these country codes will be rejected.
|
|
161
161
|
|
|
162
162
|
### Caller personality
|
|
163
163
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-pine-voice",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Make phone calls via Pine AI voice agent from OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,13 +36,20 @@
|
|
|
36
36
|
],
|
|
37
37
|
"author": "Pine AI",
|
|
38
38
|
"license": "MIT",
|
|
39
|
-
"
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/19PINE-AI/openclaw-pine-voice.git"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/19PINE-AI/openclaw-pine-voice#readme",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/19PINE-AI/openclaw-pine-voice/issues"
|
|
46
|
+
},
|
|
40
47
|
"engines": {
|
|
41
48
|
"node": ">=18"
|
|
42
49
|
},
|
|
43
50
|
"dependencies": {
|
|
44
51
|
"@sinclair/typebox": "^0.32.0",
|
|
45
|
-
"pine-voice": "^0.1.
|
|
52
|
+
"pine-voice": "^0.1.3"
|
|
46
53
|
},
|
|
47
54
|
"devDependencies": {
|
|
48
55
|
"typescript": "^5.0.0"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## When to use
|
|
4
4
|
Use `pine_voice_call_and_wait` (preferred) or `pine_voice_call` when the user wants you to **make a phone call** on their behalf. The Pine AI voice agent will call the specified number, navigate IVR systems, handle verification, conduct negotiations, and carry out the conversation autonomously.
|
|
5
5
|
|
|
6
|
-
**Important:** The voice agent can only speak English. Calls can be placed to the US, Canada, Puerto Rico (+1), UK (+44), Australia (+61), New Zealand (+64), Singapore (+65),
|
|
6
|
+
**Important:** The voice agent can only speak English. Calls can be placed to the US, Canada, Puerto Rico (+1), UK (+44), Australia (+61), New Zealand (+64), Singapore (+65), Ireland (+353), and Hong Kong (+852). Do not use this tool for calls to numbers outside these countries.
|
|
7
7
|
|
|
8
8
|
## Best for
|
|
9
9
|
- Calling customer service to negotiate bills, request credits, or resolve issues
|
|
@@ -80,7 +80,7 @@ Initiates a phone call and blocks until it completes, returning the full result
|
|
|
80
80
|
|
|
81
81
|
Parameters:
|
|
82
82
|
|
|
83
|
-
- `to` (required): Phone number in E.164 format (e.g., +14155551234). Must be in a supported country: US/CA/PR (+1), UK (+44), AU (+61), NZ (+64), SG (+65),
|
|
83
|
+
- `to` (required): Phone number in E.164 format (e.g., +14155551234). Must be in a supported country: US/CA/PR (+1), UK (+44), AU (+61), NZ (+64), SG (+65), IE (+353), HK (+852).
|
|
84
84
|
- `callee_name` (required): Name of the person or business being called
|
|
85
85
|
- `callee_context` (required): Comprehensive context — include all authentication, verification, and payment info the agent may need during the call
|
|
86
86
|
- `objective` (required): Specific goal with negotiation targets and constraints if applicable
|