This repository contains Stackworx's curated set of skills for coding agents. For information about the Agent Skills standard, see agentskills.io.
| Plugin | Description |
|---|---|
| orleans | Skills for Microsoft Orleans development and operations: resetting local cluster state, grain persistence, reminders, and migrations. |
| blazor | Skills for Blazor development: shared layout and page-chrome patterns, component authoring, and web application structure. |
| Skill | Plugin | Description |
|---|---|---|
| orleans-reset | orleans | Reset local Orleans state β cluster membership, grain persistence, reminders, stream checkpoints, or the app database. Covers soft resets, runtime state resets, and full dev resets across SQL, Azure Table, Cosmos, and in-memory backends. |
| pagechrome | blazor | Build a shared top app-bar ("page chrome") in a Blazor + MudBlazor app β a single header that each routable page configures declaratively (title, back button, refresh, custom actions) instead of rendering its own MudAppBar. |
- Launch Claude Code
- Add the marketplace:
/plugin marketplace add stackworx/skills - Install a plugin:
/plugin install <plugin>@stackworx-skills - Restart to load the new plugins
- View available skills:
/skills - Update a plugin (on demand):
/plugin update <plugin>@stackworx-skills
You can also install individual skills using the skill-installer CLI with the GitHub URL:
$ skill-installer install https://github.com/stackworx/skills/tree/main/plugins/<plugin>/<skill-name>Or copy a skill directly into a project:
# From the project root, copy the skill into .agents/skills/
cp -r path/to/stackworx/skills/plugins/orleans/orleans-reset .agents/skills/orleans-resetEach plugin lives under plugins/ and contains one or more skills. Every skill is a self-contained directory with a SKILL.md entry point and an optional references/ folder of supporting documentation.
plugins/
orleans/
orleans-reset/
SKILL.md
references/
blazor/
pagechrome/
SKILL.md
To add a new skill:
- Create a directory under
plugins/<plugin>/<skill-name>/. - Add a
SKILL.mdwith YAML frontmatter (nameanddescription). - Add supporting reference docs under
references/and link them fromSKILL.md. - Update the tables in this README.
See LICENSE for details.