diffprism 0.36.0 → 0.37.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/dist/bin.js CHANGED
@@ -986,7 +986,7 @@ async function serverStop() {
986
986
 
987
987
  // cli/src/index.ts
988
988
  var program = new Command();
989
- program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.36.0" : "0.0.0-dev");
989
+ program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.37.0" : "0.0.0-dev");
990
990
  program.command("demo").description("Open a sample review to see DiffPrism in action").option("--dev", "Use Vite dev server").action(demo);
991
991
  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);
992
992
  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.36.0" : "0.0.0-dev"
32
+ version: true ? "0.37.0" : "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.36.0",
3
+ "version": "0.37.0",
4
4
  "type": "module",
5
5
  "description": "Local-first code review tool for agent-generated code changes",
6
6
  "bin": {