Seiro MCP Docs

Seiro MCP server and visionOS tools

View the Project on GitHub karad/seiro-mcp

Release process

This repository does not yet provide an automated release pipeline. Use this document to keep releases reproducible.

Versioning policy

Pre-release checklist

  1. Run the quality gate (fixed order):
    cargo check
    cargo test --all -- --nocapture
    cargo fmt -- --check
    cargo clippy -- -D warnings
    cargo build --release
    
  2. Run repository checks:
    cargo run -p xtask -- langscan
    cargo run -p xtask -- docs-langscan
    cargo run -p xtask -- check-docs-links
    
  3. Validate package contents and dry-run publish:
    cargo package --list
    cargo publish --dry-run
    
  4. Validate docs consistency:
    • README / docs/quickstart.md / docs/runbook.md / docs/config.md
    • docs/compatibility.md reflects any contract decision

Publishing (manual)