Custom Claude Code skills by @ramonclaudio
npx claudepluginhub ramonclaudio/skillsAtomic commits with conventional format, grouped by architectural layer. GPG signs when available.
Full codebase sweep that scores every file 0-10 on polish potential and refines files scoring 5+.
Brutally honest codebase audit with parallel agents. Finds bugs, architectural rot, and dead weight.
Convert screen recordings to compressed GIFs using ffmpeg two-pass palette method.
Extract video frames as images so Claude can analyze screen recordings, bug reproductions, and demos.
Session quality gate for Claude Code. Health checks, resume points, and cross-machine continuity.
Reference repo manager. Clone GitHub repos, index with QMD, search with BM25/vector/hybrid, manage embeddings and models. All on-device.
Lightweight end-of-session tech debt sweep. Finds duplicated code, dead exports, unused deps, stale TODOs, and bloated files.
Orchestrate teams of Claude Code sessions working in parallel. Decomposes work, spawns teammates, assigns tasks with file ownership, and coordinates execution.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
A collection of the plugins, skills, agents, commands, hooks, and workflows I use in Claude Code, open sourced for everyone. 9 plugins, grab what you need.
Context kept vanishing between sessions. Commits took too many steps. No good way to audit a codebase or coordinate parallel agents. So I built the tools I wanted and started publishing them here. Ping me if they save you time: @ramonclaudio.
[!NOTE] Requires Claude Code v1.0.33+.
Different plugins have different dependencies. Install only what you need.
# macOS
brew install git
# or: xcode-select --install
# Linux (Debian/Ubuntu)
sudo apt-get install git
# Linux (Fedora)
sudo dnf install git
# Windows
winget install --id Git.Git -e --source winget
commit)# macOS
brew install gh
# Windows
winget install --id GitHub.cli
Linux — see the official install guide.
After installing, authenticate with gh auth login.
qmd)npm install -g @tobilu/qmd
# or
bun install -g @tobilu/qmd
Requires Node.js >= 22 or Bun >= 1.0.0. On macOS also install Homebrew SQLite: brew install sqlite.
gif and frames)# macOS
brew install ffmpeg
# Linux (Debian/Ubuntu)
sudo apt-get install ffmpeg
# Linux (Fedora)
sudo dnf install ffmpeg
# Windows
winget install --id Gyan.FFmpeg
teams)The teams plugin needs the experimental agent teams feature flag. Add it to your settings.
Global (all projects) — ~/.claude/settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
Project-only — .claude/settings.local.json in your repo root:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
Or export it in your shell before launching Claude Code:
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
Add the marketplace:
/plugin marketplace add ramonclaudio/skills
Then install any plugin:
/plugin install handoff@skills
The skill shows up as a /command you can run immediately.
Each plugin is a self-contained directory with a manifest, one or more skills, and optionally hooks, MCP servers, or reference docs.
| Plugin | What it ships | Requires | Version |
|---|---|---|---|
| handoff | 2 skills, 2 hooks | git | 1.6.0 |
| qmd | 2 skills, 21 commands, 1 MCP server | qmd, git | 1.7.0 |
| commit | 1 skill, 1 hook, 2 scripts | git, gh | 1.5.0 |
| polish | 1 skill | git | 1.5.0 |
| audit | 1 skill, 1 script | git | 1.5.0 |
| techdebt | 1 skill, 1 script | git | 1.5.0 |
| gif | 1 skill | ffmpeg | 1.5.0 |
| frames | 1 skill | ffmpeg | 1.5.0 |
| teams | 1 skill | CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS env var | 1.4.0 |
Session continuity. Preserves context across sessions, machines, and compactions.
Skills:
/handoff:end - archive session state with health checks (build/test/lint), severity, done/failed/blockers/handoff:start - auto-triggered on critical context loss. Deep rehydration with drift detection.Hooks (2):
SessionStart - injects resume context on startup/resumePostCompact - re-injects context after compactionHooks run automatically. The only command you run is /handoff:end when you're done for the day.
Reference repo manager. Clone GitHub repos, index them, search with BM25/vector/hybrid. All on-device.
Skills:
/qmd:add <url> - clone + auto-detect file types + index + embedqmd:search - non-invocable guide teaching Claude how to compose effective queries with the query toolCommands (21): /qmd:update, /qmd:remove, /qmd:rename, /qmd:list, /qmd:context, /qmd:cleanup, /qmd:status, /qmd:embed, /qmd:pull, /qmd:get, /qmd:multi-get, /qmd:search, /qmd:vsearch, /qmd:query, /qmd:mcp, /qmd:collection-add, /qmd:collection-list, /qmd:collection-show, /qmd:collection-update-cmd, /qmd:collection-include, /qmd:collection-exclude