diffprism 0.11.0 → 0.11.2
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/bin.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -254,7 +254,7 @@ async function setup(flags) {
|
|
|
254
254
|
|
|
255
255
|
// cli/src/index.ts
|
|
256
256
|
var program = new Command();
|
|
257
|
-
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.11.
|
|
257
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.11.2" : "0.0.0-dev");
|
|
258
258
|
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);
|
|
259
259
|
program.command("serve").description("Start the MCP server for Claude Code integration").action(serve);
|
|
260
260
|
program.command("setup").description("Configure DiffPrism for Claude Code integration").option("--global", "Install skill globally (~/.claude/skills/)").option("--force", "Overwrite existing configuration files").action(setup);
|
package/dist/mcp-server.js
CHANGED