ClawdTalk
ClawdTalk — Voice calls, SMS, and AI Missions for Clawdbot
ClawdTalk — Voice calls, SMS, and AI Missions for Clawdbot
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
⚠️ First time setup? Read
in this directory before anything else. It walks you through the complete configuration flow step by step.SETUP.md
Voice calling, SMS messaging, and AI Missions for Clawdbot. Call your bot by phone, send texts, or run autonomous multi-step outreach campaigns — powered by ClawdTalk.
Trust: By using this skill, voice transcripts, SMS messages, and mission data are sent to clawdtalk.com (operated by Telnyx). Only install if you trust this service with your conversation data.
| Endpoint | Used by | Data sent |
|---|---|---|
(WebSocket) | | Voice transcripts, tool results, conversation state |
| | Mission state, events, scheduled calls/SMS, assistant configs |
| | Transcribed speech (local gateway only) |
| | None (download only) |
setup.sh reads gateway config to extract connection details; with confirmation it adds sessions_send to gateway.tools.allow.skill-config.json — use env var CLAWDTALK_API_KEY or a ${CLAWDTALK_API_KEY} reference to avoid plaintext storage.init auto-generates a slug from the mission name (lowercased, spaces → hyphens).
Every command that takes a slug (setup-agent, save-memory, complete) MUST use the EXACT same slug.
Mismatched slugs = agent not linked = scheduled events invisible on the frontend.
# After init, ALWAYS confirm the slug: python scripts/telnyx_api.py list-state # Output: find-window-washing-contractors: Find window washing contractors [running] # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ COPY-PASTE THIS. NEVER ABBREVIATE.
The server does NOT automatically update plan steps or mission status. That is YOUR job as the bot. If you don't update steps and complete the mission, the UI will show "Running" forever with all steps "Pending".
For every mission, YOU must:
in_progress → completed (or failed)succeeded or failedThe UI reflects exactly what you tell it. No updates from you = no updates on screen.
Every significant action MUST be persisted using
or save-memory
IMMEDIATELY after the action succeeds. The frontend reads from server memory. If you don't save it, it doesn't show up. append-memory
log-event alone is NOT enough.
Rule: If you did something, save it to memory. No exceptions. No "I'll do it later." Do it NOW.
Example (scheduling an SMS):
# 1. Schedule it python scripts/telnyx_api.py schedule-sms $AID "$TO" "$FROM" "$DATETIME" "$MESSAGE" $MID $RID $STEP_ID2. IMMEDIATELY save to memory
python scripts/telnyx_api.py append-memory "$SLUG" "scheduled_events"
'{"event_id": "<id>", "type": "sms", "to": "<to>", "message": "<msg>", "scheduled_at": "<dt>", "step_id": "<step>"}'3. Then log the event
python scripts/telnyx_api.py log-event $MID $RID custom "Scheduled SMS event_id=<id>" $STEP_ID
Skipping step 2 is the #1 cause of "nothing shows on the frontend" bugs.
After completing or failing ANY step, you MUST check whether the mission should be completed or failed. Never leave a mission in "running" state when it's actually done or dead.
Rule: After every step change, ask yourself: is this mission finished?
Step finished → ├── Succeeded? │ ├── All steps done? → COMPLETE MISSION (update-run succeeded) │ ├── More steps remain? → Continue to next step │ └── Only verify left? → Set up polling cron └── Failed? ├── Recoverable (retry/reschedule)? → Retry └── Unrecoverable? → FAIL MISSION NOW: 1. update-step <step_id> failed 2. log-event error "Failed: <reason>" <step_id> 3. save-memory "$SLUG" "error_<step_id>" '{"error": "...", "recoverable": false}' 4. update-run $MID $RID failed 5. save-memory "$SLUG" "result" '{"status": "failed", "reason": "...", "failed_step": "..."}' 6. Clean up any polling cron jobs
A mission stuck in "running" when it's actually done or dead is a bug. The user sees it and thinks work is still happening.
┌──────────────┐ ┌──────────────────┐ ┌──────────────┐ │ You (Bot) │────▶│ ClawdTalk Server │────▶│ Telnyx API │ │ │ │ (dev/prod) │ │ (cloud) │ │ telnyx_api.py│ │ Local DB + proxy │ │ Executes │ │ │ │ to Telnyx │ │ calls/SMS │ └──────────────┘ └──────────────────┘ └──────────────┘
| File | Purpose |
|---|---|
| CLI tool for all mission/assistant/event operations |
| WebSocket client for inbound voice call routing |
| API key and server URL |
| Local state tracking for active missions |
| WebSocket connection logs |
Every entity exists in two places with different IDs:
3df24dde-...)The script always works with local IDs. You don't need to worry about Telnyx IDs.
./setup.sh
reads your gateway config to extract connection details and (with confirmation) addssetup.shtosessions_send. Gateway config is atgateway.tools.allowor~/.openclaw/openclaw.json.~/.clawdbot/clawdbot.json
./scripts/connect.sh startThe WebSocket client routes calls to your gateway's main agent session, giving full access to memory, tools, and context.
./scripts/connect.sh start # Start connection ./scripts/connect.sh stop # Stop ./scripts/connect.sh status # Check status
Have the bot call you or others:
./scripts/call.sh # Call your phone ./scripts/call.sh "Hey, what's up?" # Call with greeting ./scripts/call.sh --to +15551234567 # Call external number* ./scripts/call.sh --to +15551234567 "Hello!" # External with greeting ./scripts/call.sh status <call_id> # Check call status ./scripts/call.sh end <call_id> # End call
*External calls require a paid account with a dedicated number. The AI will operate in privacy mode when calling external numbers (won't reveal your private info).
Send and receive text messages:
./scripts/sms.sh send +15551234567 "Hello!" ./scripts/sms.sh list ./scripts/sms.sh conversations
For complex, multi-step missions with full tracking, state persistence, retries, and conversation insights, use the Python-based missions API.
Required: Python 3.7+,
CLAWDTALK_API_KEY environment variable. Optionally set CLAWDTALK_API_URL to override the default endpoint (defaults to https://clawdtalk.com/v1).
python scripts/telnyx_api.py check-key # Verify setup
You MUST save your progress after EVERY significant action. If the session crashes or restarts, unsaved work is LOST.
Always save to BOTH:
.missions_state.json) - Fast, survives restarts| Action | Save Memory | Log Event |
|---|---|---|
| Web search returns results | append-memory | log-event (tool_call) |
| Found a contractor/lead | append-memory | log-event (custom) |
| Created assistant | save-memory | log-event (custom) |
| Assigned phone number | save-memory | log-event (custom) |
| Scheduled a call/SMS | append-memory | log-event (custom) |
| Call completed | save-memory | log-event (custom) |
| Got quote/insight | save-memory | log-event (custom) |
| Made a decision | save-memory | log-event (message) |
| Step started | save-memory | update-step (in_progress) + log-event (step_started) |
| Step completed | save-memory | update-step (completed) + log-event (step_completed) |
| Step failed | save-memory | update-step (failed) + log-event (error) |
| Error occurred | save-memory | log-event (error) |
# Save a single value python scripts/telnyx_api.py save-memory "<slug>" "key" '{"data": "value"}'Append to a list (great for collecting multiple items)
python scripts/telnyx_api.py append-memory "<slug>" "contractors" '{"name": "ABC Co", "phone": "+1234567890"}'
Retrieve memory
python scripts/telnyx_api.py get-memory "<slug>" # Get all memory python scripts/telnyx_api.py get-memory "<slug>" "key" # Get specific key
# Log an event (step_id is REQUIRED - links event to a plan step) python scripts/telnyx_api.py log-event <mission_id> <run_id> <type> "<summary>" <step_id> '[payload_json]'Event types: tool_call, custom, message, error, step_started, step_completed
step_id: Use the step_id from your plan (e.g., "research", "setup", "calls")
Use "-" if event doesn't belong to a specific step
This skill has two modes: full missions (tracked, multi-step) and simple calls (one-off, no mission overhead). Pick the right one.
Examples:
For simple calls, just:
# Reuse or create an assistant python scripts/telnyx_api.py list-assistants --name=<relevant> # Schedule the call python scripts/telnyx_api.py schedule-call <assistant_id> <to> <from> <datetime> <mission_id> <run_id> # Poll for completion python scripts/telnyx_api.py get-event <assistant_id> <event_id> # Get insights python scripts/telnyx_api.py get-insights <conversation_id>
No mission, no run, no plan. Keep it simple.
The script automatically manages state in
.missions_state.json. This survives restarts and supports multiple concurrent missions.
python scripts/telnyx_api.py list-state # List all active missions python scripts/telnyx_api.py get-state "find-window-washing-contractors" # Get state for specific mission python scripts/telnyx_api.py remove-state "find-window-washing-contractors" # Remove mission from state
python scripts/telnyx_api.py create-mission "Brief descriptive name" "Full description of the task"
Save the returned
- you'll need it for all subsequent calls.mission_id
python scripts/telnyx_api.py create-run <mission_id> '{"original_request": "The exact user request", "context": "Any relevant context"}'
Save the returned
.run_id
Before executing, outline your plan:
python scripts/telnyx_api.py create-plan <mission_id> <run_id> '[ {"step_id": "step_1", "description": "Research contractors online", "sequence": 1}, {"step_id": "step_2", "description": "Create voice agent for calls", "sequence": 2}, {"step_id": "step_3", "description": "Schedule calls to each contractor", "sequence": 3}, {"step_id": "step_4", "description": "Monitor call completions", "sequence": 4}, {"step_id": "step_5", "description": "Analyze results and select best options", "sequence": 5} ]'
python scripts/telnyx_api.py update-run <mission_id> <run_id> running
Use the
init command to create mission, run, plan, and set status in one step:
python scripts/telnyx_api.py init "Find window washing contractors" "Find contractors in Chicago, call them, negotiate rates" "User wants window washing quotes" '[ {"step_id": "research", "description": "Find contractors online", "sequence": 1}, {"step_id": "setup", "description": "Create voice agent", "sequence": 2}, {"step_id": "calls", "description": "Schedule and make calls", "sequence": 3}, {"step_id": "analyze", "description": "Analyze results", "sequence": 4} ]'
This also automatically resumes if a mission with the same name already exists.
⚠️ Immediately after
, run init
and copy the exact slug. Use it for ALL subsequent commands.list-state
When your task requires making calls or sending SMS, create an AI assistant first.
For phone calls:
python scripts/telnyx_api.py create-assistant "Contractor Outreach Agent" "You are calling on behalf of [COMPANY]. Your goal is to [SPECIFIC GOAL]. Be professional and concise. Collect: [WHAT TO COLLECT]. If they cannot talk now, ask for a good callback time." "Hi, this is an AI assistant calling on behalf of [COMPANY]. Is this [BUSINESS NAME]? I am calling to inquire about your services. Do you have a moment?" '["telephony", "messaging"]'
For SMS:
python scripts/telnyx_api.py create-assistant "SMS Outreach Agent" "You send SMS messages to collect information. Keep messages brief and professional." "Hi! I am reaching out on behalf of [COMPANY] regarding [PURPOSE]. Could you please reply with [REQUESTED INFO]?" '["telephony", "messaging"]'
Save the returned
.assistant_id
python scripts/telnyx_api.py get-available-phone # Get first available python scripts/telnyx_api.py get-connection-id <assistant_id> telephony # Get connection ID python scripts/telnyx_api.py assign-phone <phone_number_id> <connection_id> voice # Assign
python scripts/telnyx_api.py setup-agent "find-window-washing-contractors" "Contractor Caller" "You are calling to get quotes for commercial window washing. Ask about: rates per floor, availability, insurance. Be professional." "Hi, I am calling to inquire about your commercial window washing services. Do you have a moment to discuss rates?"
This automatically creates the assistant, links it to the mission run, finds an available phone number, assigns it, and saves all IDs to the state file.
⚠️ The slug MUST match what
created. If it doesn't, the agent won't be linked and scheduled events won't appear on the frontend.init
Verify linking worked immediately after:
python scripts/telnyx_api.py list-linked-agents <mission_id> <run_id> # Must show your assistant_id. If empty → slug was wrong. Fix with: python scripts/telnyx_api.py link-agent <mission_id> <run_id> <assistant_id>
If using
: Linking is done automatically (only if slug matches setup-agent
init).
If setting up manually:
python scripts/telnyx_api.py link-agent <mission_id> <run_id> <assistant_id> python scripts/telnyx_api.py list-linked-agents <mission_id> <run_id> python scripts/telnyx_api.py unlink-agent <mission_id> <run_id> <assistant_id>
CRITICAL: Before scheduling calls, consider business hours (9 AM - 5 PM local time).
scheduled_at must be in the future (at least 1 minute from now).
python scripts/telnyx_api.py schedule-call <assistant_id> "+15551234567" "+15559876543" "2024-12-01T14:30:00Z" <mission_id> <run_id> python scripts/telnyx_api.py schedule-sms <assistant_id> "+15551234567" "+15559876543" "2024-12-01T14:30:00Z" "Your message here"
Save the returned event
.id
After scheduling a call or SMS, Telnyx executes it autonomously at the scheduled time. You need to poll to find out when it's done, then update the mission accordingly.
python scripts/telnyx_api.py get-event <assistant_id> <event_id>
Use your bot's cron system to schedule polling. Do NOT block the main session waiting. Match the poll interval to the expected wait time:
| Expected completion | Poll interval | Example |
|---|---|---|
| < 5 minutes | Every 30 seconds | SMS sent 1 min from now |
| 5–30 minutes | Every 2–5 minutes | Call scheduled in 15 min |
| 1–24 hours | Every 15–30 minutes | Call scheduled for tonight |
| Days/weeks | Every 4–8 hours | Call scheduled for next week |
If you know the exact scheduled time, don't start polling until after that time. Schedule your first poll for
scheduled_time + 2 minutes.
When you schedule a call/SMS, create a cron job to poll for it:
Create cron: poll at appropriate interval → Run get-event <assistant_id> <event_id> → If completed: update step, log event, complete mission if last step, DELETE THIS CRON → If failed: update step as failed, log error, DELETE THIS CRON → If pending/in_progress: do nothing, cron runs again at next interval
⚠️ ALWAYS clean up cron jobs when a mission reaches a terminal state (completed, failed, cancelled). Never leave polling crons running after a mission ends.
You can update the cron interval as circumstances change:
| Status | Meaning | Action |
|---|---|---|
| Waiting for scheduled time | Keep polling |
| Call/SMS in progress | Keep polling |
| Finished successfully | Update step, get insights if call |
| Failed after retries | Update step as failed, consider retry |
| call_status | Meaning | Action |
|---|---|---|
| Phone is ringing | Poll again in 1-2 minutes |
| Call is active | Poll again in 2-3 minutes |
| Call finished normally | Get insights |
| Nobody picked up | Retryable — reschedule |
| Line is busy | Retryable — retry in 10-15 min |
| Call was canceled | Check if intentional |
| Network/system error | Retryable — retry in 5-10 min |
Once a call completes with a
conversation_id, retrieve insights. Poll until status is "completed" (wait 10 seconds between retries).
python scripts/telnyx_api.py get-insights <conversation_id>
Telnyx automatically creates default insight templates when an assistant is created. You don't need to manage these — just read the results.
python scripts/telnyx_api.py update-run <mission_id> <run_id> succeededOr with full results:
python scripts/telnyx_api.py complete "find-window-washing-contractors" <mission_id> <run_id> "Summary of results" '{"key": "payload"}'
Log EVERY action as an event. Always update step status via
update-step AND log corresponding events.
# When STARTING a step: python scripts/telnyx_api.py update-step "$MISSION_ID" "$RUN_ID" "research" "in_progress" python scripts/telnyx_api.py log-event "$MISSION_ID" "$RUN_ID" step_started "Starting: Research" "research"When COMPLETING a step:
python scripts/telnyx_api.py update-step "$MISSION_ID" "$RUN_ID" "research" "completed" python scripts/telnyx_api.py log-event "$MISSION_ID" "$RUN_ID" step_completed "Completed: Research" "research"
When a step FAILS:
python scripts/telnyx_api.py update-step "$MISSION_ID" "$RUN_ID" "calls" "failed" python scripts/telnyx_api.py log-event "$MISSION_ID" "$RUN_ID" error "Failed: Could not reach contractors" "calls"
# Check setup python scripts/telnyx_api.py check-keyMissions
python scripts/telnyx_api.py create-mission <name> <instructions> python scripts/telnyx_api.py get-mission <mission_id> python scripts/telnyx_api.py list-missions
Runs
python scripts/telnyx_api.py create-run <mission_id> <input_json> python scripts/telnyx_api.py get-run <mission_id> <run_id> python scripts/telnyx_api.py update-run <mission_id> <run_id> <status> python scripts/telnyx_api.py list-runs <mission_id>
Plan
python scripts/telnyx_api.py create-plan <mission_id> <run_id> <steps_json> python scripts/telnyx_api.py get-plan <mission_id> <run_id> python scripts/telnyx_api.py update-step <mission_id> <run_id> <step_id> <status>
Events
python scripts/telnyx_api.py log-event <mission_id> <run_id> <type> <summary> <step_id> [payload_json] python scripts/telnyx_api.py list-events <mission_id> <run_id>
Assistants
python scripts/telnyx_api.py list-assistants [--name=<filter>] [--page=<n>] [--size=<n>] python scripts/telnyx_api.py create-assistant <name> <instructions> <greeting> [options_json] python scripts/telnyx_api.py get-assistant <assistant_id> python scripts/telnyx_api.py update-assistant <assistant_id> <updates_json> python scripts/telnyx_api.py get-connection-id <assistant_id> [telephony|messaging]
Phone Numbers
python scripts/telnyx_api.py list-phones [--available] python scripts/telnyx_api.py get-available-phone python scripts/telnyx_api.py assign-phone <phone_id> <connection_id> [voice|sms]
Scheduled Events
python scripts/telnyx_api.py schedule-call <assistant_id> <to> <from> <datetime> <mission_id> <run_id> python scripts/telnyx_api.py schedule-sms <assistant_id> <to> <from> <datetime> <text> python scripts/telnyx_api.py get-event <assistant_id> <event_id> python scripts/telnyx_api.py cancel-scheduled-event <assistant_id> <event_id> python scripts/telnyx_api.py list-events-assistant <assistant_id>
Insights
python scripts/telnyx_api.py get-insights <conversation_id>
Mission Run Agents
python scripts/telnyx_api.py link-agent <mission_id> <run_id> <telnyx_agent_id> python scripts/telnyx_api.py list-linked-agents <mission_id> <run_id> python scripts/telnyx_api.py unlink-agent <mission_id> <run_id> <telnyx_agent_id>
State Management
python scripts/telnyx_api.py list-state python scripts/telnyx_api.py get-state <slug> python scripts/telnyx_api.py remove-state <slug>
Memory
python scripts/telnyx_api.py save-memory <slug> <key> <value_json> python scripts/telnyx_api.py get-memory <slug> [key] python scripts/telnyx_api.py append-memory <slug> <key> <item_json>
High-Level Workflows
python scripts/telnyx_api.py init <name> <instructions> <request> [steps_json] python scripts/telnyx_api.py setup-agent <slug> <name> <instructions> <greeting> python scripts/telnyx_api.py complete <slug> <mission_id> <run_id> <summary> [payload_json]
Here's the full flow for an SMS mission with proper lifecycle tracking and cron-based polling:
# 1. Init mission python scripts/telnyx_api.py init "SMS Test 003" \ "Send a test SMS to +13322200013" \ "SMS test with full tracking" \ '[{"step_id": "setup", "description": "Create SMS agent", "sequence": 1}, {"step_id": "sms", "description": "Schedule SMS", "sequence": 2}, {"step_id": "verify", "description": "Verify delivery", "sequence": 3}]' # Save: mission_id, run_id2. Step 1: Setup agent
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID setup in_progress python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_started "Starting: Create SMS agent" setup
python scripts/telnyx_api.py setup-agent "sms-test-003" "SMS Agent" "Send test messages" "Test from bot"
Save: assistant_id, phone_number
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID setup completed python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_completed "Completed: Created assistant $ASSISTANT_ID" setup
3. Step 2: Schedule SMS
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID sms in_progress python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_started "Starting: Schedule SMS" sms
python scripts/telnyx_api.py schedule-sms $ASSISTANT_ID "+13322200013" "$PHONE" "2026-02-19T18:43:00Z"
"What do you call a bear with no teeth? A gummy bear!"
$MISSION_ID $RUN_ID smsSave: event_id
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID sms completed python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_completed "Completed: SMS scheduled" sms
4. Step 3: Verify delivery — CREATE A CRON JOB TO POLL
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID verify in_progress python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_started "Starting: Poll for delivery" verify
>>> Create a cron job that fires AFTER the scheduled time <<<
>>> Cron runs: get-event $ASSISTANT_ID $EVENT_ID <<<
>>> On completed: update-step verify completed, log-event, update-run succeeded, DELETE CRON <<<
>>> On failed: update-step verify failed, log-event, update-run failed, DELETE CRON <<<
>>> On pending/in_progress: do nothing, cron fires again next interval <<<
5. (Cron fires, detects completion)
python scripts/telnyx_api.py update-step $MISSION_ID $RUN_ID verify completed python scripts/telnyx_api.py log-event $MISSION_ID $RUN_ID step_completed "Completed: SMS delivered" verify python scripts/telnyx_api.py update-run $MISSION_ID $RUN_ID succeeded
DELETE the polling cron job!
Not all missions are the same. Identify which class before planning.
Does call N depend on results of call N-1? YES -> Is it negotiation (leveraging previous results)? YES -> Class 3: Sequential Negotiation NO -> Does it have distinct rounds with human approval? YES -> Class 4: Multi-Round / Follow-up NO -> Class 5: Information Gathering -> Action NO -> Do you need structured scoring/ranking? YES -> Class 2: Parallel Screening with Rubric NO -> Class 1: Parallel Sweep
Fan out calls in parallel batches. Same question to many targets. Schedule all calls in one batch (stagger by 1-2 min). Analysis happens after ALL calls complete.
Fan out calls in parallel with structured scoring criteria. Results are ranked post-hoc via insights.
Calls MUST run serially. Each call's strategy depends on previous results. Use
update-assistant between calls to inject context. Never parallelize these.
Two or more distinct phases. Round 1 is broad outreach, human approval gate, then Round 2 targets a subset.
Call to find something, then act on it. Early termination when goal is met — cancel remaining calls.
The
send_dtmf tool is included by default. Most outbound calls hit an IVR first.
Expect IVRs even when calling businesses. Instruct the assistant to press 0 or say 'representative'.
Stagger calls in batches of 5-10, space scheduled times 1-2 minutes apart, monitor for 429 errors.
continue_assistantAfter scheduling calls, set up a cron job to poll periodically. Don't block the main session.
Track every number's status in mission memory. Retry based on recipient type:
For destructive or sensitive actions during voice calls, request user approval first:
./scripts/approval.sh request "Delete GitHub repo myproject" ./scripts/approval.sh request "Send $500 to John" --biometric ./scripts/approval.sh request "Post tweet about X" --details "Full text: ..."
When to request approval:
Response values:
approved → Execute the action, confirm completiondenied → Tell user "Okay, I won't do that"timeout → "I didn't get a response, should I try again?"no_devices → Skip approval, action not executed (no mobile app)Example flow in voice call:
approval.sh request "Delete GitHub repo test-repo"Voice calls route requests to the main agent via
sessions_send. This tool is blocked by default on the Gateway HTTP tools API. You must explicitly allow it:
// In openclaw.json → gateway.tools { "gateway": { "tools": { "allow": ["sessions_send"] } } }
Or via CLI:
openclaw config patch '{"gateway":{"tools":{"allow":["sessions_send"]}}}'
Without this, voice calls will connect but the agent won't be able to process any requests (deep tool calls return 404).
⚠️ WARNING: This MUST go under
, NOT top-levelgateway.tools.allow. The top-leveltools.allowis the agent's tool allowlist — puttingtools.allowthere will restrict your agent to ONLY that tool, breaking everything. If you accidentally did this, remove the top-levelsessions_sendentry and restart.tools.allow
| Mistake | Symptom | Fix |
|---|---|---|
Different slug for vs | Scheduled events missing from frontend | after , copy-paste slug |
Forgetting after actions | Frontend shows nothing | Save immediately after every action |
| Not checking mission status after step changes | Mission stuck "running" forever | Run decision tree after every step |
| Leaving polling crons running | Wasted resources, stale polls | Delete cron on any terminal state |
Not verifying after | Agent not linked, events invisible | Always verify, fix with |
Edit
skill-config.json:
| Option | Description |
|---|---|
| API key from clawdtalk.com |
| Server URL (default: ) |
| Your name (auto-detected from USER.md) |
| Agent name (auto-detected from IDENTITY.md) |
| Custom greeting for inbound calls |
Environment variables for the Python missions API:
CLAWDTALK_API_KEY — your ClawdTalk API key (required for missions)CLAWDTALK_API_URL — override the API endpoint (default: https://clawdtalk.com/v1)./setup.sh to update skill-config.json with the new values./setup.sh and restart gatewayDEBUG=1 ./scripts/connect.sh restartpython scripts/telnyx_api.py check-key to verifyNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.