claude-verbs 0.2.0 → 1.0.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 +12 -2
- package/bin/cli.js +1 -1
- package/package.json +10 -2
- package/src/verbs/lotr.json +1 -1
package/README.md
CHANGED
|
@@ -2,17 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
Changes the spinner words Claude Code shows while it's thinking. Pick a theme, make it fun.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
Works with both **Claude Code CLI** and the **VSCode Claude extension**.
|
|
6
8
|
|
|
7
9
|
## Usage
|
|
8
10
|
|
|
11
|
+
🚀 Just run this command:
|
|
12
|
+
|
|
9
13
|
```bash
|
|
10
14
|
npx claude-verbs
|
|
11
15
|
```
|
|
12
16
|
|
|
13
|
-
|
|
17
|
+
A menu will open — use arrow keys to pick a theme and press Enter.
|
|
18
|
+
|
|
19
|
+

|
|
20
|
+
|
|
21
|
+
✅ That's it.
|
|
22
|
+
|
|
23
|
+
---
|
|
14
24
|
|
|
15
|
-
|
|
25
|
+
Optionally, use CLI commands directly:
|
|
16
26
|
|
|
17
27
|
```bash
|
|
18
28
|
npx claude-verbs list # List available themes
|
package/bin/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-verbs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Change Claude Code spinner verbs with themed word sets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -16,7 +16,15 @@
|
|
|
16
16
|
"claude-code",
|
|
17
17
|
"spinner",
|
|
18
18
|
"verbs",
|
|
19
|
-
"
|
|
19
|
+
"ai",
|
|
20
|
+
"spinner-verbs",
|
|
21
|
+
"anthropic",
|
|
22
|
+
"themes",
|
|
23
|
+
"star-wars",
|
|
24
|
+
"matrix",
|
|
25
|
+
"Dune",
|
|
26
|
+
"lord-of-the-rings",
|
|
27
|
+
"breaking-bad"
|
|
20
28
|
],
|
|
21
29
|
"author": "Samet Acar <sametacarsamet@gmail.com>",
|
|
22
30
|
"license": "MIT",
|
package/src/verbs/lotr.json
CHANGED