@effinrich/forgekit-storybook-plugin 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -210,6 +210,29 @@ ForgeKit Storybook Plugin detects:
|
|
|
210
210
|
|
|
211
211
|
Controls are auto-mapped: `text`, `number`, `boolean`, `select` (for unions), `action` (for callbacks).
|
|
212
212
|
|
|
213
|
+
## Copilot / AI Agent Skill
|
|
214
|
+
|
|
215
|
+
ForgeKit Storybook Plugin ships with a [Copilot skill](.agents/skills/forgekit-storybook-plugin/SKILL.md) so AI agents know when and how to invoke it. To install:
|
|
216
|
+
|
|
217
|
+
**Project-level** (already included in this repo):
|
|
218
|
+
```
|
|
219
|
+
.agents/skills/forgekit-storybook-plugin/SKILL.md
|
|
220
|
+
```
|
|
221
|
+
Any Copilot session in this workspace will automatically pick it up.
|
|
222
|
+
|
|
223
|
+
**Global** (available in all your projects):
|
|
224
|
+
```bash
|
|
225
|
+
mkdir -p ~/.agents/skills/forgekit-storybook-plugin
|
|
226
|
+
cp .agents/skills/forgekit-storybook-plugin/SKILL.md ~/.agents/skills/forgekit-storybook-plugin/
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
**Via the skills registry:**
|
|
230
|
+
```bash
|
|
231
|
+
npx skills add effinrich/forgekit-storybook-plugin@forgekit-storybook-plugin
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Once installed, you can say things like "generate stories for my components" or "check story coverage" in chat and the agent will run the right CLI commands.
|
|
235
|
+
|
|
213
236
|
## Requirements
|
|
214
237
|
|
|
215
238
|
- Node.js ≥ 18.17.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effinrich/forgekit-storybook-plugin",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Auto-generate Storybook stories, interaction tests, Playwright component tests, and accessibility audits from React component analysis",
|
|
5
5
|
"author": "Rich Tillman",
|
|
6
6
|
"license": "MIT",
|