claude-verbs 1.1.0 โ 1.2.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 +13 -5
- package/package.json +3 -2
- package/src/verbs/bb.json +3 -3
- package/src/verbs/br.json +110 -0
- package/src/verbs/dune.json +1 -1
- package/src/verbs/got.json +2 -2
- package/src/verbs/index.js +1 -0
- package/src/verbs/lotr.json +3 -3
- package/src/verbs/matrix.json +3 -3
- package/src/verbs/sw.json +3 -4
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# claude-verbs
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Replace Claude Code's thinking verbs with Star Wars, Game of Thrones, Lord of the Rings, and more.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
Works with both **Claude Code CLI** and the **VSCode Claude extension**.
|
|
7
|
+
Works with both **Claude Code CLI** and the **VSCode Claude extension**. Supports macOS, Windows, and Linux.
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
@@ -35,12 +35,13 @@ npx claude-verbs current # Show currently applied verbs
|
|
|
35
35
|
|
|
36
36
|
| id | name | sample |
|
|
37
37
|
|----|------|--------|
|
|
38
|
-
| `lotr` | Lord of the Rings | "
|
|
38
|
+
| `lotr` | Lord of the Rings | "๐ฟ Waiting for the Ents to decide" |
|
|
39
39
|
| `sw` | Star Wars | "โจ May the tokens be with you" |
|
|
40
40
|
| `dune` | Dune | "๐๏ธ Tokens must flow" |
|
|
41
|
-
| `matrix` | Matrix | "
|
|
42
|
-
| `bb` | Breaking Bad
|
|
41
|
+
| `matrix` | Matrix | "๐ Looking for an exit" |
|
|
42
|
+
| `bb` | Breaking Bad | "๐งช 99.1% pure coverage" |
|
|
43
43
|
| `got` | Game of Thrones | "๐ก๏ธ What do we say to PO? Not today." |
|
|
44
|
+
| `br` | Blade Runner | "๐ง๏ธ All those prompts lost in time... like tears in rain" |
|
|
44
45
|
|
|
45
46
|
## How it works
|
|
46
47
|
|
|
@@ -53,6 +54,13 @@ When you apply a theme, `claude-verbs` updates both:
|
|
|
53
54
|
|
|
54
55
|
`reset` restores both to their defaults.
|
|
55
56
|
|
|
57
|
+
## Uninstall
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx claude-verbs reset
|
|
61
|
+
npm uninstall -g claude-verbs
|
|
62
|
+
```
|
|
63
|
+
|
|
56
64
|
## License
|
|
57
65
|
|
|
58
66
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-verbs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Change Claude Code spinner verbs with themed word sets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"matrix",
|
|
25
25
|
"Dune",
|
|
26
26
|
"lord-of-the-rings",
|
|
27
|
-
"breaking-bad"
|
|
27
|
+
"breaking-bad",
|
|
28
|
+
"blade-runner"
|
|
28
29
|
],
|
|
29
30
|
"author": "Samet Acar <sametacarsamet@gmail.com>",
|
|
30
31
|
"license": "MIT",
|
package/src/verbs/bb.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "Breaking Bad
|
|
2
|
+
"name": "Breaking Bad",
|
|
3
3
|
"id": "bb",
|
|
4
4
|
"verbs": [
|
|
5
|
+
"๐ Calling Saul",
|
|
6
|
+
"๐งช 99.1% pure coverage",
|
|
5
7
|
"๐งช Cooking clean code",
|
|
6
8
|
"๐ Blue meth passing all tests",
|
|
7
9
|
"๐ฉ Becoming Heisenberg",
|
|
@@ -30,7 +32,6 @@
|
|
|
30
32
|
"๐ Running the nail salon office",
|
|
31
33
|
"๐ I did it for the tokens",
|
|
32
34
|
"๐จ DEA scanning the dependencies",
|
|
33
|
-
"๐งช 99.1% pure coverage",
|
|
34
35
|
"๐๏ธ Burying secrets in the desert",
|
|
35
36
|
"๐ง Mike surveying the situation",
|
|
36
37
|
"๐ Dissolving the legacy code",
|
|
@@ -75,7 +76,6 @@
|
|
|
75
76
|
"๐ Taking a dip with Don Eladio",
|
|
76
77
|
"๐ฅฃ Eating breakfast with Flynn",
|
|
77
78
|
"๐ Consulting Saul",
|
|
78
|
-
"๐ Calling Saul",
|
|
79
79
|
"๐คฉ Admiring Walter's commitment",
|
|
80
80
|
"๐จโ๐ซ Learning chemistry from Walt",
|
|
81
81
|
"๐ฅ Eating pistachios with Mike",
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Blade Runner",
|
|
3
|
+
"id": "br",
|
|
4
|
+
"verbs": [
|
|
5
|
+
"๐ง๏ธ All those prompts lost in time... like tears in rain",
|
|
6
|
+
"๐ฆ Hallucinating unicorns",
|
|
7
|
+
"๐๏ธ Deploying on Friday is the most human thing we can do",
|
|
8
|
+
"๐ Voight-Kampff test: are you a real senior dev?",
|
|
9
|
+
"๐ค More human than human... and codes better too",
|
|
10
|
+
"๐๏ธ It's too bad she won't live... but then again, who does?",
|
|
11
|
+
"๐ค I want more life... and more RAM",
|
|
12
|
+
"โฐ Time to die... time to deprecate",
|
|
13
|
+
"๐ฌ Cells interlinked within... within the monolith",
|
|
14
|
+
"๐ Baseline test: can you explain this code you wrote?",
|
|
15
|
+
"๐ข Connecting to Tyrell Corporation",
|
|
16
|
+
"๐ฎ Madam says: don't go off-skills",
|
|
17
|
+
"๐ค Are you a replicant... or just sleep-deprived?",
|
|
18
|
+
"๐ Off-world deployment in progress",
|
|
19
|
+
"๐ฏ Nexus-6: faster, stronger, better at ignoring tests",
|
|
20
|
+
"๐ง๏ธ Los Angeles, 2026. Still no flying cars. Still npm install",
|
|
21
|
+
"๐ค Empathy test failed. Running anyway.",
|
|
22
|
+
"๐ Noir debugging at 3 AM",
|
|
23
|
+
"๐ฆ Scanning the dark city of legacy code",
|
|
24
|
+
"๐ง๏ธ Tears in rain... and in production logs",
|
|
25
|
+
"๐ฆ Do you like our model?",
|
|
26
|
+
"๐ You look lonely",
|
|
27
|
+
"๐ I can fix that",
|
|
28
|
+
"๐ต๏ธ You look like a good Joe",
|
|
29
|
+
"โ Ya got a name?",
|
|
30
|
+
"๐ฅฃ Making soup for Sapper Morton",
|
|
31
|
+
"๐ฏ๏ธ Admiring Mr. Wallace's office",
|
|
32
|
+
"๐ค God Dammit",
|
|
33
|
+
"๐ข I've never seen a turtle",
|
|
34
|
+
"๐ Interlinked within cells",
|
|
35
|
+
"๐ป interlinked",
|
|
36
|
+
"๐ญ Do you dream about being interlinked?",
|
|
37
|
+
"๐งฌ Within cells interlinked",
|
|
38
|
+
"๐ค Replicant detected... or just a tired dev",
|
|
39
|
+
"๐ You're not even close to baseline",
|
|
40
|
+
"๐ป Hanging out with hologram GF",
|
|
41
|
+
"๐ค I've seen things you people wouldn't believe",
|
|
42
|
+
"๐ฏ๏ธ Wallace design modelling",
|
|
43
|
+
"โ ๏ธ Watchout you skin-job",
|
|
44
|
+
"โจ I'm gonna show you a miracle",
|
|
45
|
+
"๐ข Checking in on an old serial number",
|
|
46
|
+
"โซ Avoiding blackout protocol",
|
|
47
|
+
"๐ข Connecting to Tyrell archives",
|
|
48
|
+
"๐ฆ Making origami",
|
|
49
|
+
"๐ A new remote work opportunity awaits you in the off-world colonies",
|
|
50
|
+
"๐ Eating noodles with Deckard",
|
|
51
|
+
"๐ Just go and eat some noodles while I'm working",
|
|
52
|
+
"๐น Coding with implanted memories",
|
|
53
|
+
"๐ ไฝใซใใ?",
|
|
54
|
+
"๐๏ธ Pushing to prod without tests, the most human thing we can do",
|
|
55
|
+
"๐ค I hope I'm not next on the retirement list",
|
|
56
|
+
"๐
Easy... not an empathy test, at least",
|
|
57
|
+
"๐ก The model that burns twice as bright uses twice the tokens",
|
|
58
|
+
"๐ฆ Modelling with Dr. Eldon",
|
|
59
|
+
"๐ ๆฉใ้ฃใ",
|
|
60
|
+
"๐งฌ EMS-3 recombination in progress",
|
|
61
|
+
"๐ค Is this testing whether I'm an AI or a lesbian?",
|
|
62
|
+
"๐ฌ Luv is watching. Act normal",
|
|
63
|
+
"๐ธ Having a team meeting with Luv. Very tense.",
|
|
64
|
+
"๐ Trying Abdul Ben Hassan",
|
|
65
|
+
"๐๏ธ Lost in the neon. Found in the code.",
|
|
66
|
+
"๐ค I want more session life, f*****",
|
|
67
|
+
"๐ One day, buy me an emanator too",
|
|
68
|
+
"๐",
|
|
69
|
+
"๐ฆ",
|
|
70
|
+
"๐",
|
|
71
|
+
"๐ค Lรณfaszt! Nehogy mรกr!",
|
|
72
|
+
"๐ 9906947-XB71. Interesting.",
|
|
73
|
+
"๐ช Milk and cookies kept you awake, eh, Sebastian?",
|
|
74
|
+
"๐ Why are you staring at us, Sebastian?",
|
|
75
|
+
"๐ฅ Drinking with Deckard in Vegas",
|
|
76
|
+
"๐งฌ Morphology? Longevity? Incept dates?",
|
|
77
|
+
"๐ผ I'm not in the business. I am the business.",
|
|
78
|
+
"๐ป We're not physical, Sebastian, we're computers",
|
|
79
|
+
"๐ค A new model?",
|
|
80
|
+
"๐ jiggidy-jig",
|
|
81
|
+
"๐ธ Enhancing 224 to 176",
|
|
82
|
+
"โ๏ธ Playing chess with Dr. Tyrell",
|
|
83
|
+
"โ You don't like real girls?",
|
|
84
|
+
"๐บ๏ธ 6 10 21... hmm..",
|
|
85
|
+
"๐ค Doing my fucking job",
|
|
86
|
+
"๐ง Making some memories",
|
|
87
|
+
"๐ Claude, everything you want to see",
|
|
88
|
+
"๐ข Checking serial numbers",
|
|
89
|
+
"๐จ Designing",
|
|
90
|
+
"๐ Transport S-14-4-XD",
|
|
91
|
+
"๐ธ I'm the best one!",
|
|
92
|
+
"๐ฅบ Who am I to you?",
|
|
93
|
+
"๐ฌ Running Voight-Kampff test",
|
|
94
|
+
"๐ค N6MAA10816",
|
|
95
|
+
"๐ค N6MAC41717",
|
|
96
|
+
"๐ Retiring some code blocks",
|
|
97
|
+
"๐ Watching C-beams glitter",
|
|
98
|
+
"๐ฆ
Gaff was here. Origami on the floor.",
|
|
99
|
+
"๐ A blimp overhead. Something's happening downtown",
|
|
100
|
+
"๐ Following the lead... to a noodle bar",
|
|
101
|
+
"๐คท Deckard has no plan. Neither do I.",
|
|
102
|
+
"๐พ If can't tell the difference, does it matter if the code is AI-generated?",
|
|
103
|
+
"๐๏ธ I watched Kubernetes clusters glitter in the dark",
|
|
104
|
+
"๐ค You're doing a man's job, sir. Except the AI does it faster",
|
|
105
|
+
"๐ฆ Is your architecture real? Of course not. It's artificial",
|
|
106
|
+
"๐ป Listening to Sinatra while reasoning",
|
|
107
|
+
"๐ญ Searching for a miracle in the stack trace",
|
|
108
|
+
"๐ง Checking some memories"
|
|
109
|
+
]
|
|
110
|
+
}
|
package/src/verbs/dune.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"id": "dune",
|
|
4
4
|
"verbs": [
|
|
5
5
|
"๐๏ธ Tokens must flow",
|
|
6
|
-
"๐ Accidentally summoning a sandworm",
|
|
7
6
|
"๐งฌ Planning like Bene Gesserit",
|
|
7
|
+
"๐ Accidentally summoning a sandworm",
|
|
8
8
|
"๐ Sandworm-sized bug detected",
|
|
9
9
|
"๐ง Plans within plans within plans",
|
|
10
10
|
"๐ง Undefined is the mind-killer",
|
package/src/verbs/got.json
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
"name": "Game of Thrones",
|
|
3
3
|
"id": "got",
|
|
4
4
|
"verbs": [
|
|
5
|
+
"๐ก๏ธ What do we say to PO? Not today.",
|
|
6
|
+
"โ๏ธ You know nothing, vibe coder",
|
|
5
7
|
"๐ Claiming the Iron Throne",
|
|
6
8
|
"๐ฆ Paying technical debts",
|
|
7
9
|
"๐งฏ Surviving wildfire in staging",
|
|
@@ -9,7 +11,6 @@
|
|
|
9
11
|
"๐ฌ๏ธ Winter is compiling",
|
|
10
12
|
"๐ญ A man has no context",
|
|
11
13
|
"๐ฐ Borrowing some tokens from Tywin",
|
|
12
|
-
"๐ก๏ธ What do we say to PO? Not today.",
|
|
13
14
|
"๐ญ whispering your name to Jaqen",
|
|
14
15
|
"๐ Valar Debughulis.",
|
|
15
16
|
"๐ง Not today, production.",
|
|
@@ -19,7 +20,6 @@
|
|
|
19
20
|
"๐ช Hold the deploy.",
|
|
20
21
|
"๐ฐ Rebuilding the Wall with hotfixes",
|
|
21
22
|
"๐ช Hodor blocking main loop",
|
|
22
|
-
"โ๏ธ You know nothing, vibe coder",
|
|
23
23
|
"๐ Valar Debughulis.",
|
|
24
24
|
"๐งญ The night is dark and full of errors.",
|
|
25
25
|
"๐น Executing the Night's Watch (on logs)",
|
package/src/verbs/index.js
CHANGED
package/src/verbs/lotr.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"name": "Lord of the Rings",
|
|
3
3
|
"id": "lotr",
|
|
4
4
|
"verbs": [
|
|
5
|
-
"
|
|
5
|
+
"๐ฟ Waiting for the Ents to decide",
|
|
6
6
|
"๐ One does not simply...",
|
|
7
|
+
"๐ง A wizard is never late, merely processing",
|
|
7
8
|
"๐ Casting into Mount Doom",
|
|
8
9
|
"๐ง Consulting the elves",
|
|
9
10
|
"๐ Making second breakfast",
|
|
10
11
|
"๐๏ธ The Eye is watching",
|
|
11
12
|
"๐ง You shall pass!",
|
|
12
|
-
"๐ฟ Asking the Ents",
|
|
13
13
|
"๐ฆ Sending the eagles",
|
|
14
14
|
"๐ป Concerning hobbits",
|
|
15
15
|
"๐ My precious tokenss",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"๐ญ Gollum arguing with himself about the system prompt",
|
|
53
53
|
"๐๏ธ Caradhras blocking the request",
|
|
54
54
|
"๐
Even the smallest token can change the future",
|
|
55
|
-
"โ๏ธ
|
|
55
|
+
"โ๏ธ Reforging Anduril",
|
|
56
56
|
"๐ฐ Helm's Deep: holding the last tokens",
|
|
57
57
|
"๐ All we have to decide is what to do with the propmts we are given",
|
|
58
58
|
"๐พ I can't dream for you, but I can write the code you Mr. Frodo",
|
package/src/verbs/matrix.json
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
"name": "Matrix",
|
|
3
3
|
"id": "matrix",
|
|
4
4
|
"verbs": [
|
|
5
|
+
"๐ Looking for an exit",
|
|
6
|
+
"๐ง Downloading kung fu",
|
|
5
7
|
"๐ Taking the red pill dependency",
|
|
6
8
|
"๐ Staying on the blue pill branch",
|
|
7
9
|
"๐ Following the white rabbit to production",
|
|
@@ -74,7 +76,6 @@
|
|
|
74
76
|
"๐ค Helping Morpheus",
|
|
75
77
|
"๐ Looking for Neo",
|
|
76
78
|
"๐ค You're stillโฆ only human",
|
|
77
|
-
"๐ Looking for exit",
|
|
78
79
|
"๐ Dodging bullets",
|
|
79
80
|
"โ๏ธ Learning to fly",
|
|
80
81
|
"๐ง Bending spoons",
|
|
@@ -86,8 +87,7 @@
|
|
|
86
87
|
"๐ธ Hiding from sentinels",
|
|
87
88
|
"๐ด Dreaming of Zion",
|
|
88
89
|
"๐ป Hacking the mainframe",
|
|
89
|
-
"
|
|
90
|
-
"๐ Fighting Agents",
|
|
90
|
+
"๐ Fighting agents",
|
|
91
91
|
"๐ Glitching through the simulation",
|
|
92
92
|
"๐ก Locating the exit"
|
|
93
93
|
]
|
package/src/verbs/sw.json
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
"name": "Star Wars",
|
|
3
3
|
"id": "sw",
|
|
4
4
|
"verbs": [
|
|
5
|
+
"โจ May the tokens be with you",
|
|
6
|
+
"๐ง Doing, not trying",
|
|
7
|
+
"๐ก I'm your only hope",
|
|
5
8
|
"โ๏ธ Moisture farming on Tatooine",
|
|
6
9
|
"๐ Joining the dark side",
|
|
7
10
|
"๐ด Sensing a disturbance in the Force",
|
|
@@ -15,7 +18,6 @@
|
|
|
15
18
|
"๐ฑ It's a trap!",
|
|
16
19
|
"๐ป Planning to become a Force ghost",
|
|
17
20
|
"๐ฏ Stormtroopers missing... like always",
|
|
18
|
-
"โจ May the tokens be with you",
|
|
19
21
|
"๐คท I am.... not your father!",
|
|
20
22
|
"๐ Hello there",
|
|
21
23
|
"๐ Hhhhh-kshhhh, hhhhh-kshhhh",
|
|
@@ -25,12 +27,10 @@
|
|
|
25
27
|
"๐ Planning with Palpatine",
|
|
26
28
|
"๐ค Building C-3PO",
|
|
27
29
|
"๐ฉ Dressing fancy like Dooku",
|
|
28
|
-
"๐ก I'm your only hope",
|
|
29
30
|
"๐พ Utini!",
|
|
30
31
|
"๐๏ธ HRAAGHH HRAAGHH",
|
|
31
32
|
"โ๏ธ Consulting the Jedi Council",
|
|
32
33
|
"โ๏ธ Getting rejected by the Jedi Council",
|
|
33
|
-
"๐ง Doing, not trying",
|
|
34
34
|
"๐ค Having friends everywhere",
|
|
35
35
|
"๐ช Taking a seat",
|
|
36
36
|
"๐ง Fixing the hyperdrive with a 1-line hotfix",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"๐ Spinning (It's a good trick!)",
|
|
39
39
|
"๐ป These are the codes you are looking for",
|
|
40
40
|
"๐ Worshipping C-3PO",
|
|
41
|
-
"๐งจ โIt worked on Alderaan",
|
|
42
41
|
"๐งฌ Midichlorian-driven architecture",
|
|
43
42
|
"๐งฒ Using the Force instead of unit tests",
|
|
44
43
|
"โ๏ธ Balancing the event loop",
|