Skip to main content

Zenzic Document Integrity Engine

ci-status zenzic-audit zenzic-score REUSE 3.x compliant PyPI Version Downloads Python Versions License

Deterministic Document Integrity Engine and SAST for Markdown/MDX graphs.
Tiered code governance, frozen security contracts, and RE2-backed deterministic scanning.


Treat your Markdown documentation like production code.

Zenzic detects broken links, orphaned pages, credential leaks, and structural integrity issues before they reach production.


⚡ Unified Ecosystem Platform

Zenzic is a unified, deterministic platform structured into three primary delivery mechanisms:

  • Core Engine (CLI): Python CLI, AST rule engine, Virtual Site Map (VSM) topology analyzer, and Baseline & Regression Tracking (.zenzic-baseline.json).
  • VS Code Extension: Real-time LSP client offering sub-50ms inline diagnostics, Quick Fixes, and DQS scoring.
  • GitHub Action: Zero-config CI/CD quality gate with SARIF upload and PR annotations.

🚀 Deterministic 3-Step Quickstart (< 60 Seconds)

Experience zero-config topological failure detection in under 60 seconds:

# Step 1: Install Zenzic CLI
uv tool install zenzic

# Step 2: Initialize workspace and create a broken link
zenzic init
mkdir -p docs
echo "[broken](missing.md)" > docs/index.md

# Step 3: Run full documentation graph analysis
zenzic check all

Expected Output:

docs/index.md:1  [Z104]  'missing.md' resolves to nowhere — the target file does not exist.

FAILED: Hard errors detected. Exit code 1 is mandatory.

Next Steps: Real-Time Feedback

To eliminate the latency between authoring a defect and discovering it, install the Zenzic VS Code Extension for real-time inline diagnostics and automated Quick Fixes.


🛡️ Why Zenzic?

Determinism

Every Zenzic run is a pure function of its inputs. Given the same repository state and .zenzic.toml, the output — finding codes, severity levels, exit code, SARIF structure — is bit-for-bit identical across machines, platforms, and time. There are no probabilistic judgements, no LLM sampling, and no network-dependent results injected into the analysis path.

Property Guarantee
Same inputs → same output ✅ Always
RE2-backed regex engine ✅ No backtracking, no catastrophic matching
Frozen finding codes FROZEN_CODES set; never renamed or silently retired
Reproducible CI artefacts ✅ Identical SARIF across runner OS and time

Documentation Security (SAST)

Zenzic treats documentation as a security surface. The tiered code model enforces a hard boundary between quality findings (suppressible, exit 1) and security findings (non-suppressible, exit 2 / 3):

  • Z201 — Credential Scanner: Hardcoded tokens, API keys, and secret patterns detected before they reach a PR.
  • Z202 / Z203 — Path Traversal Guard: Filesystem boundary violations caught at the scan boundary.
  • Suppression CAP: A configurable ceiling on the total number of active zenzic:ignore suppressions. Exceeding it blocks the build.

Zero Hallucinations

Zenzic reports only what is statically verifiable in the repository at scan time. It never infers intent or approximates link validity. Every finding is a falsifiable, reproducible fact.

Topological Graph Analysis (Orphans & Dead Ends)

Beyond static file checks, Zenzic's Smart Link Graph builds an adjacency list to perform Breadth-First Search (BFS) over your document network. It identifies Topological Orphans (Z410, documents unreachable from navigation entry points) and Dead Ends (Z411, pages with no outgoing links), helping maintain structural navigation integrity.


🧠 Key Capabilities & Commands

Command Purpose
zenzic init Scaffold workspace configuration (.zenzic.toml)
zenzic check all [PATH] Full documentation audit — links, credentials, orphans
zenzic score [--stamp] Compute the Documentation Quality Score (0–100)
zenzic diff [--base PATH] Detect debt regression against a saved baseline
zenzic guard scan [PATH] Defense-in-Depth credential pre-gate (fatal on security findings)
zenzic inspect codes Query live error-code semantics and suppressibility

Headless Data Pipeline (SARIF Output)

Zenzic Core is headless and emits standardized SARIF JSON, ensuring seamless integration with modern CI dashboards:

{
  "$schema": "https://json.schemastore.org/sarif-2.1.0.json",
  "version": "2.1.0",
  "runs": [
    {
      "tool": {
        "driver": {
          "name": "zenzic",
          "version": "0.27.2",
          "rules": [
            {
              "id": "Z101",
              "name": "BrokenLink"
            }
          ]
        }
      }
    }
  ]
}

🔌 Multi-Engine Support

Engine Adapter Highlights
MkDocs MkDocsAdapter i18n suffix + folder modes, fallback_to_default
Zensical ZensicalAdapter Transparent Proxy bridges mkdocs.yml
Any folder StandaloneAdapter File integrity checks — orphan detection disabled without a nav contract

See the Adapter API for the plugin interface. Third-party adapters install via the zenzic.adapters entry-point group.


🔄 CI/CD & Responsibility Matrix (ADR-075)

Zenzic Core is radically unaware of any CI platform. Platform-specific behaviour — GitHub Annotations, Code Scanning upload, PR decoration — is the sole responsibility of the Zenzic Action.

- uses: PythonWoods/zenzic-action@v2
  with:
    format: sarif
    upload-sarif: "true"
Concern Zenzic Core Zenzic Action
Link & Topology validation Executes Core
Credential scanner (Z2xx) Executes Core
Exit-code contract (0/1/2/3) Enforced
GitHub Annotations (::error::)
Code Scanning SARIF upload
PR inline diff annotations

📦 Installation & Upgrading

# Global CLI tool (Recommended)
uv tool install zenzic

# Pinned dev dependency
uv add --dev zenzic

# pip
pip install zenzic

If you installed Zenzic globally via uv, you must explicitly request an upgrade to fetch the latest deterministic engine:

uv tool upgrade zenzic

To run a specific version ephemerally without altering your global environment:

uvx zenzic@0.27.2 check all

📖 Documentation & Support

Area URL Audience
👤 User Guide zenzic.dev Install, configure, CI/CD, finding codes
📜 Rule Specification Cards zenzic.dev/docs/rules 41 deep-dive rule specifications with Bad/Good remediation examples
🔧 Developer Portal zenzic.dev/developers Adapters, ADRs, CLI architecture
🛡️ Security SECURITY.md Security reviewer

🤝 Contributing

  1. Open an issue to discuss the change.
  2. Read the Contributing Guide.
  3. Every PR must pass just verify and include SPDX headers on new files.

See also: Code of Conduct · Security Policy

📎 Citing

A CITATION.cff is present at the root. Click "Cite this repository" on GitHub for APA or BibTeX output.

📄 License

Apache-2.0 — see LICENSE. This project strictly adheres to Semantic Versioning.


PythonWoods

Engineered with precision by PythonWoods in Italy 🇮🇹
"Building the Standard for Technical Document Integrity."

Documentation · GitHub · Blog

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zenzic-0.27.2.tar.gz (4.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zenzic-0.27.2-py3-none-any.whl (384.0 kB view details)

Uploaded Python 3

File details

Details for the file zenzic-0.27.2.tar.gz.

File metadata

  • Download URL: zenzic-0.27.2.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"25.10","id":"questing","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for zenzic-0.27.2.tar.gz
Algorithm Hash digest
SHA256 2108b02db4f58268bd2fb9c086cf028328200193d5072d3567bd7d7157c18d80
MD5 a6fdff9348336801a7d9eab396b9b2d0
BLAKE2b-256 e774a27449beec358955a94f54771444ec2329edece21ba8f62ffc553a7f9db0

See more details on using hashes here.

File details

Details for the file zenzic-0.27.2-py3-none-any.whl.

File metadata

  • Download URL: zenzic-0.27.2-py3-none-any.whl
  • Upload date:
  • Size: 384.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"25.10","id":"questing","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for zenzic-0.27.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0566dc2b30a18ac3278aab7b67f2185dd0283ff08b8bf28c49c15b37c6d663fe
MD5 c01410bcecc16970607c8035948fb3aa
BLAKE2b-256 cdd8d1a6ed8d717e5c07599de06e8d2f61461970467a1460298230d7702e0414

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page