BC polyclaw
Trade on Polymarket via split + CLOB execution. Browse markets, track positions with P&L, discover hedges via LLM. Includes automation tools: live portfolio tracking, auto-redeem, discipline scanner, and API bridge. Polygon/Web3.
As a process C 58/100 · Has gaps — weak spots: when it triggers, inputs and preconditions, consistency
IntegrationInfrastructureAI and agentsFinancetype and topics are labelled automatically from the skill text
How to improve
- 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 · 22
✓ No critical or high findings
Medium and low: 22
-
low Exfiltration
read-dotenvauto_redeem_check.py:4Reads a .env file (detector / deny-list definition)Add to crontab: */15 * * * * cd /root/.openclaw/skills/polyclaw && source .env && .venv/bin/python3 auto_redeem_check.py >> /var/log/polyclaw-redeem.log 2>&1
detector -
low Secrets in code
secret-high-entropy-tokenauto_redeem_check.py:19High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)CTF = Web3…ess("0x4D…045")quoted -
low Secrets in code
secret-high-entropy-tokenauto_redeem_check.py:20High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)NEG_RISK = Web3…ess("0xd9…296")quoted -
low Secrets in code
secret-high-entropy-tokenauto_redeem_check.py:21High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)USDC_E = Web3…ess("0x27…174")quoted -
low Secrets in code
secret-high-entropy-tokencheck_books.py:12High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)WALLET = "0x2a…B9F"
quoted -
low Secrets in code
secret-high-entropy-tokendiscipline_scanner.py:22High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)wallet = "0x2a…B9F"
quoted -
low Secrets in code
secret-high-entropy-tokenpolyclaw_api.py:50High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)WALLET_ADDR = "0x2a…B9F"
quoted -
low Secrets in code
secret-high-entropy-tokenpolyclaw_api.py:191High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)wallet_addr = "0x2a…B9F"
quoted -
low Secrets in code
secret-high-entropy-tokenpolyclaw_api.py:205High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"USDC.e": "0x27…174",
quoted -
low Secrets in code
secret-high-entropy-tokenpolyclaw_api.py:206High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"USDT": "0xc2…e8F",
quoted -
low Secrets in code
secret-high-entropy-tokenpolyclaw_api.py:207High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)"USDC": "0x3c…359",
quoted -
low Secrets in code
secret-high-entropy-tokenportfolio_live.py:6High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)WALLET = "0x2a…B9F"
quoted -
low Secrets in code
secret-high-entropy-tokenREADME.md:282High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| USDC.e | `0x27…174` |
table -
low Secrets in code
secret-high-entropy-tokenREADME.md:283High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| CTF | `0x4D…045` |
table -
low Secrets in code
secret-high-entropy-tokenREADME.md:284High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| CTF Exchange | `0x4b…82E` |
table -
low Secrets in code
secret-high-entropy-tokenREADME.md:285High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| Neg Risk CTF Exchange | `0xC5…80a` |
table -
low Secrets in code
secret-high-entropy-tokenREADME.md:286High-entropy token-like string (may be an id, hash or a credential) (documentation table row)| Neg Risk Adapter | `0xd9…296` |
table -
low Exfiltration
read-dotenvSKILL.md:134Reads a .env file (documentation of a security skill)cd {baseDir} && source .env && .venv/bin/python3 auto_redeem_check.pysecurity skill -
low Exfiltration
read-dotenvSKILL.md:137Reads a .env file (documentation of a security skill)*/15 * * * * cd /path/to/polyclaw && source .env && .venv/bin/python3 auto_redeem_check.py >> /var/log/polyclaw-redeem.log 2>&1
security skill -
low Secrets in code
secret-high-entropy-tokenSKILL.md:208High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **USDC.e:** `0x27…174`
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:209High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **CTF (Conditional Tokens):** `0x4D…045`
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:210High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **CTF Exchange:** `0x4b…82E`
quoted
Files scanned: 11. 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 58/100
- 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
- 40Consistency. Frontmatter name (polyclaw) differs from the folder (polyclaw-pro)
- 60Tools and files. Uses tools (python) that frontmatter does not declare
- 60Result and completion. Output format stated, no completion criterion
- 85Steps. 42 steps, 1 vague phrases
- 100Failures and branches. 1 branches, has a failure section
- 100Execution cost. Instruction body is 2326 tokens
- 100Running it twice. No mutating operations
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 11 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)
- +1No license
- +2Single-language instructions
- +3Description length 229: enough signal without eating the budget
- +4Structure: 27 headings
- +3Step-by-step instructions: 42 items
- +3Output format is stated explicitly
- +4Has examples (15 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 75.
External checks
ClawHub: suspicious
This appears to be a real Polymarket trading skill, but it gives an agent live wallet authority and includes under-scoped automation and incomplete delegated trading code that users should review carefully.
LLM: suspicious (high) · VirusTotal: suspicious · 28 May 2026