Ship better code with AI. Production-quality skills for clean code, testing, debugging, and more.
npx claudepluginhub ship-it-ops/ship-codeApply clean code principles when writing or reviewing production-quality Python, TypeScript/JavaScript, or Java code.
Ship better code with AI. Production-quality skills for clean code, testing, debugging, and more.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Ship better code with AI. An open-source collection of skills, agents, and workflows for AI-assisted software development.
Built on the Agent Skills open standard and the Claude Code Skills 2.0 format.
Write cleaner, more maintainable code across Python, TypeScript/JavaScript, and Java. Combines established clean code principles with modern best practices.
What it does:
What it covers:
This repo is a Claude Code plugin marketplace. Add it once and get access to all skills — including new ones as they're released:
# In Claude Code, run:
/plugin marketplace add ship-it-ops/ship-code
# Then install any skill from the marketplace:
/plugin install ship-clean-code@ship-code
# To see all available skills:
/plugin marketplace list ship-code
To auto-update when we release new skills or improvements:
/plugin marketplace update ship-code
You can also configure your project to recommend this marketplace to your team. Add to .claude/settings.json:
{
"extraKnownMarketplaces": {
"ship-code": {
"source": {
"source": "github",
"repo": "ship-it-ops/ship-code"
}
}
}
}
Using Vercel's skills CLI:
# Install to your current project
npx skills add ship-it-ops/ship-code --skill ship-clean-code
# Install globally (available in all projects)
npx skills add ship-it-ops/ship-code --skill ship-clean-code -g
# Install to a specific agent (Claude Code, Cursor, Codex, etc.)
npx skills add ship-it-ops/ship-code --skill ship-clean-code -a claude-code
Using add-skill to install across multiple agents at once:
# Auto-detects your installed agents and installs to all of them
npx add-skill ship-it-ops/ship-code --skill ship-clean-code
# Install to specific agents
npx add-skill ship-it-ops/ship-code --skill ship-clean-code -a claude-code -a cursor
# Non-interactive (great for dotfiles / CI)
npx add-skill ship-it-ops/ship-code --skill ship-clean-code -g -y
# Clone and copy
git clone https://github.com/ship-it-ops/ship-code.git
cp -r ship-code/skills/ship-clean-code/ your-project/.claude/skills/ship-clean-code/
git clone https://github.com/ship-it-ops/ship-code.git
mkdir -p ~/.claude/skills
cp -r ship-code/skills/ship-clean-code/ ~/.claude/skills/ship-clean-code/
# Clone somewhere permanent
git clone https://github.com/ship-it-ops/ship-code.git ~/ship-code
# Symlink into your project (stays in sync with git pull)
ln -s ~/ship-code/skills/ship-clean-code/ your-project/.claude/skills/ship-clean-code
# Or symlink globally
mkdir -p ~/.claude/skills
ln -s ~/ship-code/skills/ship-clean-code/ ~/.claude/skills/ship-clean-code
# Download just the ship-clean-code skill using curl + tar
mkdir -p your-project/.claude/skills/ship-clean-code
curl -sL https://github.com/ship-it-ops/ship-code/archive/refs/heads/main.tar.gz \
| tar xz --strip-components=3 -C your-project/.claude/skills/ship-clean-code \
"ship-code-main/skills/ship-clean-code"
# In Claude Code, type / and look for ship-clean-code
# Or run:
ls ~/.claude/skills/ship-clean-code/SKILL.md 2>/dev/null \
|| ls .claude/skills/ship-clean-code/SKILL.md 2>/dev/null \
&& echo "Installed!" || echo "Not found"
Once installed, the skill works automatically in Claude Code:
# The skill auto-invokes when you write or review Python/TS/Java code
claude "write a user authentication service in Python"
# Explicitly invoke for a code review
claude "/ship-clean-code review src/services/payment.ts"
# Ask for clean code guidance
claude "review this file for code quality"