AI & Agentslow risk
od-plugin-authoring
Guided scenario for creating an Open Design plugin folder that can be installed into My plugins.
nexu-io/open-design·plugins/_official/scenarios/od-plugin-authoring/SKILL.md
61/ 100Recommendation
Install this skill
Choose your coding agent and copy a project or personal installation command.
Project installation.agents/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a codex -yPersonal installation~/.agents/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a codex -g -yProject installation.claude/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a claude-code -yPersonal installation~/.claude/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a claude-code -g -yProject installation.agents/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a github-copilot -yPersonal installation~/.copilot/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a github-copilot -g -yProject installation.agents/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a cursor -yPersonal installation~/.cursor/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a cursor -g -yProject installation.agents/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -a gemini-cli -yPersonal installation~/.gemini/skills/od-plugin-authoring
npx skills add https://github.com/nexu-io/open-design/tree/7533db3f4342d09b27368fa5d907ebd3cdb93b75/plugins/_official/scenarios/od-plugin-authoring -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-plugin-authoring⚠ Installation uses the open-source skills CLI. Inspect the source and permissions before running the command.
Skill instructions
View source on GitHub ↗# od-plugin-authoring (scenario) Use this scenario when the user wants to create their own Open Design plugin. ## Required outcome Produce a folder named `generated-plugin/` in the active project workspace. At minimum, the folder must contain: - `SKILL.md` with frontmatter and clear agent instructions. - `open-design.json` with valid plugin metadata, `od.kind`, mode, task kind, capabilities, and inputs when needed. Add `examples/`, `assets/`, or other supporting files only when they help the plugin be used or reviewed. ## Authoring rules - Follow `docs/plugins-spec.md` and the schema at `docs/schemas/open-design.plugin.v1.json`. - Treat `SKILL.md` as the canonical behavior description. `open-design.json` should describe how Open Design installs, applies, and presents that behavior. - Keep the generated plugin local-user friendly: it should not require marketplace publishing, enterprise trust setup, or private team catalog configuration. - Choose a stable plugin id from the user's requested workflow. Use lowercase letters, numbers, dashes, underscores, or dots. - Include a short readiness summary when finished: - Files created. - Whether the folder is ready to add to My plugins. - Any validation or follow-up needed before install. - A direct next-action prompt that offers: Add to My plugins, Publish repo, or Open Design PR. ## Suggested folder shape ```text generated-plugin/ SKILL.md open-design.json examples/ assets/ ``` The `examples/` and `assets/` directories are optional. Do not create empty directories just to match the sketch.