-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzensical.toml
More file actions
91 lines (87 loc) · 2.9 KB
/
Copy pathzensical.toml
File metadata and controls
91 lines (87 loc) · 2.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
site_name = "lightcone-cli"
site_description = "Agentic execution layer for ASTRA research pipelines"
site_author = "Lightcone Research Team"
repo_url = "https://github.com/LightconeResearch/lightcone-cli"
repo_name = "LightconeResearch/lightcone-cli"
copyright = "© 2026 Lightcone Research"
docs_dir = "docs"
extra_css = ["stylesheets/extra.css"]
nav = [
{"Home" = "index.md"},
{"User Guide" = [
{"Welcome" = "user/index.md"},
{"Install" = "user/install.md"},
{"Getting Started" = "user/getting-started.md"},
{"The Agent Workflow" = "user/agent-workflow.md"},
{"Running on a Cluster" = "user/cluster.md"},
{"Troubleshooting" = "user/troubleshooting.md"},
{"Glossary" = "user/glossary.md"},
]},
{"Developer Corner" = [
{"Welcome" = "maintainer.md"},
{"Architecture" = "architecture.md"},
{"CLI Reference" = [
{"Overview" = "cli/index.md"},
{"lc init" = "cli/init.md"},
{"lc run" = "cli/run.md"},
{"lc build" = "cli/build.md"},
{"lc status" = "cli/status.md"},
{"lc verify" = "cli/verify.md"},
{"lc export" = "cli/export.md"},
]},
{"Python API" = [
{"Overview" = "api/index.md"},
{"cli/commands" = "api/cli.md"},
{"engine/manifest" = "api/manifest.md"},
{"engine/snakefile" = "api/snakefile.md"},
{"engine/container" = "api/container.md"},
{"engine/status" = "api/status.md"},
{"engine/verify" = "api/verify.md"},
{"engine/tree" = "api/tree.md"},
{"engine/validation" = "api/validation.md"},
{"engine/dask_cluster" = "api/dask_cluster.md"},
{"snakemake_executor_plugin_dask" = "api/dask_executor.md"},
]},
{"Skills" = [
{"Overview" = "skills/index.md"},
{"lc-new" = "skills/lc-new.md"},
{"lc-from-code" = "skills/lc-from-code.md"},
{"lc-from-paper" = "skills/lc-from-paper.md"},
{"lc-feedback" = "skills/lc-feedback.md"},
{"ralph" = "skills/ralph.md"},
{"paper-extraction" = "skills/paper-extraction.md"},
{"figure-comparison" = "skills/figure-comparison.md"},
{"check-sentence-by-sentence" = "skills/check-sentence-by-sentence.md"},
{"Authoring Skills" = "skills/authoring.md"},
]},
{"Contributing" = [
{"Development Setup" = "contributing/setup.md"},
{"Testing" = "contributing/testing.md"},
]},
]},
{"ASTRA docs" = "https://astra-spec.org/latest/"},
]
[project.theme]
variant = "modern"
logo = "assets/logo.svg"
favicon = "assets/favicon.svg"
features = [
"navigation.tabs",
"navigation.sections",
"navigation.top",
"search.highlight",
"content.code.copy",
]
[[project.theme.palette]]
scheme = "default"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "custom"
accent = "custom"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"