@votruongdanh/ai-agent-skills 1.1.0 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +9 -9
  2. package/bin/cli.js +11 -11
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -19,15 +19,15 @@ That's it! No need to clone repos or download files.
19
19
 
20
20
  The CLI automatically detects your IDE and installs to the correct location:
21
21
 
22
- ✅ **Antigravity** - `.antigravity/` or `.ag/`
23
- ✅ **Kiro** - `.kiro/`
24
- ✅ **Cursor** - `.cursor/`
25
- ✅ **Windsurf** - `.windsurf/`
26
- ✅ **Continue** - `.continue/`
27
- ✅ **Cody** - `.cody/`
28
- ✅ **GitHub Copilot** - `.github/copilot/`
29
- ✅ **Aider** - `.aider/`
30
- ✅ **Tabnine** - `.tabnine/`
22
+ ✅ **Antigravity** - `agent/skills/`
23
+ ✅ **Kiro** - `.kiro/skills/`
24
+ ✅ **Cursor** - `.cursor/skills/`
25
+ ✅ **Windsurf** - `.windsurf/skills/`
26
+ ✅ **Continue** - `.continue/skills/`
27
+ ✅ **Cody** - `.cody/skills/`
28
+ ✅ **GitHub Copilot** - `.github/copilot/skills/`
29
+ ✅ **Aider** - `.aider/skills/`
30
+ ✅ **Tabnine** - `.tabnine/skills/`
31
31
  ✅ **Others** - Uses Kiro format (most compatible)
32
32
 
33
33
  No configuration needed - just run the install command!
package/bin/cli.js CHANGED
@@ -36,7 +36,7 @@ function detectIDE() {
36
36
 
37
37
  // IDE detection map - order matters (most specific first)
38
38
  const ideChecks = [
39
- { name: 'antigravity', paths: ['.antigravity', '.ag'] },
39
+ { name: 'antigravity', paths: ['agent/skills', 'agent'] }, // Antigravity uses agent/ not .antigravity/
40
40
  { name: 'kiro', paths: ['.kiro'] },
41
41
  { name: 'cursor', paths: ['.cursor'] },
42
42
  { name: 'windsurf', paths: ['.windsurf'] },
@@ -88,7 +88,7 @@ function getIDEDisplayName(ide) {
88
88
  // Get IDE config directory
89
89
  function getIDEConfigDir(ide) {
90
90
  const configDirs = {
91
- 'antigravity': '.antigravity',
91
+ 'antigravity': 'agent', // Antigravity uses agent/ folder
92
92
  'kiro': '.kiro',
93
93
  'cursor': '.cursor',
94
94
  'windsurf': '.windsurf',
@@ -235,15 +235,15 @@ Usage:
235
235
  npx @votruongdanh/ai-agent-skills help Show this help message
236
236
 
237
237
  Supported IDEs (Auto-detected):
238
- ✅ Antigravity - .antigravity or .ag folder
239
- ✅ Kiro - .kiro folder
240
- ✅ Cursor - .cursor folder
241
- ✅ Windsurf - .windsurf folder
242
- ✅ Continue - .continue folder
243
- ✅ Cody - .cody folder
244
- ✅ GitHub Copilot - .github/copilot folder
245
- ✅ Aider - .aider folder
246
- ✅ Tabnine - .tabnine folder
238
+ ✅ Antigravity - agent/skills folder
239
+ ✅ Kiro - .kiro/skills folder
240
+ ✅ Cursor - .cursor/skills folder
241
+ ✅ Windsurf - .windsurf/skills folder
242
+ ✅ Continue - .continue/skills folder
243
+ ✅ Cody - .cody/skills folder
244
+ ✅ GitHub Copilot - .github/copilot/skills folder
245
+ ✅ Aider - .aider/skills folder
246
+ ✅ Tabnine - .tabnine/skills folder
247
247
  ✅ Others - Uses Kiro format by default
248
248
 
249
249
  Available Skills:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@votruongdanh/ai-agent-skills",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Professional AI Agent Skills - 11 powerful workflows for Antigravity, Kiro, Cursor, Windsurf, Continue, Cody, and other AI IDEs",
5
5
  "main": "index.js",
6
6
  "bin": {