Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c759f2

Browse files
committed
docs: add ADR-028 audit overview to README + collapsed section
- New collapsed section before Installation linking to witness log, ADR-028, and bundle generator - Shows test counts, proof hash, and 3-command verification steps Co-Authored-By: claude-flow <[email protected]>
1 parent 093be1f commit 9c759f2

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,42 @@ See [`docs/adr/ADR-027-cross-environment-domain-generalization.md`](docs/adr/ADR
332332

333333
---
334334

335+
<details>
336+
<summary><strong>🔍 Independent Capability Audit (ADR-028)</strong> — 1,031 tests, SHA-256 proof, self-verifying witness bundle</summary>
337+
338+
A [3-agent parallel audit](docs/adr/ADR-028-esp32-capability-audit.md) independently verified every claim in this repository — ESP32 hardware, signal processing, neural networks, training pipeline, deployment, and security. Results:
339+
340+
```
341+
Rust tests: 1,031 passed, 0 failed
342+
Python proof: VERDICT: PASS (SHA-256: 8c0680d7...)
343+
Bundle verify: 7/7 checks PASS
344+
```
345+
346+
**33-row attestation matrix:** 31 capabilities verified YES, 2 not measured at audit time (benchmark throughput, Kubernetes deploy).
347+
348+
**Verify it yourself** (no hardware needed):
349+
```bash
350+
# Run all tests
351+
cd rust-port/wifi-densepose-rs && cargo test --workspace --no-default-features
352+
353+
# Run the deterministic proof
354+
python v1/data/proof/verify.py
355+
356+
# Generate + verify the witness bundle
357+
bash scripts/generate-witness-bundle.sh
358+
cd dist/witness-bundle-ADR028-*/ && bash VERIFY.sh
359+
```
360+
361+
| Document | What it contains |
362+
|----------|-----------------|
363+
| [ADR-028](docs/adr/ADR-028-esp32-capability-audit.md) | Full audit: ESP32 specs, signal algorithms, NN architectures, training phases, deployment infra |
364+
| [Witness Log](docs/WITNESS-LOG-028.md) | 11 reproducible verification steps + 33-row attestation matrix with evidence per row |
365+
| [`generate-witness-bundle.sh`](scripts/generate-witness-bundle.sh) | Creates self-contained tar.gz with test logs, proof output, firmware hashes, crate versions, VERIFY.sh |
366+
367+
</details>
368+
369+
---
370+
335371
## 📦 Installation
336372

337373
<details>

0 commit comments

Comments
 (0)