Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By ramonclaudio
Reference repo manager. Clone GitHub repos, index with QMD, search with BM25/vector/hybrid, manage embeddings and models. All on-device.
npx claudepluginhub ramonclaudio/skills --plugin qmdClear QMD caches, remove orphaned data, vacuum database
Add a local directory as a QMD collection
Exclude a collection from default queries
Include a collection in default queries
List all QMD collections with metadata
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Optimized file search, semantic indexing, and persistent memory for Claude Code — with optional sync to a self-hosted web dashboard
Commands for loading context and priming Claude for specific tasks
Personal Claude Code + Codex dev stack: security hooks, AI-first code conventions, /security-review, /repo-map, /stack-check, portable statusline. Designed to complement other skills-based plugins, not replace them.
Z.AI vision, search, reader, and GitHub exploration via CLI and MCP. Analyze images, search the web, read pages as markdown, explore repos.
Documentation and authoring workflow router: audit docs vs code drift, sync docs after changes, optimize prompts and SKILL.md files, validate GLFM and Markdown formatting, summarize files/URLs/images with fidelity enforcement. Use when: docs are out of date, CLAUDE.md needs improving, SKILL.md needs optimizing, checking if documentation matches code, summarizing files or URLs.
Personal Claude Code plugin for dwmkerr with repo management and custom workflows
Session quality gate for Claude Code. Health checks, resume points, and cross-machine continuity.
Lightweight end-of-session tech debt sweep. Finds duplicated code, dead exports, unused deps, stale TODOs, and bloated files.
Brutally honest codebase audit with parallel agents. Finds bugs, architectural rot, and dead weight.
Atomic commits with conventional format, grouped by architectural layer. GPG signs when available.
Orchestrate teams of Claude Code sessions working in parallel. Decomposes work, spawns teammates, assigns tasks with file ownership, and coordinates execution.
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