2026-01-11 21:32:56 +00:00
|
|
|
# Pre-commit Framework Configuration
|
|
|
|
|
# Generated by dev-system/ci
|
|
|
|
|
# Configures git pre-commit hooks for Rust projects
|
|
|
|
|
|
|
|
|
|
repos:
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# Rust Hooks
|
|
|
|
|
# ============================================================================
|
|
|
|
|
- repo: local
|
|
|
|
|
hooks:
|
|
|
|
|
- id: rust-fmt
|
|
|
|
|
name: Rust formatting (cargo +nightly fmt)
|
|
|
|
|
entry: bash -c 'cargo +nightly fmt --all -- --check'
|
|
|
|
|
language: system
|
|
|
|
|
types: [rust]
|
|
|
|
|
pass_filenames: false
|
|
|
|
|
stages: [pre-commit]
|
|
|
|
|
|
|
|
|
|
- id: rust-clippy
|
|
|
|
|
name: Rust linting (cargo clippy)
|
|
|
|
|
entry: bash -c 'cargo clippy --lib --bins -- -W clippy::all'
|
|
|
|
|
language: system
|
|
|
|
|
types: [rust]
|
|
|
|
|
pass_filenames: false
|
|
|
|
|
stages: [pre-commit]
|
|
|
|
|
|
2026-01-11 21:34:47 +00:00
|
|
|
# Note: Cargo tests disabled from pre-commit (too slow)
|
|
|
|
|
# Run manually: cargo test --workspace
|
|
|
|
|
# Or enable in CI/CD pipeline
|
2026-01-11 21:32:56 +00:00
|
|
|
|
|
|
|
|
- id: cargo-deny
|
|
|
|
|
name: Cargo deny (licenses & advisories)
|
|
|
|
|
entry: bash -c 'cargo deny check'
|
|
|
|
|
language: system
|
|
|
|
|
pass_filenames: false
|
|
|
|
|
stages: [pre-push]
|
|
|
|
|
|
chore: ontology sync + 4 NCL ADRs + landing page update
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
2026-04-07 21:06:48 +01:00
|
|
|
- id: manifest-coverage
|
|
|
|
|
name: Manifest capability completeness
|
|
|
|
|
entry: >-
|
|
|
|
|
bash -c
|
|
|
|
|
'test -f ./reflection/modules/sync.nu &&
|
|
|
|
|
ONTOREF_ROOT="$(pwd)" ONTOREF_PROJECT_ROOT="$(pwd)"
|
|
|
|
|
nu --no-config-file -c
|
|
|
|
|
"use ./reflection/modules/sync.nu *; sync manifest-check"
|
|
|
|
|
|| true'
|
|
|
|
|
language: system
|
|
|
|
|
files: (\.ontology/|reflection/modes/|reflection/forms/).*\.ncl$
|
|
|
|
|
pass_filenames: false
|
|
|
|
|
stages: [pre-commit]
|
|
|
|
|
|
2026-01-11 21:32:56 +00:00
|
|
|
# ============================================================================
|
|
|
|
|
# Nushell Hooks (optional - enable if using Nushell)
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# - repo: local
|
|
|
|
|
# hooks:
|
|
|
|
|
# - id: nushell-check
|
|
|
|
|
# name: Nushell validation (nu --ide-check)
|
|
|
|
|
# entry: >-
|
|
|
|
|
# bash -c 'for f in $(git diff --cached --name-only --diff-filter=ACM | grep "\.nu$"); do
|
|
|
|
|
# echo "Checking: $f"; nu --ide-check 100 "$f" || exit 1; done'
|
|
|
|
|
# language: system
|
|
|
|
|
# types: [file]
|
|
|
|
|
# files: \.nu$
|
|
|
|
|
# pass_filenames: false
|
|
|
|
|
# stages: [pre-commit]
|
|
|
|
|
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# Nickel Hooks (optional - enable if using Nickel)
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# - repo: local
|
|
|
|
|
# hooks:
|
|
|
|
|
# - id: nickel-typecheck
|
|
|
|
|
# name: Nickel type checking
|
|
|
|
|
# entry: >-
|
|
|
|
|
# bash -c 'export NICKEL_IMPORT_PATH="../:."; for f in $(git diff --cached --name-only --diff-filter=ACM | grep "\.ncl$"); do
|
|
|
|
|
# echo "Checking: $f"; nickel typecheck "$f" || exit 1; done'
|
|
|
|
|
# language: system
|
|
|
|
|
# types: [file]
|
|
|
|
|
# files: \.ncl$
|
|
|
|
|
# pass_filenames: false
|
|
|
|
|
# stages: [pre-commit]
|
|
|
|
|
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# Bash Hooks (optional - enable if using Bash)
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# - repo: local
|
|
|
|
|
# hooks:
|
|
|
|
|
# - id: shellcheck
|
|
|
|
|
# name: Shellcheck (bash linting)
|
|
|
|
|
# entry: shellcheck
|
|
|
|
|
# language: system
|
|
|
|
|
# types: [shell]
|
|
|
|
|
# stages: [pre-commit]
|
|
|
|
|
#
|
|
|
|
|
# - id: shfmt
|
|
|
|
|
# name: Shell script formatting
|
|
|
|
|
# entry: bash -c 'shfmt -i 2 -d'
|
|
|
|
|
# language: system
|
|
|
|
|
# types: [shell]
|
|
|
|
|
# stages: [pre-commit]
|
|
|
|
|
|
|
|
|
|
# ============================================================================
|
2026-01-11 21:46:08 +00:00
|
|
|
# Markdown Hooks (DISABLED - too many legacy formatting issues)
|
2026-01-11 21:32:56 +00:00
|
|
|
# ============================================================================
|
2026-01-11 21:46:08 +00:00
|
|
|
# TODO: Re-enable after fixing markdown files to pass markdownlint
|
|
|
|
|
# - repo: local
|
|
|
|
|
# hooks:
|
|
|
|
|
# - id: markdownlint
|
|
|
|
|
# name: Markdown linting (markdownlint-cli2)
|
|
|
|
|
# entry: markdownlint-cli2
|
|
|
|
|
# language: system
|
|
|
|
|
# types: [markdown]
|
|
|
|
|
# exclude: |
|
|
|
|
|
# ^(
|
|
|
|
|
# \.typedialog|
|
|
|
|
|
# \.woodpecker|
|
|
|
|
|
# \.vale|
|
|
|
|
|
# assets/(prompt_gen|README)|
|
|
|
|
|
# (README|SECURITY|CONTRIBUTING|CODE_OF_CONDUCT)\.md
|
|
|
|
|
# )
|
|
|
|
|
# stages: [pre-commit]
|
2026-01-11 21:32:56 +00:00
|
|
|
|
|
|
|
|
# ============================================================================
|
|
|
|
|
# General Pre-commit Hooks
|
|
|
|
|
# ============================================================================
|
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
|
rev: v4.5.0
|
|
|
|
|
hooks:
|
|
|
|
|
- id: check-added-large-files
|
|
|
|
|
args: ['--maxkb=1000']
|
|
|
|
|
|
|
|
|
|
- id: check-case-conflict
|
|
|
|
|
|
|
|
|
|
- id: check-merge-conflict
|
|
|
|
|
|
|
|
|
|
- id: check-toml
|
|
|
|
|
|
|
|
|
|
- id: check-yaml
|
2026-01-11 21:46:08 +00:00
|
|
|
exclude: ^(\.woodpecker/|kubernetes/|provisioning/)
|
2026-01-11 21:32:56 +00:00
|
|
|
|
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
|
exclude: \.svg$
|
|
|
|
|
|
|
|
|
|
- id: trailing-whitespace
|
|
|
|
|
exclude: (\.md$|\.svg$)
|
|
|
|
|
|
|
|
|
|
- id: mixed-line-ending
|