-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevkit.example.toml
More file actions
47 lines (44 loc) · 940 Bytes
/
devkit.example.toml
File metadata and controls
47 lines (44 loc) · 940 Bytes
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
# devkit configuration — place as .devkit.toml in your repository root.
[agent-md]
crates_dir = "crates"
[deps]
crates_dir = "crates"
# Layer assignments for dependency direction checking.
# A crate at layer N must NOT depend on a crate at layer N+1 or higher.
# Key = layer number (0 = lowest), value = list of crate package names.
[deps.layers]
0 = [
"base",
"rara-error",
"common-runtime",
"common-telemetry",
"common-worker",
"yunara-store",
"rara-tool-macro",
"crawl4ai",
"rara-paths",
"rara-model",
"rara-domain-shared",
"rara-api",
]
1 = [
"rara-soul",
"rara-symphony",
"rara-skills",
"rara-vault",
"rara-composio",
"rara-keyring-store",
"rara-codex-oauth",
"rara-git",
]
2 = ["rara-kernel"]
3 = [
"rara-dock",
"rara-sessions",
"rara-agents",
"rara-mcp",
"rara-pg-credential-store",
]
4 = ["rara-channels", "rara-backend-admin"]
5 = ["rara-app", "rara-server"]
6 = ["rara-cli"]