@central-icons-react/round-filled-radius-1-stroke-1 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/icons-index.json +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +2173 -0
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ A collection of round filled React icons with 1px radius and 1px stroke width, d
|
|
|
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
|
|
|
@@ -2251,6 +2252,20 @@ Below is a complete list of available icons:
|
|
|
2251
2252
|
- IconThunder
|
|
2252
2253
|
- IconWind
|
|
2253
2254
|
|
|
2255
|
+
## AI Assistant Support
|
|
2256
|
+
|
|
2257
|
+
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 and insert them with correct imports.
|
|
2258
|
+
|
|
2259
|
+
After installing the package, add the skill with the [Vercel `skills` CLI](https://github.com/vercel-labs/skills):
|
|
2260
|
+
|
|
2261
|
+
```bash
|
|
2262
|
+
npx skills add ./node_modules/@central-icons-react/round-filled-radius-1-stroke-1
|
|
2263
|
+
```
|
|
2264
|
+
|
|
2265
|
+
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/`).
|
|
2266
|
+
|
|
2267
|
+
Rerun `npx skills add` whenever you upgrade this package to keep the skill in sync.
|
|
2268
|
+
|
|
2254
2269
|
## License
|
|
2255
2270
|
|
|
2256
2271
|
This is a private package with all rights reserved. Unauthorized copying or distribution is prohibited.
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react/round-filled-radius-1-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.201",
|
|
4
4
|
"style": "round-filled-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react/round-filled-radius-1-stroke-1/IconHome';",
|
package/license-check.js
CHANGED