install-agent-skill 1.0.0 → 1.0.1

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 +18 -90
  2. package/bin/cli.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -11,115 +11,43 @@
11
11
 
12
12
  <p align="center">
13
13
  <a href="https://www.npmjs.com/package/install-agent-skill"><img src="https://img.shields.io/npm/v/install-agent-skill?style=flat-square&color=000000" alt="npm version"></a>
14
- <a href="https://www.npmjs.com/package/install-agent-skill"><img src="https://img.shields.io/npm/dm/install-agent-skill?style=flat-square&color=000000" alt="npm downloads"></a>
15
- <a href="https://github.com/dataguruin/add-skill/blob/main/LICENSE"><img src="https://img.shields.io/github/license/dataguruin/add-skill?style=flat-square&color=000000" alt="license"></a>
14
+ <a href="https://github.com/dataguruin/add-skill/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-000000?style=flat-square" alt="license"></a>
16
15
  </p>
17
16
 
18
17
  <p align="center">
19
18
  <a href="#installation">Installation</a> •
20
- <a href="#quick-start">Quick Start</a> •
21
- <a href="#workflow">Workflow</a> •
22
- <a href="#architecture">Architecture</a>
23
- </p>
24
-
25
- ---
26
-
27
- ## Overview
28
-
29
- **Install Agent Skill** is a production-grade CLI for orchestrating **Agent Skills**—modular, verifiable capability packs that extend AI agents without executing arbitrary code. It treats agent capabilities as managed dependencies, ensuring reproducibility and security across your engineering organization.
30
19
 
31
- ### Key Value Proposition
32
- * **Zero-Execution Integrity**: Skills are data, not scripts. No unauthorized code runs on your machine.
33
- * **Single Source of Truth**: 'Smart Symlinks' keep your projects in sync with a central global registry.
34
- * **Semantic Routing**: Automatically maps skills to the agents best suited to execute them.
20
+ <a href="#overview">Overview</a>
21
+ <a href="#architecture">Architecture</a>
22
+ <a href="#commands">Commands</a>
23
+ </p>
35
24
 
36
25
  ---
37
26
 
38
27
  ## Installation
39
28
 
40
29
  ```bash
41
- # Zero-setup execution (Recommended)
30
+ # Install agent skills
42
31
  npx -y install-agent-skill dataguruin/agent-skills
43
- ```
44
-
45
- ```bash
46
- # Global installation
47
- npm install -g install-agent-skill
48
- ```
49
-
50
- > **System Requirements**
51
- > * Node.js 18.0.0 or higher
52
- > * Windows / macOS / Linux
53
-
54
- ---
55
32
 
56
- ## Workflow
33
+ # Install the complete governance pack
34
+ npx -y install-agent-skill dataguruin/agent-skills#coinpika-doctrine-pack
57
35
 
58
- ### 1. Interactive Installation
59
- The CLI guides you through skill selection, agent targeting, and installation method.
60
-
61
- ```bash
62
- npx -y install-agent-skill dataguruin/agent-skills
36
+ # Or install individual skills
37
+ npx -y install-agent-skill dataguruin/agent-skills#coinpika-pr-reviewer
38
+ npx -y install-agent-skill dataguruin/agent-skills#coinpika-commit-formatter
63
39
  ```
64
40
 
65
- ```text
66
- ┌ Install Agent Skill v1.0.0
67
-
68
- ◇ Source: https://github.com/dataguruin/agent-skills.git
69
- ◇ Repository cloned
70
-
71
- ◇ Found 3 skills
72
-
73
- ◆ Select skills to install
74
-
75
- ◆ (Press <space> to select, <enter> to submit)
76
- │ ◼ coinpika-doctrine-pack (>...)
77
- │ ◻ coinpika-commit-formatter (>...)
78
-
79
- ◆ Select agents to install skills to (Antigravity only)
80
- │ ◼ Antigravity (.agent/skills)
81
-
82
- ◇ Installation scope
83
- │ Project
84
-
85
- ◆ Installation method
86
- │ ● Symlink (Recommended) (Single source of truth, easy updates)
87
- │ ○ Copy to all agents
88
-
89
- ◇ Installation Summary
90
-
91
- │ ╭ Installation Summary ───────────────────────────────────────────╮
92
- │ │ │
93
- │ │ ~\Desktop\New Project\.agents\skills\coinpika-doctrine-pack │
94
- │ │ symlink → Antigravity │
95
- │ │ │
96
- │ ╰─────────────────────────────────────────────────────────────────╯
97
-
98
- ◆ Proceed with installation?
99
- │ Yes
100
-
101
- ◇ Installation complete
102
-
103
- │ ╭ Installed 1 skills to 1 agents ─────────────────────────────────╮
104
- │ │ │
105
- │ │ ✓ ~\Desktop\New Project\.agents\skills\coinpika-doctrine-pack │
106
- │ │ symlink → Antigravity │
107
- │ │ │
108
- │ ╰─────────────────────────────────────────────────────────────────╯
109
-
110
- └ Done!
111
- ```
41
+ ---
112
42
 
113
- ### 2. Choose Your Strategy
114
- We offer two robust installation strategies tailored to your workflow:
43
+ ## Overview
115
44
 
116
- #### 🔗 Symlink (Recommended)
117
- * **Mechanism**: Uses `fs.symlink` (Junctions on Windows) to link your project's skill folder to a persistent global storage (`~/.gemini/antigravity/skills/storage`).
118
- * **Benefit**: **Single Source of Truth**. Updating the skill once in global storage updates it across all your projects instantly. Ideal for core doctrines and standardized team rules.
45
+ **Install Agent Skill** is a production-grade CLI for orchestrating **Agent Skills**—modular, verifiable capability packs that extend AI agents without executing arbitrary code. It treats agent capabilities as managed dependencies, ensuring reproducibility and security across your engineering organization.
119
46
 
120
- #### 📋 Copy
121
- * **Mechanism**: Performs a deep copy of the skill files into your project.
122
- * **Benefit**: **Isolation**. Perfect for project-specific customization where you need to modify the skill without affecting other projects.
47
+ ### Key Value Proposition
48
+ * **Zero-Execution Integrity**: Skills are data, not scripts. No unauthorized code runs on your machine.
49
+ * **Single Source of Truth**: 'Smart Symlinks' keep your projects in sync with a central global registry.
50
+ * **Semantic Routing**: Automatically maps skills to the agents best suited to execute them.
123
51
 
124
52
  ---
125
53
 
package/bin/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  /**
3
3
  * Install Agent Skill v1.0.0
4
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "install-agent-skill",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
5
5
  "license": "MIT",
6
6
  "author": "DataGuruIn <contact@dataguruin.com>",
@@ -40,7 +40,7 @@
40
40
  "scripts": {
41
41
  "lint": "echo \"No lint configured\"",
42
42
  "test": "echo \"No tests yet\"",
43
- "ci": "node bin/add-skill.js verify --strict && node bin/add-skill.js doctor --strict"
43
+ "ci": "node bin/cli.js verify --strict && node bin/cli.js doctor --strict"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
@@ -50,7 +50,7 @@
50
50
  "boxen": "^8.0.1",
51
51
  "chalk": "^5.4.1",
52
52
  "kleur": "^4.1.5",
53
- "ora": "^9.1.0",
53
+ "ora": "^8.1.0",
54
54
  "prompts": "^2.4.2"
55
55
  }
56
56
  }