diffprism 0.12.1 → 0.12.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 +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
- package/ui-dist/favicon.svg +10 -0
- package/ui-dist/index.html +1 -0
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.12.
|
|
257
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.12.2" : "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);
|
package/dist/mcp-server.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
|
2
|
+
<!-- Prism triangle -->
|
|
3
|
+
<polygon points="16,2 28,28 4,28" fill="none" stroke="#58a6ff" stroke-width="2" stroke-linejoin="round"/>
|
|
4
|
+
<!-- Light beam entering (white) -->
|
|
5
|
+
<line x1="2" y1="14" x2="12" y2="14" stroke="#e6edf3" stroke-width="1.5" stroke-linecap="round"/>
|
|
6
|
+
<!-- Refracted beams (diff colors) -->
|
|
7
|
+
<line x1="22" y1="10" x2="30" y2="6" stroke="#3fb950" stroke-width="1.5" stroke-linecap="round"/>
|
|
8
|
+
<line x1="22" y1="14" x2="30" y2="14" stroke="#58a6ff" stroke-width="1.5" stroke-linecap="round"/>
|
|
9
|
+
<line x1="22" y1="18" x2="30" y2="22" stroke="#f85149" stroke-width="1.5" stroke-linecap="round"/>
|
|
10
|
+
</svg>
|
package/ui-dist/index.html
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
7
|
<title>DiffPrism</title>
|
|
7
8
|
<script type="module" crossorigin src="/assets/index-CpWq5K0r.js"></script>
|
|
8
9
|
<link rel="stylesheet" crossorigin href="/assets/index-GiCSAMgl.css">
|