Agent Skills
Blazing Story publishes agent skills that help AI coding assistants generate idiomatic Blazing Story code on your behalf — for example, scaffolding a .stories.razor file or wiring up a custom addon.
Important
The skills are maintained in a dedicated repository. For the current list of skills and the most up-to-date instructions, refer to the source of truth:
<video controls width="100%" style={{maxWidth: '800px'}}>
Available Skills
| Skill | What it does |
|---|---|
blazing-story-story |
Generates a .stories.razor file for a Blazor UI component |
blazing-story-addon |
Generates and registers a custom addon (toolbar item, panel tab, or preview decorator) |
Installation
Skills are installed through the GitHub CLI using the gh skill subcommand:
gh skill install BlazingStory/agent-skills blazing-story-story
gh skill install BlazingStory/agent-skills blazing-story-addon
See the agent-skills repository for the supported gh version and any additional prerequisites.
Usage
Once installed, your AI assistant invokes the matching skill automatically when it recognizes a relevant request, such as:
- "Create a story for the Button component" → triggers
blazing-story-story - "Add a dark mode toggle addon" → triggers
blazing-story-addon
See Also
- MCP Server Feature — exposes story and component metadata to AI agents at runtime, complementing the static knowledge provided by the agent skills.