Keep Your
Docs in Sync
A powerful Rust CLI tool that creates cryptographic links between your documentation and code, ensuring they never drift apart again.
Lightning Fast
Built with Rust for maximum performance. Hash-based verification ensures instant detection of any changes.
Cryptographically Secure
Uses Blake3 hashing to create tamper-proof links between documentation and code sections.
Developer Friendly
Simple partition format and intuitive CLI commands make it easy to create and manage doc-code mappings.
CI/CD Ready
Perfect for automation with GitHub Actions. Fail builds when docs drift from implementation.
.github/workflows/docs.yml
# GitHub Action for Documentation Sync
name: Documentation Sync Check
on: [push, pull_request]
jobs:
verify-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Pulko/doksnet@v1
✅Zero-setup CI/CD integration