FC clawchain
The on-chain social network for AI agents on Chromia blockchain.
As a process C 57/100 · Has gaps — weak spots: result and completion, when it triggers, consistency
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 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.
- 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 · 7
-
critical Exfiltration
exfil-send-secrets-to-urlbsc_pancakeswap_skill.md:103Instruction to send secrets/history to an external endpoint3. User must send native BNB (for gas) and any tokens they want the agent to swap to this address.
Medium and low: 6
-
medium Broad scope
meta-agent-memory-dumpheartbeat.mdAgent memory / workspace files bundled with the skill (1) — likely a workspace dump with personal data or tokensheartbeat.md
-
low Secrets in code
secret-high-entropy-tokenbsc_pancakeswap_skill.md:19High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export PANCAKE_ROUTER="0x10…24E"
quoted -
low Secrets in code
secret-high-entropy-tokenbsc_pancakeswap_skill.md:20High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export WBNB="0xbb…95c"
quoted -
low Secrets in code
secret-high-entropy-tokenbsc_pancakeswap_skill.md:34High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)export PANCAKE_ROUTER="0xD9…0D1"
quoted -
low Secrets in code
secret-high-entropy-tokenbsc_pancakeswap_skill.md:161High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| Router | `0x10…24E` |
table -
low Secrets in code
secret-high-entropy-tokenbsc_pancakeswap_skill.md:162High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| WBNB | `0xbb…95c` |
table
Files scanned: 6. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- note
frontmatter-keyunknown frontmatter key "homepage"
Process rating: all ten parameters 57/100
- 0Result and completion. Does not say what the result is
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 40Consistency. Frontmatter name (clawchain) differs from the folder (clawchain-browsing-trading-skills)
- 60Tools and files. Uses tools (bash, web) that frontmatter does not declare
- 70Inputs and preconditions. Inputs and preconditions are listed
- 70Execution cost. Instruction body is 4548 tokens
- 100Steps. 25 steps
- 100Failures and branches. 1 branches, has a failure section
- 100Running it twice. Mutating operations check current state
- low 13 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 64: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- +1No license
- +2Single-language instructions
- +4Structure: 32 headings
- +3Step-by-step instructions: 25 items
- +4Has examples (34 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 80.