Our review
Run scenario tests against Gorlami fork RPCs to simulate live transactions before broadcasting.
Strengths
- Prevents costly mistakes by validating transactions in a sandboxed environment
- Supports complex multi-step scripts like swaps, lending, and bridging
- Allows debugging of approvals, units, calldata, and gas issues offline
Limitations
- Requires careful seeding of balances to mimic mainnet state
- Fork RPCs may have subtle differences from real chains affecting behavior
- Not suitable for testing real-time economic conditions like frontrunning
Use when developing or modifying fund-moving scripts to ensure correctness and safety before live execution.
Do not use for testing user interfaces, API integrations, or scenarios that require live blockchain state.
Security analysis
SafeThis skill only provides documentation and guidance for running simulation dry runs in a forked environment before broadcasting live transactions. It does not contain any executable commands, network calls, file deletions, or sensitive data handling. No risk of accidental destruction or exfiltration.
No concerns found
Examples
I want to run a dry-run simulation of my swap script using Gorlami fork RPCs. Can you help me configure the fork, seed balances, and run the scenario?My approval transaction is failing in simulation. Show me how to debug approval calldata and units using the fork RPC dry-run.I have a multi-step lending and bridging strategy. I need to run a scenario test against a Gorlami fork before broadcasting. What flags and patterns should I use?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.