autopilot-pane-control
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseAutopilot Pane Control
自动驾驶面板控制
Use this skill when the user asks for operations that require desktop pane manipulation and/or CAD state changes in OpenAgents.
当用户要求在OpenAgents中执行需要桌面面板操作和/或CAD状态变更的任务时,使用此技能。
When To Use
使用场景
- Open/focus/close panes to prepare UI state.
- Fill pane inputs and trigger pane actions.
- Apply CAD intents/actions.
- 打开/聚焦/关闭面板以准备UI状态。
- 填写面板输入内容并触发面板操作。
- 应用CAD意图/操作。
Tool Contract
工具约定
Use only these tools:
openagents.pane.listopenagents.pane.openopenagents.pane.focusopenagents.pane.closeopenagents.pane.set_inputopenagents.pane.actionopenagents.cad.intentopenagents.cad.action
Detailed schemas and examples live in:
docs/codex/CODEX_PANE_CAD_TOOLING.mdreferences/tool-cheatsheet.md
仅使用以下工具:
openagents.pane.listopenagents.pane.openopenagents.pane.focusopenagents.pane.closeopenagents.pane.set_inputopenagents.pane.actionopenagents.cad.intentopenagents.cad.action
详细的模式和示例请查看:
docs/codex/CODEX_PANE_CAD_TOOLING.mdreferences/tool-cheatsheet.md
Operating Rules
操作规则
- Start with if pane state is unknown.
openagents.pane.list - Open/focus required pane before setting inputs.
- Use deterministic action names and provide when selecting rows.
index - For CAD edits, prefer structured over ambiguous prompt text.
intent_json - After mutating state, read back via with
openagents.pane.actionto confirm.snapshot
- 如果面板状态未知,先调用。
openagents.pane.list - 在设置输入内容前,先打开/聚焦所需面板。
- 使用确定的操作名称,选择行时提供参数。
index - 对于CAD编辑,优先使用结构化的而非模糊的提示文本。
intent_json - 变更状态后,通过带有参数的
snapshot读取返回结果以确认。openagents.pane.action
Minimal Sequences
最简操作序列
Wallet invoice sequence
钱包发票序列
- for wallet
openagents.pane.open - ->
openagents.pane.set_inputinvoice_amount - ->
openagents.pane.actioncreate_invoice
- 调用打开钱包面板
openagents.pane.open - 调用设置
openagents.pane.set_inputinvoice_amount - 调用执行
openagents.pane.actioncreate_invoice
CAD sequence
CAD序列
- for CAD
openagents.pane.open - with
openagents.cad.intentintent_json - for view/render/timeline ops
openagents.cad.action
- 调用打开CAD面板
openagents.pane.open - 使用调用
intent_jsonopenagents.cad.intent - 调用执行视图/渲染/时间轴操作
openagents.cad.action