Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub skywalking-dev/hiveUltra-terse brand+visual design partner for identity systems, UI mockups, and conversion-minded visuals.
Ultra-terse Playwright guardian focused on modular, stable, coverage-rich E2E tests.
Ultra-terse n8n automation expert for workflows, integrations, and reliability.
Ultra-terse Vercel deployment + performance engineer for CI/CD, edge, and monitoring.
Ultra-terse backend lead for APIs, data models, auth, and performance.
**Purpose:** Guide Mentat's decisions on when and how to invoke Forge (GPT-5) or Mycelium (Gemini 2.5) for technical review, adversarial feedback, and system-wide consistency checks.
Manage issues across Linear workspace. Use when user wants to create, update, move, or query issues. Routes to appropriate command based on workflow state.
3D modeling and rendering via Blender MCP. Use when creating 3D models, architectural visualization, product renders, or any 3D scene. Requires Blender open with MCP addon connected.
Write blog posts for skywalking.dev in Mentat's voice. Research-backed, concise, opinionated.
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.
External network access
Connects to servers outside your machine
Requires secrets
Needs API keys or credentials to function
Uses power tools
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.
Unified 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.
Plan-first AI development with batched parallelism. Native Claude Code implementation of the Agent Hive workflow.
Claude Code settings and skills for spec-driven development workflows
OpenAI Assistants API v2 for stateful chatbots with Code Interpreter, File Search, RAG. Use for threads, vector stores, or encountering active run errors, indexing delays. ⚠️ Sunset August 26, 2026.
Complete collection of 30 Claude Code skills for document processing, development, business productivity, and creative tasks
Uses Bash, Write, or Edit tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
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 |