diffprism 0.37.1 → 0.37.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
CHANGED
|
@@ -761,7 +761,7 @@ async function serverStop() {
|
|
|
761
761
|
|
|
762
762
|
// cli/src/index.ts
|
|
763
763
|
var program = new Command();
|
|
764
|
-
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.37.
|
|
764
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.37.2" : "0.0.0-dev");
|
|
765
765
|
program.command("demo").description("Open a sample review to see DiffPrism in action").option("--dev", "Use Vite dev server").action(demo);
|
|
766
766
|
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);
|
|
767
767
|
program.command("review-pr <pr>").description("Review a GitHub pull request in DiffPrism").option("-t, --title <title>", "Override review title").option("--reasoning <text>", "Agent reasoning about the PR").option("--dev", "Use Vite dev server with HMR instead of static files").option("--post-to-github", "Automatically post review back to GitHub without prompting").action(reviewPr);
|
package/dist/mcp-server.js
CHANGED