Skip to content

Releases: zircote/adrscope

ADRScope v0.3.0

16 Jan 03:48

Choose a tag to compare

ADRScope v0.3.0

Installation

Homebrew (macOS/Linux):

brew install zircote/tap/adrscope

From crates.io:

cargo install adrscope

From binary:
Download the appropriate archive for your platform and extract to your PATH.

Checksums

See checksums.txt for SHA256 checksums of all archives.

What's Changed

See the CHANGELOG for details.

ADRScope v0.2.0

16 Jan 03:35

Choose a tag to compare

ADRScope v0.2.0

Installation

Homebrew (macOS/Linux):

brew install zircote/tap/adrscope

From crates.io:

cargo install adrscope

From binary:
Download the appropriate archive for your platform and extract to your PATH.

Checksums

See checksums.txt for SHA256 checksums of all archives.

What's Changed

See the CHANGELOG for details.

ADRScope v0

16 Jan 03:39

Choose a tag to compare

ADRScope v0

Installation

Homebrew (macOS/Linux):

brew install zircote/tap/adrscope

From crates.io:

cargo install adrscope

From binary:
Download the appropriate archive for your platform and extract to your PATH.

Checksums

See checksums.txt for SHA256 checksums of all archives.

What's Changed

See the CHANGELOG for details.

v0.1.0 - Initial Release

15 Jan 23:39

Choose a tag to compare

ADRScope v0.1.0

A lightweight visualization tool for Architecture Decision Records (ADRs).

Highlights

  • Self-contained HTML viewer with faceted search, filtering, and relationship graphs
  • GitHub Wiki generation with index, status, category, and timeline views
  • ADR validation with configurable rules for CI/CD integration
  • Statistics with breakdowns by status, category, tags, and authors

Installation

cargo install adrscope

Quick Start

# Generate HTML viewer
adrscope generate -i docs/decisions -o adr-viewer.html

# Validate ADRs (for CI/CD)
adrscope validate -i docs/decisions --strict

# Show statistics
adrscope stats -i docs/decisions

# Generate GitHub Wiki pages
adrscope wiki -i docs/decisions -o wiki/

What's New

Added

  • Self-contained HTML viewer with embedded CSS/JS
  • Faceted search and filtering by status, category, tags, author, project
  • Interactive relationship graph visualization
  • Multiple theme support (light, dark, system)
  • GitHub Wiki page generation
  • ADR validation with required/recommended field checks
  • Statistics with multiple output formats (text, JSON, markdown)
  • Lenient YAML frontmatter parsing with warnings for unknown status values

Security

  • Unsafe code forbidden via #![forbid(unsafe_code)]
  • Supply chain security with cargo-deny
  • All errors handled explicitly (no panics in library code)

Documentation