QA Evidence Vault
Every Solace Inspector run is sealed with SHA-256 and stored here forever. Change logs, compliance certifications, and sealed QA reports — all public, all verifiable, all court-admissible.
Why a Public Evidence Vault?
“Trust me, I tested it” is the oldest lie in software. Solace Inspector exists to replace that lie with cryptographic truth. Every inspection is sealed, every human approval is recorded, every change is logged. The vault is public because transparency is the only real trust signal.
🔒 Cryptographic Proof
Every QA report is SHA-256 sealed before writing to outbox/. The hash covers the entire report — ARIA tree, DOM snapshot, heuristics, screenshots, agent analysis, human approval. Changing a single byte changes the hash. Fraud is mathematically impossible.
⚖ FDA 21 CFR Part 11
The same evidence standard used in medical device software validation. Electronic signatures. Audit trails. Tamper-evident records. If it’s good enough for the FDA, it’s good enough for your dev team.
👤 Human-in-the-Loop
Every fix applied by an AI agent requires explicit human e-sign approval. The vault records WHO approved, WHEN, and WHAT the approval covered. No ghost actions. No “the AI did it.” Humans remain accountable.
🟢 Live QA Status
Current QA health of Solace ecosystem products. Updated on every Inspector run.
QA scores are computed from HICCUPPS heuristics (deterministic, reproducible). Belt: 🟢 Green ≥90 • 🟠 Orange ≥75 • 🟡 Yellow ≥60 • ⚪ White <60.
📝 Change Log (Sealed)
Every significant change to Solace products, with QA evidence hash. Each entry is immutable once sealed.
| Date | Product | Change | GLOW | QA Score | Evidence Hash | Approved By |
|---|---|---|---|---|---|---|
| 2026-03-03 | solace-browser | Solace Inspector app — agent-native HITL QA (Paper 42) | 89 | — | pending first run |
phuc (Phuc Labs) |
| 2026-03-03 | solaceagi.com | AGI landing, pricing, privacy, terms, download pages | 65 | — | commit: 3c86e25b |
phuc (Phuc Labs) |
| 2026-03-03 | solaceagi.com | MCP server live — 8 tools, JSON-RPC 2.0 | 140 | — | commit: f35ce6b7 |
phuc (Phuc Labs) |
| 2026-03-02 | solaceagi.com | Firebase Auth fix — signInWithRedirect for all OAuth providers | 78 | — | commit: 0e80abd |
phuc (Phuc Labs) |
| 2026-03-02 | solaceagi.com | Full system QA — 53/53 PASS (Playwright headed suite) | 102 | 100/100 | commit: c646fff |
phuc (Phuc Labs) |
| 2026-03-01 | solaceagi.com | i18n — all 13 locales, 2208+ translated nodes | 113 | — | commit: 54fec4e |
phuc (Phuc Labs) |
ⓘ Evidence hashes are git commit SHAs for now. When Solace Inspector runs are available, they will be replaced with <code>sha256:...</code> seals from outbox/ reports.
⚖ Compliance Certifications
FDA 21 CFR Part 11
Electronic records and electronic signatures standard. Solace Inspector produces Part 11 Architected evidence bundles: electronic signatures (e-sign token), audit trails (approval records), and secure, computer-generated records (SHA-256 sealed JSON).
ALCOA+ Principles
Attributable, Legible, Contemporaneous, Original, Accurate, plus Complete, Consistent, Enduring, Available. All Solace Inspector reports satisfy ALCOA+ for GxP data integrity. Required in pharmaceutical and medical device industries.
SOC2 Type II
Security, availability, processing integrity, confidentiality, and privacy controls audit. Solace Inspector evidence vault architecture is designed for SOC2 readiness. Formal certification scheduled for Enterprise tier (Q3 2026).
✅ How to Verify Any Report
Every sealed report can be independently verified. You don’t need to trust us — the math is public.
# Download any report from the evidence API:
curl https://www.solaceagi.com/api/v1/qa-evidence/report-{run_id}.json > report.json
# Verify the SHA-256 seal (Python):
python3 -c "
import json, hashlib
with open('report.json') as f:
data = json.load(f)
stored_hash = data.pop('evidence_hash')
computed = 'sha256:' + hashlib.sha256(
json.dumps(data, sort_keys=True, default=str).encode()
).hexdigest()
print('VALID' if computed == stored_hash else 'TAMPERED')
print('Stored: ', stored_hash)
print('Computed:', computed)
"
# Output:
# VALID
# Stored: sha256:a4f3c8b2e1...
# Computed: sha256:a4f3c8b2e1... ← match = untampered
Add Your Evidence to the Vault
Install Solace Inspector (built into Solace Browser) and your QA evidence automatically becomes part of the permanent record. Every sealed report adds to the world’s first public AI QA evidence chain.