agentic-kdd 2.0.7 → 2.0.8

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 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 Install Agentic KDD in the current project
18
- akdd update Update to the latest version (keeps your memory intact)
19
- akdd graph Show knowledge graph stats and sync memory
20
- akdd --version Show version
21
- akdd --help Show this help
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.0.7",
4
- "description": "Autonomous development pipeline with Knowledge-Driven Development. Works with Cursor and Claude Code. Just type aa:",
3
+ "version": "2.0.8",
4
+ "description": "Autonomous development pipeline with KDD \u2014 aa: \u00b7 ag: \u00b7 audit: \u00b7 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",
@@ -40,4 +41,4 @@
40
41
  "inquirer": "^8.2.6",
41
42
  "better-sqlite3": "^9.4.3"
42
43
  }
43
- }
44
+ }