@syke1/mcp-server 1.3.11 → 1.3.12

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.
@@ -240,20 +240,20 @@ async function loadGraph() {
240
240
  .linkCurveRotation(link => (hc(getTgtId(link) + getSrcId(link)) % 628) / 100)
241
241
 
242
242
  .linkDirectionalParticles(link => {
243
- if (highlightLinks.has(link)) return 10;
243
+ if (highlightLinks.has(link)) return 12;
244
244
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
245
- return isActive ? 1 : 4;
245
+ return isActive ? 3 : 8;
246
246
  })
247
247
  .linkDirectionalParticleWidth(link => {
248
- if (highlightLinks.has(link)) return 2.0;
248
+ if (highlightLinks.has(link)) return 3.0;
249
249
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
250
- return isActive ? 0.3 : 0.8;
250
+ return isActive ? 1.0 : 2.0;
251
251
  })
252
- .linkDirectionalParticleSpeed(0.005)
252
+ .linkDirectionalParticleSpeed(0.008)
253
253
  .linkDirectionalParticleColor(link => {
254
254
  if (highlightLinks.has(link)) return "#ff2d55";
255
255
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
256
- if (isActive) return "rgba(100,120,150,0.15)";
256
+ if (isActive) return "rgba(150,180,220,0.4)";
257
257
  return LAYER_HEX[srcLayer(link)] || "#ff69b4";
258
258
  })
259
259
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.3.11",
3
+ "version": "1.3.12",
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",