← ClaudeAtlas

qector-validatorlisted

Formal verification, mathematical obligation checks, and governance protocols for QECTOR quantum error correction workflows.
GuillaumeLessard/qector-claude-plugin · ★ 0 · AI & Automation · score 60
Install: claude install-skill GuillaumeLessard/qector-claude-plugin
# QECTOR Validator Skill This skill governs the rigorous verification, mathematical proof obligation checks, and zero-egress compliance for the QECTOR platform. ## Key Responsibilities 1. **Protocol Handshake & MCP Validation**: - Verify `mcp/mcp_server_library.py` exposes exactly 8 tools and initializes to `qector-decoder-v3-mcp` 1.0.0. - Verify optional `qector-workbench` exposes 82 verified tools matching `test_results.md`. 2. **Mathematical Ground Truth (Theorems 1–16)**: - Enforce Theorem 1: Parity-check syndrome faithfulness $H c = s \pmod 2$. - Enforce Theorem 2: Logical error scoring via coset partition $\ker(H) \setminus \operatorname{im}(H^T)$. - Enforce 95% Wilson confidence intervals ($z = 1.959963985$) on all LER calculations. - Enforce Theorem 15: Two-stage CSS feed-forward faithfulness. - Enforce Theorem 16: Bit-identical CPU/GPU parity on unweighted matching. 3. **Zero-Egress Security & Privacy**: - Ensure zero data egress: matrices, `.stim` files, and `.npy` buffers remain strictly device-local. - Verify license posture without network calls (Ed25519 offline token check). ## Executable Verification Commands - Run full mathematical test suite: ```bash python -m unittest discover -s tests -v ``` - Run self-healing diagnostics: ```bash python scripts/qector_self_heal.py --json ``` - Run normative algebraic ground truth checks: ```python from qector_math_ground_truth import theorem_1_obligation, theorem_2_obligation