一键导入
agent-deck
Local operating rules and references for using agent-deck sessions safely and consistently.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Local operating rules and references for using agent-deck sessions safely and consistently.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use for non-trivial implementation tasks that require meaningful code changes.
Shared mailbox transport protocol for Agent Deck workflows.
Handles a `closeout_delivered` workflow message and completes planner-side closeout.
Generates a browser-check mailbox message for runtime page validation and sends it to a browser-tester session.
Claim pending agent mail with `mailbox_recv` and immediately execute the requested workflow action.
Send an `execute_plan` workflow message to a planner that should complete one supervisor-assigned goal inside one workspace and report back to a supervisor.
| name | agent-deck |
| description | Local operating rules and references for using agent-deck sessions safely and consistently. |
Use this skill when the task is specifically about agent-deck session management, CLI usage, or local helper scripts in this directory.
For normal mailbox workflow, follow agent-deck-workflow and the current action skill.
Those paths use agent_deck_create_session / agent_deck_require_session through MCP for workflow session lifecycle.
Use the CLI rules below for manual agent-deck operations, local troubleshooting, or explicit shell fallback.
Primary references live under:
references/cli-reference.mdreferences/config-reference.mdreferences/troubleshooting.mdreferences/tui-reference.mdWhen creating a new session from the CLI and delivering its initial instruction, use:
agent-deck launch <path> --title "<title>" --cmd "<tool>" --message "<prompt>"
Do not use the two-step pattern below for that workflow:
agent-deck add ...
agent-deck session send ...
This add + session send pattern is forbidden for CLI new-session startup in this repo.
Reasons:
launch is the intended one-shot primitive for create + start + optional initial message.launch for missing-session creation.agent-deck launch to create and start a missing session, with or without an initial message.agent-deck session send only for an already existing running/waiting/idle session.agent-deck session start only for an already existing session that is not currently running.agent-deck add only when you intentionally want to pre-register a session without launching it yet.