diffprism 0.2.10 → 0.2.11
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
CHANGED
|
@@ -41,7 +41,7 @@ async function serve() {
|
|
|
41
41
|
|
|
42
42
|
// cli/src/index.ts
|
|
43
43
|
var program = new Command();
|
|
44
|
-
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.2.
|
|
44
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.2.11" : "0.0.0-dev");
|
|
45
45
|
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").action(review);
|
|
46
46
|
program.command("serve").description("Start the MCP server for Claude Code integration").action(serve);
|
|
47
47
|
program.parse();
|
package/dist/mcp-server.js
CHANGED