@syke1/mcp-server 1.3.16 → 1.3.17

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.
@@ -237,7 +237,7 @@ async function loadGraph() {
237
237
  .nodeColor(node => getNodeColor(node))
238
238
  .nodeVal(node => {
239
239
  if (!isNodeVisible(node)) return 0.001;
240
- const base = Math.max(8, Math.sqrt(node.lineCount) * 0.8);
240
+ const base = Math.max(30, Math.sqrt(node.lineCount) * 3);
241
241
  const hb = heartbeatNodes.get(node.id);
242
242
  if (hb) {
243
243
  const elapsed = Date.now() - hb.startTime;
@@ -272,31 +272,31 @@ async function loadGraph() {
272
272
  })
273
273
 
274
274
  .linkColor(link => getLinkColor(link))
275
- .linkWidth(link => highlightLinks.has(link) ? 1.2 : 0.4)
276
- .linkOpacity(0.8)
275
+ .linkWidth(link => highlightLinks.has(link) ? 4.0 : 1.5)
276
+ .linkOpacity(0.9)
277
277
  .linkVisibility(link => isLinkVisible(link))
278
278
  .linkCurvature(link => 0.12 + (hc(getSrcId(link) + getTgtId(link)) % 20) * 0.01)
279
279
  .linkCurveRotation(link => (hc(getTgtId(link) + getSrcId(link)) % 628) / 100)
280
280
 
281
281
  .linkDirectionalParticles(link => {
282
- if (highlightLinks.has(link)) return 12;
282
+ if (highlightLinks.has(link)) return 14;
283
283
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
284
- return isActive ? 3 : 4;
284
+ return isActive ? 4 : 6;
285
285
  })
286
286
  .linkDirectionalParticleWidth(link => {
287
- if (highlightLinks.has(link)) return 0.8;
287
+ if (highlightLinks.has(link)) return 3.0;
288
288
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
289
- return isActive ? 0.3 : 0.4;
289
+ return isActive ? 1.5 : 2.0;
290
290
  })
291
- .linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.012 : 0.005)
291
+ .linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.012 : 0.006)
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.3)";
295
+ if (isActive) return "rgba(150,180,220,0.6)";
296
296
  return LAYER_HEX[srcLayer(link)] || "#ff69b4";
297
297
  })
298
298
 
299
- .linkDirectionalArrowLength(2)
299
+ .linkDirectionalArrowLength(4)
300
300
  .linkDirectionalArrowRelPos(1)
301
301
  .linkDirectionalArrowColor(link => {
302
302
  if (highlightLinks.has(link)) return "#ff2d55";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
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",