CC crypto-treasury-ops
Safely manage EVM treasury operations and native Hyperliquid trading for OpenClaw agents, including wallet balance checks, guarded token transfers, cross-chain USDC bridging, Hyperliquid deposits, destination gas top-ups, trading safety, and structured quoting.
As a process C 53/100 · Has gaps — 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 purpose itself is risky: wallets, browser password stores, offensive security. Even an honest implementation gives the agent access to things that cost money.
Explain in the description why the access is needed and how it is limited; add tests that show refusals on dangerous requests.
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.
- 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 · 15
✓ No critical or high findings
Medium and low: 15
-
medium Risky intent
intent-wallet-secretsSKILL.md:55Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target- Prefer a vault, KMS, HSM, or delegated signer in production instead of a raw hot-wallet private key in `.env`
-
medium Exfiltration
net-redirectable-api-keysrc/config.ts:143Helper sends the API key to a host configured by an environment variable — the key can be redirected to another serverAPI key + configurable base URL from environment
-
medium Exfiltration
net-credential-usesrc/config.ts:162Credential used in a network call (verify the destination is the intended service)confirmationThresholdByToken: parseSymbolAmountMap(process.env.CONFIRMATION_THRESHOLD_BY_TOKEN),
-
low Secrets in code
secret-high-entropy-tokenREADME.md:153High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"solanaAddress": "HK6y…85A"
quoted -
low Exfiltration
read-dotenvSKILL.md:37Reads a .env file (documentation of a security skill)cp .env.example .env
security skill -
low Secrets in code
secret-high-entropy-tokenSKILL.md:343High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)node dist/index.js --action get_balances --input '{"chain":"solana","solanaAddress":"HK6y…85A"}'quoted -
low Secrets in code
secret-high-entropy-tokensrc/chains/index.ts:42High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: addr("0xA0…b48"),quoted -
low Secrets in code
secret-high-entropy-tokensrc/chains/index.ts:49High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: addr("0xdA…ec7"),quoted -
low Secrets in code
secret-high-entropy-tokensrc/chains/index.ts:56High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: addr("0x6B…d0F"),quoted -
low Secrets in code
secret-high-entropy-tokensrc/chains/index.ts:63High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: addr("0xC0…Cc2"),quoted -
low Secrets in code
secret-high-entropy-tokensrc/chains/index.ts:69High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: addr("0x22…599"),quoted -
low Secrets in code
secret-high-entropy-tokensrc/services/solanaBalanceService.ts:6High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)const SPL_TOKEN_PROGRAM_ID = new PublicKey("Toke…5DA");quoted -
low Secrets in code
secret-high-entropy-tokensrc/services/solanaTokenService.ts:6High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)const SPL_TOKEN_PROGRAM_ID = new PublicKey("Toke…5DA");quoted -
low Secrets in code
secret-high-entropy-tokensrc/services/solanaTokenService.ts:24High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: "EPjF…t1v",
quoted -
low Secrets in code
secret-high-entropy-tokensrc/services/solanaTokenService.ts:32High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)address: "Es9v…NYB",
quoted
Files scanned: 35. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
description-no-whendescription does not say WHEN to use the skill (no "use when")
Process rating: all ten parameters 53/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 30Running it twice. 1 mutating operations with no state check
- 60Tools and files. Uses tools (bash) that frontmatter does not declare
- 100Steps. 191 steps
- 100Failures and branches. 9 branches, has a failure section
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 3792 tokens
- 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)
- +3Output format is not stated: the model decides each time
- +1No license
- +2Single-language instructions
- +3Description length 261: enough signal without eating the budget
- +4Structure: 18 headings
- +3Step-by-step instructions: 191 items
- +4Has examples (21 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 72.