AI & Agentslow risk

od-new-generation

Default reference pipeline for the new-generation taskKind — discovery → plan → generate → critique with a critique-theater devloop.

nexu-io/open-design·plugins/_official/scenarios/od-new-generation/SKILL.md
61/ 100推薦值

匯入這個 Skill

選擇你的 coding agent,複製專案級或個人級安裝指令。

固定至平台收錄的 commit
匯入目前專案.agents/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a codex -y
匯入個人環境~/.agents/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a codex -g -y
手動放置目錄.agents/skills/od-new-generationOfficial docs ↗
匯入目前專案.claude/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a claude-code -y
匯入個人環境~/.claude/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a claude-code -g -y
手動放置目錄.claude/skills/od-new-generationOfficial docs ↗
匯入目前專案.agents/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a github-copilot -y
匯入個人環境~/.copilot/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a github-copilot -g -y
手動放置目錄.agents/skills/od-new-generationOfficial docs ↗
匯入目前專案.agents/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a cursor -y
匯入個人環境~/.cursor/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a cursor -g -y
手動放置目錄.agents/skills/od-new-generationOfficial docs ↗
匯入目前專案.agents/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a gemini-cli -y
匯入個人環境~/.gemini/skills/od-new-generation
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-new-generation -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/nexu-io/open-design.git --scope workspace --path plugins/_official/scenarios/od-new-generation
手動放置目錄.agents/skills/od-new-generationOfficial docs ↗
⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
# od-new-generation (scenario)

Spec §10.1 / §23.3.3: when a plugin omits `od.pipeline`, the daemon
falls back to this scenario plugin's pipeline. Replacing the
default for an enterprise / vertical edition is now a content edit
rather than a code change.

## Default pipeline

```jsonc
{
  "stages": [
    { "id": "discovery", "atoms": ["discovery-question-form"] },
    { "id": "plan",      "atoms": ["direction-picker", "todo-write"] },
    { "id": "generate",  "atoms": ["file-write", "live-artifact"] },
    {
      "id": "critique", "atoms": ["critique-theater"],
      "repeat": true,
      "until": "critique.score>=4 || iterations>=3"
    }
  ]
}
```

The discovery stage gives the agent a clean surface for clarifying
questions; the plan stage commits to a TodoWrite-backed plan; the
generate stage produces the artifact; the critique stage devloops
until the score converges or the iteration ceiling is hit.

## Plugins that customise this scenario

A plugin can override or extend by declaring its own `od.pipeline`.
The default applies only when the plugin's pipeline is absent.