whisky-claude-plugins
Personal plugin marketplace by WhiskyChoy. Organized for Claude Code, with cross-platform SKILL.md compatibility (Codex CLI, and other agents).
Installation
claude plugin marketplace add https://github.com/WhiskyChoy/whisky-claude-plugins
Plugins
| Plugin | Version | Compatibility | Description |
|---|
| audio-preview | 1.0.0 | claude-code, codex | Zero-dependency local web server for comparing and picking audio files in a browser UI. |
| brainstorm | 1.0.0 | claude-code, codex (partial) | Technical design discussion mode — Socratic dialogue for algorithm, architecture, and design decisions. Produces implementation specs, not code. |
| cc0-audio | 1.0.0 | claude-code, codex | Search, download, and compress CC0/free-license audio from Freesound. Handles FFmpeg compression presets, URL checking, and batch processing. |
| claude-statusline | 1.0.0 | claude-code | Minimal terminal statusline (directory, model, context bar). Setup recommends claude-hud for a full-featured alternative, then falls back to this. |
| drawio | 1.0.0 | claude-code, codex | Generate draw.io diagrams as .drawio files with auto-detection and portable install of the draw.io CLI. Exports to PNG/SVG/PDF with embedded XML. See NOTICE for upstream attribution. |
| finalize-worktree | 1.0.0 | claude-code, codex | Commit all worktree changes, sync from main branch, run tests, and merge back. Use when done working in a git worktree. |
| lyria-audio | 1.0.0 | claude-code, codex | AI music generation CLI powered by Gemini Lyria (realtime streaming). Handles duration, BPM, brightness, density, scale, and MP3/WAV output. |
| overleaf-cleanup | 1.0.0 | claude-code, codex (partial) | Clean LaTeX/Overleaf projects by removing unused files based on dependency analysis from the main .tex entry point. Accepts a zip file or an existing directory. |
| overleaf-local | 1.0.0 | claude-code, codex (partial) | Local Overleaf workflow — git clone, LaTeX compilation, iterative compile-fix loop, and bidirectional sync. Targets non-technical users. |
| paper-to-slides | 1.0.0 | claude-code, codex (partial) | Convert academic papers (PDF, LaTeX, Overleaf) into polished HTML presentations with PPTX/PDF export. Supports multiple papers, style templates, screen-aware sizing, and logo injection. |
| switch-workspace | 1.0.0 | claude-code | Prepare a session for resuming in a different working directory. Copies session state and gives the user a one-line command to exit and resume in the target workspace. |
Installing Plugins
Claude Code
claude plugin marketplace add https://github.com/WhiskyChoy/whisky-claude-plugins
claude plugin install <name>@whisky-claude-plugins
Or install individual plugins:
claude plugin install audio-preview@whisky-claude-plugins
claude plugin install brainstorm@whisky-claude-plugins
claude plugin install cc0-audio@whisky-claude-plugins
claude plugin install claude-statusline@whisky-claude-plugins
claude plugin install drawio@whisky-claude-plugins
claude plugin install finalize-worktree@whisky-claude-plugins
claude plugin install lyria-audio@whisky-claude-plugins
claude plugin install overleaf-cleanup@whisky-claude-plugins
claude plugin install overleaf-local@whisky-claude-plugins
claude plugin install paper-to-slides@whisky-claude-plugins
claude plugin install switch-workspace@whisky-claude-plugins
OpenAI Codex CLI
This repo is organized as a Claude Code plugin marketplace, but each plugin's SKILL.md is compatible with Codex CLI. To use a skill in Codex:
macOS / Linux (bash):
# Copy the entire plugin directory (includes skills, tools, scripts, etc.)
cp -r plugins/<name> ~/codex-plugins/<name>
# Copy the skill into Codex's skill search path:
# User-level (available in all projects)
cp -r ~/codex-plugins/<name>/skills/<name> ~/.codex/skills/<name>
# Project-level (committed to repo)
cp -r plugins/<name>/skills/<name> .agents/skills/<name>
Windows (PowerShell):
# Copy the entire plugin directory
Copy-Item -Recurse plugins\<name> ~\codex-plugins\<name>
# User-level
Copy-Item -Recurse ~\codex-plugins\<name>\skills\<name> ~\.codex\skills\<name>
# Project-level (committed to repo)
Copy-Item -Recurse plugins\<name>\skills\<name> .agents\skills\<name>
Some plugins bundle runnable code alongside the skill (in tools/, scripts/, src/, etc.). The SKILL.md for each plugin documents how to locate and run its bundled code — check the skill's setup instructions for specifics.