FC twilio
(no description)
Complete Twilio integration for making voice calls, sending SMS messages, and receiving incoming text messages with automatic replies.
As a process C 56/100 · Has gaps — weak spots: result and completion, when it triggers, running it twice
What is at stake
The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.
The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".
If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.
Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.
How to improve
- Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
- Add a description to the frontmatter: without it the skill never triggers.
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 40
-
high Exfiltration
exfil-webhook-url00-START-HERE.md:113Webhook / callback URL commonly used for exfiltration (verify the destination)Forwarding https://abc1….io -> http://loca…000
-
high Exfiltration
exfil-webhook-url00-START-HERE.md:125Webhook / callback URL commonly used for exfiltration (verify the destination)https://abc1….io/sms
-
high Exfiltration
exfil-webhook-urlQUICK_REFERENCE.md:39Webhook / callback URL commonly used for exfiltration (verify the destination)# Copy the URL: https://abc1….io
-
high Exfiltration
exfil-webhook-urlSKILL.md:273Webhook / callback URL commonly used for exfiltration (verify the destination)# Forwarding https://1a2b….io -> http://loca…000
-
high Exfiltration
exfil-webhook-urlTWO_WAY_SMS_SETUP.md:68Webhook / callback URL commonly used for exfiltration (verify the destination)Forwarding https://1a2b….io -> http://loca…000
-
high Exfiltration
exfil-webhook-urlTWO_WAY_SMS_SETUP.md:200Webhook / callback URL commonly used for exfiltration (verify the destination)# Forwarding https://1a2b….io -> http://loca…000
Medium and low: 34
-
medium Exfiltration
exfil-webhook-url00-START-HERE.md:116Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)Copy the HTTPS URL (the `https://abc1….io` part).
quoted -
medium Dangerous commands
cmd-shell-rcsetup.sh:75Writes to a shell startup fileecho "💡 Tip: Add this to your ~/.bashrc or ~/.zshrc to load credentials automatically:"
-
medium Exfiltration
exfil-webhook-urlSKILL.md:276Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)Your public URL is `https://1a2b….io/sms` (note: `/sms` endpoint)
quoted -
medium Exfiltration
exfil-webhook-urlSKILL.md:282Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)4. Paste: `https://1a2b….io/sms`
quoted -
medium Exfiltration
exfil-webhook-urlTWO_WAY_SMS_SETUP.md:77Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)- Paste your public URL: `https://1a2b….io/sms`
quoted -
low Secrets in code
secret-high-entropy-token00-START-HERE.md:71High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Exfiltration
read-dotenv00-START-HERE.md:78Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenv00-START-HERE.md:80Reads a .env fileset -a; source .env; set +a
-
low Secrets in code
secret-high-entropy-tokenIMPLEMENTATION_SUMMARY.md:58High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Secrets in code
secret-high-entropy-tokenQUICK_REFERENCE.md:13High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Exfiltration
read-dotenvQUICK_REFERENCE.md:18Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvQUICK_REFERENCE.md:20Reads a .env fileset -a; source .env; set +a
-
low Exfiltration
read-dotenvQUICK_START.md:34Reads a .env fileset -a; source .env; set +a
-
low Exfiltration
read-dotenvQUICK_START.md:39Reads a .env filesource ~/clawd/skills/twilio/.env
-
low Exfiltration
read-dotenvQUICK_START.md:117Reads a .env file# Re-source .env if needed
-
low Exfiltration
read-dotenvQUICK_START.md:118Reads a .env fileset -a; source .env; set +a
-
low Secrets in code
secret-high-entropy-tokenQUICK_START.md:137High-entropy token-like string (may be an id, hash or a credential)| `TWILIO_ACCOUNT_SID` | Yes | AC35…ca9 |
-
low Secrets in code
secret-high-entropy-tokenREADME.md:25High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Exfiltration
read-dotenvREADME.md:35Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvREADME.md:41Reads a .env fileset -a; source .env; set +a
-
low Secrets in code
secret-high-entropy-tokenSKILL.md:41High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Exfiltration
read-dotenvSKILL.md:59Reads a .env fileset -a; source .env; set +a
-
low Exfiltration
read-dotenvSKILL.md:325Reads a .env filesource .env # Load credentials
-
low Exfiltration
read-dotenvSKILL.md:337Reads a .env filesource .env
-
low Exfiltration
read-dotenvSKILL.md:352Reads a .env filesource .env
-
low Secrets in code
secret-high-entropy-tokenTWO_WAY_SMS_README.md:30High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export TWILIO_ACCOUNT_SID="AC35…ca9"
quoted -
low Exfiltration
read-dotenvTWO_WAY_SMS_SETUP.md:18Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvTWO_WAY_SMS_SETUP.md:28Reads a .env fileset -a; source .env; set +a
-
low Exfiltration
read-dotenvTWO_WAY_SMS_SETUP.md:36Reads a .env filesource .env # If using .env file
-
low Exfiltration
read-dotenvTWO_WAY_SMS_SETUP.md:126Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvTWO_WAY_SMS_SETUP.md:132Reads a .env fileset -a; source .env; set +a
-
low Exfiltration
exfil-webhook-urlTWO_WAY_SMS_SETUP.md:227Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)- Paste your public URL: `https://your-url.ngrok.io/sms`
placeholder -
low Exfiltration
exfil-webhook-urlTWO_WAY_SMS.md:32Webhook / callback URL commonly used for exfiltration (verify the destination) (security demo / example; quoted — discussed, not commanded)Copy the HTTPS URL (e.g., `https://abc1….io`)
demoquoted -
low Dangerous commands
cmd-cron-mentionTWO_WAY_SMS.md:94Mentions editing / listing crontabcrontab -e
Files scanned: 24. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- error
frontmatterSKILL.md: no YAML frontmatter block found - error
name-missingSKILL.md: frontmatter has no `name` - error
description-missingSKILL.md: no `description` — the skill can never trigger
Process rating: all ten parameters 56/100
- 0Result and completion. Does not say what the result is
- 0When it triggers. No condition that starts the skill
- 30Running it twice. 12 mutating operations with no state check
- 50Failures and branches. 0 branches, has a failure section
- 60Tools and files. Uses tools (bash, web, python) that frontmatter does not declare
- 70Inputs and preconditions. Inputs and preconditions are listed
- 100Steps. 107 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 3951 tokens
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 16 top-level sections: this looks like several domains in one skill
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Description length 0: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- -4Absolute local paths (C:\Users, /home/…): not portable
- -2localhost URLs: will not work for another user
- +1No license
- +2Single-language instructions
- +4Structure: 43 headings
- +3Step-by-step instructions: 107 items
- +4Has examples (41 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 0.