Coding agents
Give your agent the ability to read minified JavaScript.
Coding agents hit unreadable minified JavaScript constantly. Left alone, an agent burns tokens scrolling a one-line bundle and guesses at what the code does. With the Wakaru skill installed, it unpacks the bundle into readable modules, reads only the files it needs, and reasons about real code instead of guessing. Works with Claude Code, Codex, Grok, and any other agent that reads the skills format.
npx skills add pionxzh/wakaruWhat the skill teaches
- Unpack a bundle to a directory and read modules selectively, instead of dumping thousands of modules into context
- Use
--jsonfor structured results: detected formats, module lists, warnings, failure counts - Pick the rewrite level by intent:
minimalfor security review and audits,aggressivefor pure reading - Triage unpacked modules by size. The largest files are usually vendored libraries, and the app code is smaller and more numerous.
The skill itself is the full reference: skills/wakaru/SKILL.md.