一键导入
deploy
Push main to deploy branch with pre-flight checks. Does NOT run deploy.sh — that happens on the deploy machine.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Push main to deploy branch with pre-flight checks. Does NOT run deploy.sh — that happens on the deploy machine.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Conversational agent creation — propose roles, configure agents, introduce them to the team
Reference for managing the agent team across the full lifecycle — hire, onboard, orient, tune, retire. Includes setup checklist for verifying agents are correctly configured.
Know what's installed and available — agents, servers, plugins, skills, registry offerings
Guide the user through setting up credentials for services via honeypot (macOS Keychain)
First-contact onboarding interview — builds on what hive init already captured, deepens it, writes business context and operational constitution
Create tests for recent code changes. Analyzes the diff, identifies what needs test coverage, and writes tests using the test-suite-developer agent.
| name | deploy |
| description | Push main to deploy branch with pre-flight checks. Does NOT run deploy.sh — that happens on the deploy machine. |
Push new commits from main to deploy branch.
Pre-flight:
main branch (switch if needed)git pull to get latestmain is ahead of deploy (if not, nothing to deploy)npm run check and npm run buildSummarize:
deploy to mainConfirm: Ask user before pushing.
Push:
git checkout deploy && git merge --ff-only main && git pushmainRemind: Tell user to run deploy.sh on the deploy machine, or that it will pick up changes on next restart.