feat: workflow layer model — NCL-first CI/build/distribution generator
Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
2026-04-08 14:20:38 +01:00
|
|
|
# Standard validation, build, and distribution catalog for Rust/Nushell/Nickel projects.
|
|
|
|
|
# Workspaces import this and reference IDs in their layer declarations.
|
|
|
|
|
# Override or extend by merging with &: `D.validations & { my-check = { ... } }`
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
validations = {
|
|
|
|
|
# ── Rust linting ─────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
rust-fmt = {
|
|
|
|
|
id = "rust-fmt",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["+nightly", "fmt", "--all", "--", "--check"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
rust-clippy = {
|
|
|
|
|
id = "rust-clippy",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["clippy", "--all-targets", "--no-deps", "--profile", "clippy", "--", "-D", "warnings"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "clippy",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
rust-clippy-all = {
|
|
|
|
|
id = "rust-clippy-all",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["clippy", "--all-targets", "--all-features", "--", "-D", "warnings"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Rust testing ─────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
nextest-ci-test = {
|
|
|
|
|
id = "nextest-ci-test",
|
|
|
|
|
kind = 'Test,
|
|
|
|
|
tool = "cargo-nextest",
|
|
|
|
|
args = ["run", "--all-features", "--workspace",
|
|
|
|
|
"--profile", "ci-test", "--cargo-profile", "ci-test"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "ci-test",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
nextest-ci = {
|
|
|
|
|
id = "nextest-ci",
|
|
|
|
|
kind = 'Test,
|
|
|
|
|
tool = "cargo-nextest",
|
|
|
|
|
args = ["run", "--all-features", "--workspace",
|
|
|
|
|
"--profile", "ci", "--cargo-profile", "ci"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = false, # see all failures in CI
|
|
|
|
|
cargo_profile = "ci",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Security ─────────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
deny-subset = {
|
|
|
|
|
id = "deny-subset",
|
|
|
|
|
kind = 'Security,
|
|
|
|
|
tool = "cargo-deny",
|
|
|
|
|
args = ["check", "licenses", "advisories"],
|
|
|
|
|
when = ["Cargo.toml", "Cargo.lock"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
deny-all = {
|
|
|
|
|
id = "deny-all",
|
|
|
|
|
kind = 'Security,
|
|
|
|
|
tool = "cargo-deny",
|
|
|
|
|
args = ["check"],
|
|
|
|
|
when = [],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
geiger = {
|
|
|
|
|
id = "geiger",
|
|
|
|
|
kind = 'Security,
|
|
|
|
|
tool = "cargo-geiger",
|
|
|
|
|
args = ["--all-features", "--all-targets"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = false, # informational by default; use --forbid-only to gate
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Documentation ────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
docs-check = {
|
|
|
|
|
id = "docs-check",
|
|
|
|
|
kind = 'Docs,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["doc", "--no-deps", "--workspace", "--profile", "ci", "-q"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "ci",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Compliance (ontoref-specific) ────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
docs-drift = {
|
|
|
|
|
id = "docs-drift",
|
|
|
|
|
kind = 'Compliance,
|
|
|
|
|
tool = "nu",
|
|
|
|
|
args = ["-c", "use ./reflection/modules/sync.nu; sync diff --docs --fail-on-drift"],
|
|
|
|
|
when = ["*.rs"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
manifest-coverage = {
|
|
|
|
|
id = "manifest-coverage",
|
|
|
|
|
kind = 'Compliance,
|
|
|
|
|
tool = "nu",
|
|
|
|
|
args = ["--no-config-file", "-c",
|
|
|
|
|
"use ./reflection/modules/sync.nu *; sync manifest-check"],
|
|
|
|
|
when = [".ontology/*.ncl", "reflection/modes/*.ncl", "reflection/forms/*.ncl"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Nickel / Nushell linting ─────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
nickel-typecheck = {
|
|
|
|
|
id = "nickel-typecheck",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "nickel",
|
|
|
|
|
args = ["typecheck"],
|
|
|
|
|
when = ["*.ncl"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
nushell-check = {
|
|
|
|
|
id = "nushell-check",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "nu",
|
|
|
|
|
args = ["--ide-check", "100"],
|
|
|
|
|
when = ["*.nu"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
# ── Markdown ─────────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
markdownlint = {
|
|
|
|
|
id = "markdownlint",
|
|
|
|
|
kind = 'Lint,
|
|
|
|
|
tool = "markdownlint-cli2",
|
|
|
|
|
args = [],
|
|
|
|
|
when = ["*.md"],
|
|
|
|
|
fail_fast = true,
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
builds = {
|
|
|
|
|
release-native = {
|
|
|
|
|
id = "release-native",
|
|
|
|
|
kind = 'Binary,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["build", "--release", "--workspace"],
|
|
|
|
|
cargo_profile = "release",
|
|
|
|
|
target = "",
|
feat: #[onto_mcp_tool] catalog, OCI credential vault layer, validate ADR-018 mode hierarchy
ontoref-derive: #[onto_mcp_tool] attribute macro registers MCP tool unit-structs in
the catalog at link time via inventory::submit!; annotated item is emitted unchanged,
ToolBase/AsyncTool impls stay on the struct. All 34 tools migrated from manual wiring
(net +5: ontoref_list_projects, ontoref_search, ontoref_describe,
ontoref_list_ontology_extensions, ontoref_get_ontology_extension).
validate modes (ADR-018): reads level_hierarchy from workflow.ncl and checks every
.ncl mode for level declared, strategy declared, delegate chain coherent, compose
extends valid. mode resolve <id> shows which hierarchy level handles a mode and why.
--self-test generates synthetic fixtures in a temp dir for CI smoke-testing.
validate run-cargo: two-step Cargo.toml resolution — workspace layout first
(crates/<check.crate>/Cargo.toml), single-crate fallback by package name or repo
basename. Lets the same ADR constraint shape apply to workspace and single-crate repos.
ontology/schemas/manifest.ncl: registry_topology_type contract — multi-registry
coordination, push targets, participant scopes, per-namespace capability.
reflection/requirements/base.ncl: oras ≥1.2.0, cosign ≥2.0.0, sops ≥3.9.0, age
≥1.1.0, restic declared as Hard/Soft requirements with version_min, check_cmd, and
install_hint (ADR-017 toolchain surface).
ADR-019: per-file recipient routing for tenant isolation without multi-vault. Schema
additions: sops.recipient_groups + sops.recipient_rules in ontoref-project.ncl.
secrets-bootstrap generates .sops.yaml from project.ncl in declarative mode. Three
new secrets-audit checks: recipient-routing-coherent, recipient-routing-coverage,
no-multi-vault. Adoption templates: single-team/, multi-tenant/, agent-first/.
Integration templates: domain-producer/, mode-producer/, mode-consumer/.
UI: project_picker surfaces registry badge (⟳ participant) and vault badge
(⛁ vault_id · N, green=declarative / amber=legacy) per project card. Expanded panel
adds collapsible Registry section with namespace, endpoint, and push/pull capability.
manage.html gains Runtime Services card — MCP and GraphQL toggleable without restart
via HTMX POST /ui/manage/services/{service}/toggle.
describe.nu: capabilities JSON includes registry_topology and vault_state per project.
sync.nu: drift check extended to detect //! absence on newly registered crates.
qa.ncl: six entries — credential-vault-best-practice (layered data-flow diagram),
credential-vault-templates (paths A/B/C), credential-vault-troubleshooting (15 named
errors), integration-what-and-why (ADR-042 OCI federation), integration-how-to-implement,
integration-troubleshooting.
on+re: core.ncl + manifest.ncl updated to reflect OCI, MCP, and mode-hierarchy nodes.
Deleted stale presentation assets (2026-02 slides + voice notes).
2026-05-12 04:46:15 +01:00
|
|
|
artifacts = ["{TARGET_DIR}/release/"],
|
feat: workflow layer model — NCL-first CI/build/distribution generator
Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
2026-04-08 14:20:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
release-musl-x86 = {
|
|
|
|
|
id = "release-musl-x86",
|
|
|
|
|
kind = 'Binary,
|
|
|
|
|
tool = "cross",
|
|
|
|
|
args = ["build", "--target", "x86_64-unknown-linux-musl", "--release"],
|
|
|
|
|
cargo_profile = "release",
|
|
|
|
|
target = "x86_64-unknown-linux-musl",
|
feat: #[onto_mcp_tool] catalog, OCI credential vault layer, validate ADR-018 mode hierarchy
ontoref-derive: #[onto_mcp_tool] attribute macro registers MCP tool unit-structs in
the catalog at link time via inventory::submit!; annotated item is emitted unchanged,
ToolBase/AsyncTool impls stay on the struct. All 34 tools migrated from manual wiring
(net +5: ontoref_list_projects, ontoref_search, ontoref_describe,
ontoref_list_ontology_extensions, ontoref_get_ontology_extension).
validate modes (ADR-018): reads level_hierarchy from workflow.ncl and checks every
.ncl mode for level declared, strategy declared, delegate chain coherent, compose
extends valid. mode resolve <id> shows which hierarchy level handles a mode and why.
--self-test generates synthetic fixtures in a temp dir for CI smoke-testing.
validate run-cargo: two-step Cargo.toml resolution — workspace layout first
(crates/<check.crate>/Cargo.toml), single-crate fallback by package name or repo
basename. Lets the same ADR constraint shape apply to workspace and single-crate repos.
ontology/schemas/manifest.ncl: registry_topology_type contract — multi-registry
coordination, push targets, participant scopes, per-namespace capability.
reflection/requirements/base.ncl: oras ≥1.2.0, cosign ≥2.0.0, sops ≥3.9.0, age
≥1.1.0, restic declared as Hard/Soft requirements with version_min, check_cmd, and
install_hint (ADR-017 toolchain surface).
ADR-019: per-file recipient routing for tenant isolation without multi-vault. Schema
additions: sops.recipient_groups + sops.recipient_rules in ontoref-project.ncl.
secrets-bootstrap generates .sops.yaml from project.ncl in declarative mode. Three
new secrets-audit checks: recipient-routing-coherent, recipient-routing-coverage,
no-multi-vault. Adoption templates: single-team/, multi-tenant/, agent-first/.
Integration templates: domain-producer/, mode-producer/, mode-consumer/.
UI: project_picker surfaces registry badge (⟳ participant) and vault badge
(⛁ vault_id · N, green=declarative / amber=legacy) per project card. Expanded panel
adds collapsible Registry section with namespace, endpoint, and push/pull capability.
manage.html gains Runtime Services card — MCP and GraphQL toggleable without restart
via HTMX POST /ui/manage/services/{service}/toggle.
describe.nu: capabilities JSON includes registry_topology and vault_state per project.
sync.nu: drift check extended to detect //! absence on newly registered crates.
qa.ncl: six entries — credential-vault-best-practice (layered data-flow diagram),
credential-vault-templates (paths A/B/C), credential-vault-troubleshooting (15 named
errors), integration-what-and-why (ADR-042 OCI federation), integration-how-to-implement,
integration-troubleshooting.
on+re: core.ncl + manifest.ncl updated to reflect OCI, MCP, and mode-hierarchy nodes.
Deleted stale presentation assets (2026-02 slides + voice notes).
2026-05-12 04:46:15 +01:00
|
|
|
artifacts = ["{TARGET_DIR}/x86_64-unknown-linux-musl/release/"],
|
feat: workflow layer model — NCL-first CI/build/distribution generator
Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
2026-04-08 14:20:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sbom = {
|
|
|
|
|
id = "sbom",
|
|
|
|
|
kind = 'SBOM,
|
|
|
|
|
tool = "cargo-sbom",
|
|
|
|
|
args = [],
|
|
|
|
|
cargo_profile = "",
|
|
|
|
|
target = "",
|
feat: #[onto_mcp_tool] catalog, OCI credential vault layer, validate ADR-018 mode hierarchy
ontoref-derive: #[onto_mcp_tool] attribute macro registers MCP tool unit-structs in
the catalog at link time via inventory::submit!; annotated item is emitted unchanged,
ToolBase/AsyncTool impls stay on the struct. All 34 tools migrated from manual wiring
(net +5: ontoref_list_projects, ontoref_search, ontoref_describe,
ontoref_list_ontology_extensions, ontoref_get_ontology_extension).
validate modes (ADR-018): reads level_hierarchy from workflow.ncl and checks every
.ncl mode for level declared, strategy declared, delegate chain coherent, compose
extends valid. mode resolve <id> shows which hierarchy level handles a mode and why.
--self-test generates synthetic fixtures in a temp dir for CI smoke-testing.
validate run-cargo: two-step Cargo.toml resolution — workspace layout first
(crates/<check.crate>/Cargo.toml), single-crate fallback by package name or repo
basename. Lets the same ADR constraint shape apply to workspace and single-crate repos.
ontology/schemas/manifest.ncl: registry_topology_type contract — multi-registry
coordination, push targets, participant scopes, per-namespace capability.
reflection/requirements/base.ncl: oras ≥1.2.0, cosign ≥2.0.0, sops ≥3.9.0, age
≥1.1.0, restic declared as Hard/Soft requirements with version_min, check_cmd, and
install_hint (ADR-017 toolchain surface).
ADR-019: per-file recipient routing for tenant isolation without multi-vault. Schema
additions: sops.recipient_groups + sops.recipient_rules in ontoref-project.ncl.
secrets-bootstrap generates .sops.yaml from project.ncl in declarative mode. Three
new secrets-audit checks: recipient-routing-coherent, recipient-routing-coverage,
no-multi-vault. Adoption templates: single-team/, multi-tenant/, agent-first/.
Integration templates: domain-producer/, mode-producer/, mode-consumer/.
UI: project_picker surfaces registry badge (⟳ participant) and vault badge
(⛁ vault_id · N, green=declarative / amber=legacy) per project card. Expanded panel
adds collapsible Registry section with namespace, endpoint, and push/pull capability.
manage.html gains Runtime Services card — MCP and GraphQL toggleable without restart
via HTMX POST /ui/manage/services/{service}/toggle.
describe.nu: capabilities JSON includes registry_topology and vault_state per project.
sync.nu: drift check extended to detect //! absence on newly registered crates.
qa.ncl: six entries — credential-vault-best-practice (layered data-flow diagram),
credential-vault-templates (paths A/B/C), credential-vault-troubleshooting (15 named
errors), integration-what-and-why (ADR-042 OCI federation), integration-how-to-implement,
integration-troubleshooting.
on+re: core.ncl + manifest.ncl updated to reflect OCI, MCP, and mode-hierarchy nodes.
Deleted stale presentation assets (2026-02 slides + voice notes).
2026-05-12 04:46:15 +01:00
|
|
|
artifacts = ["{ROOT}/sbom.json"],
|
feat: workflow layer model — NCL-first CI/build/distribution generator
Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
2026-04-08 14:20:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
docs-html = {
|
|
|
|
|
id = "docs-html",
|
|
|
|
|
kind = 'Docs,
|
|
|
|
|
tool = "cargo",
|
|
|
|
|
args = ["doc", "--no-deps", "--workspace"],
|
|
|
|
|
cargo_profile = "release",
|
|
|
|
|
target = "",
|
feat: #[onto_mcp_tool] catalog, OCI credential vault layer, validate ADR-018 mode hierarchy
ontoref-derive: #[onto_mcp_tool] attribute macro registers MCP tool unit-structs in
the catalog at link time via inventory::submit!; annotated item is emitted unchanged,
ToolBase/AsyncTool impls stay on the struct. All 34 tools migrated from manual wiring
(net +5: ontoref_list_projects, ontoref_search, ontoref_describe,
ontoref_list_ontology_extensions, ontoref_get_ontology_extension).
validate modes (ADR-018): reads level_hierarchy from workflow.ncl and checks every
.ncl mode for level declared, strategy declared, delegate chain coherent, compose
extends valid. mode resolve <id> shows which hierarchy level handles a mode and why.
--self-test generates synthetic fixtures in a temp dir for CI smoke-testing.
validate run-cargo: two-step Cargo.toml resolution — workspace layout first
(crates/<check.crate>/Cargo.toml), single-crate fallback by package name or repo
basename. Lets the same ADR constraint shape apply to workspace and single-crate repos.
ontology/schemas/manifest.ncl: registry_topology_type contract — multi-registry
coordination, push targets, participant scopes, per-namespace capability.
reflection/requirements/base.ncl: oras ≥1.2.0, cosign ≥2.0.0, sops ≥3.9.0, age
≥1.1.0, restic declared as Hard/Soft requirements with version_min, check_cmd, and
install_hint (ADR-017 toolchain surface).
ADR-019: per-file recipient routing for tenant isolation without multi-vault. Schema
additions: sops.recipient_groups + sops.recipient_rules in ontoref-project.ncl.
secrets-bootstrap generates .sops.yaml from project.ncl in declarative mode. Three
new secrets-audit checks: recipient-routing-coherent, recipient-routing-coverage,
no-multi-vault. Adoption templates: single-team/, multi-tenant/, agent-first/.
Integration templates: domain-producer/, mode-producer/, mode-consumer/.
UI: project_picker surfaces registry badge (⟳ participant) and vault badge
(⛁ vault_id · N, green=declarative / amber=legacy) per project card. Expanded panel
adds collapsible Registry section with namespace, endpoint, and push/pull capability.
manage.html gains Runtime Services card — MCP and GraphQL toggleable without restart
via HTMX POST /ui/manage/services/{service}/toggle.
describe.nu: capabilities JSON includes registry_topology and vault_state per project.
sync.nu: drift check extended to detect //! absence on newly registered crates.
qa.ncl: six entries — credential-vault-best-practice (layered data-flow diagram),
credential-vault-templates (paths A/B/C), credential-vault-troubleshooting (15 named
errors), integration-what-and-why (ADR-042 OCI federation), integration-how-to-implement,
integration-troubleshooting.
on+re: core.ncl + manifest.ncl updated to reflect OCI, MCP, and mode-hierarchy nodes.
Deleted stale presentation assets (2026-02 slides + voice notes).
2026-05-12 04:46:15 +01:00
|
|
|
artifacts = ["{TARGET_DIR}/doc/"],
|
feat: workflow layer model — NCL-first CI/build/distribution generator
Adds a declarative workflow system where .ontology/workflow.ncl declares
independent layers (commit-fast, ci-standard, ci-exhaustive), each with a
trigger and a set of providers. The generator materialises Woodpecker YAML,
justfile recipes, and pre-commit hook stubs from that single declaration.
Layers form a set, not a chain — no layer depends on another at the
declaration level. Woodpecker steps express fine-grained parallelism
internally (lint → test/docs/build).
Schema and catalog:
- reflection/schemas/workflow.ncl — types, contracts, provider constructors
- reflection/defaults/workflow.ncl — standard Rust/Nushell/Nickel catalog
(14 validations, 4 builds)
Generator (ore workflow generate):
- PreCommit: prints hook fragments for manual merge into .pre-commit-config.yaml
- Woodpecker: writes per-layer YAML with image selection, tool installs,
depends_on chains, and CI-aware command translation
(nu --ide-check → find+xargs; markdownlint-cli2 → node:lts image)
- Justfile: single justfiles/workflow.just aggregated from all Justfile layers
(hoisted out of per-provider loop — was writing N times, now once)
Dispatcher: ore workflow validate|list|generate|diff + ore wf v|l|gen|diff
Cargo/nextest profiles:
- .cargo/config.toml: [profile.ci-test] (debug=0, no-incremental) and
[profile.ci] (line-tables-only) — shared by test + docs hooks to reuse
.rlib artifacts; CI retains actionable backtraces
- .config/nextest.toml: ci-test (fail-fast, no retries) and ci (all failures,
one retry)
Pre-commit: nextest run with --profile ci-test --cargo-profile ci-test;
docs-links hook shares same profile to reuse artifacts
Self-application: ontoref declares its own workflow in .ontology/workflow.ncl
and the generated .woodpecker/ files are the authoritative CI definition
Migration 0014: checks workflow.ncl + both cargo and nextest profiles present
Adoption: reflection/templates/ontology/workflow.ncl stub + install_workflow
confirm in adopt_ontoref form + step 5 in adoption script template
2026-04-08 14:20:38 +01:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
distributions = {},
|
|
|
|
|
}
|