一键导入
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 职业分类
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.
| 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.