@tc9011/skills-manager 0.6.2 → 0.7.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.
- package/README.md +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,6 +36,8 @@ npx @tc9011/skills-manager push
|
|
|
36
36
|
npm install -g @tc9011/skills-manager
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
> **Tip:** If installed globally, you can use `skills-manager` instead of `npx @tc9011/skills-manager` in all commands below.
|
|
40
|
+
|
|
39
41
|
**Requirements:** Node.js ≥ 20, [GitHub CLI](https://cli.github.com/) (`gh`) recommended for auth.
|
|
40
42
|
|
|
41
43
|
## Quick Start
|
|
@@ -233,6 +235,21 @@ skills-manager link --project reads .skill-lock.json → select skills → choos
|
|
|
233
235
|
./my-project/.agents/skills/my-skill ← copied from ~/.agents/skills/
|
|
234
236
|
./my-project/.claude/skills/my-skill ← copied from ~/.agents/skills/
|
|
235
237
|
```
|
|
238
|
+
## Skill
|
|
239
|
+
|
|
240
|
+
This project includes a skill at `skills/skills-manager/` that teaches AI agents how to operate the CLI — push, pull, and link commands.
|
|
241
|
+
|
|
242
|
+
```bash
|
|
243
|
+
# Install via vercel-labs/skills CLI
|
|
244
|
+
npx skills add tc9011/skills-manager
|
|
245
|
+
|
|
246
|
+
# Install a specific skill to specific agents
|
|
247
|
+
npx skills add tc9011/skills-manager --skill skills-manager -a opencode -a claude-code
|
|
248
|
+
|
|
249
|
+
# Install globally (available across all projects)
|
|
250
|
+
npx skills add tc9011/skills-manager -g
|
|
251
|
+
```
|
|
252
|
+
|
|
236
253
|
## Contributing
|
|
237
254
|
|
|
238
255
|
### Setup
|