From hivemind
Add a new AI provider to the system. Stores API key in keyring, adds provider config to config.yaml, and verifies connectivity.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hivemind:add-providerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add a new AI provider. `$ARGUMENTS[0]` = provider name (optional, ask if missing).
Add a new AI provider. $ARGUMENTS[0] = provider name (optional, ask if missing).
Valid names: anthropic, openai, azure-openai, ollama, or a custom name for OpenAI-compatible endpoints.
echo "<key>" | python3 -m keyring set hive-mind <PROVIDER>_API_KEY
Add the provider block under providers: with appropriate env overrides.
Provider-specific health check:
curl -sf https://api.anthropic.com/v1/models -H "x-api-key: <key>" -H "anthropic-version: 2023-06-01"curl -sf https://api.openai.com/v1/models -H "Authorization: Bearer <key>"curl -sf <endpoint>/api/tagscurl -sf <endpoint>/v1/models -H "Authorization: Bearer <key>"Provider added, key stored, connectivity verified.
npx claudepluginhub danielstewart77/hivemind-plugin --plugin hivemindProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.