Installation
Claude Code (Recommended)
Claude Code has native plugin support:
# Register the marketplace (one-time setup)/plugin marketplace add weorbitant/orbitant-os
# Install a plugin/plugin install orbitant-marketing
# Install multiple plugins/plugin install orbitant-marketing orbitant-chief-of-staff
# Update all plugins/plugin updateUninstalling
# Remove a plugin/plugin uninstall orbitant-marketing
# Remove the marketplace/plugin marketplace remove weorbitant/orbitant-osClaude.ai / Claude Desktop
- Download the skill folder you need as a
.zip - Go to Settings > Capabilities > Skills
- Click Upload skill and select the zip
Uninstalling
- Go to Settings > Capabilities > Skills
- Find the skill under “Your skills”
- Click the skill and select Delete
Other AI Agents (via skills.sh)
Use skills.sh to install skills on any supported agent (Cursor, Cline, Windsurf, Codex, GitHub Copilot, and 40+ more):
# Install a specific skill to Claude Codenpx skills add weorbitant/orbitant-os --skill orbitant-blog-post-review --agent claude-code -y
# Install to Cursornpx skills add weorbitant/orbitant-os --skill orbitant-blog-post-review --agent cursor -y
# Install to Clinenpx skills add weorbitant/orbitant-os --skill orbitant-blog-post-review --agent cline -y
# List available skills before installingnpx skills add weorbitant/orbitant-os --listWhen to use skills.sh
| Use case | Recommended method |
|---|---|
| Using Claude Code as your main agent | /plugin install (native integration) |
| Using multiple AI agents | npx skills add (cross-agent compatibility) |
| Installing skills in CI/CD | npx skills add (works without Claude Code) |
| Sharing skills with non-Claude users | npx skills add (agent-agnostic) |
skills.sh follows the Agent Skills open standard, which works across multiple AI tools.
Claude API
Use the /v1/skills endpoint. See Skills API docs.
Local Development
Before pushing to GitHub, test plugins with the --plugin-dir flag:
# Start Claude Code with a local plugin loadedclaude --plugin-dir ./plugins/orbitant-marketing
# Load multiple pluginsclaude --plugin-dir ./plugins/orbitant-marketing --plugin-dir ./plugins/orbitant-chief-of-staff