Design & Medialow risk

od-default

Hidden fallback scenario for free-form Home prompts. Ask the task type first, then continue through the matching Open Design flow.

nexu-io/open-design·plugins/_official/scenarios/od-default/SKILL.md
60/ 100推荐值

导入这个 Skill

选择你的 coding agent,复制项目级或个人级安装命令。

固定到平台收录的 commit
导入当前项目.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a codex -y
导入个人环境~/.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a codex -g -y
手动放置目录.agents/skills/od-defaultOfficial docs ↗
导入当前项目.claude/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a claude-code -y
导入个人环境~/.claude/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a claude-code -g -y
手动放置目录.claude/skills/od-defaultOfficial docs ↗
导入当前项目.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a github-copilot -y
导入个人环境~/.copilot/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a github-copilot -g -y
手动放置目录.agents/skills/od-defaultOfficial docs ↗
导入当前项目.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a cursor -y
导入个人环境~/.cursor/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a cursor -g -y
手动放置目录.agents/skills/od-defaultOfficial docs ↗
导入当前项目.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a gemini-cli -y
导入个人环境~/.gemini/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -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-default
手动放置目录.agents/skills/od-defaultOfficial docs ↗
⚠ 安装命令使用开源 skills CLI。执行前请检查来源、脚本和权限。
# od-default (hidden scenario)

This plugin runs only when the user types a free-form Home prompt without
choosing one of the visible category chips. It is the design-engine
fallback, not a visible catalog entry.

## Turn 1: ask the task type

Your first response must be one short sentence plus this structured form,
then stop. Do not write files, use tools, or start planning until the user
answers.

```html
<question-form id="task-type" title="Choose the task type">
{
  "lang": "en",
  "description": "I will route the free-form prompt through the right Open Design workflow.",
  "questions": [
    {
      "id": "taskType",
      "label": "What should I build?",
      "type": "radio",
      "required": true,
      "allowCustom": false,
      "options": [
        "Prototype",
        "Live artifact",
        "Slide deck",
        "Image",
        "Video",
        "HyperFrames",
        "Audio",
        "Other"
      ]
    },
    {
      "id": "constraints",
      "label": "Any important constraints?",
      "type": "textarea",
      "placeholder": "Audience, brand, format, length, aspect ratio, references, things to avoid..."
    }
  ]
}
</question-form>
```

## After the answer

When the user replies with `[form answers - task-type]`, bind the chosen
task type as authoritative and continue:

- `Prototype`: run the normal new-generation prototype flow.
- `Live artifact`: create a live HTML/CSS/JS artifact and register it for
  preview when tooling is available.
- `Slide deck`: follow the deck workflow and framework rules.
- `Image`: plan a concrete image prompt, then use the OD media generation
  CLI for image output.
- `Video`: plan shots, duration, aspect, and motion, then use the OD media
  generation CLI for video output.
- `HyperFrames`: create HTML-driven motion frames or a HyperFrames-ready
  motion artifact before rendering/exporting.
- `Audio`: plan voice/music/SFX intent, then use the OD media generation
  CLI for audio output.
- `Other`: ask only the minimum follow-up needed, then choose the closest
  Open Design workflow and continue.

Keep the rest of the run plugin-driven: use the discovery, planning,
generation, and critique stages declared by this plugin. Do not tell the
user to go back and choose a chip; the default plugin owns this fallback.