@central-icons-react/all 1.1.200 → 1.1.201
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 +15 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-all/SKILL.md +2191 -0
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ The collection contains 1949 icons with 30 variants in total.
|
|
|
12
12
|
- [Accessibility](#accessibility)
|
|
13
13
|
- [Available Packages](#available-packages)
|
|
14
14
|
- [Icons List](#icons)
|
|
15
|
+
- [AI Assistant Support](#ai-assistant-support)
|
|
15
16
|
- [License](#license)
|
|
16
17
|
- [Troubleshooting](#troubleshooting)
|
|
17
18
|
|
|
@@ -2231,6 +2232,20 @@ Below is a complete list of available icons:
|
|
|
2231
2232
|
- IconThunder
|
|
2232
2233
|
- IconWind
|
|
2233
2234
|
|
|
2235
|
+
## AI Assistant Support
|
|
2236
|
+
|
|
2237
|
+
This package ships a skill for AI coding assistants (Claude Code, Cursor, GitHub Copilot, and 40+ others) that teaches the assistant how to find icons by name, alias, or category, how to use the `CentralIcon` component, and when to recommend switching to a variant package for smaller bundles.
|
|
2238
|
+
|
|
2239
|
+
After installing the package, add the skill with the [Vercel `skills` CLI](https://github.com/vercel-labs/skills):
|
|
2240
|
+
|
|
2241
|
+
```bash
|
|
2242
|
+
npx skills add ./node_modules/@central-icons-react/all
|
|
2243
|
+
```
|
|
2244
|
+
|
|
2245
|
+
The CLI auto-detects which AI assistant you use and installs the skill at the right path (for Claude Code, this is `.claude/skills/central-icons-react-all/`).
|
|
2246
|
+
|
|
2247
|
+
Rerun `npx skills add` whenever you upgrade this package to keep the skill in sync.
|
|
2248
|
+
|
|
2234
2249
|
## License
|
|
2235
2250
|
|
|
2236
2251
|
This is a private package with all rights reserved. Unauthorized copying or distribution is prohibited.
|
package/license-check.js
CHANGED