cc-reviewer 1.1.2 → 1.1.3

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 (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -54,19 +54,21 @@ cp cc-reviewer/commands/*.md ~/.claude/commands/
54
54
  Then use:
55
55
 
56
56
  ```bash
57
- /codex-review # Review with Codex
58
- /codex-review security # Focus on security
57
+ /codex # Review with Codex
58
+ /codex security # Focus on security
59
+ /codex-xhigh # Codex with xhigh reasoning effort
59
60
 
60
- /gemini-review # Review with Gemini
61
- /gemini-review architecture # Focus on architecture
61
+ /gemini # Review with Gemini
62
+ /gemini architecture # Focus on architecture
62
63
 
63
- /multi-review # Both models in parallel
64
+ /multi # Both models in parallel
65
+ /council # Multi-model consensus with verification
64
66
  ```
65
67
 
66
68
  ## How It Works
67
69
 
68
70
  ```
69
- CC does work → User: /codex-review → External CLI reviews → CC synthesizes → Updated output
71
+ CC does work → User: /codex → External CLI reviews → CC synthesizes → Updated output
70
72
  ```
71
73
 
72
74
  **Key Principles:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-reviewer",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
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",