@apart-tech/apart-intelligence 1.1.5 → 1.1.6

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.
@@ -28,7 +28,7 @@ export function duplicatesCommand(program) {
28
28
  console.log(` B: ${chalk.dim(nodeB.id.slice(0, 8))} ${chalk.cyan(nodeB.type)} ${nodeB.title}`);
29
29
  console.log();
30
30
  }
31
- console.log(chalk.dim("Review pairs and use 'tc delete <id>' to remove duplicates.\n"));
31
+ console.log(chalk.dim("Review pairs and use 'ai delete <id>' to remove duplicates.\n"));
32
32
  process.exit(0);
33
33
  });
34
34
  }
@@ -50,7 +50,7 @@ export function healthCommand(program) {
50
50
  warn("Self-loop edges", report.edges.selfLoopCount);
51
51
  warn("Duplicate edges", report.edges.duplicateCount);
52
52
  warn("Duplicate node candidates", report.duplicateCandidates);
53
- console.log(chalk.dim("\nRun 'tc orphans' or 'tc duplicates' to investigate issues.\n"));
53
+ console.log(chalk.dim("\nRun 'ai orphans' or 'ai duplicates' to investigate issues.\n"));
54
54
  process.exit(0);
55
55
  });
56
56
  }
@@ -54,7 +54,7 @@ export function normalizeCommand(program) {
54
54
  const pct = (s.similarity * 100).toFixed(0);
55
55
  console.log(` ${chalk.magenta(`${pct}%`)} similar: ${chalk.yellow(s.fromType)} (${s.fromCount}) → ${chalk.green(s.toType)} (${s.toCount})`);
56
56
  }
57
- console.log(chalk.dim('\nTo apply: tc normalize --apply "old-type:new-type"\n'));
57
+ console.log(chalk.dim('\nTo apply: ai normalize --apply "old-type:new-type"\n'));
58
58
  process.exit(0);
59
59
  });
60
60
  }
@@ -22,7 +22,7 @@ export function orphansCommand(program) {
22
22
  const age = daysSince(node.createdAt);
23
23
  console.log(` ${chalk.dim(node.id.slice(0, 8))} ${statusColor(`[${node.status}]`)} ${chalk.cyan(node.type)} ${node.title} ${chalk.dim(`${age}d ago`)}`);
24
24
  }
25
- console.log(chalk.dim("\nUse 'tc delete <id>' to remove or 'tc link <source> <target>' to connect.\n"));
25
+ console.log(chalk.dim("\nUse 'ai delete <id>' to remove or 'ai link <source> <target>' to connect.\n"));
26
26
  process.exit(0);
27
27
  });
28
28
  }
@@ -35,7 +35,7 @@ export function suggestLinksCommand(program) {
35
35
  console.log(` → ${chalk.dim(target.id.slice(0, 8))} ${chalk.cyan(target.type)} ${target.title}`);
36
36
  console.log();
37
37
  }
38
- console.log(chalk.dim("Use 'tc link <source-id> <target-id> -r relates-to' to create a link.\n"));
38
+ console.log(chalk.dim("Use 'ai link <source-id> <target-id> -r relates-to' to create a link.\n"));
39
39
  process.exit(0);
40
40
  });
41
41
  }
@@ -68,7 +68,7 @@ export function validateCommand(program) {
68
68
  }
69
69
  }
70
70
  }
71
- console.log(chalk.dim("\nUse 'tc delete <id>' on edge IDs to remove problematic edges.\n"));
71
+ console.log(chalk.dim("\nUse 'ai delete <id>' on edge IDs to remove problematic edges.\n"));
72
72
  process.exit(0);
73
73
  });
74
74
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apart-tech/apart-intelligence",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Apart Intelligence — the knowledge graph CLI",
5
5
  "type": "module",
6
6
  "bin": {