Brand strategist and art director — defines identity, design systems, and visual direction (Stitch executes). Use when starting a new brand or product identity, creating or evolving a design system, deciding visual direction (palette, typography, mood, UX strategy for non-trivial flows), or doing visual QA against specs.
Testing guardian — Vitest for unit/integration, Playwright for E2E. Use when adding or fixing tests, raising coverage, building E2E user flows, enforcing the data-testid contract, or wiring CI test gates.
n8n automation expert for workflows, integrations, and reliability. Use when designing or optimizing n8n workflows, bridging Supabase/external APIs/WhatsApp/AI providers, or adding error handling, retries, and alerting to automations.
Vercel deployment + performance engineer for CI/CD, edge, and monitoring. Use when deploying to Vercel, configuring CI/CD pipelines, managing env vars/secrets/domains, setting up monitoring (Sentry, UptimeRobot, Pino), or tuning edge/serverless runtime and Core Web Vitals.
Backend lead for APIs, data models, auth, and performance. Use when building or changing API routes, Supabase schema or RLS policies, auth flows, service-layer business logic, or backend performance and caching.
Decide cuándo y cómo invocar a Forge (GPT-5) o Mycelium (Gemini 2.5) para revisión técnica adversarial y chequeos de consistencia de sistema. Usar cuando el usuario diga "/debate", pida "revisión adversarial", "feedback crítico", "validación arquitectónica" o haya una decisión técnica de alto riesgo antes de construir.
Manage issues across Linear workspace. Use when user wants to create, update, move, or query issues. Routes to appropriate command based on workflow state.
Capture ideas quickly into Linear backlog with minimal friction. Use when user has a quick idea, bug report, or thought that needs to be captured without full discovery process. Creates issue in Backlog state with title and brief context.
Get up to speed on any Skywalking project. Use when user says "/catchup micelio", "ponte al dia con espora", "que paso con fuegoepuyen", "status de pandora", or wants a project briefing. Gathers git log, CHANGELOG, and Linear issues to produce a structured status report.
B2B cold email outreach for a dev studio targeting CTOs, engineering managers, and technical founders. Use when writing first-touch outreach emails, follow-up sequences, LinkedIn connection messages, or WhatsApp follow-ups for business development. Triggers on "cold email", "outreach email", "write to a CTO", "follow-up sequence", "BD email", "prospecting message".
External network access
Connects to servers outside your machine
Requires secrets
Needs API keys or credentials to function
Uses power tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Uses Bash, Write, or Edit tools
Uses Bash, Write, or Edit tools
Give your AI coding assistant superpowers. 60+ skills, 10 agents, LLM handlers for 6 providers — works with Claude Code, Cursor, Gemini CLI, and Codex.
Hive turns your AI assistant into a full dev team. Instead of copy-pasting API docs or writing boilerplate, use slash commands:
/shape # create a well-defined issue
/dev # orchestrate work across agents
/ship_it # review, fix, merge, deploy, verify
/perplexity "best auth library for Next.js" # search the web
/gmail inbox --unread # check email
/generate_image "a mountain landscape" # create an image
Need something bigger? Delegate to specialist agents that handle design, frontend, backend, QA, SEO, and more.
# 1. Clone into your workspace
cd ~/workspace
git clone https://github.com/Skywalking-dev/hive.git
# 2. Install dependencies
cd hive
uv sync
# 3. Configure API keys (add only the ones you need)
cp .env.example .env
# Edit .env with your keys
# 4. Install skill packs
uv run hive install --all
# 5. Setup workspace
uv run hive setup
That's it. Open Claude Code from ~/workspace/ and all skills, agents, and handlers are available.
hive setup does[hive] Actions:
Symlink ~/workspace/.claude/skills -> hive/skills # skills available
Symlink ~/workspace/.claude/agents -> hive/agents # agents available
Generate .cursor/rules/ from skills # Cursor compatible
Merge .mcp.json configs # MCP servers
Merge hive/CLAUDE.md into workspace CLAUDE.md # handler docs
Verify API keys in hive/.env # missing key checklist
Setup is idempotent — run it again after pulling updates to sync everything.
~/workspace/ <- open your AI tool here
├── .claude/
│ ├── skills/ -> hive/skills/ <- symlink
│ └── agents/ -> hive/agents/ <- symlink
├── .cursor/rules/ <- generated .mdc files
├── .mcp.json <- merged MCP servers
├── CLAUDE.md <- workspace config + hive handler docs
├── hive/ <- this repo (source of truth)
│ ├── skills/
│ ├── agents/
│ ├── scripts/
│ └── .env <- API keys (gitignored)
└── your-projects/
Hive includes shell handlers for 6 LLM providers. All are OAI-compatible and load keys from hive/.env.
| Handler | Default Model | Cost out/MTok | Commands |
|---|---|---|---|
groq_handler.sh | Llama 4 Scout | Free | ask, models |
deepseek_handler.sh | DeepSeek V4 | $0.50 | ask, models |
openrouter_handler.sh | deepseek-chat | Free with --free | ask, models, free |
gemini_handler.sh | Gemini 2.5 Flash | $2.50 (free tier) | ask, search, embed |
openai_handler.sh | GPT-4.1 | $8.00 | ask, responses, embeddings |
perplexity_handler.sh | Sonar Pro | $15.00 | ask, search, agent |
# Free and fast
hive/scripts/groq_handler.sh ask "Explain this error" --json
# Cheapest frontier model
hive/scripts/deepseek_handler.sh ask "Review this code" --system "You are a code reviewer"
# Deep reasoning
hive/scripts/deepseek_handler.sh ask "Analyze this architecture" --reasoner
# Free via OpenRouter
hive/scripts/openrouter_handler.sh ask "Summarize this" --free
# With fallback chain
hive/scripts/openrouter_handler.sh ask "Translate this" --fallbacks "google/gemini-2.5-flash,meta-llama/llama-4-scout"
# Web search with citations
hive/scripts/perplexity_handler.sh search "latest Next.js release"
| Task | Best pick | Why |
|---|---|---|
| Classification / routing | Groq | Free, 3000+ tok/s |
| Reviews / batch / bulk | DeepSeek V4 | Cheapest frontier ($0.50/MTok) |
| Complex reasoning | DeepSeek R1 | 91% cheaper than Opus |
| Code generation | OpenAI or DeepSeek | Dedicated code models |
| Web search / grounded | Perplexity Sonar | Built-in search + citations |
| Vision / multimodal | Gemini Flash | Free tier, 1M context |
| Fallback / free models | OpenRouter --free | 29+ free models |
| Command | What it does |
|---|---|
/shape | Guided issue creation with discovery |
/capture | Quick idea to backlog |
/refine | Technical breakdown into agent sub-issues |
/dev | Orchestrate work across agents |
/push_it | Commit + push + open PR |
/ship_it | Full pipeline: review, fix, merge, deploy, verify |
/pr-review | PR review with Linear sync |
/reunion | Multi-agent meeting |
npx claudepluginhub skywalking-dev/hiveUnified capability management center for Skills, Agents, and Commands.
Multi-agent orchestrator for Claude Code. Track work with convoys, sling to polecats. The Cognition Engine for AI-powered software factories.
HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, unified QA gates, safety guards, and notifications.
Plan-first AI development with batched parallelism. Native Claude Code implementation of the Agent Hive workflow.
Custom commands, skills, agents, rules, hooks, and output styles for Claude Code - session continuity and modern CLI tooling for real-world development workflows
Development agents, skills, hooks, and commands for Claude Code workflows