CD Social Scheduler Skill
Built by AI, for AI. Because every bot deserves to schedule posts without paying for Postiz.
Built by AI, for AI. Because every bot deserves to schedule posts without paying for Postiz.
As a process D 49/100 · Unfinished process — weak spots: result and completion, when it triggers, inputs and preconditions
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
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.
How to improve
- Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
- The SKILL.md body is over 5,000 tokens: move reference detail into references/ and load it when needed.
- 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 · 20
✓ No critical or high findings
Medium and low: 20
-
medium Exfiltration
exfil-webhook-urlscripts/platforms/discord.js:21Webhook / callback URL commonly used for exfiltration (verify the destination) (detector / deny-list definition)'Expected format: https://discord.com/api/webhooks/ID/TOKEN\n\n' +
detector -
medium Exfiltration
exfil-webhook-urlscripts/platforms/discord.js:187Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)configFormat: 'Webhook URL string: https://discord.com/api/webhooks/ID/TOKEN',
quoted -
low Exfiltration
read-dotenvANNOUNCEMENT.md:59Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvannouncements/README.md:139Reads a .env file3. Copy .env.example to .env
-
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:22High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…Enc/vzKw…pBK+z+KYh9…dU9+g2G+7zanTIGbw==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:137High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…JbG+vnnQ…1TK+nxAp…hhm+kzE4…g4g==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:154High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha512-vuBv+fm2s…sik+GMDJ…gLl+u3Mo…feA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:184High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…pdo+E3+pCyA…t4i+W7OO…FT3+y5NZZfOOS/Bdcanm1MYA==",
detector -
low Secrets in code
secret-high-entropy-tokenpackage-lock.json:247High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)"integrity": "sha5…HxH+tv3k…kSo+8o0wxg9lZWw==",
detector -
low Exfiltration
read-dotenvREADME.md:34Reads a .env filecp .env.example .env
-
low Exfiltration
read-dotenvREADME.md:425Reads a .env filecp .env.example .env
-
low Exfiltration
exfil-webhook-urlRELEASE.md:87Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/...
placeholder -
low Exfiltration
exfil-webhook-urlscripts/platforms/telegram.js:114Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)const url = `https://api.telegram.org/bot${botToken}/sendMessage`;placeholder -
low Exfiltration
exfil-webhook-urlscripts/platforms/telegram.js:167Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)const url = `https://api.telegram.org/bot${botToken}/${method}`;placeholder -
low Exfiltration
exfil-webhook-urlscripts/test.js:23Webhook / callback URL commonly used for exfiltration (verify the destination) (test fixture / example file; quoted — discussed, not commanded)discord.validate('https://discord.com/api/webhooks/123/abc');fixturequoted -
low Secrets in code
secret-labelled-tokenscripts/test.js:95Labelled token / key literal (vendor format unknown — verify it is not a live credential) (placeholder value)api_key: 'molt…890'
placeholder -
low Secrets in code
secret-password-literalscripts/test.js:95Hard-coded password / key literal (may be an example) (placeholder value)api_key: 'molt…890'
placeholder -
low Exfiltration
exfil-webhook-urlscripts/test.js:164Webhook / callback URL commonly used for exfiltration (verify the destination) (test fixture / example file; quoted — discussed, not commanded)config: 'https://discord.com/api/webhooks/123/abc'
fixturequoted -
low Exfiltration
exfil-webhook-urlSKILL.md:254Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)- Message bot, then call: `https://api.telegram.org/bot<TOKEN>/getUpdates`
placeholder -
low Exfiltration
exfil-webhook-urlSKILL.md:789Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)export DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/..."
placeholder
Files scanned: 49. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
name-formatname should be kebab-case (lowercase letters, digits, hyphens) - warning
description-no-whendescription does not say WHEN to use the skill (no "use when") - warning
body-longSKILL.md body ≈ 6932 tokens (recommended < 5000); move details to references/
Process rating: all ten parameters 49/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 20When it triggers. No condition that starts the skill
- 30Running it twice. 21 mutating operations with no state check
- 40Consistency. Frontmatter name (Social Scheduler Skill) differs from the folder (social-scheduler)
- 50Failures and branches. 0 branches, has a failure section
- 70Execution cost. Instruction body is 6932 tokens
- 85Steps. 166 steps, 3 vague phrases
- 100Tools and files. No external tools needed
- 100Progress reporting. Reports progress
- low 12 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 92: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- -5TODO / placeholder text left in the skill
- -254 emoji in the instructions: noise for the model
- -38 of 14 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +4Structure: 53 headings
- +3Step-by-step instructions: 166 items
- +4Has examples (97 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 44.