clojure-fast-read
Installation
SKILL.md
Clojure Fast Read
When reading Clojure code, you have two strategies with different tradeoffs:
- Full file read - slower but gives complete context (imports, other functions, design patterns)
- REPL inspection - fast, focused, but requires knowing the symbol name and whether it's been evaluated in the current session
This skill helps you choose the right approach and execute it efficiently.
Decision Framework
Step 1: Clarify Your Intent
Before reading, ask yourself: What's my actual goal?