SKILLEMALL.ai

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.

ClawHub Agent Skills author: fio v0.1.7 MIT-0 35 files body ≈ 3 792 tokens Open the sourceclawhub.ai analyzed 3 d ago

As a process C 53/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions

ProcedureAI and agentsInfrastructuretype and topics are labelled automatically from the skill text
JSON
Technical rating
C
73/100
safety, quality, tests
Safety 60%
73
Quality 40%
72
Run on models
none yet
Process rating
C
53/100
Has gaps
Result and completion w 14
0
Inputs and preconditions w 11
0
Progress reporting w 2
0
the three weakest of ten parameters · all ten

What is at stake

Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.

Risky intent medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The purpose itself is risky: wallets, browser password stores, offensive security. Even an honest implementation gives the agent access to things that cost money.

For the author

Explain in the description why the access is needed and how it is limited; add tests that show refusals on dangerous requests.

Exfiltration medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

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".

For the author

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

  1. Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
For the model run — optional
  • 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-secrets SKILL.md:55
    Handles 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-key src/config.ts:143
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-credential-use src/config.ts:162
    Credential 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-token README.md:153
    High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)
    "solanaAddress": "HK6y…85A"
    quoted
  • low Exfiltration read-dotenv SKILL.md:37
    Reads a .env file (documentation of a security skill)
    cp .env.example .env
    security skill
  • low Secrets in code secret-high-entropy-token SKILL.md:343
    High-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-token src/chains/index.ts:42
    High-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-token src/chains/index.ts:49
    High-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-token src/chains/index.ts:56
    High-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-token src/chains/index.ts:63
    High-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-token src/chains/index.ts:69
    High-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-token src/services/solanaBalanceService.ts:6
    High-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-token src/services/solanaTokenService.ts:6
    High-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-token src/services/solanaTokenService.ts:24
    High-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-token src/services/solanaTokenService.ts:32
    High-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-when description 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.

External checks

ClawHub: clean
This is a disclosed crypto treasury skill that can move funds and place trades, so it is high-risk to use but its sensitive behavior matches its stated purpose.
LLM: benign (high) · VirusTotal: · 29 May 2026