@pushrec/skills 0.1.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 +29 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1534 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @pushrec/skills
|
|
2
|
+
|
|
3
|
+
CLI for the pushREC Agent Skills Marketplace. Install, manage, and update Claude Code skills.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @pushrec/skills
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
| Command | Description |
|
|
14
|
+
|---------|-------------|
|
|
15
|
+
| `skills auth <key>` | Activate your license key |
|
|
16
|
+
| `skills list` | Browse available skills |
|
|
17
|
+
| `skills install <name>` | Install a skill |
|
|
18
|
+
| `skills update [name]` | Update installed skills |
|
|
19
|
+
| `skills search <query>` | Search the catalog |
|
|
20
|
+
| `skills info <name>` | Get skill details |
|
|
21
|
+
| `skills uninstall <name>` | Remove a skill |
|
|
22
|
+
|
|
23
|
+
## Registry
|
|
24
|
+
|
|
25
|
+
Default registry: `https://skills.pushrec.com`
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
Commercial. Requires a valid license key from [pushrec.com](https://pushrec.com).
|
package/dist/index.d.ts
ADDED