CC web3-ops
Perform EVM Web3 on-chain operations: check addresses, scan portfolios, transfer assets, swap/bridge tokens, mint NFTs, custom raw tx, PnL tracking, Cutloss/Takeprofit monitor, RSI/EMA trading signals, GoPlus contract security audits, whale tracking, anti-MEV route routing, and wallet creation.
As a process C 50/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.
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 · 22
✓ No critical or high findings
Medium and low: 22
-
medium Risky intent
intent-wallet-secretsREADME.md:69Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target* **No Seed Phrase Handling**: The skill never requests, stores, or accesses mnemonics/seed phrases directly during active operations.
-
medium Risky intent
intent-wallet-secretsskill-card.md:21Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetMitigation: Use only a dedicated low-value hot wallet, never a primary wallet or seed phrase, and review every transaction outside the agent before broadcast. <br>
-
low Secrets in code
secret-high-entropy-tokenactions/common.js:245High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)WETH: "0xC0…Cc2",
quoted -
low Secrets in code
secret-high-entropy-tokenactions/common.js:246High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)USDC: "0xA0…B48",
quoted -
low Secrets in code
secret-high-entropy-tokenactions/common.js:247High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)USDT: "0xdA…ec7"
quoted -
low Secrets in code
secret-high-entropy-tokenactions/common.js:252High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)WETH: "0x82…111",
quoted -
low Secrets in code
secret-high-entropy-tokenactions/common.js:253High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)USDC: "0xaf…831",
quoted -
low Secrets in code
secret-high-entropy-tokenactions/monitor.js:49High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)let usdcAddress = "0x83…913"; // Base USDC default
detector -
low Secrets in code
secret-high-entropy-tokenactions/signals.js:92High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)if (chainConfig.id === 1) targetAddress = "0xC0…Cc2"; // WETH
detector -
low Secrets in code
secret-high-entropy-tokenactions/signals.js:94High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)else if (chainConfig.id === 42161) targetAddress = "0x82…111"; // WETH Arb
detector -
low Secrets in code
secret-high-entropy-tokenactions/signals.js:95High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)else if (chainConfig.id === 137) targetAddress = "0x0d…270"; // WMATIC
detector -
low Secrets in code
secret-high-entropy-tokenactions/signals.js:96High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)else if (chainConfig.id === 56) targetAddress = "0xbb…95c"; // WBNB
detector -
low Secrets in code
secret-high-entropy-tokenactions/swapBridge.js:170High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)const UNIS…TER = "0xE5…564";
detector -
low Secrets in code
secret-high-entropy-tokenactions/swapBridge.js:226High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)const PANC…TER = "0x13…Dd4";
quoted -
low Secrets in code
secret-high-entropy-tokenactions/whales.js:69High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)contractaddress: chainConfig.id === 1 ? "0xC0…Cc2" : undefined,
detector -
low Risky intent
intent-wallet-secretsREADME.md:168Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target (detector / deny-list definition)The system will automatically generate a new wallet and securely store your *Private Key* in the `.env` file. *(Don't forget to write down the Mnemonic/Seed Phrase displayed on your screen!)*
detector -
low Secrets in code
secret-high-entropy-tokenREADME.md:251High-entropy token-like string (may be an id, hash or a credential)USDC : 120.500000 (CA: 0x83…913)
-
low Secrets in code
secret-high-entropy-tokenREADME.md:252High-entropy token-like string (may be an id, hash or a credential)AERO : 415.000000 (CA: 0x94…631)
-
low Secrets in code
secret-high-entropy-tokenREADME.md:259High-entropy token-like string (may be an id, hash or a credential)node index.js transfer --chain base --to 0x74…44e --amount 0.005
-
low Secrets in code
secret-high-entropy-tokenREADME.md:264High-entropy token-like string (may be an id, hash or a credential)node index.js transfer --chain base --to 0x74…44e --amount 50 --token USDC
-
low Secrets in code
secret-high-entropy-tokenREADME.md:321High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"address": "0x61…81b",
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:109High-entropy token-like string (may be an id, hash or a credential) (detector / deny-list definition)4. **Display Copyable Addresses (CAs):** When printing token balances, portfolios, or transaction confirmations, format all contract addresses (CA) inside Telegram monospace code blocks (e.g. `` `0x9
detector
Files scanned: 19. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
frontmatter-yamlSKILL.md: the frontmatter is not valid YAML (YAML parse error: Nested mappings are not allowed in compact mappings at line 2, column 14: description: Perform EVM Web3 on-chain operations: check addresses, scan portfo… ^ ); fields were read line by line. The usual cause is a colon inside an unquoted value - warning
description-no-whendescription does not say WHEN to use the skill (no "use when") - note
frontmatter-keyunknown frontmatter key "env" - note
frontmatter-keyunknown frontmatter key "requirements"
Process rating: all ten parameters 50/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. 9 mutating operations with no state check
- 60Tools and files. Uses tools (bash, web, node) that frontmatter does not declare
- 70Failures and branches. 5 branches
- 100Steps. 40 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 2286 tokens
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low The response is described with custom markup (49 tags): a typed call is more reliable
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)
- +4No input/output examples
- +1No license
- +2Single-language instructions
- +3Description length 295: enough signal without eating the budget
- +4Structure: 18 headings
- +3Step-by-step instructions: 40 items
- +3Output format is stated explicitly
Quality base 70; lint remarks subtract, signals add up to 100. Result: 59.