How to Verify This Evidence
This page explains how to independently verify every claim made in the AOS Evidence Repository. We designed this repository to be trustless โ you don't need to trust us, you can verify everything yourself.
Quick Start: 5 Minutes
- Clone the repo:
git clone https://github.com/genesalvatore/aos-evidence.com - Check timestamps:
git log --format="%H %ai %s" -20 - Verify commit integrity:
git fsck --full - Read the evidence: Browse the documents in your local copy
What You Can Verify
1. Timeline Claims
What we claim: Key innovations were documented before industry announcements.
How to verify:
# See all commits with timestamps
git log --format="%H %ai %s"
# Verify a specific commit date
git show --format="%H%nAuthor Date: %ai%nCommit Date: %ci" <commit-hash>
# Check for any rebase or force-push (these would be visible)
git reflog2. Document Integrity
What we claim: Documents have not been modified after initial publication.
How to verify:
# Show when a file was first committed
git log --follow --diff-filter=A -- <filename>
# Show all changes to a file
git log --follow -p -- <filename>
# Verify file hasn't changed since initial commit
git diff <first-commit>..<latest-commit> -- <filename>3. Cross-Reference External Sources
What to check:
- Industry announcements โ Compare our commit dates to public announcements
- Patent filings โ Verify our provisional patent dates (filed January 10, 2026)
- GitHub API โ Use GitHub's API to independently verify push timestamps
- Web archives โ Check Wayback Machine for our public pages
4. Git Integrity Verification
Git provides built-in integrity checks:
# Full integrity check
git fsck --full --strict
# Verify object hashes
git verify-pack -v .git/objects/pack/*.idx
# Check for unsigned commits (we sign with GPG)
git log --show-signatureWhat We Cannot Fake
- Git commit timestamps โ While author dates can be set manually, GitHub's push timestamps are server-side and cannot be manipulated
- GitHub push events โ The GitHub Events API records when pushes happen, independently of commit dates
- Commit hash chains โ Each commit hash includes the parent hash, creating a tamper-evident chain
- External references โ Industry announcements, news articles, and third-party timestamps cannot be retroactively modified
Key Evidence Anchors
Canonical Anchor
Tag: evidence-2026-02-06
Commit: 9f4b0d9
This is the first complete evidence package. All documents present at this commit represent the baseline public record.
ChatGPT Audit Evidence
Initial: 8c685ee
Correction: aaffd3c
Path: EVIDENCE/chatgpt_security_audit_feb_5_2026/
12 documents, 9,323 insertions โ the complete record of the world's first AI-to-AI security audit of constitutional governance.
Reporting Issues
If you find inconsistencies, please report:
Email: contact@aos-evidence.com
GitHub Issues: Open an issue
Public disclosure: Encouraged
We commit to:
- Acknowledge all valid critiques
- Correct errors publicly
- Update documents with corrections noted
- Never delete evidence (only append corrections)
Verification Checklist
- Clone repository locally
- Check Git commit timestamps
- Verify timeline consistency across docs
- Cross-reference industry announcements
- Review technical claim plausibility
- Check for Git history manipulation
- Test reproducibility (when code available)
- Search for external confirmations/denials
- Compare claimed dates to public records
- Archive for future reference
Time required: 1โ2 hours for thorough verification
Remember: We designed this repository to BE verifiable.
If you can't verify our claims, we failed our mission.