Ronin Marketplace
Battle-tested skills for shipping software. Hard-won knowledge from real deployments, packaged for Claude Code.

ronin-marketplace
├── deployment-skills (4 skills)
├── packaging-skills (2 skills)
├── docs-skills (2 skills)
├── automation-skills (1 skill)
├── development-skills (2 skills)
├── data-skills (1 skill)
├── ui-skills (3 skills)
└── observability-skills (1 skill)
Installation
Claude Code
First, add the marketplace:
/plugin marketplace add SecurityRonin/ronin-marketplace
Then install the plugins you need:
/plugin install deployment-skills@ronin-marketplace
/plugin install packaging-skills@ronin-marketplace
/plugin install docs-skills@ronin-marketplace
/plugin install automation-skills@ronin-marketplace
/plugin install development-skills@ronin-marketplace
/plugin install data-skills@ronin-marketplace
/plugin install ui-skills@ronin-marketplace
/plugin install observability-skills@ronin-marketplace
Or install all at once:
/plugin install deployment-skills@ronin-marketplace packaging-skills@ronin-marketplace docs-skills@ronin-marketplace automation-skills@ronin-marketplace development-skills@ronin-marketplace data-skills@ronin-marketplace ui-skills@ronin-marketplace observability-skills@ronin-marketplace
Verify installation:
/skills
Claude Desktop
Add to your config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ronin-marketplace": {
"command": "npx",
"args": ["-y", "@anthropic/claude-code-mcp", "--plugin", "https://github.com/SecurityRonin/ronin-marketplace"]
}
}
}
Restart Claude Desktop after adding.
Updates
/plugin update deployment-skills@ronin-marketplace
Plugins
deployment-skills
Cloud deployment patterns for Vercel, Fly.io, and Cloudflare.
/plugin install deployment-skills@ronin-marketplace
| Skill | Use When |
|---|
| deployment | Choosing a deployment platform. Routes to Vercel, Fly.io, or Cloudflare based on workload type. |
| vercel-deployment | Deploying to Vercel. Fluid Compute (60s timeout bug, duration limits), vercel.json config, maxDuration patterns, cron jobs, env var gotchas (printf!), monorepo setup, Next.js errors, GCP WIF, async operations (Vercel kills background tasks!). |
| fly-deployment | Deploying to Fly.io. Single volume limit, monorepo patterns, Next.js provider errors. |
| cloudflare-r2-d1 | Using Cloudflare D1/R2/KV. Critical limits (10GB DB, 1 write/sec/key), multi-tenant patterns. |
packaging-skills
Cross-platform installers: DMG, MSI, DEB with GitHub Actions.
/plugin install packaging-skills@ronin-marketplace
| Skill | Use When |
|---|
| build-cross-platform-packages | Building installers for macOS (DMG), Windows (MSI/WiX), Linux (DEB). GitHub Actions automation, SLSA attestations, Homebrew updates. |
| robust-dependency-installation | Bundling portable executables (FFmpeg, Tesseract, ExifTool) in MSI installers. Unified detection/execution code paths. |
docs-skills
Documentation pipelines: MkDocs, Pandoc, GitHub Pages.
/plugin install docs-skills@ronin-marketplace
| Skill | Use When |
|---|
| mkdocs-github-pages-deployment | Deploying MkDocs to GitHub Pages. Python-Markdown gotchas: 4-space indentation, footnotes, grid tables. |
| pandoc-pdf-generation | Generating PDFs from Markdown. Blank line rules, fix scripts, visual testing workflow. |
automation-skills
Browser automation with Playwright, Puppeteer, and CDP.
/plugin install automation-skills@ronin-marketplace
| Skill | Use When |
|---|
| browser-automation | Automating browsers with Playwright/Puppeteer, handling dynamic content, CDP techniques, AI-powered tools. |
development-skills
Software development patterns and tooling.
/plugin install development-skills@ronin-marketplace
| Skill | Use When |
|---|
| chrome-extension-development | Building Chrome extensions (Manifest V3). Floating panel architecture, sidepanel API, SPA navigation detection, storage patterns, message passing, content scripts, Vitest testing, Playwright E2E. |
| 2026-migration-patterns | Upgrading Zod 3→4, Vitest 2→4, Tailwind CSS 3→4, Pinecone 6→7, AI SDK. Breaking API changes (.errors→.issues, mock constructors, CSS-first config), type errors, migration checklist. |
data-skills
Analytics and data warehouse patterns for DuckDB, MotherDuck, and Parquet.
/plugin install data-skills@ronin-marketplace