一键导入
zmx
Use zmx for durable, long-running processes that must persist beyond the current agent session, such as an app server the user will test later.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use zmx for durable, long-running processes that must persist beyond the current agent session, such as an app server the user will test later.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run a safe Grok Build code review of a branch or explicitly requested local changes. Use when an external Grok review is requested for correctness, architecture, maintainability, regressions, or missing tests; the workflow invokes Grok's native /review skill, preserves durable artifacts, and never edits or publishes changes.
Run Fable, Grok, and Thermo-Nuclear code reviews concurrently against one validated, immutable Git scope, while preserving separate outputs and reporting partial failures. Use when the user explicitly asks for a parallel, three-reviewer, multi-model, or strongest available code review of a PR, branch, commit range, or comparison with main.
Fetch CI build results and diagnose failures. Auto-detects provider from project files or URLs. Supports GitHub Actions, Buildkite, and CircleCI.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when you have a written implementation plan to execute
Use when you have a spec or requirements for a multi-step task, before touching code
基于 SOC 职业分类
| name | zmx |
| description | Use zmx for durable, long-running processes that must persist beyond the current agent session, such as an app server the user will test later. |
| metadata | {"category":"tooling"} |
Use zmx for durable, long-running work that must persist beyond the current
agent session, such as an app server the user will test later.
zmx run only when work must remain available after the current agent
session ends.zmx for a server or process needed only while the agent performs
its own testing. Start, manage, and stop that process directly within the
session instead.app-server,
user-preview, or persistent-review.zmx run can hang agent tool execution in non-interactive environments because
the daemon may keep inherited stdio open. Always redirect stdout and stderr
when starting work from an agent/tool:
zmx run <session> <command> >/dev/null 2>&1
Redirect to a file instead when output must be captured.
Start work:
zmx run <session> <command> >/dev/null 2>&1
Wait for completion when needed:
zmx wait <session>
Inspect output:
zmx history <session>
Check active sessions:
zmx list
Stop stale or finished work:
zmx kill <session>