@tastehub/ckb-linux-arm64 8.1.0 โ†’ 8.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.
Files changed (3) hide show
  1. package/bin/README.md +26 -0
  2. package/bin/ckb +0 -0
  3. package/package.json +1 -1
package/bin/README.md CHANGED
@@ -261,6 +261,32 @@ See the **[Index Management Guide](https://github.com/SimplyLiz/CodeMCP/wiki/Ind
261
261
 
262
262
  ๐Ÿ“‹ **[Changelog](https://github.com/SimplyLiz/CodeMCP/blob/main/CHANGELOG.md)** โ€” Version history
263
263
 
264
+ ## PR Review
265
+
266
+ CKB review runs 20 quality checks in 5 seconds โ€” secrets, breaking changes, dead code, complexity, test gaps, bug patterns, and more. Zero tokens, zero API calls.
267
+
268
+ When your AI assistant (Claude Code, Cursor, Windsurf) reviews a PR, it calls CKB first and gets structured analysis in ~1k tokens. Then it only reads the files that matter โ€” saving **50-80% of tokens** on large PRs.
269
+
270
+ ```bash
271
+ ckb review --base=main # Human-readable review
272
+ ckb review --base=main --ci # CI mode (exit codes)
273
+ ckb review --base=main --post=123 # Post as PR comment
274
+ ```
275
+
276
+ Works in CI without any LLM:
277
+
278
+ ```yaml
279
+ - run: npx @tastehub/ckb review --base=main --ci --format=sarif > review.sarif
280
+ ```
281
+
282
+ | | Without CKB | With CKB |
283
+ |---|---|---|
284
+ | LLM tokens on 100-file PR | ~200k | ~50k |
285
+ | Files LLM reads | all | ~10 (CKB-flagged) |
286
+ | Secrets/breaking/dead-code checked | no | yes (all files) |
287
+
288
+ ๐Ÿ“– [**How it helps AI review**](docs/marketing/ckb-review/how-it-helps-llm.md) ยท [**Benchmarks**](docs/marketing/ckb-review/benchmarks.md) ยท [**CI Integration**](docs/marketing/ckb-review/ci-integration.md) ยท [**Quickstart**](docs/marketing/ckb-review/quickstart.md)
289
+
264
290
  ## CLI
265
291
 
266
292
  ```bash
package/bin/ckb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tastehub/ckb-linux-arm64",
3
- "version": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "CKB binary for linux-arm64",
5
5
  "os": ["linux"],
6
6
  "cpu": ["arm64"],