Releases: zircote/adrscope
Releases · zircote/adrscope
ADRScope v0.3.0
ADRScope v0.3.0
Installation
Homebrew (macOS/Linux):
brew install zircote/tap/adrscopeFrom crates.io:
cargo install adrscopeFrom 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
ADRScope v0.2.0
Installation
Homebrew (macOS/Linux):
brew install zircote/tap/adrscopeFrom crates.io:
cargo install adrscopeFrom 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
ADRScope v0
Installation
Homebrew (macOS/Linux):
brew install zircote/tap/adrscopeFrom crates.io:
cargo install adrscopeFrom 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
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 adrscopeQuick 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)