Our review
Runs scenario tests against Gorlami forked RPCs to validate fund-moving scripts before live broadcasting.
Strengths
- Safe dry-run environment without real fund risk
- Accurate gas estimation and calldata verification
- Supports multi-step sequencing for complex strategies
Limitations
- Requires Gorlami fork infrastructure and configuration
- Not a general sandbox for non-blockchain scripts
- Assumes familiarity with strategy scripts and DeFi concepts
Use when you need to verify a DeFi transaction flow (swap, lend, bridge) without risking real funds.
Avoid for simple read-only queries or non-blockchain scripting tasks.
Security analysis
SafeThe skill is a high-level guide for dry-run testing on a fork RPC before live transactions. It references only safe practices (scenario testing, validation checklists, safe script patterns) and contains no executable commands, destructive instructions, or data exfiltration risks.
No concerns found
Examples
Run a dry-run simulation of swapping 10 ETH for USDC on a forked Ethereum mainnet using Gorlami fork RPC, checking for slippage and approval issues.Simulate depositing 5 ETH into Aave on a Gorlami fork and verify the resulting aToken balance, health factor, and gas cost before broadcasting live.Test a looping strategy: supply ETH to Compound, borrow USDC, swap to ETH, and supply again — all as a dry run on a Gorlami fork to validate the sequence and gas usage.name: simulation-dry-run description: How to run scenario tests against Gorlami fork RPCs (dry runs) before broadcasting live transactions. Covers config, seeding balances, runner flags, and safe script patterns. metadata: tags: simulation, dry-run, fork, gorlami, safety, strategies, scripts
When to use
Use this skill when you are:
- Writing or modifying a fund-moving script (swaps, lending, bridging, looping)
- Iterating on a strategy
deposit/update/withdraw/exitflow - Debugging approvals, units, calldata shapes, gas issues, or multi-step sequencing
How to use
- rules/quickstart.md - Config + fastest way to run a fork scenario
- rules/scenario-checklist.md - What to validate before “live”
- rules/script-pattern.md - Recommended CLI +
gorlami_fork(...)pattern - rules/gotchas.md - Common fork-mode failures and mitigations
TDD Red-Green-Refactor
Testing
Skill that guides Claude through the complete TDD cycle.
Web Accessibility Audit
Testing
Performs a comprehensive web accessibility audit following WCAG standards.
UAT Test Case Generator
Testing
Generates structured and comprehensive user acceptance test cases.