-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.yaml
More file actions
61 lines (55 loc) · 1.68 KB
/
module.yaml
File metadata and controls
61 lines (55 loc) · 1.68 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
56
57
58
59
60
61
manifest_version: 2
name: datacortex
version: 0.2.0
description: "Knowledge graph — semantic search, graph statistics, link analysis, and visualization"
author: datacore-one
repository: https://github.com/datacore-one/datacortex
license: MIT
builtin: true
provides:
tools:
- name: search
description: "Full-text search across all indexed content"
handler: tools/index.js
- name: stats
description: "Graph and database statistics (node counts, link density, table sizes)"
handler: tools/index.js
- name: backlinks
description: "Find all documents linking to a given file path"
handler: tools/index.js
- name: orphans
description: "Find unlinked documents (no incoming/outgoing links)"
handler: tools/index.js
- name: tasks
description: "Query tasks from indexed org files"
handler: tools/index.js
- name: patterns
description: "Query learning patterns from indexed data"
handler: tools/index.js
- name: find_by_skill
description: "Find agents by skill keyword (substring match)"
handler: tools/index.js
skills:
- datacortex # Knowledge graph exploration and visualization
agents: []
commands:
- datacortex # Interactive graph exploration with web UI
dependencies: []
# Python package info
python:
package: datacortex
entry_point: datacortex.cli.commands:cli
install: pip install -e .
# Settings (user can override in settings.local.yaml under datacortex:)
settings:
auto_serve: false
default_space: null
open_browser: true
port: 8765
# DIP-0022 context
context:
priority: on_match
# Engrams
engrams:
namespace: datacortex
scopes: [datacortex, knowledge-graph]