agentic-kdd 2.0.7 → 2.1.1
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 +10 -5
- package/package.json +7 -3
- package/src/dashboard-template.cjs +1730 -0
- package/src/dashboard-template.js +1345 -0
- package/src/dashboard.js +57 -0
- package/src/graph.js +27 -36
- package/src/init.js +280 -125
- package/templates/.agentic/grafo/grafo.cjs +524 -0
- package/templates/.agentic/grafo/schema.sql +95 -0
- package/templates/.agentic/grafo/watch-errors.cjs +238 -0
package/bin/akdd.js
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
const { init } = require('../src/init');
|
|
5
5
|
const { update } = require('../src/update');
|
|
6
6
|
const { graph } = require('../src/graph');
|
|
7
|
+
const { dashboard } = require('../src/dashboard');
|
|
7
8
|
const pkg = require('../package.json');
|
|
8
9
|
|
|
9
10
|
const args = process.argv.slice(2);
|
|
@@ -14,11 +15,12 @@ const HELP = `
|
|
|
14
15
|
Autonomous development pipeline with Knowledge-Driven Development
|
|
15
16
|
|
|
16
17
|
Usage:
|
|
17
|
-
akdd init
|
|
18
|
-
akdd update
|
|
19
|
-
akdd graph
|
|
20
|
-
akdd
|
|
21
|
-
akdd --
|
|
18
|
+
akdd init Install Agentic KDD in the current project
|
|
19
|
+
akdd update Update to the latest version (keeps your memory intact)
|
|
20
|
+
akdd graph Show knowledge graph stats and sync memory
|
|
21
|
+
akdd dashboard Open visual knowledge graph dashboard in browser
|
|
22
|
+
akdd --version Show version
|
|
23
|
+
akdd --help Show this help
|
|
22
24
|
|
|
23
25
|
After init, open the project in Cursor or Claude Code and type:
|
|
24
26
|
aa: [your task]
|
|
@@ -34,6 +36,9 @@ switch (command) {
|
|
|
34
36
|
case 'graph':
|
|
35
37
|
graph();
|
|
36
38
|
break;
|
|
39
|
+
case 'dashboard':
|
|
40
|
+
dashboard();
|
|
41
|
+
break;
|
|
37
42
|
case '--version':
|
|
38
43
|
case '-v':
|
|
39
44
|
console.log(pkg.version);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-kdd",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Autonomous development pipeline with
|
|
3
|
+
"version": "2.1.1",
|
|
4
|
+
"description": "Autonomous development pipeline with KDD — aa: · ag: · audit: · Visual Dashboard. Works with Cursor and Claude Code.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"akdd": "bin/akdd.js"
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"kdd",
|
|
21
21
|
"knowledge-driven",
|
|
22
22
|
"agentic",
|
|
23
|
-
"sqlite"
|
|
23
|
+
"sqlite",
|
|
24
|
+
"dashboard"
|
|
24
25
|
],
|
|
25
26
|
"author": "Adrianlpz211",
|
|
26
27
|
"license": "MIT",
|
|
@@ -38,6 +39,9 @@
|
|
|
38
39
|
"chalk": "^4.1.2",
|
|
39
40
|
"ora": "^5.4.1",
|
|
40
41
|
"inquirer": "^8.2.6",
|
|
42
|
+
"sql.js": "^1.10.3"
|
|
43
|
+
},
|
|
44
|
+
"optionalDependencies": {
|
|
41
45
|
"better-sqlite3": "^9.4.3"
|
|
42
46
|
}
|
|
43
47
|
}
|