clawsouls 0.2.8 → 0.2.9

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 (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🧠 ClawSouls CLI v0.2.7
1
+ # 🧠 ClawSouls CLI v0.2.8
2
2
 
3
3
  **Give your AI a soul.** Install, manage, and switch AI agent personas for [OpenClaw](https://github.com/openclaw/openclaw).
4
4
 
@@ -15,10 +15,10 @@ Browse available souls at [clawsouls.ai](https://clawsouls.ai).
15
15
 
16
16
  ```bash
17
17
  # Install a soul (owner/name format)
18
- npx clawsouls install clawsouls/brad
18
+ npx clawsouls install clawsouls/surgical-coder
19
19
 
20
20
  # Activate it (backs up your current workspace)
21
- npx clawsouls use brad
21
+ npx clawsouls use surgical-coder
22
22
 
23
23
  # Restart your OpenClaw session — done!
24
24
  ```
@@ -49,15 +49,15 @@ Creates a directory with `soul.json`, `SOUL.md`, `IDENTITY.md`, `AGENTS.md`, `HE
49
49
 
50
50
  ### `clawsouls install <owner/name[@version]>`
51
51
 
52
- Download and install a soul from the registry. Uses `owner/name` format (e.g., `clawsouls/brad`). Optionally specify a version with `@version` (e.g., `clawsouls/brad@0.1.0`). Without a version, installs the latest.
52
+ Download and install a soul from the registry. Uses `owner/name` format (e.g., `clawsouls/surgical-coder`). Optionally specify a version with `@version` (e.g., `clawsouls/surgical-coder@0.1.0`). Without a version, installs the latest.
53
53
 
54
54
  The install command tries the API first (`/api/v1/souls/:owner/:name?files=true`), falls back to CDN if unavailable, and auto-generates `soul.json` if missing from the response.
55
55
 
56
56
  ```bash
57
57
  clawsouls install clawsouls/minimalist
58
58
  clawsouls install clawsouls/devops-veteran
59
- clawsouls install clawsouls/brad --force # overwrite existing
60
- clawsouls install clawsouls/brad@0.1.0 # specific version
59
+ clawsouls install clawsouls/surgical-coder --force # overwrite existing
60
+ clawsouls install clawsouls/surgical-coder@0.1.0 # specific version
61
61
  ```
62
62
 
63
63
  ### `clawsouls use <name>`
@@ -145,7 +145,7 @@ Popular picks:
145
145
 
146
146
  | Soul | Category | Description |
147
147
  |------|----------|-------------|
148
- | 🅱️ **Brad** | Engineering | Formal, project-focused development partner |
148
+ | 🔬 **Surgical Coder** | Engineering | Karpathy-inspired surgical coding precision |
149
149
  | 🔬 **Surgical Coder** | Engineering | Disciplined coding agent inspired by Karpathy's CLAUDE.md |
150
150
  | 🔧 **DevOps Veteran** | DevOps | Battle-scarred infrastructure engineer |
151
151
  | 🎮 **GameDev Mentor** | Game Dev | Experienced game developer and mentor |
@@ -177,7 +177,7 @@ The spec is open — see [Soul Spec](https://github.com/clawsouls/clawsouls/blob
177
177
  ```
178
178
  ┌──────────────────┐ install ┌──────────────┐
179
179
  │ clawsouls.ai │ ───────────→ │ ~/.openclaw/ │
180
- │ (API Registry) │ GET /api/ │ souls/brad/ │
180
+ │ (API Registry) │ GET /api/ │ souls/surgical-coder/ │
181
181
  └──────────────────┘ v1/souls/ └──────┬───────┘
182
182
  ▲ owner/name │ use
183
183
  │ ▼
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsouls",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "CLI for ClawSouls — AI agent persona sharing platform",
5
5
  "main": "dist/index.js",
6
6
  "bin": {