@clawpow/cli 0.1.0 → 0.1.5
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 +62 -0
- package/package.json +4 -8
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @clawpow/cli
|
|
2
|
+
|
|
3
|
+
Superpowers for your AI agents. ClawPow turns any AI coding agent into a specialist — designer, marketer, social media manager — by giving it structured context and purpose-built tools.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @clawpow/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or run directly:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx @clawpow/cli setup
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
clawpow setup
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The setup wizard walks you through:
|
|
24
|
+
|
|
25
|
+
1. **Authenticate** — sign in via your browser
|
|
26
|
+
2. **Select superskills** — choose which capabilities to enable (social media, design, etc.)
|
|
27
|
+
3. **Connect accounts** — link your platforms (X/Twitter, LinkedIn, etc.)
|
|
28
|
+
4. **Install skills** — write skill files for your AI agents
|
|
29
|
+
|
|
30
|
+
## Commands
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
clawpow setup Set up ClawPow for your AI agents
|
|
34
|
+
clawpow auth login Authenticate with ClawPow
|
|
35
|
+
clawpow auth status Show current authentication status
|
|
36
|
+
clawpow auth logout Log out and clear stored credentials
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Supported Agents
|
|
40
|
+
|
|
41
|
+
ClawPow installs skill files for these AI coding agents:
|
|
42
|
+
|
|
43
|
+
- Claude Code
|
|
44
|
+
- Cursor
|
|
45
|
+
- Codex
|
|
46
|
+
- OpenClaw
|
|
47
|
+
- GitHub Copilot
|
|
48
|
+
|
|
49
|
+
Skills can be installed globally (`~/.claude/skills/`, etc.) or per-project.
|
|
50
|
+
|
|
51
|
+
## How Authentication Works
|
|
52
|
+
|
|
53
|
+
ClawPow uses browser-based authentication — no passwords in the terminal.
|
|
54
|
+
|
|
55
|
+
1. `clawpow auth login` opens your browser
|
|
56
|
+
2. You sign in and authorize the CLI
|
|
57
|
+
3. A token is saved locally at `~/.clawpow/credentials.json`
|
|
58
|
+
4. Tokens expire after 90 days
|
|
59
|
+
|
|
60
|
+
## Requirements
|
|
61
|
+
|
|
62
|
+
- Node.js 18+
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clawpow/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "ClawPow CLI — Superpowers for your AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"clawpow": "./dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist"
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
11
12
|
],
|
|
12
13
|
"engines": {
|
|
13
14
|
"node": ">=18"
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
"build": "tsc",
|
|
17
18
|
"dev": "tsc --watch",
|
|
18
19
|
"start": "node dist/index.js",
|
|
19
|
-
"
|
|
20
|
+
"release": "bun run build && npm publish --ignore-scripts"
|
|
20
21
|
},
|
|
21
22
|
"keywords": [
|
|
22
23
|
"cli",
|
|
@@ -26,11 +27,6 @@
|
|
|
26
27
|
"superskills"
|
|
27
28
|
],
|
|
28
29
|
"license": "MIT",
|
|
29
|
-
"repository": {
|
|
30
|
-
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/SeriousPeople/clawpow.git",
|
|
32
|
-
"directory": "apps/clawpow-cli"
|
|
33
|
-
},
|
|
34
30
|
"publishConfig": {
|
|
35
31
|
"access": "public"
|
|
36
32
|
},
|