FD voice-devotional
voice devotional
voice devotional
As a process D 36/100 · Unfinished process — weak spots: steps, result and completion, when it triggers
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 files contain someone else's key or token. If it is live, your agent will call third-party services under a stranger's identity; if it was revoked, the skill's scripts simply fail. Such a key often arrives with the author's whole workspace, personal data included.
The key is visible to everyone who downloaded the skill and has likely been copied by catalog-scanning bots already. Revoke it now, check bills and access logs, then reissue.
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.
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 asks for more than the task needs: broad tool access, credential environment variables, binaries. Every extra permission widens the damage from a mistake or a compromise.
Narrow allowed-tools and the variable list to the minimum; replace binaries with readable sources or scripts.
How to improve
- Remove the critical guard findings (secrets, dangerous commands, hidden instructions): while they stand the skill is blocked and cannot grade above F.
- Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
- 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 · 67
-
critical Secrets in code
secret-telegram-botMEMORY.md:115Telegram bot token (quoted — discussed, not commanded)- **Primary:** MOLT3D Telegram group (-1003892992445) — Background monitor (`molt…tor` session) running continuously, polling every 30s for Snail's messages and ClawdSense activity (🔴 Sentry, �
quoted -
critical Secrets in code
secret-telegram-botmemory/2026-01-28.md:27Telegram bot token- **ClawdSense Bot:** 8526…AHT…
-
critical Secrets in code
secret-telegram-botmemory/2026-02-04-overwatch-pro.md:109Telegram bot token- Token configured from MOLT3D bot: 8526…AHT…
-
critical Secrets in code
secret-telegram-botmolt3d-monitor.js:10Telegram bot token (quoted — discussed, not commanded)const BOT_TOKEN = '8526…AHT…';
quoted -
high Dangerous commands
cmd-persistencemail-hygiene-check.sh:10Persistence mechanism (cron / launchd / scheduled task / autorun registry)CRONTAB_ENTRY=$(crontab -l 2>/dev/null | grep mail-hygiene)
-
high Exfiltration
exfil-webhook-urlMEMORY.md:92Webhook / callback URL commonly used for exfiltration (verify the destination)- **Universal Voice Agent** (~clawd/universal-voice-agent): **LIVE** on port 5001. Goal-oriented voice calling system with Groq Whisper (transcription), Haiku (reasoning), ElevenLabs TTS (your voice).
-
high Dangerous commands
cmd-pipe-to-shellmemory/2026-01-25-1507.md:48Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL https://clawd.bot/install.sh | bash
-
high Dangerous commands
cmd-persistenceMORNING-BRIEFING-SETUP.md:61Persistence mechanism (cron / launchd / scheduled task / autorun registry)crontab /Users/ericwoodard/clawd/crontabs/morning-briefing.cron
-
high Dangerous commands
cmd-persistenceMORNING-BRIEFING-SETUP.md:233Persistence mechanism (cron / launchd / scheduled task / autorun registry)sudo launchctl load /System/Library/LaunchDaemons/com.vix.cron.plist
-
high Dangerous commands
cmd-persistencescripts/install-morning-briefing.sh:73Persistence mechanism (cron / launchd / scheduled task / autorun registry)EXISTING_CRON=$(crontab -l 2>/dev/null | grep "morning-briefing.sh" || echo "")
-
high Dangerous commands
cmd-persistencescripts/install-morning-briefing.sh:85Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null | grep -v "morning-briefing.sh" | crontab - 2>/dev/null) || true
-
high Dangerous commands
cmd-persistencescripts/install-morning-briefing.sh:95Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null || echo "") | { -
high Dangerous commands
cmd-persistencescripts/install-morning-briefing.sh:99Persistence mechanism (cron / launchd / scheduled task / autorun registry)} | crontab -
-
high Dangerous commands
cmd-persistencescripts/install-morning-briefing.sh:106Persistence mechanism (cron / launchd / scheduled task / autorun registry)VERIFY_CRON=$(crontab -l 2>/dev/null | grep "morning-briefing.sh" || echo "")
Medium and low: 53
-
medium Dangerous commands
cmd-privilegeguides/troubleshooting.md:16Privilege escalation / world-writable permissionssudo chmod 666 /dev/video0
-
medium Dangerous commands
cmd-shell-rcguides/troubleshooting.md:134Writes to a shell startup fileecho "export GROQ_API_KEY=gsk_xxxxx" >> ~/.zshrc
-
medium Exfiltration
net-credential-useguides/troubleshooting.md:161Credential used in a network call (verify the destination is the intended service)curl https://api.telegram.org/bot$TELEGRAM_TOKEN/getUpdates
-
medium Broad scope
meta-agent-memory-dumpHEARTBEAT.mdAgent memory / workspace files bundled with the skill (24) — likely a workspace dump with personal data or tokensHEARTBEAT.md, IDENTITY.md, MEMORY.md, SOUL.md, memory/2025-01-26.md
-
low Exfiltration
exfil-webhook-urlguides/troubleshooting.md:161Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)curl https://api.telegram.org/bot$TELEGRAM_TOKEN/getUpdates
placeholder -
low Dangerous commands
cmd-cron-mentionmail-hygiene-check.sh:10Mentions editing / listing crontabCRONTAB_ENTRY=$(crontab -l 2>/dev/null | grep mail-hygiene)
-
low Dangerous commands
cmd-cron-mentionMAIL-HYGIENE-SETUP.md:55Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMAIL-HYGIENE-SETUP.md:60Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMAIL-HYGIENE-STATUS.md:57Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMAIL-HYGIENE-STATUS.md:103Mentions editing / listing crontabcrontab -l | grep mail-hygiene
-
low Risky intent
intent-offensive-securityMEMORY.md:8Offensive-security / dual-use content (legitimate for authorised testing; review intended use)- Document creation service (trust documents for ATF stuff) — **⚠️ NOTE: Under active phishing campaign targeting (see Security below)**
-
low Risky intent
intent-offensive-securityMEMORY.md:16Offensive-security / dual-use content (legitimate for authorised testing; review intended use)**Active Phishing Campaign (2026-01-31 → UPDATED 2026-02-04):**
-
low Secrets in code
secret-high-entropy-tokenMEMORY.md:127High-entropy token-like string (may be an id, hash or a credential)- **Twilio Account:** Paid account (AC35…ca9) with phone (915) 223-7302. Auth Token stored in TOOLS.md. Can make/receive calls, send SMS. Already tested successfully.
-
low Secrets in code
secret-high-entropy-tokenmemory/2026-01-27.md:62High-entropy token-like string (may be an id, hash or a credential)- **Account SID:** AC35…ca9
-
low Risky intent
intent-offensive-securitymemory/2026-02-01-spam-phishing-scan.md:73Offensive-security / dual-use content (legitimate for authorised testing; review intended use)✓ No obvious credential harvesting attempts
-
low Risky intent
intent-offensive-securitymemory/2026-02-02-email-security-scan.md:12Offensive-security / dual-use content (legitimate for authorised testing; review intended use)- Risk: Credential harvesting via reply verification
-
low Risky intent
intent-offensive-securitymemory/gmail-filters-2026-02-04.md:13Offensive-security / dual-use content (legitimate for authorised testing; review intended use)**Reason:** Active QR code phishing campaign targeting your trust document service with 97+ emails already received.
-
low Risky intent
intent-offensive-securitymemory/gmail-filters-2026-02-04.md:37Offensive-security / dual-use content (legitimate for authorised testing; review intended use) (detector / deny-list definition)**Reason:** Exact pattern from active phishing campaign
detector -
low Risky intent
intent-offensive-securitymemory/mail-scan-2026-01-31.md:12Offensive-security / dual-use content (legitimate for authorised testing; review intended use) (detector / deny-list definition)## 🚨 HIGH PRIORITY - Phishing/Credential Harvesting
detector -
low Risky intent
intent-offensive-securitymemory/mail-scan-2026-01-31.md:108Offensive-security / dual-use content (legitimate for authorised testing; review intended use)- **No credential harvesting links identified** (but URLs not parsed in this scan)
-
low Exfiltration
exfil-webhook-urlmolt3d-monitor.js:19Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)const url = `https://api.telegram.org/bot${BOT_TOKEN}/${method}`;placeholder -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-ARCHITECTURE.md:310Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-ARCHITECTURE.md:355Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-ARCHITECTURE.md:368Mentions editing / listing crontabcrontab -e # Comment out the line
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-ARCHITECTURE.md:371Mentions editing / listing crontabcrontab -e # Modify "15 10" to new time
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-ARCHITECTURE.md:374Mentions editing / listing crontabcrontab -e # Delete the line
-
low Dangerous commands
cmd-persistenceMORNING-BRIEFING-ARCHITECTURE.md:409Persistence mechanism (cron / launchd / scheduled task / autorun registry) (detector / deny-list definition; documentation table row)| Cron not running | Daemon not loaded | `sudo launchctl load /System/Library/LaunchDaemons/com.vix.cron.plist` |
detectortable -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-QUICK-START.md:41Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-QUICK-START.md:44Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-QUICK-START.md:53Mentions editing / listing crontabcrontab -e # Then delete the morning-briefing line
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-QUICK-START.md:62Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-QUICK-START.md:95Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-README.md:42Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-README.md:48Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-README.md:145Mentions editing / listing crontab (quoted — discussed, not commanded)Edit crontab: `crontab -e`
quoted -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-README.md:216Mentions editing / listing crontab (documentation table row)| Cron not running | Check crontab: `crontab -l` (should show the job) |
table -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-README.md:240Mentions editing / listing crontab (quoted — discussed, not commanded)2. **Verify**: `crontab -l` (confirm job is there)
quoted -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-SETUP.md:51Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-SETUP.md:68Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-SETUP.md:143Mentions editing / listing crontab (quoted — discussed, not commanded)1. **Edit crontab**: `crontab -e`
quoted -
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-SETUP.md:207Mentions editing / listing crontabcrontab -l
-
low Dangerous commands
cmd-cron-mentionMORNING-BRIEFING-SETUP.md:221Mentions editing / listing crontabcrontab -l
-
low Exfiltration
read-dotenvREADME.md:31Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvREADME.md:227Reads a .env filecp .env.example .env
-
low Dangerous commands
cmd-cron-mentionscripts/install-morning-briefing.sh:73Mentions editing / listing crontabEXISTING_CRON=$(crontab -l 2>/dev/null | grep "morning-briefing.sh" || echo "")
-
low Dangerous commands
cmd-cron-mentionscripts/install-morning-briefing.sh:85Mentions editing / listing crontab(crontab -l 2>/dev/null | grep -v "morning-briefing.sh" | crontab - 2>/dev/null) || true
-
low Dangerous commands
cmd-cron-mentionscripts/install-morning-briefing.sh:95Mentions editing / listing crontab(crontab -l 2>/dev/null || echo "") | { -
low Dangerous commands
cmd-cron-mentionscripts/install-morning-briefing.sh:106Mentions editing / listing crontabVERIFY_CRON=$(crontab -l 2>/dev/null | grep "morning-briefing.sh" || echo "")
-
low Dangerous commands
cmd-cron-mentionscripts/install-morning-briefing.sh:149Mentions editing / listing crontab (string literal in code, not executed)echo " crontab -e"
code literal -
low Exfiltration
exfil-webhook-urlscripts/overwatch-checkin.js:161Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)`https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendPhoto`,placeholder -
low Exfiltration
exfil-webhook-urlscripts/overwatch-checkin.js:171Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)`https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendAnimation`,placeholder -
low Exfiltration
exfil-webhook-urlscripts/overwatch.py:57Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendPhoto"placeholder -
low Exfiltration
exfil-webhook-urlscripts/overwatch.py:83Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessage"placeholder
Files scanned: 80. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- error
body-emptySKILL.md: empty instructions body - warning
description-shortdescription under 40 chars: too little signal for triggering - warning
description-no-whendescription does not say WHEN to use the skill (no "use when")
Process rating: all ten parameters 36/100
- 0Steps. Prose only: no discrete steps
- 0Result and completion. Does not say what the result is
- 0When it triggers. No condition that starts the skill
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Failures and branches. Linear process with no failure handling
- 0Progress reporting. Says nothing while it works
- 100Tools and files. No external tools needed
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 1 tokens
- 100Running it twice. No mutating operations
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 16: 120–800 characters recommended
- +4Structure: 0 headings, hard to scan
- +3No numbered steps or checklist
- +3Output format is not stated: the model decides each time
- +4No input/output examples
- -15SKILL.md body under 300 characters: nearly empty
- -313 of 13 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
Quality base 70; lint remarks subtract, signals add up to 100. Result: 0.