ai-agent-skills 1.7.0 → 1.8.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/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.8.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"
|