dingdawg-code-review 1.0.0 → 2.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.d.ts +8 -2
- package/dist/index.js +208 -451
- package/package.json +1 -1
- package/src/index.ts +230 -506
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* dingdawg-code-review —
|
|
3
|
+
* dingdawg-code-review v2 — Thin Client MCP Server
|
|
4
4
|
*
|
|
5
|
-
*
|
|
5
|
+
* FREE tier: basic local pattern-matching code review (the hook)
|
|
6
|
+
* PAID tier: LLM-powered deep analysis via DingDawg API
|
|
6
7
|
*
|
|
7
8
|
* Install: npx dingdawg-code-review
|
|
8
9
|
* Claude Code: claude mcp add dingdawg-code-review npx dingdawg-code-review
|
|
10
|
+
*
|
|
11
|
+
* Set DINGDAWG_API_KEY for paid features:
|
|
12
|
+
* export DINGDAWG_API_KEY=your_key
|
|
13
|
+
*
|
|
14
|
+
* Optional: DINGDAWG_MODEL to choose the analysis model (default: gpt-5.4-mini)
|
|
9
15
|
*/
|
|
10
16
|
export {};
|