clj-discover
Installation
SKILL.md
Clojure Code Discovery
When writing Clojure code with unfamiliar APIs, gather context before writing. This skill focuses on Java interop and macros.
When to Use This Skill
Automatically use this skill whenever you encounter:
- A Java class that needs to be used from Clojure
- A macro whose behavior is unclear (need to see what it expands to)
Workflow: Java Interop
1. Search for Clojure Wrappers First
Before exploring the Java class directly, ask:
"I see you're working with
java.time.LocalDateTime. Would you like me to search for a Clojure wrapper library? Wrappers often provide simpler, more idiomatic APIs."