ai-agent-skills 1.7.0 → 1.9.0
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 +5 -4
- package/cli.js +4 -1
- package/package.json +5 -2
- package/skills/expo-app-design/SKILL.md +22 -0
- package/skills/expo-deployment/SKILL.md +22 -0
- package/skills/react-best-practices/SKILL.md +22 -0
- package/skills/upgrading-expo/SKILL.md +22 -0
- package/skills/vercel-deploy/SKILL.md +22 -0
- package/skills/web-design-guidelines/SKILL.md +22 -0
- package/skills.json +97 -3
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
13
13
|
<img src="https://img.shields.io/badge/skills-40-blue?style=flat-square" alt="Skills" />
|
|
14
|
-
<img src="https://img.shields.io/badge/agents-
|
|
14
|
+
<img src="https://img.shields.io/badge/agents-11+-green?style=flat-square" alt="Compatible Agents" />
|
|
15
15
|
<img src="https://img.shields.io/badge/license-MIT-brightgreen?style=flat-square" alt="License" />
|
|
16
16
|
<img src="https://img.shields.io/npm/v/ai-agent-skills?style=flat-square&color=red" alt="npm" />
|
|
17
17
|
<img src="https://img.shields.io/npm/dt/ai-agent-skills?style=flat-square&color=orange" alt="Downloads" />
|
|
@@ -46,17 +46,17 @@ npx ai-agent-skills install anthropics/skills/pdf # specific skill
|
|
|
46
46
|
npx ai-agent-skills install ./my-custom-skill
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
**One command. Every agent.** By default, skills install to Claude Code, Cursor, Codex, Amp, VS Code, Copilot, Goose, Letta, and OpenCode simultaneously.
|
|
49
|
+
**One command. Every agent.** By default, skills install to Claude Code, Cursor, Codex, Amp, VS Code, Copilot, Gemini CLI, Goose, Letta, and OpenCode simultaneously.
|
|
50
50
|
|
|
51
51
|
## Why This Exists
|
|
52
52
|
|
|
53
53
|
Every major AI coding agent now supports skills. But they're scattered everywhere.
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
We also created our own repo to cureate the best in one place. Quality over quantity https://www.skillcreator.ai/explore All skills follow the [Agent Skills spec](https://agentskills.io).
|
|
56
56
|
|
|
57
57
|
## Compatible Agents
|
|
58
58
|
|
|
59
|
-
Works with **Claude Code**, **Cursor**, **Codex**, **Amp**, **VS Code**, **GitHub Copilot**, **Goose**, **Letta**, and **OpenCode**.
|
|
59
|
+
Works with **Claude Code**, **Cursor**, **Codex**, **Amp**, **VS Code**, **GitHub Copilot**, **Gemini CLI**, **Goose**, **Letta**, and **OpenCode**.
|
|
60
60
|
|
|
61
61
|
## Available Skills
|
|
62
62
|
|
|
@@ -162,6 +162,7 @@ By default, `install` targets **all agents**. Use `--agent <name>` to install to
|
|
|
162
162
|
| Codex | `--agent codex` | `~/.codex/skills/` |
|
|
163
163
|
| Amp | `--agent amp` | `~/.amp/skills/` |
|
|
164
164
|
| VS Code / Copilot | `--agent vscode` | `.github/skills/` |
|
|
165
|
+
| Gemini CLI | `--agent gemini` | `~/.gemini/skills/` |
|
|
165
166
|
| Goose | `--agent goose` | `~/.config/goose/skills/` |
|
|
166
167
|
| OpenCode | `--agent opencode` | `~/.opencode/skill/` |
|
|
167
168
|
| Letta | `--agent letta` | `~/.letta/skills/` |
|
package/cli.js
CHANGED
|
@@ -27,6 +27,7 @@ const AGENT_PATHS = {
|
|
|
27
27
|
opencode: path.join(os.homedir(), '.config', 'opencode', 'skill'),
|
|
28
28
|
codex: path.join(os.homedir(), '.codex', 'skills'),
|
|
29
29
|
letta: path.join(os.homedir(), '.letta', 'skills'),
|
|
30
|
+
gemini: path.join(os.homedir(), '.gemini', 'skills'),
|
|
30
31
|
};
|
|
31
32
|
|
|
32
33
|
const colors = {
|
|
@@ -434,7 +435,8 @@ function showAgentInstructions(agent, skillName, destPath) {
|
|
|
434
435
|
project: `The skill is installed in .skills/ in your current directory.\nThis makes it portable across all compatible agents.`,
|
|
435
436
|
letta: `The skill is now available in Letta.`,
|
|
436
437
|
goose: `The skill is now available in Goose.`,
|
|
437
|
-
opencode: `The skill is now available in OpenCode
|
|
438
|
+
opencode: `The skill is now available in OpenCode.`,
|
|
439
|
+
gemini: `The skill is now available in Gemini CLI.\nMake sure Agent Skills is enabled in your Gemini CLI settings.`
|
|
438
440
|
};
|
|
439
441
|
|
|
440
442
|
log(`${colors.dim}${instructions[agent] || `The skill is ready to use with ${agent}.`}${colors.reset}`);
|
|
@@ -1311,6 +1313,7 @@ ${colors.bold}Agents:${colors.reset} (install targets ALL by default)
|
|
|
1311
1313
|
${colors.cyan}amp${colors.reset} ~/.amp/skills/
|
|
1312
1314
|
${colors.cyan}vscode${colors.reset} .github/skills/ (project)
|
|
1313
1315
|
${colors.cyan}copilot${colors.reset} .github/skills/ (alias for vscode)
|
|
1316
|
+
${colors.cyan}gemini${colors.reset} ~/.gemini/skills/
|
|
1314
1317
|
${colors.cyan}goose${colors.reset} ~/.config/goose/skills/
|
|
1315
1318
|
${colors.cyan}opencode${colors.reset} ~/.opencode/skill/
|
|
1316
1319
|
${colors.cyan}letta${colors.reset} ~/.letta/skills/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-agent-skills",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Install curated AI agent skills with one command. Works with Claude Code, Cursor,
|
|
3
|
+
"version": "1.9.0",
|
|
4
|
+
"description": "Install curated AI agent skills with one command. Works with Claude Code, Cursor, Codex, Gemini CLI, VS Code, Copilot, and 11+ agents.",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ai-agent-skills": "./cli.js",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"skills",
|
|
25
25
|
"claude",
|
|
26
26
|
"cursor",
|
|
27
|
+
"codex",
|
|
28
|
+
"gemini",
|
|
29
|
+
"copilot",
|
|
27
30
|
"amp",
|
|
28
31
|
"vscode",
|
|
29
32
|
"mcp"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: expo-app-design
|
|
3
|
+
description: Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native.
|
|
4
|
+
author: expo
|
|
5
|
+
category: development
|
|
6
|
+
tags: [expo, react, typescript]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Expo App Design
|
|
10
|
+
|
|
11
|
+
Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Building mobile apps with Expo
|
|
16
|
+
- Navigation with Expo Router
|
|
17
|
+
- Styling with NativeWind/Tailwind
|
|
18
|
+
- Native tabs and animations
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Expo's skills](https://github.com/expo/skills).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: expo-deployment
|
|
3
|
+
description: Deploy Expo apps to iOS App Store, Android Play Store, and web.
|
|
4
|
+
author: expo
|
|
5
|
+
category: development
|
|
6
|
+
tags: [expo, react, node]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Expo Deployment
|
|
10
|
+
|
|
11
|
+
Deploy Expo apps to iOS App Store, Android Play Store, and web.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Publishing to App Store / Play Store
|
|
16
|
+
- EAS Build configuration
|
|
17
|
+
- OTA updates
|
|
18
|
+
- CI/CD workflows for mobile
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Expo's skills](https://github.com/expo/skills).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: react-best-practices
|
|
3
|
+
description: React development guidelines with hooks, component patterns, state management, and performance optimization.
|
|
4
|
+
author: vercel
|
|
5
|
+
category: development
|
|
6
|
+
tags: [react, typescript, nextjs]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# React Best Practices
|
|
10
|
+
|
|
11
|
+
Modern React development guidelines covering hooks, component patterns, state management, and performance optimization.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Building React applications
|
|
16
|
+
- Learning React best practices
|
|
17
|
+
- Code reviews for React projects
|
|
18
|
+
- Performance optimization
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Vercel's agent-skills](https://github.com/vercel-labs/agent-skills).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: upgrading-expo
|
|
3
|
+
description: Guidelines for upgrading Expo SDK versions and fixing dependency issues.
|
|
4
|
+
author: expo
|
|
5
|
+
category: development
|
|
6
|
+
tags: [expo, react, typescript]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Upgrading Expo
|
|
10
|
+
|
|
11
|
+
Guidelines for upgrading Expo SDK versions and fixing dependency issues.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Upgrading Expo SDK versions
|
|
16
|
+
- Fixing dependency conflicts
|
|
17
|
+
- Migration patterns
|
|
18
|
+
- Breaking change handling
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Expo's skills](https://github.com/expo/skills).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vercel-deploy
|
|
3
|
+
description: Deploy applications to Vercel with edge functions, serverless, and ISR.
|
|
4
|
+
author: vercel
|
|
5
|
+
category: development
|
|
6
|
+
tags: [nextjs, node, typescript]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Vercel Deploy
|
|
10
|
+
|
|
11
|
+
Deploy applications to Vercel with edge functions, serverless, and ISR.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Deploying Next.js applications
|
|
16
|
+
- Setting up edge functions
|
|
17
|
+
- Configuring ISR (Incremental Static Regeneration)
|
|
18
|
+
- Serverless deployments
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Vercel's agent-skills](https://github.com/vercel-labs/agent-skills).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: web-design-guidelines
|
|
3
|
+
description: Modern web design principles for responsive layouts, accessibility, and visual hierarchy.
|
|
4
|
+
author: vercel
|
|
5
|
+
category: development
|
|
6
|
+
tags: [react, nextjs, typescript]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Web Design Guidelines
|
|
10
|
+
|
|
11
|
+
Modern web design principles for responsive layouts, accessibility, and visual hierarchy.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
- Creating polished web interfaces
|
|
16
|
+
- Improving accessibility
|
|
17
|
+
- Responsive design patterns
|
|
18
|
+
- Visual hierarchy decisions
|
|
19
|
+
|
|
20
|
+
## Source
|
|
21
|
+
|
|
22
|
+
This skill references patterns from [Vercel's agent-skills](https://github.com/vercel-labs/agent-skills).
|
package/skills.json
CHANGED
|
@@ -1,8 +1,92 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"updated": "2026-01-
|
|
4
|
-
"total":
|
|
2
|
+
"version": "1.3.0",
|
|
3
|
+
"updated": "2026-01-16T00:00:00Z",
|
|
4
|
+
"total": 46,
|
|
5
5
|
"skills": [
|
|
6
|
+
{
|
|
7
|
+
"name": "react-best-practices",
|
|
8
|
+
"description": "React development guidelines with hooks, component patterns, state management, and performance optimization. Use for building React apps with modern best practices.",
|
|
9
|
+
"category": "development",
|
|
10
|
+
"author": "vercel",
|
|
11
|
+
"source": "vercel/skills",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"path": "skills/react-best-practices",
|
|
14
|
+
"tags": ["react", "typescript", "nextjs"],
|
|
15
|
+
"stars": 15000,
|
|
16
|
+
"downloads": 2400,
|
|
17
|
+
"featured": true,
|
|
18
|
+
"verified": true
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "web-design-guidelines",
|
|
22
|
+
"description": "Modern web design principles for responsive layouts, accessibility, and visual hierarchy. Use for creating polished web interfaces.",
|
|
23
|
+
"category": "development",
|
|
24
|
+
"author": "vercel",
|
|
25
|
+
"source": "vercel/skills",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"path": "skills/web-design-guidelines",
|
|
28
|
+
"tags": ["react", "nextjs", "typescript"],
|
|
29
|
+
"stars": 15000,
|
|
30
|
+
"downloads": 1800,
|
|
31
|
+
"featured": false,
|
|
32
|
+
"verified": true
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "vercel-deploy",
|
|
36
|
+
"description": "Deploy applications to Vercel with edge functions, serverless, and ISR. Use for deploying Next.js and other web applications.",
|
|
37
|
+
"category": "development",
|
|
38
|
+
"author": "vercel",
|
|
39
|
+
"source": "vercel/skills",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"path": "skills/vercel-deploy",
|
|
42
|
+
"tags": ["nextjs", "node", "typescript"],
|
|
43
|
+
"stars": 15000,
|
|
44
|
+
"downloads": 2100,
|
|
45
|
+
"featured": true,
|
|
46
|
+
"verified": true
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "expo-app-design",
|
|
50
|
+
"description": "Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native. Covers navigation, styling, animations, and native tabs.",
|
|
51
|
+
"category": "development",
|
|
52
|
+
"author": "expo",
|
|
53
|
+
"source": "expo/skills",
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"path": "skills/expo-app-design",
|
|
56
|
+
"tags": ["expo", "react", "typescript"],
|
|
57
|
+
"stars": 38000,
|
|
58
|
+
"downloads": 3200,
|
|
59
|
+
"featured": true,
|
|
60
|
+
"verified": true
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "expo-deployment",
|
|
64
|
+
"description": "Deploy Expo apps to iOS App Store, Android Play Store, and web. Covers EAS Build, OTA updates, and CI/CD workflows.",
|
|
65
|
+
"category": "development",
|
|
66
|
+
"author": "expo",
|
|
67
|
+
"source": "expo/skills",
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"path": "skills/expo-deployment",
|
|
70
|
+
"tags": ["expo", "react", "node"],
|
|
71
|
+
"stars": 38000,
|
|
72
|
+
"downloads": 2800,
|
|
73
|
+
"featured": true,
|
|
74
|
+
"verified": true
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "upgrading-expo",
|
|
78
|
+
"description": "Guidelines for upgrading Expo SDK versions and fixing dependency issues. Safe migration patterns and breaking change handling.",
|
|
79
|
+
"category": "development",
|
|
80
|
+
"author": "expo",
|
|
81
|
+
"source": "expo/skills",
|
|
82
|
+
"license": "MIT",
|
|
83
|
+
"path": "skills/upgrading-expo",
|
|
84
|
+
"tags": ["expo", "react", "typescript"],
|
|
85
|
+
"stars": 38000,
|
|
86
|
+
"downloads": 1500,
|
|
87
|
+
"featured": false,
|
|
88
|
+
"verified": true
|
|
89
|
+
},
|
|
6
90
|
{
|
|
7
91
|
"name": "frontend-design",
|
|
8
92
|
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Use for building web components, pages, dashboards, React components, HTML/CSS layouts, or styling any web UI.",
|
|
@@ -11,6 +95,7 @@
|
|
|
11
95
|
"source": "anthropics/skills",
|
|
12
96
|
"license": "Apache-2.0",
|
|
13
97
|
"path": "skills/frontend-design",
|
|
98
|
+
"tags": ["react", "typescript", "nextjs"],
|
|
14
99
|
"stars": 21600,
|
|
15
100
|
"downloads": 1320,
|
|
16
101
|
"featured": true,
|
|
@@ -24,6 +109,7 @@
|
|
|
24
109
|
"source": "anthropics/skills",
|
|
25
110
|
"license": "Apache-2.0",
|
|
26
111
|
"path": "skills/pdf",
|
|
112
|
+
"tags": ["python"],
|
|
27
113
|
"stars": 21600,
|
|
28
114
|
"downloads": 890,
|
|
29
115
|
"featured": true,
|
|
@@ -76,6 +162,7 @@
|
|
|
76
162
|
"source": "anthropics/skills",
|
|
77
163
|
"license": "Apache-2.0",
|
|
78
164
|
"path": "skills/mcp-builder",
|
|
165
|
+
"tags": ["python", "typescript", "node"],
|
|
79
166
|
"stars": 21600,
|
|
80
167
|
"downloads": 1150,
|
|
81
168
|
"featured": true,
|
|
@@ -141,6 +228,7 @@
|
|
|
141
228
|
"source": "anthropics/skills",
|
|
142
229
|
"license": "Apache-2.0",
|
|
143
230
|
"path": "skills/webapp-testing",
|
|
231
|
+
"tags": ["typescript", "node", "react"],
|
|
144
232
|
"stars": 21600,
|
|
145
233
|
"downloads": 620,
|
|
146
234
|
"featured": false,
|
|
@@ -193,6 +281,7 @@
|
|
|
193
281
|
"source": "wshobson/agents",
|
|
194
282
|
"license": "MIT",
|
|
195
283
|
"path": "skills/python-development",
|
|
284
|
+
"tags": ["python"],
|
|
196
285
|
"stars": 22900,
|
|
197
286
|
"downloads": 388,
|
|
198
287
|
"featured": false,
|
|
@@ -206,6 +295,7 @@
|
|
|
206
295
|
"source": "wshobson/agents",
|
|
207
296
|
"license": "MIT",
|
|
208
297
|
"path": "skills/javascript-typescript",
|
|
298
|
+
"tags": ["typescript", "react", "node"],
|
|
209
299
|
"stars": 22900,
|
|
210
300
|
"downloads": 394,
|
|
211
301
|
"featured": false,
|
|
@@ -219,6 +309,7 @@
|
|
|
219
309
|
"source": "wshobson/agents",
|
|
220
310
|
"license": "MIT",
|
|
221
311
|
"path": "skills/backend-development",
|
|
312
|
+
"tags": ["node", "python", "typescript"],
|
|
222
313
|
"stars": 22900,
|
|
223
314
|
"downloads": 320,
|
|
224
315
|
"featured": false,
|
|
@@ -258,6 +349,7 @@
|
|
|
258
349
|
"source": "wshobson/agents",
|
|
259
350
|
"license": "MIT",
|
|
260
351
|
"path": "skills/llm-application-dev",
|
|
352
|
+
"tags": ["python", "typescript", "node"],
|
|
261
353
|
"stars": 22900,
|
|
262
354
|
"downloads": 560,
|
|
263
355
|
"featured": true,
|
|
@@ -297,6 +389,7 @@
|
|
|
297
389
|
"source": "skillcreatorai/Ai-Agent-Skills",
|
|
298
390
|
"license": "MIT",
|
|
299
391
|
"path": "skills/qa-regression",
|
|
392
|
+
"tags": ["typescript", "node"],
|
|
300
393
|
"stars": 100,
|
|
301
394
|
"downloads": 0,
|
|
302
395
|
"featured": true,
|
|
@@ -337,6 +430,7 @@
|
|
|
337
430
|
"source": "ComposioHQ/awesome-claude-skills",
|
|
338
431
|
"license": "Apache-2.0",
|
|
339
432
|
"path": "skills/artifacts-builder",
|
|
433
|
+
"tags": ["react", "typescript"],
|
|
340
434
|
"stars": 500,
|
|
341
435
|
"downloads": 0,
|
|
342
436
|
"featured": false,
|