-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.97 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dot-knowledge",
"version": "3.1.8",
"description": "Repo-local knowledge system for AI coding agents: routing, trust, freshness, cookbook, templates, visual inspector, wiki graph, metrics, and handoff.",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"scripts": {
"kb:ingest": "node tools/ingest-existing-project.js --merge",
"kb:sync": "node tools/sync-tracked.js",
"kb:scan": "node tools/sync-tracked.js --scan",
"kb:discover": "node tools/sync-tracked.js --scan --discover",
"kb:routing": "node tools/build-routing-bundle.js",
"kb:index": "node tools/build-search-index.js",
"kb:search": "node tools/search-knowledge.js",
"kb:wikigraph": "node tools/build-wiki-graph.js",
"kb:lint-wiki": "node tools/lint-wiki.js",
"kb:external:status": "node tools/external-memory-status.js",
"kb:metrics": "node tools/collect-metrics.js",
"kb:evaluate": "node tools/evaluation-harness.js",
"kb:pr-summary": "node tools/generate-pr-summary.js",
"kb:inspector": "node tools/serve-inspector.js",
"kb:flow": "node tools/flow.js release",
"kb:doctor": "node tools/doctor.js",
"kb:templates": "node tools/apply-template.js --list",
"kb:visual": "node tools/build-visual-inspector.js",
"kb:flow:scan": "node tools/flow.js scan",
"kb:flow:import": "node tools/flow.js import",
"kb:flow:release": "node tools/flow.js release",
"kb:updates": "node tools/check-updates.js --status",
"kb:updates:check": "node tools/check-updates.js",
"kb:updates:enable": "node tools/check-updates.js --enable --interval=7d",
"kb:updates:disable": "node tools/check-updates.js --disable"
},
"keywords": [
"ai-agents",
"claude-code",
"codex",
"coding-agents",
"context-engineering",
"cookbook",
"evaluation",
"knowledge-base",
"metrics",
"multi-agent",
"opencode",
"rag",
"templates",
"visual-inspector",
"wiki",
"wiki-graph"
],
"license": "Apache-2.0"
}