@agentpowers/cli 0.1.0 → 0.1.6
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 +63 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# @agentpowers/cli
|
|
2
|
+
|
|
3
|
+
CLI for the [AgentPowers](https://agentpowers.ai) marketplace -- search, install, and manage Claude Code skills from your terminal.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
No install required. Run directly with `npx`:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @agentpowers/cli search "code review"
|
|
11
|
+
npx @agentpowers/cli install my-skill
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Or install globally:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @agentpowers/cli
|
|
18
|
+
agentpowers search "code review"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Commands
|
|
22
|
+
|
|
23
|
+
### `search <query>`
|
|
24
|
+
|
|
25
|
+
Search the AgentPowers marketplace for skills.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx @agentpowers/cli search "debugging"
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### `install <slug>`
|
|
32
|
+
|
|
33
|
+
Install a skill by its slug. Downloads the skill package and extracts it into your Claude Code skills directory (`~/.claude/skills/`).
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx @agentpowers/cli install my-skill
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Paid skills require authentication first (see `login` below).
|
|
40
|
+
|
|
41
|
+
### `login`
|
|
42
|
+
|
|
43
|
+
Authenticate with AgentPowers via your browser. Opens a login page and waits for you to complete sign-in.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npx @agentpowers/cli login
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Credentials are stored at `~/.agentpowers/auth.json`.
|
|
50
|
+
|
|
51
|
+
## Configuration
|
|
52
|
+
|
|
53
|
+
| Environment Variable | Description | Default |
|
|
54
|
+
|---|---|---|
|
|
55
|
+
| `AGENTPOWERS_API_URL` | API base URL | `https://api.agentpowers.ai` |
|
|
56
|
+
|
|
57
|
+
## Requirements
|
|
58
|
+
|
|
59
|
+
- Node.js >= 18
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
MIT
|