@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/README.md +11 -11
- package/dist/cli.js +14 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +20 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/release/SKILL.md +11 -8
package/package.json
CHANGED
package/skills/release/SKILL.md
CHANGED
|
@@ -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
|
|
176
|
-
|
|
177
|
-
| Forgot to update `CURRENT_CLAWROUTER_VERSION` in blockrun | Step 4 — always check
|
|
178
|
-
| CHANGELOG entry missing or incomplete
|
|
179
|
-
| npm publish before tests pass
|
|
180
|
-
| GitHub release notes empty
|
|
181
|
-
| Git tag not pushed
|
|
182
|
-
| docs not reflecting new features
|
|
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 |
|