From hive-teams
Build Hive REST, GraphQL, webhook, and MCP integrations. Use when working with Hive APIs, scripts, webhooks, schemas, auth, pagination, or troubleshooting requests.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hive-teams:hive-apiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user needs Hive API requests, runnable scripts, webhook workflows, technical discovery, implementation guidance, or troubleshooting.
Use this skill when the user needs Hive API requests, runnable scripts, webhook workflows, technical discovery, implementation guidance, or troubleshooting.
https://app.hive.com/api/v1https://prod-gql.hive.com/graphqlhttps://hive-mind.hive.com/mcpPrefer Hive MCP for live workspace reads/writes inside Claude Code. Use REST or GraphQL when the user needs external requests, scripts, or integration examples.
Use REST for straightforward CRUD, webhook creation/deletion, and file-oriented endpoints. Use GraphQL for nested reads, rich filtering, cursor pagination, and query-heavy reporting.
For Claude Code live operations, prefer OAuth through /mcp.
For raw REST or GraphQL requests:
user_id goes in query params.api_key goes in request headers.Credential smoke test:
curl -sS \
-H "api_key: $HIVE_API_KEY" \
"https://app.hive.com/api/v1/testcredentials?user_id=$HIVE_USER_ID"
curl, GraphQL operation with variables, TypeScript script, Python script, or webhook receiver.Content-Type: application/json for JSON POST/PUT requests.429 and 5xx failures with backoff when appropriate.When designing webhook integrations:
trigger, webhook ID, and record identifiers on receipt.Useful triggers include actions::i, actions::u, projects::i, and projects::u.
Lead with the artifact, then include short assumptions, auth notes, required placeholders, and validation steps. Prefer requests and scripts over broad advice.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub hiveteams/claude-plugin-hive