Seiro MCP Docs

Seiro MCP spatial computing server and visionOS build 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
  5. Validate external display metadata:
    • .agents/skills/seiro-mcp-visionos-build-operator/agents/openai.yaml contains display_name, short_description, icon_large, and default_prompt
    • .agents/skills/seiro-mcp-visionos-build-operator/assets/seiro-mcp-logo-large.png and .agents/skills/seiro-mcp-visionos-build-operator/assets/seiro-mcp-logo-small.svg are present
    • docs and README still describe Seiro MCP and visionOS consistently
    • docs still explain that GitHub skill installation does not install or configure the Seiro MCP server itself

Publishing (manual)