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/ 100Recommendation
Install this skill
Choose your coding agent and copy a project or personal installation command.
Project installation.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a codex -yPersonal installation~/.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a codex -g -yProject installation.claude/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a claude-code -yPersonal installation~/.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 -yProject installation.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a github-copilot -yPersonal installation~/.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 -yProject installation.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a cursor -yPersonal installation~/.cursor/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a cursor -g -yProject installation.agents/skills/od-default
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-default -a gemini-cli -yPersonal installation~/.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 -yNative Gemini CLI
gemini skills install https://github.com/nexu-io/open-design.git --scope workspace --path plugins/_official/scenarios/od-default⚠ Installation uses the open-source skills CLI. Inspect the source and permissions before running the command.
Skill instructions
View source on GitHub ↗# 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.