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.1" : "0.0.0-dev");
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);
@@ -29,7 +29,7 @@ var lastGlobalServerInfo = null;
29
29
  async function startMcpServer() {
30
30
  const server = new McpServer({
31
31
  name: "diffprism",
32
- version: true ? "0.37.1" : "0.0.0-dev"
32
+ version: true ? "0.37.2" : "0.0.0-dev"
33
33
  });
34
34
  server.tool(
35
35
  "open_review",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffprism",
3
- "version": "0.37.1",
3
+ "version": "0.37.2",
4
4
  "type": "module",
5
5
  "description": "Local-first code review tool for agent-generated code changes",
6
6
  "bin": {