Some checks failed
Documentation Lint & Validation / Markdown Linting (push) Has been cancelled
Documentation Lint & Validation / Validate mdBook Configuration (push) Has been cancelled
Documentation Lint & Validation / Content & Structure Validation (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
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
Documentation Lint & Validation / Lint & Validation Summary (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
on+re:
- core.ncl: 5 new Practice nodes (notification-channels,
vapora-capabilities, agent-hot-reload-stable-identity,
merkle-audit-trail, notification-channels) + 5 new edges;
knowledge-graph-execution-history updated with HNSW+BM25+RRF
- state.ncl: production-readiness blocker/catalyst updated (hot-reload
complete, BudgetManager/LLMRouter still require restart);
ontoref-integration catalyst updated (vapora-ontology/reflection
crates, api-catalog.json, nickel contracts)
ADRs (NCL):
- adr-013: KG hybrid search — HNSW+BM25+RRF, rejected in-process scan
- adr-014: capability packages — AgentDefinition→vapora-shared,
DashMap shard-before-await constraint
- adr-015: Merkle audit trail — SHA-256 hash chain, rejected HMAC
- adr-016: agent hot-reload — stable_id=role, learning_profiles survive
drain, BudgetManager excluded from reload scope
landing page:
- 2 new feature boxes: VCS-Agnostic Worktree (jj/git), Ontology Protocol
- KG box: 20→28 tests, HNSW+BM25+RRF description
- Agents box: 71→82 tests, hot-reload + stable_id
- tech stack: Rust 21→23 crates, added jj, Radicle, ontoref badges
- status badge: 620→691 tests
36 lines
1 KiB
Text
36 lines
1 KiB
Text
# .ontoref/config.ncl — ontoref configuration for vapora
|
|
# Place this file at <project_root>/.ontoref/config.ncl
|
|
|
|
{
|
|
nickel_import_paths = [".", ".ontology", "ontology/schemas", "adrs", "reflection/requirements", "reflection/schemas"],
|
|
|
|
log = {
|
|
level = "info",
|
|
path = ".ontoref/logs",
|
|
rotation = "daily",
|
|
compress = false,
|
|
archive = ".ontoref/logs/archive",
|
|
max_files = 7,
|
|
},
|
|
|
|
mode_run = {
|
|
rules = [
|
|
{ when = { mode_id = "validate-ontology" }, allow = true, reason = "validation always allowed" },
|
|
{ when = { actor = "agent" }, allow = true, reason = "agent actor always allowed" },
|
|
{ when = { actor = "ci" }, allow = true, reason = "ci actor always allowed" },
|
|
],
|
|
},
|
|
|
|
nats_events = {
|
|
enabled = false,
|
|
url = "nats://localhost:4222",
|
|
emit = [],
|
|
subscribe = [],
|
|
handlers_dir = "reflection/handlers",
|
|
},
|
|
ui = {
|
|
logo = "vapora.svg",
|
|
},
|
|
|
|
card = import "../card.ncl",
|
|
}
|