- DAG architecture: `dag show/validate/export` (nulib/main_provisioning/dag.nu),
config loader (lib_provisioning/config/loader/dag.nu), taskserv dag-executor.
Backed by schemas/lib/dag/*.ncl; orchestrator emits NATS events via
WorkspaceComposition::into_workflow. See ADR-020, ADR-021.
- Unified Component Architecture: components/mod.nu, main_provisioning/
{components,workflow,extensions,ontoref-queries}.nu. Full workflow engine with
topological sort and NATS subject emission. Blocks A-H complete (libre-daoshi).
- Commands-registry: nulib/commands-registry.ncl (Nickel source, 314 lines) +
JSON cache at ~/.cache/provisioning/commands-registry.json rebuilt on source
change. cli/provisioning fast-path alias expansion avoids cold Nu startup.
ADDING_COMMANDS.md documents new-command workflow.
- Platform service manager: service-manager.nu (+573), startup.nu (+611),
service-check.nu (+255); autostart/bootstrap/health/target refactored.
- Nushell 0.112.2 migration: removed all try/catch and bash redirections;
external commands prefixed with ^; type signatures enforced. Driven by
scripts/refactor-try-catch{,-simplified}.nu.
- TTY stack: removed shlib/*-tty.sh; replaced by cli/tty-dispatch.sh,
tty-filter.sh, tty-commands.conf.
- New domain modules: images/ (golden image lifecycle), workspace/{state,sync}.nu,
main_provisioning/{bootstrap,cluster-deploy,fip,state}.nu, commands/{state,
build,integrations/auth,utilities/alias}.nu, platform.nu expanded (+874).
- Config loader overhaul: loader/core.nu slimmed (-759), cache/core.nu
refactored (-454), removed legacy loaders/file_loader.nu (-330).
- Thirteen new provisioning-<domain>.nu top-level modules for bash dispatcher.
- Tests: test_workspace_state.nu (+351); updates to test_oci_registry,
test_services.
- README + CHANGELOG updated.
143 lines
5 KiB
YAML
143 lines
5 KiB
YAML
# Pre-commit Framework Configuration
|
|
# Generated by dev-system/ci
|
|
# Configures git pre-commit hooks for Rust projects
|
|
|
|
repos:
|
|
# ============================================================================
|
|
# Rust Hooks (COMMENTED OUT - Not used in this repo)
|
|
# ============================================================================
|
|
# - 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 --all-targets -- -D warnings'
|
|
# language: system
|
|
# types: [rust]
|
|
# pass_filenames: false
|
|
# stages: [pre-commit]
|
|
#
|
|
# - id: rust-test
|
|
# name: Rust tests
|
|
# entry: bash -c 'cargo test --workspace'
|
|
# language: system
|
|
# types: [rust]
|
|
# pass_filenames: false
|
|
# stages: [pre-push]
|
|
#
|
|
# - id: cargo-deny
|
|
# name: Cargo deny (licenses & advisories)
|
|
# entry: bash -c 'cargo deny check licenses advisories'
|
|
# language: system
|
|
# pass_filenames: false
|
|
# stages: [pre-push]
|
|
|
|
# ============================================================================
|
|
# Nushell Hooks (ACTIVE)
|
|
# ============================================================================
|
|
- 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 (ACTIVE)
|
|
# ============================================================================
|
|
- 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: [commit]
|
|
#
|
|
# - id: shfmt
|
|
# name: Shell script formatting
|
|
# entry: bash -c 'shfmt -i 2 -d'
|
|
# language: system
|
|
# types: [shell]
|
|
# stages: [commit]
|
|
|
|
# ============================================================================
|
|
# Markdown Hooks (ACTIVE)
|
|
# ============================================================================
|
|
- repo: local
|
|
hooks:
|
|
- id: markdownlint
|
|
name: Markdown linting (markdownlint-cli2)
|
|
entry: markdownlint-cli2
|
|
language: system
|
|
types: [markdown]
|
|
stages: [pre-commit]
|
|
|
|
# CRITICAL: markdownlint-cli2 MD040 only checks opening fences for language.
|
|
# It does NOT catch malformed closing fences (e.g., ```plaintext) - CommonMark violation.
|
|
# This hook is ESSENTIAL to prevent malformed closing fences from entering the repo.
|
|
# See: .markdownlint-cli2.jsonc line 22-24 for details.
|
|
- id: check-malformed-fences
|
|
name: Check malformed closing fences (CommonMark)
|
|
entry: bash -c 'cd .. && nu scripts/check-malformed-fences.nu $(git diff --cached --name-only --diff-filter=ACM | grep "\.md$" | grep -v ".coder/" | grep -v ".claude/" | grep -v "old_config/" | tr "\n" " ")'
|
|
language: system
|
|
types: [markdown]
|
|
pass_filenames: false
|
|
stages: [pre-commit]
|
|
exclude: ^\.coder/|^\.claude/|^old_config/
|
|
|
|
# ============================================================================
|
|
# 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
|
|
# exclude: ^\.woodpecker/
|
|
|
|
- id: end-of-file-fixer
|
|
exclude: ^(\.coder/|\.wrks/|\.claude/)
|
|
|
|
- id: trailing-whitespace
|
|
exclude: \.md$|^(\.coder/|\.wrks/|\.claude/)
|
|
|
|
- id: mixed-line-ending
|
|
exclude: ^(\.coder/|\.wrks/|\.claude/)
|