What problem does it solve?
This Skill reduces the risk of asset loss when an LLM-based autonomous trading agent has wallet or transaction authority and can be driven into unsafe actions.
Core Features & Use Cases
- Prompt Injection Defense: Detects and blocks instruction-hijacking patterns that could redirect the agent toward malicious on-chain operations.
- Spend Policy Guardrails: Enforces hard single-transaction and daily spend limits independent of model output.
- Pre-Send Transaction Simulation: Simulates calls and validates expected outputs (including slippage and min-out) before broadcasting transactions.
- Execution Safety Controls: Adds circuit breakers for drawdown thresholds and invalid states to halt runaway trading.
- Wallet Key Isolation: Requires private keys from environment/secret management to avoid code and log leakage.
- MEV and Deadline Protection: Applies slippage bounds and short deadlines to reduce unfavorable execution risk.
Quick Start
Ask an AI to audit your trading agent design by generating an end-to-end checklist that applies prompt injection filtering, hard spend limits, transaction simulation with min_amount_out validation, a circuit breaker, and isolated wallet key handling.