FC workspace
(no description)
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 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.
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
- 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 · 11
-
high Dangerous commands
cmd-persistenceinstall_autostart.sh:34Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST_DEST"
-
high Dangerous commands
cmd-persistenceinstall_permanent_service.sh:65Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load "$PLIST_DEST"
Medium and low: 9
-
medium Broad scope
meta-agent-memory-dumpHEARTBEAT.mdAgent memory / workspace files bundled with the skill (4) — likely a workspace dump with personal data or tokensHEARTBEAT.md, IDENTITY.md, SOUL.md, USER.md
-
medium Dangerous commands
cmd-persistenceinstall_autostart.sh:41Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)echo " launchctl load $PLIST_DEST"
code literal -
medium Dangerous commands
cmd-install-from-urljira_venv/lib/python3.14/site-packages/pip/__main__.py:12Installs a package from an untrusted URL / archive (code comment)# This allows the usage python pip-*.whl/pip install pip-*.whl
comment -
low Risky intent
intent-offensive-securitychapter6_clean.txt:49Offensive-security / dual-use content (legitimate for authorised testing; review intended use)در لایه شبکه، NetworkPolicy به␀منظور microsegmentation پیاده␀سازی شده است. سیاست پیش␀فرض برای ترافیک ورودی به Pod ها حالت deny دارد و ارتباطات مجاز فقط به␀صورت صریح تعریف می␀شوند. این رویکرد zero-trus
-
low Secrets in code
secret-password-literalcreate_google_doc.py:201Hard-coded password / key literal (may be an example)password = "Q4Sswh3zG!tmv6T#"
-
low Dangerous commands
cmd-background-processFINAL_SUMMARY.md:111Starts a background / autostarted processnohup ./start_prompts.sh start &
-
low Secrets in code
secret-password-literalformat_google_doc_selenium.py:157Hard-coded password / key literal (may be an example)password = "sYOY…86z"
-
low Secrets in code
secret-high-entropy-tokenformat_google_doc.py:15High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)DOCUMENT_ID = "10aU…c4s"
quoted -
low Risky intent
intent-offensive-securitygoogle_docs_content.txt:276Offensive-security / dual-use content (legitimate for authorised testing; review intended use)در لایه شبکه، NetworkPolicy به␀منظور microsegmentation پیاده␀سازی شده است. سیاست پیش␀فرض برای ترافیک ورودی به Pod ها حالت deny دارد و ارتباطات مجاز فقط به␀صورت صریح تعریف می␀شوند. این رویکرد zero-trus
Files scanned: 80. 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. 4 mutating operations with no state check
- 50Failures and branches. 0 branches, has a failure section
- 60Tools and files. Uses tools (python) that frontmatter does not declare
- 70Inputs and preconditions. Inputs and preconditions are listed
- 100Steps. 28 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 772 tokens
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
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
- -2localhost URLs: will not work for another user
- +1No license
- +2Single-language instructions
- +4Structure: 20 headings
- +3Step-by-step instructions: 28 items
- +4Has examples (11 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 0.