@blockrun/clawrouter 0.12.28 → 0.12.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/clawrouter",
3
- "version": "0.12.28",
3
+ "version": "0.12.29",
4
4
  "description": "Smart LLM router — save 92% on inference costs. 41+ models, one wallet, x402 micropayments.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,6 +37,7 @@ Open `CHANGELOG.md`. Add a new section at the top (after the header) in this for
37
37
  ```
38
38
 
39
39
  Rules:
40
+
40
41
  - Date format: `Mar 8, 2026`
41
42
  - One bullet per logical change
42
43
  - Every bullet must be present — no "see git log"
@@ -51,11 +52,13 @@ Rules:
51
52
  File: `/Users/vickyfu/Documents/blockrun-web/blockrun/src/app/api/v1/chat/completions/route.ts`
52
53
 
53
54
  Find this line:
55
+
54
56
  ```typescript
55
57
  const CURRENT_CLAWROUTER_VERSION = "x.y.z";
56
58
  ```
57
59
 
58
60
  Update it to match the new version. Verify with:
61
+
59
62
  ```bash
60
63
  grep CURRENT_CLAWROUTER_VERSION /Users/vickyfu/Documents/blockrun-web/blockrun/src/app/api/v1/chat/completions/route.ts
61
64
  ```
@@ -172,11 +175,11 @@ All 6 must match the new version. If any mismatch, fix before declaring the rele
172
175
 
173
176
  ## Common Mistakes (Never Repeat These)
174
177
 
175
- | Mistake | Prevention |
176
- |---------|-----------|
177
- | Forgot to update `CURRENT_CLAWROUTER_VERSION` in blockrun | Step 4 — always check |
178
- | CHANGELOG entry missing or incomplete | Step 3 — write it before building |
179
- | npm publish before tests pass | Steps 5-6 must precede Step 11 |
180
- | GitHub release notes empty | Step 10 — extract from CHANGELOG |
181
- | Git tag not pushed | Step 9 — push tag separately |
182
- | docs not reflecting new features | Update docs in same PR as the feature |
178
+ | Mistake | Prevention |
179
+ | --------------------------------------------------------- | ------------------------------------- |
180
+ | Forgot to update `CURRENT_CLAWROUTER_VERSION` in blockrun | Step 4 — always check |
181
+ | CHANGELOG entry missing or incomplete | Step 3 — write it before building |
182
+ | npm publish before tests pass | Steps 5-6 must precede Step 11 |
183
+ | GitHub release notes empty | Step 10 — extract from CHANGELOG |
184
+ | Git tag not pushed | Step 9 — push tag separately |
185
+ | docs not reflecting new features | Update docs in same PR as the feature |