ontoref/ontology/defaults/manifest.ncl
Jesús Pérez 401294de5d
Some checks failed
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
feat: config surface, NCL contracts, override-layer mutation, on+re update
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
2026-03-26 20:20:22 +00:00

44 lines
1.7 KiB
Plaintext

let s = import "../schemas/manifest.ncl" in
let c = import "content.ncl" in
{
make_manifest = fun data => s.ProjectManifest & data,
make_layer = fun data => s.Layer & data,
make_op_mode = fun data => s.OperationalMode & data,
make_consumption_mode = fun data => s.ConsumptionMode & data,
make_publication_service = fun data => s.PublicationService & data,
make_tool = fun data => s.ToolRequirement & data,
ProjectManifest = s.ProjectManifest,
Layer = s.Layer,
OperationalMode = s.OperationalMode,
ConsumptionMode = s.ConsumptionMode,
PublicationService = s.PublicationService,
ToolRequirement = s.ToolRequirement,
JustfileConvention = s.JustfileConvention,
ClaudeBaseline = s.ClaudeBaseline,
RepoKind = s.RepoKind,
ConsumerType = s.ConsumerType,
ArtifactKind = s.ArtifactKind,
AuditLevel = s.AuditLevel,
AuthMethod = s.AuthMethod,
ServiceScope = s.ServiceScope,
InstallMethod = s.InstallMethod,
JustfileSystem = s.JustfileSystem,
ContentAsset = c.ContentAsset,
ContentTemplate = c.ContentTemplate,
AssetKind = c.AssetKind,
TemplateKind = c.TemplateKind,
make_asset = c.make_asset,
make_template = c.make_template,
# Config surface builders
ConfigKind = s.ConfigKind,
ConsumerKind = s.ConsumerKind,
ConfigConsumer = s.ConfigConsumer,
ConfigSection = s.ConfigSection,
ConfigSurface = s.ConfigSurface,
make_config_surface = fun data => s.ConfigSurface & data,
make_config_section = fun data => s.ConfigSection & data,
make_config_consumer = fun data => s.ConfigConsumer & data,
}