Skip to content

Releases

Zenzic v0.30.0: Documentation Quality Platform & Frictionless Adoption

Zenzic v0.30.0 Documentation Quality Platform

Zenzic v0.30.0 is a dual milestone. On the engine side, it elevates Zenzic into a full Documentation Quality Platform (DQP): native AST-based semantic analysis, structural accessibility rules, editorial style governance, and atomic auto-remediation — the complete picture of what deterministic documentation quality looks like across entire Markdown/MDX knowledge graphs. On the adoption side, it delivers Frictionless Adoption: the VS Code extension can now provision its own engine automatically, removing the last remaining manual setup step for every developer who opens a Markdown file.

Together, these two pillars define what v0.30.0 is about: making the highest standard of engineering-grade documentation quality accessible to every developer on your team, regardless of their Python expertise or system configuration.

Zenzic v0.24.0 → v0.26.0: The Editor Trilogy

Most editor integrations fail for a simple reason: they confuse immediacy with truth.

Fast feedback is not authoritative feedback. A red underline that appears in 20 milliseconds is worthless if the CI pipeline later disagrees with it. A score in the status bar is noise if it was inferred from partial state and sold as workspace truth.

Zenzic v0.24.0 through v0.26.0 was not a feature sprint. It was an architectural correction.

  • v0.24.0 introduced interaction.
  • v0.25.0 removed diagnostic drift.
  • v0.26.0 restored global scoring without corrupting determinism.

This is the editor trilogy: three releases that turned the VS Code extension from a reactive client into a governed execution surface.

Zenzic v0.24.0 → v0.26.0: The Editor Trilogy

Zenzic v0.24.0: Interactive Intelligence

Zenzic v0.24.0 marks the transition from passive static validation to interactive, editor-native remediation. This release introduces LSP Code Actions for automated Quick Fixes, real-time Documentation Quality Score (DQS) streaming to the editor status bar, and critical URI normalization bugfixes.

Zenzic v0.24.0: Interactive Intelligence

Shift-Left to the Keystroke: The Zenzic VS Code Extension

Architectural Update

Historical Note: This post refers to Zenzic as a "linter". As the system evolved, its capabilities expanded far beyond surface-level linting. Zenzic is now officially classified as a Deterministic Document Integrity Engine for Markdown/MDX graphs. Read the latest documentation for current architectural capabilities.

Since its inception, Zenzic has operated as a strict, deterministic gatekeeper for CI/CD pipelines. It ensures that no broken links, malformed topology, or hardcoded credentials ever reach production.

Today, we are eliminating the latency between authoring a defect and discovering it. We are officially releasing the Zenzic VS Code Extension, bringing the deterministic precision of our engine directly into your authoring environment.

Zenzic v0.20.0: The Extensibility Update — Custom AST Rules & Auto-Fix Expansion

Architectural Update

Historical Note: This post refers to Zenzic as a "linter". As the system evolved, its capabilities expanded far beyond surface-level linting. Zenzic is now officially classified as a Deterministic Document Integrity Engine for Markdown/MDX graphs. Read the latest documentation for current architectural capabilities.

Zenzic v0.20.0 is the first release to expose the engine's internal Abstract Syntax Tree to the outside world. After v0.19.0 laid the AST foundations, The Extensibility Update answers a long-standing question: what if the rules I need simply don't exist yet?

With v0.20.0, you write them yourself — in plain Python, in under a minute, with zero packaging.