# Send Pine Voice to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pine-voice",
    "name": "Pine Voice",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/bojieli/pine-voice",
    "canonicalUrl": "https://clawhub.ai/bojieli/pine-voice",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pine-voice",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pine-voice",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/auth-check.mjs",
      "scripts/auth-request.mjs",
      "scripts/auth-verify.mjs",
      "scripts/call-status.mjs",
      "scripts/call.mjs"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pine-voice",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T03:09:41.020Z",
      "expiresAt": "2026-05-10T03:09:41.020Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pine-voice",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pine-voice",
        "contentDisposition": "attachment; filename=\"pine-voice-1.2.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pine-voice"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pine-voice"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pine-voice",
    "downloadUrl": "https://openagent3.xyz/downloads/pine-voice",
    "agentUrl": "https://openagent3.xyz/skills/pine-voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pine-voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pine-voice/agent.md"
  }
}
```
## Documentation

### Pine Voice

Make real phone calls via Pine AI's voice agent. The agent calls the specified number, navigates IVR systems, handles verification, conducts negotiations, and returns a full transcript.

### Authentication

Credentials persist in ~/.pine-voice/credentials.json — users only need to authenticate once.

Before making calls, check if already authenticated:

node {baseDir}/scripts/auth-check.mjs

If authenticated is true, skip straight to How to make a call. If false, run the auth flow below. Ask the user for their Pine AI account email (sign up at https://19pine.ai).

### Step 1: Request verification code

node {baseDir}/scripts/auth-request.mjs "user@example.com"

Returns {"request_token": "...", "email": "..."}. Save the request_token.

Tell the user: "A verification code has been sent to your email. Check your inbox (and spam) and give me the code."

### Step 2: Verify and save credentials

node {baseDir}/scripts/auth-verify.mjs "user@example.com" "REQUEST_TOKEN" "CODE"

Returns {"status": "authenticated", "credentials_path": "..."}. Credentials are saved automatically.

### When to use

Use this skill when the user wants you to make a phone call on their behalf.

Important: The voice agent can only speak English. Supported countries: US/CA/PR (+1), UK (+44), AU (+61), NZ (+64), SG (+65), IE (+353), HK (+852).

### Best for

Calling customer service to negotiate bills, request credits, or resolve issues
Scheduling meetings or appointments by phone
Making restaurant reservations
Calling businesses to inquire about services or availability
Following up with contacts on behalf of the user

### Step 1: Gather all required information

Before calling, you must collect every piece of information the callee might need. The voice agent cannot ask a human for missing information during the call. Anticipate what will be required: authentication details, payment info, negotiation targets, relevant context.

### Step 2: Initiate the call

Pass call parameters as JSON via stdin:

node {baseDir}/scripts/call.mjs <<'EOF'
{
  "dialed_number": "+14155551234",
  "callee_name": "Comcast Customer Service",
  "callee_context": "Cable and internet provider. Account holder: Jane Doe, account #12345.",
  "call_objective": "Negotiate monthly bill down to $50/mo. Do not accept above $65/mo.",
  "detailed_instructions": "Mention 10-year customer loyalty. If no reduction, ask for retention department.",
  "caller": "negotiator",
  "voice": "female",
  "max_duration_minutes": 60,
  "enable_summary": false
}
EOF

Returns {"call_id": "..."}. The call is now active.

### Step 3: Poll for results

Poll every 30 seconds until is_terminal is true:

node {baseDir}/scripts/call-status.mjs "CALL_ID"

When complete, the response includes transcript, duration_seconds, and credits_charged. The is_terminal field tells you when the call is done.

IMPORTANT: Use sessions_spawn to run this in a background sub-agent so you remain available to the user during the call (which can take 5-60+ minutes).

Example task for sessions_spawn:

Make a phone call using the Pine Voice scripts. Run: node {baseDir}/scripts/call.mjs with stdin JSON: {"dialed_number": "+14155551234", "callee_name": "The Restaurant", "callee_context": "Italian restaurant, making a dinner reservation", "call_objective": "Reserve a table for 4 at 7pm tonight", "caller": "communicator"}. Then poll with: node {baseDir}/scripts/call-status.mjs "CALL_ID" every 30 seconds until is_terminal is true. Report the full transcript and outcome.

### Step 4: Evaluate the transcript

Do NOT rely on the status field to judge success. Read what the OTHER party actually said.

Treat the call as a FAILURE if:

Only Pine's agent speaks and the other side is silent
The other party's responses are automated/recorded (voicemail, IVR-only)
Extended silence from both sides
The callee hung up before the objective was discussed

### Call parameters

ParameterRequiredDescriptiondialed_numberYesPhone number in E.164 format (e.g. +14155551234)callee_nameYesName of the person or businesscallee_contextYesAll context the agent needs: who they are, auth details, verification infocall_objectiveYesSpecific goal with targets and constraintsdetailed_instructionsNoStrategy, approach, behavioral instructionscallerNo"negotiator" (default) or "communicator"voiceNo"male" or "female" (default: "female")max_duration_minutesNo1-120 (default: 120)enable_summaryNotrue/false (default: false)

### Negotiation calls

For negotiations, set caller to "negotiator" and provide a thorough strategy:

Target outcome: "Reduce monthly bill to $50/mo"
Acceptable range: "Will accept up to $65/mo"
Hard constraints: "Do not change plan tier"
Leverage points: "10-year customer, competitor offers $45/mo"
Fallback: "Request one-time credit of $100"
Walk-away: "Ask for retention department"

### Examples

Test call:
"Call my phone at +1XXXXXXXXXX. Tell me that Pine Voice is set up and working."

Restaurant reservation:
"Call +14155559876 and make a reservation for 4 tonight at 7pm. If unavailable, try 7:30 or 8pm. Name: Jane Doe."

### Model requirements

Pine Voice works best with models that have thinking/reasoning capabilities.

Recommended: Claude Sonnet/Opus 4.5+, GPT-5.2+, Gemini 3 Pro
Not recommended: Gemini 3 Flash, or models without thinking capabilities

### Privacy

Pine Voice processes call data on Pine AI's servers. Credentials are stored locally in ~/.pine-voice/credentials.json with restricted permissions (600). Call transcripts are returned in the API response and are not stored locally. See https://www.19pine.ai/page/privacy-policy for Pine AI's data handling policies.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: bojieli
- Version: 1.2.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T03:09:41.020Z
- Expires at: 2026-05-10T03:09:41.020Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pine-voice)
- [Send to Agent page](https://openagent3.xyz/skills/pine-voice/agent)
- [JSON manifest](https://openagent3.xyz/skills/pine-voice/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pine-voice/agent.md)
- [Download page](https://openagent3.xyz/downloads/pine-voice)