원클릭으로
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.
SOC 직업 분류 기준
| 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.