codemaxxing 0.4.17 → 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/dist/index.js CHANGED
@@ -79,11 +79,37 @@ const SLASH_COMMANDS = [
79
79
  ];
80
80
  const SPINNER_FRAMES = ["⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷"];
81
81
  const SPINNER_MESSAGES = [
82
+ // OG
82
83
  "Locking in...", "Cooking...", "Maxxing...", "In the zone...",
83
84
  "Yapping...", "Frame mogging...", "Jester gooning...", "Gooning...",
84
85
  "Doing back flips...", "Jester maxxing...", "Getting baked...",
85
86
  "Blasting tren...", "Pumping...", "Wondering if I should actually do this...",
86
87
  "Hacking the main frame...", "Codemaxxing...", "Vibe coding...", "Running a marathon...",
88
+ // Gym/Looksmaxxing
89
+ "Mewing aggressively...", "Looksmaxxing your codebase...", "Hitting a PR on this function...",
90
+ "Eating 4000 calories of code...", "Creatine loading...", "On my bulk arc...",
91
+ "Warming up the deadlift...",
92
+ // Brainrot/Skibidi
93
+ "Going full skibidi...", "Sigma grinding...", "Rizzing up the compiler...",
94
+ "No cap processing...", "Main character coding...", "It's giving implementation...",
95
+ "This code is bussin fr fr...", "Aura check in progress...", "Erm what the sigma...",
96
+ // Deranged/Unhinged
97
+ "Ascending to a higher plane...", "Achieving final form...", "Third eye compiling...",
98
+ "Astral projecting through your repo...", "Becoming one with the codebase...",
99
+ "Having a spiritual awakening...", "Entering the shadow realm...", "Going goblin mode...",
100
+ "Deleting System32... jk...", "Sacrificing tokens to the GPU gods...",
101
+ "Summoning the machine spirit...",
102
+ // Self-aware/Meta
103
+ "Pretending to think really hard...", "Staring at your code judgmentally...",
104
+ "Rethinking my career choices...", "Having an existential crisis...",
105
+ "Hoping this actually works...", "Praying to the stack overflow gods...",
106
+ "Copying from the internet with dignity...",
107
+ // Pure Chaos
108
+ "Doing hot yoga in the terminal...", "Microdosing your dependencies...",
109
+ "Running on 3 hours of sleep...", "Speedrunning your deadline...",
110
+ "Built different rn...", "That's crazy let me cook...",
111
+ "Absolutely feral right now...", "Ong no cap fr fr...",
112
+ "Living rent free in your RAM...", "Ate and left no crumbs...",
87
113
  ];
88
114
  // ── Neon Spinner ──
89
115
  function NeonSpinner({ message, colors }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemaxxing",
3
- "version": "0.4.17",
3
+ "version": "1.0.0",
4
4
  "description": "Open-source terminal coding agent. Connect any LLM. Max your code.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.tsx CHANGED
@@ -81,11 +81,37 @@ const SLASH_COMMANDS = [
81
81
  const SPINNER_FRAMES = ["⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷"];
82
82
 
83
83
  const SPINNER_MESSAGES = [
84
+ // OG
84
85
  "Locking in...", "Cooking...", "Maxxing...", "In the zone...",
85
86
  "Yapping...", "Frame mogging...", "Jester gooning...", "Gooning...",
86
87
  "Doing back flips...", "Jester maxxing...", "Getting baked...",
87
88
  "Blasting tren...", "Pumping...", "Wondering if I should actually do this...",
88
89
  "Hacking the main frame...", "Codemaxxing...", "Vibe coding...", "Running a marathon...",
90
+ // Gym/Looksmaxxing
91
+ "Mewing aggressively...", "Looksmaxxing your codebase...", "Hitting a PR on this function...",
92
+ "Eating 4000 calories of code...", "Creatine loading...", "On my bulk arc...",
93
+ "Warming up the deadlift...",
94
+ // Brainrot/Skibidi
95
+ "Going full skibidi...", "Sigma grinding...", "Rizzing up the compiler...",
96
+ "No cap processing...", "Main character coding...", "It's giving implementation...",
97
+ "This code is bussin fr fr...", "Aura check in progress...", "Erm what the sigma...",
98
+ // Deranged/Unhinged
99
+ "Ascending to a higher plane...", "Achieving final form...", "Third eye compiling...",
100
+ "Astral projecting through your repo...", "Becoming one with the codebase...",
101
+ "Having a spiritual awakening...", "Entering the shadow realm...", "Going goblin mode...",
102
+ "Deleting System32... jk...", "Sacrificing tokens to the GPU gods...",
103
+ "Summoning the machine spirit...",
104
+ // Self-aware/Meta
105
+ "Pretending to think really hard...", "Staring at your code judgmentally...",
106
+ "Rethinking my career choices...", "Having an existential crisis...",
107
+ "Hoping this actually works...", "Praying to the stack overflow gods...",
108
+ "Copying from the internet with dignity...",
109
+ // Pure Chaos
110
+ "Doing hot yoga in the terminal...", "Microdosing your dependencies...",
111
+ "Running on 3 hours of sleep...", "Speedrunning your deadline...",
112
+ "Built different rn...", "That's crazy let me cook...",
113
+ "Absolutely feral right now...", "Ong no cap fr fr...",
114
+ "Living rent free in your RAM...", "Ate and left no crumbs...",
89
115
  ];
90
116
 
91
117
  // ── Neon Spinner ──