一键导入
create-output-format
Scaffold a new planning output format adapter. Creates a format directory with all required files implementing the output format contract.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scaffold a new planning output format adapter. Creates a format directory with all required files implementing the output format contract.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Capture a quick-fix as a markdown file in the workflow inbox. Use when the user wants to log a trivially scoped mechanical change for later.
Capture a bug report as a markdown file in the workflow inbox. Use when the user wants to log, note, or save a bug for later.
Capture an idea as a markdown file in the workflow inbox. Use when the user wants to log, note, or save an idea for later.
| name | create-output-format |
| description | Scaffold a new planning output format adapter. Creates a format directory with all required files implementing the output format contract. |
| disable-model-invocation | true |
Scaffold a new output format adapter for the workflow-planning-process workflow. Each format adapter is a directory of 5 files, one per concern.
Before writing anything, understand the tool. Ask the user for:
If the user provided these upfront, skip straight to research.
Fetch and read all provided documentation using WebFetch. From the docs, establish:
Present what you've learned as a summary and ask the user to confirm or correct. Use AskUserQuestion to clarify anything the documentation didn't cover or left ambiguous — motivation for choosing this format, preferred interface if multiple exist, setup specifics, etc.
Suggest a kebab-case format key based on the tool name and confirm with the user.
Do not proceed until the user confirms your understanding.
Read references/contract.md — this defines the 5-file interface every format must implement.
Create the directory at:
skills/workflow-planning-process/references/output-formats/{format-key}/
Using the information gathered in Step 1, write each of the 5 required files. Use the scaffolding templates from references/scaffolding/ as structural guides:
| Template | Creates |
|---|---|
| about.md | {format}/about.md |
| authoring.md | {format}/authoring.md |
| reading.md | {format}/reading.md |
| updating.md | {format}/updating.md |
| graph.md | {format}/graph.md |
For each file:
{placeholder} tokens with format-specific content from your gathered information<!-- -->)Add an entry to skills/workflow-planning-process/references/output-formats.md following the existing pattern:
### {Format Name}
format: `{format-key}`
adapter: [{format-key}/](output-formats/{format-key}/)
{One-line description of the format.}
- **Pros**: ...
- **Cons**: ...
- **Best for**: ...
Verify:
{placeholder} tokens have been replaced