@central-icons-react-native/square-filled-radius-0-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-native/SKILL.md +2171 -0
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ A collection of square filled React icons with 0px radius and 1px stroke width,
|
|
|
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
|
|
|
@@ -2217,6 +2218,20 @@ Below is a complete list of available icons:
|
|
|
2217
2218
|
- IconThunder
|
|
2218
2219
|
- IconWind
|
|
2219
2220
|
|
|
2221
|
+
## AI Assistant Support
|
|
2222
|
+
|
|
2223
|
+
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 and React Native-specific props.
|
|
2224
|
+
|
|
2225
|
+
After installing the package, add the skill with the [Vercel `skills` CLI](https://github.com/vercel-labs/skills):
|
|
2226
|
+
|
|
2227
|
+
```bash
|
|
2228
|
+
npx skills add ./node_modules/@central-icons-react-native/square-filled-radius-0-stroke-1
|
|
2229
|
+
```
|
|
2230
|
+
|
|
2231
|
+
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-native/`).
|
|
2232
|
+
|
|
2233
|
+
Rerun `npx skills add` whenever you upgrade this package to keep the skill in sync.
|
|
2234
|
+
|
|
2220
2235
|
## License
|
|
2221
2236
|
|
|
2222
2237
|
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-native/square-filled-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.201",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1/IconHome';",
|
package/license-check.js
CHANGED