From hivemind
Export the current Hive Mind configuration for migration or duplication. Produces a portable config bundle that /setup-config can import on another machine.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hivemind:export-configThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Export the current deployment configuration for migration or duplication.
Export the current deployment configuration for migration or duplication.
Detect all installed components:
# Providers
grep -A1 "^providers:" config.yaml
# Minds
curl -sf http://localhost:8420/broker/minds | jq -r ".[].name"
# Running containers
docker compose ps --format "{{.Name}} {{.Status}}"
# Compose profile
grep COMPOSE_PROFILES .env 2>/dev/null
mkdir -p hive-mind-export
cp config.yaml hive-mind-export/
cp .env hive-mind-export/ 2>/dev/null
cp .mcp.json hive-mind-export/ 2>/dev/null
cp .mcp.container.json hive-mind-export/ 2>/dev/null
Sanitize .env — replace secret values with placeholders.
for d in minds/*/; do
name=$(basename "$d")
[[ "$name" == "__pycache__" ]] && continue
if [ -f "$d/MIND.md" ]; then
mkdir -p "hive-mind-export/minds/$name"
cp "$d/MIND.md" "hive-mind-export/minds/$name/"
fi
done
Copy MIND.md files only (not implementation.py — that comes from templates).
List all secret keys in the keyring (names only, not values):
python3 -c "import keyring; keys = keyring.get_password('hive-mind', '_KEY_REGISTRY'); print(keys or '[]')" > hive-mind-export/secret-manifest.txt
echo "profile: ${COMPOSE_PROFILES:-cpu-only}" > hive-mind-export/profile.txt
tar czf hive-mind-export.tar.gz hive-mind-export/
rm -rf hive-mind-export/
What was exported, file location, how to import:
"To import on another machine: /setup-config --import hive-mind-export.tar.gz"
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.