@umang-boss/claudemon 1.1.4 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Claudemon
2
2
 
3
- > Pokemon Gen 1 coding companion for Claude Code -- Gotta code 'em all!
3
+ > Pokemon coding companion for Claude Code -- Gotta code 'em all!
4
4
 
5
5
  ## What is Claudemon?
6
6
 
@@ -10,7 +10,7 @@ fill your Pokedex -- all while you code.
10
10
 
11
11
  ## Features
12
12
 
13
- - **151 Gen 1 Pokemon** with authentic base stats and evolution chains
13
+ - **151 Pokemon** with authentic base stats and evolution chains
14
14
  - **XP from coding** -- commits, tests, builds, edits, and more
15
15
  - **Level up & evolve** -- Charmander -> Charmeleon -> Charizard
16
16
  - **Wild encounters** -- Pokemon appear based on your coding activity
@@ -90,7 +90,7 @@ Claude Code -> MCP Server (Claudemon)
90
90
 
91
91
  ### Evolution
92
92
 
93
- Pokemon evolve at the same levels as the original Gen 1 games:
93
+ Pokemon evolve at the same levels as the original games:
94
94
  - **Level-based:** Charmander -> Charmeleon (L16) -> Charizard (L36)
95
95
  - **Badge-based:** Pikachu -> Raichu (Spark Badge -- 200 commits)
96
96
  - **Collaboration:** Kadabra -> Alakazam (10 PRs merged)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@umang-boss/claudemon",
3
- "version": "1.1.4",
4
- "description": "Pokemon Gen 1 coding companion for Claude Code — Gotta code 'em all!",
3
+ "version": "1.2.0",
4
+ "description": "Pokemon coding companion for Claude Code — Gotta code 'em all!",
5
5
  "type": "module",
6
6
  "main": "dist/src/server/index.js",
7
7
  "bin": {
@@ -21,6 +21,7 @@
21
21
  "bunfig.toml"
22
22
  ],
23
23
  "scripts": {
24
+ "prepare": "husky",
24
25
  "build": "tsc -p tsconfig.build.json",
25
26
  "prepublishOnly": "npm run build",
26
27
  "server": "node dist/src/server/index.js",
@@ -32,7 +33,8 @@
32
33
  "test": "bun test",
33
34
  "typecheck": "tsc --noEmit",
34
35
  "format": "prettier --write \"src/**/*.ts\" \"cli/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\" --ignore-unknown",
35
- "format:check": "prettier --check \"src/**/*.ts\" \"cli/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\" --ignore-unknown"
36
+ "format:check": "prettier --check \"src/**/*.ts\" \"cli/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\" --ignore-unknown",
37
+ "prepare": "husky"
36
38
  },
37
39
  "dependencies": {
38
40
  "@modelcontextprotocol/sdk": "^1.12.1",
@@ -40,6 +42,7 @@
40
42
  },
41
43
  "devDependencies": {
42
44
  "@types/bun": "latest",
45
+ "husky": "^9.1.7",
43
46
  "prettier": "^3.8.2",
44
47
  "typescript": "^5.8.3"
45
48
  },
@@ -159,7 +159,7 @@ elif [ -n "$REACTION" ]; then
159
159
  SPEECH="$REACTION"
160
160
  else
161
161
  NOW=$(date +%s)
162
- IDX=$(( (NOW / 30) % 12 ))
162
+ IDX=$(( (NOW / 30) % 60 ))
163
163
  SPEECHES=(
164
164
  "*${NAME} looks at your code curiously*"
165
165
  ""
@@ -173,6 +173,52 @@ else
173
173
  ""
174
174
  "*${NAME} bounces excitedly*"
175
175
  ""
176
+ "*${NAME} waits patiently*"
177
+ ""
178
+ "*${NAME} tilts head at the screen*"
179
+ ""
180
+ "*${NAME} chirps encouragingly*"
181
+ ""
182
+ "*${NAME} peers at a variable name*"
183
+ ""
184
+ "*${NAME} sniffs at a function*"
185
+ ""
186
+ "*${NAME} sits on the keyboard*"
187
+ ""
188
+ "*${NAME} chases the cursor*"
189
+ ""
190
+ "*${NAME} judges your indentation*"
191
+ ""
192
+ "*${NAME} found a semicolon!*"
193
+ ""
194
+ "*${NAME} debugs alongside you*"
195
+ ""
196
+ "*${NAME} spots a typo... maybe*"
197
+ ""
198
+ "*${NAME} celebrates a clean build*"
199
+ ""
200
+ "*${NAME} is impressed by that refactor*"
201
+ ""
202
+ "*${NAME} blinks at the test results*"
203
+ ""
204
+ "*${NAME} dreams of evolution*"
205
+ ""
206
+ "*${NAME} wants to learn new moves*"
207
+ ""
208
+ "*${NAME} is proud of your progress*"
209
+ ""
210
+ "*${NAME} snoozes between commits*"
211
+ ""
212
+ "*${NAME} practices its type moves*"
213
+ ""
214
+ "*${NAME} stares at the linter output*"
215
+ ""
216
+ "*${NAME} wonders about that TODO*"
217
+ ""
218
+ "*${NAME} approves of that commit msg*"
219
+ ""
220
+ "*${NAME} is ready for action!*"
221
+ ""
176
222
  )
177
223
  SPEECH="${SPEECHES[$IDX]}"
178
224
  fi