Deterministic Document Integrity Engine and SAST for Markdown/MDX graphs in VS Code.
Zenzic brings the exact same
This extension is a strictly Thin Client. It contains zero parsing logic, zero regex engines, and zero validation rules. It communicates via the Language Server Protocol (LSP) over standard I/O directly with the zenzic Python binary installed on your system.
Hardcoded credentials (Z201) and path traversal sequences (Z202/Z203) are flagged in milliseconds using RE2 validation engine rules, preventing secret leaks before files are committed.
Modify a heading or link in one file, and Zenzic's Virtual Site Map (VSM) instantly invalidates any broken links, orphan pages, or dead navigation nodes across your entire workspace using
When framework configuration files (e.g. mkdocs.yml, zensical.toml, .zenzic.toml) are modified, the Language Server automatically reloads adapter metadata and rebuilds the Virtual Site Map without requiring an extension or editor restart.
Hover over any diagnostic to view the exact Z-Code, DQS score penalty, and remediation guidance. Apply automated Quick Fixes or insert Automated Inline Suppressions (<!-- zenzic:ignore:ZXXX -->, except for Z2xx Security findings) via textDocument/codeAction directly from the editor lightbulb menu.
Stream Document Quality Score (DQS) updates directly to the status bar, providing real-time visibility into overall repository health.
To guarantee sub-50ms performance, Zenzic operates with a strict separation of concerns in the editor:
- Real-Time Diagnostics (PROBLEMS Panel): AST rules (e.g., Z502, Z505) and local topology checks are executed incrementally in memory on every keystroke.
- Global DQS (Status Bar): The Documentation Quality Score requires a full repository audit. To prevent editor lag, the DQS is computed on-demand. Click the
Zenzic DQSitem in the Status Bar to execute a background CLI bridge and update the global score.
This extension requires Zenzic Core v0.26.3 or higher.
We recommend installing or updating the global binary via uv:
uv tool install --force zenzicOr via pip:
pip install --upgrade zenzicBy default, the extension resolves the zenzic executable from your system $PATH.
The extension currently contributes one user-facing setting:
zenzic.executablePath: path to thezenzicexecutable or to the virtual-environment binary you want the extension to use. The extension expands${workspaceFolder}and a leading~/or~\automatically.
If you use a local virtual environment or custom installation path, configure it in your workspace or user settings.json:
{
"zenzic.executablePath": "${workspaceFolder}/.venv/bin/zenzic"
}User-scoped home-directory paths are also supported:
{
"zenzic.executablePath": "~/custom_path/.venv/bin/zenzic"
}The extension contributes the following commands to the Command Palette:
Zenzic: Start ServerZenzic: Stop ServerZenzic: Restart ServerZenzic: Compute Global DQS
- Cause: The executable resolved by the extension is older than the minimum required Core version (
v0.26.3). - Remediation: Upgrade your global binary:
Or point
uv tool install --force zenzic
zenzic.executablePathinsettings.jsonto a virtual environment containing Corev0.26.3or higher.
-
Cause: The
zenzicexecutable is not present in the system$PATH. This commonly occurs in Flatpak, Snap, or isolated terminal environments where user binary directories (~/.local/bin) are omitted from process environments. -
Remediation: Specify an explicit path to the binary in
settings.json.${workspaceFolder}and leading~//~\are expanded automatically:{ "zenzic.executablePath": "~/custom_path/.venv/bin/zenzic" } -
Null-workspace note:
${workspaceFolder}requires an open workspace folder. If you open a standalone file without a workspace, use an absolute path or a~/...path instead.
The extension creates the Zenzic Language Server output channel. Use it to inspect startup failures, transport errors, and language-server logs when diagnostics do not appear as expected.
- Zero Telemetry: Zenzic operates entirely locally. No data is sent to external servers.
- Zero LLMs: All analysis is mathematically deterministic. No probabilistic guessing.
-
Sub-50ms Latency: Incremental
$O(K)$ graph patching ensures instant feedback regardless of workspace scale. - 100% CLI Parity: Shared core governance pipeline ensures bit-for-bit identical diagnostics between VS Code and CI/CD.
Licensed under Apache-2.0. For complete finding taxonomy and developer guides, visit zenzic.dev.
