agentic-kdd 2.1.4 → 2.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.
- package/bin/akdd.js +5 -0
- package/package.json +1 -1
package/bin/akdd.js
CHANGED
|
@@ -20,6 +20,7 @@ const HELP = `
|
|
|
20
20
|
akdd update Update to the latest version (keeps your memory intact)
|
|
21
21
|
akdd graph Show knowledge graph stats and sync memory
|
|
22
22
|
akdd dashboard Open visual knowledge graph dashboard in browser
|
|
23
|
+
akdd analyze Analyze project code and auto-build knowledge graph
|
|
23
24
|
akdd --version Show version
|
|
24
25
|
akdd --help Show this help
|
|
25
26
|
|
|
@@ -40,6 +41,10 @@ switch (command) {
|
|
|
40
41
|
case 'dashboard':
|
|
41
42
|
dashboard();
|
|
42
43
|
break;
|
|
44
|
+
case 'analyze':
|
|
45
|
+
case 'analizar':
|
|
46
|
+
analyze();
|
|
47
|
+
break;
|
|
43
48
|
case '--version':
|
|
44
49
|
case '-v':
|
|
45
50
|
console.log(pkg.version);
|
package/package.json
CHANGED