Skip to main content

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.

info

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:

âžĄī¸ https://github.com/BlazingStory/agent-skills

Available Skills​

SkillWhat it does
blazing-story-storyGenerates a .stories.razor file for a Blazor UI component
blazing-story-addonGenerates 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.