Config surface — per-project config introspection, coherence verification, and
audited mutation without destroying NCL structure (ADR-008):
- crates/ontoref-daemon/src/config.rs — typed DaemonNclConfig (parse-at-boundary
pattern); all section structs derive ConfigFields + config_section(id, ncl_file)
emitting inventory::submit!(ConfigFieldsEntry{...}) at link time
- crates/ontoref-derive/src/lib.rs — #[derive(ConfigFields)] proc-macro; serde
rename support; serde_rename_of() helper extracted to fix excessive_nesting
- crates/ontoref-daemon/src/main.rs — 3-tuple bootstrap block (nickel_import_path,
loaded_ncl_config: Option<DaemonNclConfig>, stdin_raw); apply_ui_config takes
&UiConfig; NATS call site typed; resolve_asset_dir cfg(feature = "ui")
- crates/ontoref-daemon/src/api.rs — config GET/PUT endpoints, quickref, coherence,
cross-project comparison; index_section_fields() extracted (excessive_nesting)
- crates/ontoref-daemon/src/config_coherence.rs — multi-consumer coherence;
merge_meta_into_section() extracted; and() replaces unnecessary and_then
NCL contracts for ontoref's own config:
- .ontoref/contracts.ncl — LogConfig (LogLevel, LogRotation, PositiveInt) and
DaemonConfig (Port, optional overrides); std.contract.from_validator throughout
- .ontoref/config.ncl — log | C.LogConfig applied
- .ontology/manifest.ncl — contracts_path, log/daemon contract refs, daemon section
with DaemonRuntimeConfig consumer and 7 declared fields
Protocol:
- adrs/adr-008-ncl-first-config-validation-and-override-layer.ncl — NCL contracts
as single validation gate; Rust structs are contract-trusted; override-layer
mutation writes {section}.overrides.ncl + _overrides_meta, never touches source
on+re update:
- .ontology/core.ncl — config-surface node (28 practices); adr-lifecycle extended
to adr-007 + adr-008; 6 new edges (ManifestsIn daemon, DependsOn ontology-crate,
Complements api-catalog-surface/dag-formalized/self-describing/adopt-ontoref)
- .ontology/state.ncl — protocol-maturity blocker and self-description-coverage
catalyst updated for session 2026-03-26
- README.md / CHANGELOG.md updated
58 lines
2.1 KiB
TOML
58 lines
2.1 KiB
TOML
[package]
|
|
name = "ontoref-daemon"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Ontoref runtime daemon: NCL export cache, file watcher, actor registry, HTTP API"
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "ontoref-daemon"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
stratum-db = { path = "../../../stratumiops/crates/stratum-db", default-features = false, optional = true }
|
|
platform-nats = { path = "../../../stratumiops/crates/platform-nats", optional = true }
|
|
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
notify = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tower-http = { workspace = true }
|
|
tera = { version = "1", default-features = false, features = ["builtins"], optional = true }
|
|
argon2 = { version = "0.5", features = ["std"] }
|
|
toml = { version = "0.8", optional = true }
|
|
uuid = { workspace = true, optional = true }
|
|
axum-server = { version = "0.7", features = ["tls-rustls"], optional = true }
|
|
rmcp = { version = "1", features = ["server", "transport-io", "transport-streamable-http-server"], optional = true }
|
|
schemars = { version = "1", optional = true }
|
|
thiserror = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
clap = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
bytes = { workspace = true }
|
|
hostname = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
inventory = { workspace = true }
|
|
ontoref-derive = { path = "../ontoref-derive" }
|
|
ontoref-ontology = { path = "../ontoref-ontology", features = ["derive"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[features]
|
|
default = ["db", "nats", "ui", "mcp"]
|
|
db = ["stratum-db/remote"]
|
|
nats = ["dep:platform-nats"]
|
|
ui = ["dep:tera", "dep:toml", "dep:uuid"]
|
|
tls = ["ui", "dep:axum-server"]
|
|
mcp = ["ui", "dep:rmcp", "dep:schemars"]
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tower = { version = "0.5", features = ["util"] }
|