@syke1/mcp-server 1.3.13 → 1.3.14
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/web/public/app.js +5 -5
- package/package.json +1 -1
package/dist/web/public/app.js
CHANGED
|
@@ -281,18 +281,18 @@ async function loadGraph() {
|
|
|
281
281
|
.linkDirectionalParticles(link => {
|
|
282
282
|
if (highlightLinks.has(link)) return 12;
|
|
283
283
|
const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
|
|
284
|
-
return isActive ? 3 :
|
|
284
|
+
return isActive ? 3 : 4;
|
|
285
285
|
})
|
|
286
286
|
.linkDirectionalParticleWidth(link => {
|
|
287
|
-
if (highlightLinks.has(link)) return
|
|
287
|
+
if (highlightLinks.has(link)) return 0.8;
|
|
288
288
|
const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
|
|
289
|
-
return isActive ?
|
|
289
|
+
return isActive ? 0.3 : 0.4;
|
|
290
290
|
})
|
|
291
|
-
.linkDirectionalParticleSpeed(0.
|
|
291
|
+
.linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.012 : 0.005)
|
|
292
292
|
.linkDirectionalParticleColor(link => {
|
|
293
293
|
if (highlightLinks.has(link)) return "#ff2d55";
|
|
294
294
|
const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
|
|
295
|
-
if (isActive) return "rgba(150,180,220,0.
|
|
295
|
+
if (isActive) return "rgba(150,180,220,0.3)";
|
|
296
296
|
return LAYER_HEX[srcLayer(link)] || "#ff69b4";
|
|
297
297
|
})
|
|
298
298
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syke1/mcp-server",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.14",
|
|
4
4
|
"mcpName": "io.github.khalomsky/syke",
|
|
5
5
|
"description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
|
|
6
6
|
"main": "dist/index.js",
|