A simple tool to inject custom JavaScript plugins into the Claude Code Bun context.

macOS/Linux
curl -fsSL https://raw.githubusercontent.com/LabGuy94/claudeload/master/install.sh | sh
Windows (PowerShell)
iex "& { $(iwr -useb https://raw.githubusercontent.com/LabGuy94/claudeload/master/install.ps1) } -AddToPath"
go build -o claudeload ./cmd/claudeload
claudeload install
claudeload uninstall
claudeload extract [--beautify] <path>
claudeload plugin list
claudeload plugin add <file.js>
claudeload plugin remove <name.js>
On install, claudeload-plugins/ is created next to the claude binary. Any .js files in that directory are loaded at runtime.
- For
extract --beautify,js-beautifyis required: https://www.npmjs.com/package/js-beautify - This tool modifies the Claude Code executable on disk. Use responsibly and keep backups.
- Some example plugins are included in
example-plugins.