diffprism 0.11.0 → 0.11.1

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
@@ -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.0" : "0.0.0-dev");
257
+ program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.11.1" : "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);
@@ -11,7 +11,7 @@ import { z } from "zod";
11
11
  async function startMcpServer() {
12
12
  const server = new McpServer({
13
13
  name: "diffprism",
14
- version: true ? "0.11.0" : "0.0.0-dev"
14
+ version: true ? "0.11.1" : "0.0.0-dev"
15
15
  });
16
16
  server.tool(
17
17
  "open_review",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diffprism",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "type": "module",
5
5
  "description": "Local-first code review tool for agent-generated code changes",
6
6
  "bin": {