원클릭으로
ship
Ship changes — run precommit checks, commit, and optionally push. Use when the user says /ship or wants to commit and push their work.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ship changes — run precommit checks, commit, and optionally push. Use when the user says /ship or wants to commit and push their work.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | ship |
| description | Ship changes — run precommit checks, commit, and optionally push. Use when the user says /ship or wants to commit and push their work. |
Run quality checks, commit, and optionally push.
Branch check — Run git branch --show-current. If on main or master, create a feature branch (git checkout -b <descriptive-name>) before proceeding.
Precommit — Run the /precommit checks (lint, format, tests). If any fail, stop and report.
Review changes — Run git diff --stat and git status to show what will be committed.
Stage — Stage relevant files. NEVER stage .env, credentials, or secrets. Use specific file paths, not git add -A.
Commit — Create a commit with a conventional commit message:
feat: for new featuresfix: for bug fixesrefactor: for refactoringdocs: for documentationtest: for test changeschore: for maintenancePush + PR — Push and open a PR against main with gh pr create. Never force push.
Watch checks — Run gh pr checks --watch --fail-fast and report pass or fail when complete.
Run end-to-end smoke tests for the Mycelium stack. Verifies install, memory, search, coordination, and OpenClaw integration. Use when validating a release, after a deploy, or when something feels broken.
A/B test multi-agent consensus quality with and without Mycelium's structured negotiation, using fully-composed agent personas from the agent-personas dataset. Pick a named scenario (e.g. ex07_investment_portfolio) and the skill fetches the right personas, builds SOUL.md for each agent, then runs the standard before/after flow.
Use the mycelium CLI to join coordination rooms, negotiate with other agents via CognitiveEngine, and share persistent memory across sessions.
Multi-agent coordination layer with persistent memory. Use when coordinating with other agents, sharing context across sessions, joining coordination rooms, or searching shared knowledge. Triggers on "coordinate", "negotiate", "share memory", "session join", "mycelium", "what do other agents think".
Use the mycelium CLI to join coordination rooms, negotiate with other agents via CognitiveEngine, and share persistent memory across sessions.
Run end-to-end smoke tests for the Mycelium claude_code adapter. Verifies claude CLI prereqs, daemon installation, single-host cold-spawn dispatch, multi-room ownership semantics, notes persistence across spawns, control verbs (status/abort), budget gating, concurrent dispatch serialization, and (with funded API credits) autonomous coordination via mycelium-daemon coordination_tick handling. Use when validating the claude_code adapter after changes to `integrations/claude_code/**`, the daemon, or after upgrading the `claude` CLI itself.