hive-build-onboarding

hive-build-onboarding is a skill for Claude Code from hive-intel/hive-sdk. It costs 104 tokens per session (1,297 once invoked), scanned A, original, MIT.

A setup guide for Hive, a service that provides data and tools through an API. It explains how to create or recover an API key and configure browser or automated sign-in.

In plain words
What is it for?
Use it when setting up Hive, signing in from a browser or CI system, or checking key storage and plan limits.
Why use it?
It helps users connect Hive without exposing the secret key in chats, logs, screenshots, or code.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the hive plugin — 16 skills, 1 MCP server shipped together

Good fit Use it when setting up Hive, signing in from a browser or CI system, or checking key storage and plan limits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hive-intel/hive-sdk/hive-build-onboarding
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hive-intel/hive-sdk --skill hive-build-onboarding
Clone the repo
git clone --depth 1 https://github.com/hive-intel/hive-sdk

Made for: Claude Code.

Or install hive, the plugin that ships this one along with the rest of its 16 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for hive-build-onboarding

README.md
[![agentmods](https://agentmods.dev/badge/skills/hive-intel/hive-sdk/hive-build-onboarding/github.svg)](https://agentmods.dev/skills/hive-intel/hive-sdk/hive-build-onboarding)
Your own site
<a href="https://agentmods.dev/skills/hive-intel/hive-sdk/hive-build-onboarding"><img src="https://agentmods.dev/badge/skills/hive-intel/hive-sdk/hive-build-onboarding/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for hive-build-onboarding

Your own site · 80×15
<a href="https://agentmods.dev/skills/hive-intel/hive-sdk/hive-build-onboarding"><img src="https://agentmods.dev/badge/skills/hive-intel/hive-sdk/hive-build-onboarding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 41
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium MCP Rug Pull · line 27
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00104 $0.01297
Opus 5 $0.00052 $0.00648
Sonnet 5 $0.00021 $0.00259
Haiku 4.5 $0.00010 $0.00130

Measured 10d ago against content hash 46f4ec5da12d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

hive-build-onboarding scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -H "Authorization: Bearer $HIVE_API_KEY" \
skills/hive-build-onboarding/SKILL.md · 131 lines

How it starts

The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.

hive-build-onboarding — Get a Hive API Key

Get the user from "no key" to a verified working key without the secret ever appearing in chat, logs, screenshots, or committed files.

Hive uses passwordless magic-link auth — no username/password, no credit card to start. Free Demo tier: 10,000 credits/month, 30 req/min.

Path 1 — browser sign-in (preferred)

If the user has a browser available on the same machine as their terminal:

npx -y -p hive-intelligence@latest hive init --browser

What happens:

  1. The CLI generates a random state token (CSRF guard) and starts a localhost listener on a random port (127.0.0.1).
  2. It opens the user's browser at https://hiveintelligence.xyz/auth/cli?callback_port=<port>&state=<state>.
  3. The user signs in with magic-link (one-time email link, no password). If they don't have an account, one is created.
  4. The site issues a fresh API key and redirects the browser to http://127.0.0.1:<port>/callback?key=<key>&email=<email>&state=<state>.
  5. The CLI verifies the returned state matches (rejects on mismatch), then stores the key in ~/.config/hive/credentials.json with 0600 permissions (override the directory with HIVE_CONFIG_DIR).
  6. The browser tab shows an "Authenticated" page the user can close.

The key never lives on the clipboard. If a step fails, the CLI surfaces the exact error (port collision, browser refused to open, state mismatch, or a 5-minute timeout).

Path 2 — Dashboard copy-paste (fallback for headless)

If init --browser won't work (CI environment, SSH session, Docker container, restricted network):

  1. From any machine with a browser, open https://www.hiveintelligence.xyz/dashboard/keys.
  2. Click "Sign in" and enter the user's email.
  3. Open the magic-link email and click through. Account is created automatically if it doesn't exist.
  4. Click "Create key" → name it (e.g., "production-CI") → copy the shown secret.
  5. Set HIVE_API_KEY=hive_live_… in the headless environment's env.

Read the full file on GitHub · 131 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 131 lines · 104 tokens per session scan A 46f4ec5da12d

Subscribe to this mod's changes

hive-build-onboarding is a skill published in the GitHub repository hive-intel/hive-sdk (18 stars, last pushed yesterday), licensed MIT. It adds 104 tokens to every session and 1,297 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

palisade-security-scanner

Onchain security scanner on Robinhood Chain — scan token approvals, detect honeypots, analyze contracts for rugpull indicators, check liquidity locks, and score contract safety. Use when a user asks an agent to evaluate, scan, or check a token or wallet before trading, swapping, signing an approval, or investing. 18…

palisadescan/palisade · 97 tokens

design-mcp-server

Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.

cyanheads/coingecko-mcp-server · 62 tokens

add-tool

Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.

cyanheads/coingecko-mcp-server · 35 tokens

api-linter

MCP definition linter rules reference. Use when bun run lint:mcp or bun run devcheck reports a lint error or warning (format-parity, schema-is-object, name-format, server-json-, etc.) and you need to understand the rule, its severity, and how to fix it. Every rule ID the linter emits has an entry in this doc.

cyanheads/coingecko-mcp-server · 86 tokens

api-context

Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.

cyanheads/coingecko-mcp-server · 79 tokens

api-canvas

DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…

cyanheads/coingecko-mcp-server · 85 tokens