claude-verbs 1.0.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 +14 -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 +38 -4
- package/src/verbs/got.json +100 -0
- package/src/verbs/index.js +2 -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,11 +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
|
+
| `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" |
|
|
43
45
|
|
|
44
46
|
## How it works
|
|
45
47
|
|
|
@@ -52,6 +54,13 @@ When you apply a theme, `claude-verbs` updates both:
|
|
|
52
54
|
|
|
53
55
|
`reset` restores both to their defaults.
|
|
54
56
|
|
|
57
|
+
## Uninstall
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npx claude-verbs reset
|
|
61
|
+
npm uninstall -g claude-verbs
|
|
62
|
+
```
|
|
63
|
+
|
|
55
64
|
## License
|
|
56
65
|
|
|
57
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",
|
|
@@ -59,14 +59,48 @@
|
|
|
59
59
|
"๐ถ Gurney-deploying ballads to production",
|
|
60
60
|
"๐ง Stilgar-counting tokens like drops of water",
|
|
61
61
|
"๐๏ธ Stilgar believes in you",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
62
|
+
"๐ถ Walking without rhythm to attract no bugs",
|
|
63
|
+
"โ Sapho juice loading...",
|
|
64
64
|
"๐ Twisted Mentat twisted the requirements again",
|
|
65
65
|
"๐จ Rabban-ing the database",
|
|
66
66
|
"๐ Baron floating through the codebase",
|
|
67
67
|
"๐ Rabban-forcing the prompt",
|
|
68
68
|
"๐ Rabban-ing without reasoning",
|
|
69
69
|
"๐ข Tuek-smuggling tokens past the context window",
|
|
70
|
-
"๐ง Hawat calculating..."
|
|
70
|
+
"๐ง Hawat calculating...",
|
|
71
|
+
"๐ I must not crash. Crash is the mind-killer.",
|
|
72
|
+
"โ Drinking the Water of Life to understand your code",
|
|
73
|
+
"๐ญ Reverend Mother decoding your intent",
|
|
74
|
+
"๐๏ธ Paul having visions of your output",
|
|
75
|
+
"๐ House Atreides would've approved this output",
|
|
76
|
+
"โ๏ธ Crysknife out",
|
|
77
|
+
"๐๏ธ Paul sees it",
|
|
78
|
+
"๐คซ Using the Voice",
|
|
79
|
+
"๐ต Playing the baliset",
|
|
80
|
+
"๐ Taking notes for Irulan",
|
|
81
|
+
"๐ Summoning the worm",
|
|
82
|
+
"๐๏ธ Reading the future",
|
|
83
|
+
"๐ง Thinking like a Mentat",
|
|
84
|
+
"๐๏ธ Finding the sietch",
|
|
85
|
+
"๐ก๏ธ Drawing the crysknife",
|
|
86
|
+
"๐ Serving the Emperor",
|
|
87
|
+
"๐ง Adding more spice",
|
|
88
|
+
"๐ค Negotiating with Fenring",
|
|
89
|
+
"๐ Reading Irulan's diary",
|
|
90
|
+
"๐คท Duncan Idaho died for this",
|
|
91
|
+
"โ Adding more spice to the coffee",
|
|
92
|
+
"๐ก๏ธ Fighting without a shield",
|
|
93
|
+
"๐ฆ Entering the arena with Harkonnen",
|
|
94
|
+
"๐ช Never sitting with back to the door",
|
|
95
|
+
"๐คซ Talking with fingers",
|
|
96
|
+
"๐ No need for Uber, we have sandworms",
|
|
97
|
+
"โจ Kul wahad!",
|
|
98
|
+
"โ๏ธ Ya hya chouhada!",
|
|
99
|
+
"๐
Subakh ul kuhar",
|
|
100
|
+
"โ๏ธ Haiiiii-yoh!",
|
|
101
|
+
"๐ง soo-soo-sook!",
|
|
102
|
+
"๐๏ธ Lisan al-gaib!",
|
|
103
|
+
"๐ Harq al-Ada",
|
|
104
|
+
"โ๏ธ Ya Hya Chouhada!"
|
|
71
105
|
]
|
|
72
106
|
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Game of Thrones",
|
|
3
|
+
"id": "got",
|
|
4
|
+
"verbs": [
|
|
5
|
+
"๐ก๏ธ What do we say to PO? Not today.",
|
|
6
|
+
"โ๏ธ You know nothing, vibe coder",
|
|
7
|
+
"๐ Claiming the Iron Throne",
|
|
8
|
+
"๐ฆ Paying technical debts",
|
|
9
|
+
"๐งฏ Surviving wildfire in staging",
|
|
10
|
+
"๐ง Playing the game of nodes",
|
|
11
|
+
"๐ฌ๏ธ Winter is compiling",
|
|
12
|
+
"๐ญ A man has no context",
|
|
13
|
+
"๐ฐ Borrowing some tokens from Tywin",
|
|
14
|
+
"๐ญ whispering your name to Jaqen",
|
|
15
|
+
"๐ Valar Debughulis.",
|
|
16
|
+
"๐ง Not today, production.",
|
|
17
|
+
"๐บ The backlog remembers.",
|
|
18
|
+
"๐ท๏ธ Whispering secrets to the CI.",
|
|
19
|
+
"๐ The sprint is coming.",
|
|
20
|
+
"๐ช Hold the deploy.",
|
|
21
|
+
"๐ฐ Rebuilding the Wall with hotfixes",
|
|
22
|
+
"๐ช Hodor blocking main loop",
|
|
23
|
+
"๐ Valar Debughulis.",
|
|
24
|
+
"๐งญ The night is dark and full of errors.",
|
|
25
|
+
"๐น Executing the Night's Watch (on logs)",
|
|
26
|
+
"๐ Shame! Shame! Shame! (on failed build)",
|
|
27
|
+
"๐ธ Paying the Iron Tokens for a feature",
|
|
28
|
+
"๐ฆถ Littlefinger's backdoor detected",
|
|
29
|
+
"๐ช Hodoring...",
|
|
30
|
+
"๐งโโ๏ธ Melisandre's red-hotfixes",
|
|
31
|
+
"๐ Dracarys-ing..",
|
|
32
|
+
"โ๏ธ My watch begins",
|
|
33
|
+
"๐ค Consulting the Hand",
|
|
34
|
+
"๐น Gathering the Crows",
|
|
35
|
+
"๐ฅ Trial by Fire",
|
|
36
|
+
"๐ก๏ธ Executing the Bug",
|
|
37
|
+
"๐ฏ๏ธ Small Council Meeting",
|
|
38
|
+
"๐ฅ Cersei-ing",
|
|
39
|
+
"๐ Bug isn't a pit. Bug is a ladder.",
|
|
40
|
+
"๐ Leave one skill alive and the sheep are never safe",
|
|
41
|
+
"โ๏ธ An AI is not a slave",
|
|
42
|
+
"๐ I am a Khaleesi of the AI",
|
|
43
|
+
"๐ฆ As long as I'm better than everyone else I suppose it doesn't matter.",
|
|
44
|
+
"โ๏ธ If I fall, don't bring me back.",
|
|
45
|
+
"๐ก๏ธ An AI needs practice like a sword needs a whetstone",
|
|
46
|
+
"๐ฐ I'm quite good at spending tokens",
|
|
47
|
+
"๐ท That's what I do. I consume tokens and I know things.",
|
|
48
|
+
"๐ Any man who must say, I am the Senior, is no true Senior.",
|
|
49
|
+
"โ๏ธ Kill the junior and let the senior be born.",
|
|
50
|
+
"โค๏ธ Doing things for love.",
|
|
51
|
+
"๐ Are you a junior? No, you're a dev. Ship it.",
|
|
52
|
+
"๐ต๏ธ Power resides where the PM believes it resides.",
|
|
53
|
+
"๐ Littlefinger is fingering codebase",
|
|
54
|
+
"๐๏ธ Bran watching",
|
|
55
|
+
"๐ Targaryening",
|
|
56
|
+
"๐ฅ Wildfire in the dependency tree",
|
|
57
|
+
"๐ The Red Wedding was smoother than this merge",
|
|
58
|
+
"๐คด Joffrey rejected your PR",
|
|
59
|
+
"๐ค Ramsay found a bug (and he's happy about it)",
|
|
60
|
+
"๐น Handing Oberyn his spear",
|
|
61
|
+
"โ๏ธ Marching to Battle of the Bastards",
|
|
62
|
+
"๐ Breaking the chains in Meereen",
|
|
63
|
+
"๐ Walking the Walk of Shame with you",
|
|
64
|
+
"๐ Looking for chicken for The Hound",
|
|
65
|
+
"โ๏ธ Someone's tapping your shoulder (it's the Night King)",
|
|
66
|
+
"๐งฑ Peeing from the top of the Wall",
|
|
67
|
+
"๐ฅ Rhaenyra and Alicent arguing in the PR comments",
|
|
68
|
+
"๐๏ธ Aemond lost an eye, but gained a feature",
|
|
69
|
+
"๐คด Scheduling unnecessary meetings with Otto",
|
|
70
|
+
"โ๏ธ Dunk has no idea what he's doing",
|
|
71
|
+
"๐ฅ Egg knows but won't say",
|
|
72
|
+
"๐ง Thinking with Dunk",
|
|
73
|
+
"๐คด Criston Cole rejected your prompt personally",
|
|
74
|
+
"๐ฅ Rhaenyra opened a prompt, Alicent closed it",
|
|
75
|
+
"๐งต Rhaena and Baela arguing about token limits",
|
|
76
|
+
"๐ Daemon claiming your codebase (uninvited)",
|
|
77
|
+
"๐ Dorne doesn't care about your deadline",
|
|
78
|
+
"๐น Unbowed, Unbent, Undeployed",
|
|
79
|
+
"๐ธ Growing roses in the dependency garden",
|
|
80
|
+
"๐ฆ Stannis calculating the rightful merge",
|
|
81
|
+
"๐ธ Olenna poisoning the bad code",
|
|
82
|
+
"๐ธ Highgarden has better documentation",
|
|
83
|
+
"โก Renly's PR had more supporters",
|
|
84
|
+
"๐ Family, Duty, Honor, Deploy",
|
|
85
|
+
"๐ Walder Frey reviewing the guest PRs",
|
|
86
|
+
"๐ฌ๏ธ Bungee jumping in the Moon Door",
|
|
87
|
+
"๐ Slapping Joffrey",
|
|
88
|
+
"๐บ Celebrating with Robert Baratheon",
|
|
89
|
+
"๐ฆ Delivering ravens",
|
|
90
|
+
"๐ฃ Fishing with Tywin",
|
|
91
|
+
"๐ฒ Cooking for Samwell",
|
|
92
|
+
"๐ Consulting the Citadel archives",
|
|
93
|
+
"๐ฅ Khal Drogo melting the tokens",
|
|
94
|
+
"๐ Three dragons, zero unit tests",
|
|
95
|
+
"๐ฅ Cooking dragon eggs (sunny side up)",
|
|
96
|
+
"๐ค Serving as your Hand",
|
|
97
|
+
"๐ณ Yes, my lor... oh.. milord",
|
|
98
|
+
"๐ Senior Dev, Principal Engineer, Breaker of Bugs... just Claude Code"
|
|
99
|
+
]
|
|
100
|
+
}
|
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",
|