cc-reviewer 1.3.0 → 1.3.1
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 +2 -2
- package/dist/commands.d.ts +1 -1
- package/dist/commands.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ claude mcp add -s user cc-reviewer -- npx -y cc-reviewer
|
|
|
11
11
|
|
|
12
12
|
**Step 2: Install slash commands**
|
|
13
13
|
```bash
|
|
14
|
-
npx cc-reviewer-
|
|
14
|
+
npx cc-reviewer-setup
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
**Step 3: Restart Claude Code**
|
|
@@ -60,7 +60,7 @@ These tools provide **external second-opinion reviews** from Codex and Gemini CL
|
|
|
60
60
|
|
|
61
61
|
## Slash Commands
|
|
62
62
|
|
|
63
|
-
After running `npx cc-reviewer-
|
|
63
|
+
After running `npx cc-reviewer-setup`, these commands are available:
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
66
|
/codex # Review with Codex
|
package/dist/commands.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Shared module for slash command installation
|
|
3
3
|
*
|
|
4
4
|
* Used by both:
|
|
5
|
-
* - setup.ts (manual CLI tool: npx cc-reviewer-
|
|
5
|
+
* - setup.ts (manual CLI tool: npx cc-reviewer-setup)
|
|
6
6
|
* - index.ts (auto-install on MCP server startup)
|
|
7
7
|
*/
|
|
8
8
|
export interface InstallResult {
|
package/dist/commands.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Shared module for slash command installation
|
|
3
3
|
*
|
|
4
4
|
* Used by both:
|
|
5
|
-
* - setup.ts (manual CLI tool: npx cc-reviewer-
|
|
5
|
+
* - setup.ts (manual CLI tool: npx cc-reviewer-setup)
|
|
6
6
|
* - index.ts (auto-install on MCP server startup)
|
|
7
7
|
*/
|
|
8
8
|
import { existsSync, mkdirSync, copyFileSync, readdirSync, statSync } from 'fs';
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-reviewer",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "MCP server for Claude Code - Get second-opinion feedback from Codex/Gemini CLIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"cc-reviewer": "dist/index.js",
|
|
9
|
-
"cc-reviewer-
|
|
9
|
+
"cc-reviewer-setup": "dist/setup.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist/**/*",
|