agent-skills-cli 1.0.1 โ†’ 1.0.4

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 CHANGED
@@ -1,30 +1,28 @@
1
1
  # Agent Skills CLI ๐Ÿš€
2
2
 
3
- > **One CLI. 40,000+ skills. All AI agents.**
3
+ > **One CLI. 50,000+ skills. All AI agents.**
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/agent-skills-cli)](https://www.npmjs.com/package/agent-skills-cli)
6
6
  [![license](https://img.shields.io/npm/l/agent-skills-cli)](LICENSE)
7
7
 
8
- Install skills from the world's largest Agent Skills marketplace and sync them to **Cursor**, **Claude Code**, **GitHub Copilot**, **OpenAI Codex**, and **Antigravity** โ€” all with a single command.
8
+ Install skills from the world's largest marketplace and sync them to **Cursor**, **Claude Code**, **GitHub Copilot**, **OpenAI Codex**, and **Antigravity** โ€” all with a single command.
9
+
10
+ ๐ŸŒ **Website:** [agentskills.in](https://agentskills.in)
9
11
 
10
12
  ```bash
11
13
  npm install -g agent-skills-cli
12
- skills
14
+ skills install @anthropic/xlsx
13
15
  ```
14
16
 
15
17
  ---
16
18
 
17
19
  ## โœจ Features
18
20
 
19
- | Feature | Description |
20
- |---------|-------------|
21
- | **40,779+ Skills** | Access the largest collection of AI agent skills via [SkillsMP](https://skillsmp.com) |
22
- | **5 AI Agents** | Works with Cursor, Claude Code, GitHub Copilot, OpenAI Codex, Antigravity |
23
- | **No API Key** | SkillsMP is completely free and public โ€” no authentication required |
24
- | **Interactive CLI** | Arrow-key navigation, checkbox selection, progress spinners |
25
- | **Instant Loading** | Skills fetched via API in <1 second (no individual file fetching) |
26
- | **Auto-Export** | Install once, skills are automatically formatted for each agent |
27
- | **Star Sorting** | Browse skills by GitHub stars (PyTorch 95kโญ, OpenAI 54kโญ, etc.) |
21
+ - **50,000+ Skills** โ€” Access the largest collection of AI agent skills
22
+ - **5 AI Agents** โ€” Works with Cursor, Claude, Copilot, Codex, Antigravity
23
+ - **Platform Targeting** โ€” Install to specific platforms with `-t claude,cursor`
24
+ - **Auto-Detection** โ€” Automatically detects installed AI agents
25
+ - **Interactive CLI** โ€” Arrow-key navigation, search, and progress spinners
28
26
 
29
27
  ---
30
28
 
@@ -40,187 +38,116 @@ npm install -g agent-skills-cli
40
38
 
41
39
  ## ๐Ÿš€ Quick Start
42
40
 
43
- Run the interactive wizard:
44
-
45
41
  ```bash
46
- skills
47
- ```
42
+ # Install a skill (auto-detects platforms)
43
+ skills install xlsx
48
44
 
49
- **What happens:**
50
- 1. Select which AI agents you use (Cursor, Claude, Copilot, etc.)
51
- 2. Browse 40,000+ skills sorted by GitHub stars
52
- 3. Select skills with Space, confirm with Enter
53
- 4. Skills are installed and exported to your agents automatically
45
+ # Install to specific platforms
46
+ skills install @anthropic/pdf -t claude,cursor
54
47
 
55
- ---
48
+ # Install to all platforms
49
+ skills install docx --all
56
50
 
57
- ## ๐Ÿ› ๏ธ Commands
51
+ # Search the marketplace
52
+ skills search "machine learning"
58
53
 
59
- ### Interactive Mode
60
-
61
- ```bash
62
- skills # Main interactive wizard
63
- skills install # Direct to skill selection
64
- skills export # Export all installed skills to agents
54
+ # List installed skills
55
+ skills list
65
56
  ```
66
57
 
67
- ### Skill Management
58
+ ---
68
59
 
69
- ```bash
70
- skills list # List installed skills
71
- skills show <name> # Show skill details
72
- skills validate <path> # Validate a SKILL.md file
73
- skills init <name> # Create a new skill from template
74
- ```
60
+ ## ๐Ÿ› ๏ธ Commands
75
61
 
76
- ### Marketplace (Legacy GitHub)
62
+ ### Core Commands
77
63
 
78
- ```bash
79
- skills market-list # List skills from configured sources
80
- skills market-search <query> # Search skills
81
- skills market-install <name> # Install by name
82
- skills market-uninstall <name> # Uninstall a skill
83
- skills market-installed # Show installed skills
84
- skills market-sources # List marketplace sources
85
- ```
64
+ | Command | Description |
65
+ |---------|-------------|
66
+ | `skills install <name>` | Install a skill from marketplace |
67
+ | `skills list` | List installed skills |
68
+ | `skills search <query>` | Search the marketplace |
69
+ | `skills show <name>` | Show skill details |
70
+ | `skills update` | Update installed skills |
71
+ | `skills doctor` | Diagnose issues |
86
72
 
87
- ### Agent Export
73
+ ### Install Options
88
74
 
89
75
  ```bash
90
- skills export --target all # Export to all agents
91
- skills export --target cursor # Export to Cursor only
92
- skills export --target claude # Export to Claude Code only
93
- skills export --target copilot # Export to GitHub Copilot only
94
- skills export --target codex # Export to OpenAI Codex only
95
- skills sync # Sync to Antigravity workflows
76
+ skills install <name> # Auto-detect platforms
77
+ skills install <name> -t claude # Install to Claude only
78
+ skills install <name> -t cursor,copilot # Install to multiple
79
+ skills install <name> --all # Install to all platforms
96
80
  ```
97
81
 
98
- ---
99
-
100
- ## ๐Ÿค– Supported AI Agents
82
+ ### Other Commands
101
83
 
102
- | Agent | Skill Location | Format |
103
- |-------|----------------|--------|
104
- | **Cursor** | `.cursor/skills/<name>/SKILL.md` | Agent Skills Standard |
105
- | **Claude Code** | `.claude/skills/<name>/SKILL.md` | Agent Skills Standard |
106
- | **GitHub Copilot** | `.github/skills/<name>/SKILL.md` | Agent Skills Standard |
107
- | **OpenAI Codex** | `.codex/skills/<name>/SKILL.md` | Agent Skills Standard |
108
- | **Antigravity** | `.agent/workflows/<name>.md` | Workflow Format |
109
-
110
- > **Note:** All major AI coding agents now support the same `SKILL.md` standard, making skills truly portable!
84
+ ```bash
85
+ skills init <name> # Create new skill from template
86
+ skills validate <path> # Validate a SKILL.md file
87
+ skills export # Export skills to agents
88
+ skills sync # Sync to Antigravity workflows
89
+ skills info # Show installation status
90
+ ```
111
91
 
112
92
  ---
113
93
 
114
- ## ๐ŸŒ SkillsMP Integration
115
-
116
- This CLI is powered by [SkillsMP](https://skillsmp.com), the largest Agent Skills marketplace:
117
-
118
- - **40,779 skills** indexed from GitHub
119
- - **Public API** โ€” no authentication needed
120
- - **Real-time updates** โ€” skills indexed daily
121
- - **Star-based ranking** โ€” best skills surface first
94
+ ## ๐Ÿค– Supported Platforms
122
95
 
123
- ### Top Skills by Stars
124
-
125
- | Skill | Author | Stars |
126
- |-------|--------|-------|
127
- | at-dispatch-v2 | PyTorch | 95,362 โญ |
128
- | skill-creator | OpenAI | 54,704 โญ |
129
- | frontend-design | Anthropic | 47,860 โญ |
130
- | typescript-review | Metabase | 44,733 โญ |
96
+ | Platform | Directory | Flag |
97
+ |----------|-----------|------|
98
+ | **Cursor** | `.cursor/skills/` | `-t cursor` |
99
+ | **Claude Code** | `.claude/skills/` | `-t claude` |
100
+ | **GitHub Copilot** | `.github/skills/` | `-t copilot` |
101
+ | **OpenAI Codex** | `.codex/skills/` | `-t codex` |
102
+ | **Antigravity** | `.agent/workflows/` | `-t antigravity` |
131
103
 
132
104
  ---
133
105
 
134
- ## ๐Ÿ“š Creating Your Own Skills
106
+ ## ๐Ÿ“š Creating Skills
135
107
 
136
- Create a `SKILL.md` file in your project:
108
+ Create a `SKILL.md` file:
137
109
 
138
110
  ```markdown
139
111
  ---
140
- name: my-custom-skill
141
- description: What this skill does and when to trigger it
112
+ name: my-skill
113
+ description: What this skill does
142
114
  ---
143
115
 
144
116
  # Instructions
145
117
 
146
- Detailed instructions for the AI agent...
147
-
148
- ## Examples
149
-
150
- Show examples of how to use this skill...
118
+ Your skill instructions here...
151
119
  ```
152
120
 
153
- Then export to your agents:
121
+ Then install locally:
154
122
 
155
123
  ```bash
124
+ skills validate ./my-skill
156
125
  skills export
157
126
  ```
158
127
 
159
- ### Skill Structure
160
-
161
- ```
162
- my-skill/
163
- โ”œโ”€โ”€ SKILL.md # Main skill file (required)
164
- โ”œโ”€โ”€ references/ # Reference documentation (optional)
165
- โ”‚ โ””โ”€โ”€ guide.md
166
- โ””โ”€โ”€ assets/ # Templates, images (optional)
167
- โ””โ”€โ”€ template.txt
168
- ```
169
-
170
128
  ---
171
129
 
172
- ## โš™๏ธ Configuration
173
-
174
- Skills are stored in:
175
- - **Installed skills:** `~/.antigravity/skills/`
176
- - **Marketplace config:** `~/.antigravity/marketplace.json`
177
-
178
- ### Adding Custom Marketplace Sources
130
+ ## ๐Ÿ”— Links
179
131
 
180
- ```bash
181
- skills market-add-source
182
- ```
132
+ - **Website:** [agentskills.in](https://agentskills.in)
133
+ - **Marketplace:** [agentskills.in/marketplace](https://agentskills.in/marketplace)
134
+ - **Documentation:** [agentskills.in/docs](https://agentskills.in/docs)
135
+ - **CLI GitHub:** [github.com/Karanjot786/agent-skills-cli](https://github.com/Karanjot786/agent-skills-cli)
136
+ - **Website GitHub:** [github.com/Karanjot786/agent-skills-UI](https://github.com/Karanjot786/agent-skills-UI)
137
+ - **npm:** [npmjs.com/package/agent-skills-cli](https://www.npmjs.com/package/agent-skills-cli)
183
138
 
184
139
  ---
185
140
 
186
- ## ๐Ÿ”— Related Projects
141
+ ## ๐Ÿ‘ค Author
187
142
 
188
- - **[SkillsMP](https://skillsmp.com)** โ€” Agent Skills Marketplace (40k+ skills)
189
- - **[anthropics/skills](https://github.com/anthropics/skills)** โ€” Official Anthropic skills
190
- - **[agentskills.io](https://agentskills.io)** โ€” Agent Skills open specification
143
+ **Karanjot Singh**
191
144
 
192
- ---
193
-
194
- ## ๐Ÿ—๏ธ Architecture
195
-
196
- ```
197
- agent-skills-cli/
198
- โ”œโ”€โ”€ src/
199
- โ”‚ โ”œโ”€โ”€ cli/index.ts # Interactive CLI (Commander + Inquirer)
200
- โ”‚ โ”œโ”€โ”€ core/
201
- โ”‚ โ”‚ โ”œโ”€โ”€ skillsmp.ts # SkillsMP API client
202
- โ”‚ โ”‚ โ”œโ”€โ”€ marketplace.ts # GitHub marketplace
203
- โ”‚ โ”‚ โ”œโ”€โ”€ loader.ts # Skill discovery
204
- โ”‚ โ”‚ โ”œโ”€โ”€ validator.ts # SKILL.md validation
205
- โ”‚ โ”‚ โ”œโ”€โ”€ injector.ts # Prompt generation
206
- โ”‚ โ”‚ โ””โ”€โ”€ executor.ts # Script execution
207
- โ”‚ โ””โ”€โ”€ types/ # TypeScript definitions
208
- โ”œโ”€โ”€ dist/ # Compiled output
209
- โ””โ”€โ”€ package.json
210
- ```
145
+ - ๐Ÿฆ [@Karanjotdulay](https://x.com/Karanjotdulay)
146
+ - ๐Ÿ’ผ [LinkedIn](https://www.linkedin.com/in/karanjot786/)
147
+ - ๐Ÿ™ [@Karanjot786](https://github.com/Karanjot786)
211
148
 
212
149
  ---
213
150
 
214
151
  ## ๐Ÿ“„ License
215
152
 
216
- MIT ยฉ [Karanjot786](https://github.com/Karanjot786)
217
-
218
- ---
219
-
220
- <div align="center">
221
-
222
- **Built for developers who use multiple AI coding assistants.**
223
-
224
- [SkillsMP](https://skillsmp.com) ยท [Report Bug](https://github.com/Karanjot786/agent-skills-cli/issues) ยท [Request Feature](https://github.com/Karanjot786/agent-skills-cli/issues)
225
-
226
- </div>
153
+ MIT ยฉ [Karanjot Singh](https://github.com/Karanjot786)