ani-skills 1.0.1 → 1.0.2
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 +11 -5
- package/bin/install.js +5 -5
- package/package.json +24 -4
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
### Connect & Support
|
|
8
|
+
* 🔗 **LinkedIn**: [Zain Ali Mughal](https://www.linkedin.com/in/zainali-mughal/)
|
|
9
|
+
* 📢 **WhatsApp Channel** (✨ Join for more exclusive drops): 👉 [Join Here](https://whatsapp.com/channel/0029VbBUVv35fM5eAnXw3w2D)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
7
13
|
## Table of Contents
|
|
8
14
|
|
|
9
15
|
1. [Overview & Architecture](#1-overview--architecture)
|
|
@@ -46,16 +52,16 @@ graph TD
|
|
|
46
52
|
C -->|4| G[Local Workspace Copy]
|
|
47
53
|
C -->|5| H[Rebuild Index]
|
|
48
54
|
|
|
49
|
-
subgraph Core Library
|
|
55
|
+
subgraph CoreLibrary ["Core Library"]
|
|
50
56
|
I[skills/ 444 Skills] --> J[SKILL.md Instructions]
|
|
51
57
|
I --> K[references/ Snippets & Templates]
|
|
52
58
|
L[boss-prompts/ 22 Boss Prompts] --> M[Agent Orchestration Rules]
|
|
53
59
|
end
|
|
54
60
|
|
|
55
|
-
D -->
|
|
56
|
-
E -->
|
|
57
|
-
F -->
|
|
58
|
-
G -->
|
|
61
|
+
D --> CoreLibrary
|
|
62
|
+
E --> CoreLibrary
|
|
63
|
+
F --> CoreLibrary
|
|
64
|
+
G --> CoreLibrary
|
|
59
65
|
```
|
|
60
66
|
|
|
61
67
|
---
|
package/bin/install.js
CHANGED
|
@@ -166,7 +166,7 @@ function mainMenu() {
|
|
|
166
166
|
showBanner();
|
|
167
167
|
const homeDir = process.env.HOME || process.env.USERPROFILE || os.homedir();
|
|
168
168
|
console.log('Select your target configuration environment:');
|
|
169
|
-
console.log(`[1] Configure for Antigravity IDE ${path.join(homeDir, '.gemini', '
|
|
169
|
+
console.log(`[1] Configure for Antigravity IDE ${path.join(homeDir, '.gemini', 'config')}`);
|
|
170
170
|
console.log(`[2] Configure for Antigravity 2.0 ${path.join(homeDir, '.gemini', 'antigravity')}`);
|
|
171
171
|
console.log(`[3] Configure for Claude Code CLI ${path.join(homeDir, '.claude')}`);
|
|
172
172
|
console.log(`[4] Configure for Trae ${path.join(homeDir, '.trae')}`);
|
|
@@ -185,8 +185,8 @@ function mainMenu() {
|
|
|
185
185
|
case '1':
|
|
186
186
|
configureEnvironment(
|
|
187
187
|
'Antigravity IDE',
|
|
188
|
-
path.join(homeDir, '.gemini', '
|
|
189
|
-
[path.join(homeDir, '.gemini', 'commands'), path.join(homeDir, '.gemini', '
|
|
188
|
+
path.join(homeDir, '.gemini', 'config', 'skills'),
|
|
189
|
+
[path.join(homeDir, '.gemini', 'commands'), path.join(homeDir, '.gemini', 'config', 'commands')]
|
|
190
190
|
);
|
|
191
191
|
break;
|
|
192
192
|
case '2':
|
|
@@ -206,14 +206,14 @@ function mainMenu() {
|
|
|
206
206
|
case '4':
|
|
207
207
|
configureEnvironment(
|
|
208
208
|
'Trae',
|
|
209
|
-
path.join(homeDir, '.trae', '
|
|
209
|
+
path.join(homeDir, '.trae', 'skills'),
|
|
210
210
|
null
|
|
211
211
|
);
|
|
212
212
|
break;
|
|
213
213
|
case '5':
|
|
214
214
|
configureEnvironment(
|
|
215
215
|
'Cursor',
|
|
216
|
-
path.join(homeDir, '.cursor', 'skills
|
|
216
|
+
path.join(homeDir, '.cursor', 'skills'),
|
|
217
217
|
null
|
|
218
218
|
);
|
|
219
219
|
break;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ani-skills",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "ani-skills is a professional AI Agent Skills library for Cursor, Claude Code, Windsurf, Trae, Cline, and Antigravity IDE, specializing in creative frontend GSAP/ScrollTrigger/Lenis animations, system planning, browser testing, and DSA workflows.",
|
|
5
5
|
"main": "skills_index.json",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ani-skills": "./bin/install.js"
|
|
@@ -18,10 +18,30 @@
|
|
|
18
18
|
"workflows",
|
|
19
19
|
"gsap",
|
|
20
20
|
"scrolltrigger",
|
|
21
|
-
"lenis"
|
|
21
|
+
"lenis",
|
|
22
|
+
"cursor",
|
|
23
|
+
"cursorrules",
|
|
24
|
+
"clinerules",
|
|
25
|
+
"windsurfrules",
|
|
26
|
+
"traerules",
|
|
27
|
+
"geminirules",
|
|
28
|
+
"ai-agents",
|
|
29
|
+
"agent-skills",
|
|
30
|
+
"developer-prompts",
|
|
31
|
+
"automation",
|
|
32
|
+
"playwright",
|
|
33
|
+
"puppeteer"
|
|
22
34
|
],
|
|
23
|
-
"author": "
|
|
35
|
+
"author": "Zain Ali",
|
|
24
36
|
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/usernamezain/ANI-Skills.git"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/usernamezain/ANI-Skills/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/usernamezain/ANI-Skills#readme",
|
|
25
45
|
"files": [
|
|
26
46
|
"skills",
|
|
27
47
|
"commands",
|