diffprism 0.4.0 → 0.6.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/README.md +1 -1
- package/dist/bin.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
- package/ui-dist/assets/{index-DkFn4V-V.js → index-BMY4E2zA.js} +59 -44
- package/ui-dist/assets/index-BZjL5agP.css +1 -0
- package/ui-dist/index.html +2 -2
- package/ui-dist/assets/index-B4V07gp9.css +0 -1
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Decisions are one of: `approved`, `changes_requested`, or `approved_with_comment
|
|
|
53
53
|
|
|
54
54
|
DiffPrism ships an MCP server so Claude Code can open reviews during a coding session.
|
|
55
55
|
|
|
56
|
-
**Setup:** Add to your Claude Code MCP config (`.mcp.json` or project settings)
|
|
56
|
+
**Setup:** Add to your Claude Code MCP config (`.mcp.json` or project settings). See the [full setup guide](docs/claude-setup.md) for detailed instructions covering Claude Code, Claude Desktop, auto-approval, and troubleshooting.
|
|
57
57
|
|
|
58
58
|
```json
|
|
59
59
|
{
|
package/dist/bin.js
CHANGED
|
@@ -42,7 +42,7 @@ async function serve() {
|
|
|
42
42
|
|
|
43
43
|
// cli/src/index.ts
|
|
44
44
|
var program = new Command();
|
|
45
|
-
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.
|
|
45
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.6.0" : "0.0.0-dev");
|
|
46
46
|
program.command("review [ref]").description("Open a browser-based diff review").option("--staged", "Review staged changes").option("--unstaged", "Review unstaged changes").option("-t, --title <title>", "Review title").option("--dev", "Use Vite dev server with HMR instead of static files").action(review);
|
|
47
47
|
program.command("serve").description("Start the MCP server for Claude Code integration").action(serve);
|
|
48
48
|
program.parse();
|
package/dist/mcp-server.js
CHANGED