diff --git a/.github/workflows/check-no-paid-artifacts.yml b/.github/workflows/check-no-paid-artifacts.yml index 961a9f9f..46a10a96 100644 --- a/.github/workflows/check-no-paid-artifacts.yml +++ b/.github/workflows/check-no-paid-artifacts.yml @@ -1,7 +1,6 @@ name: Check No Paid Artifacts on: - workflow_dispatch: pull_request: paths: - 'site/**' @@ -9,6 +8,7 @@ on: - 'scripts/**' - 'tests/test_goalos_public_site_rules.py' - '.github/workflows/check-no-paid-artifacts.yml' + workflow_dispatch: permissions: contents: read @@ -24,9 +24,14 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install validation test dependencies - run: python -m pip install pytest - name: Check public paid/private artifact boundary run: python scripts/check_no_paid_artifacts.py - - name: Run paid-artifact regression tests - run: python -m pytest tests/test_goalos_public_site_rules.py -q + - name: Run paid-artifact regression tests if pytest is available + run: | + python - <<'PY' + import importlib.util, subprocess, sys + if importlib.util.find_spec('pytest') is None: + print('pytest unavailable; skipping optional paid-artifact regression tests') + sys.exit(0) + sys.exit(subprocess.call([sys.executable, '-m', 'pytest', 'tests/test_goalos_public_site_rules.py', '-q'])) + PY diff --git a/.github/workflows/validate-docs-tables-figures.yml b/.github/workflows/validate-docs-tables-figures.yml index 98eec125..26c5bd33 100644 --- a/.github/workflows/validate-docs-tables-figures.yml +++ b/.github/workflows/validate-docs-tables-figures.yml @@ -1,12 +1,14 @@ -name: Validate Docs Tables Figures +name: Validate GoalOS Docs, Tables, Figures on: - workflow_dispatch: pull_request: paths: + - 'README.md' - 'docs/**' + - 'badges/**' - 'scripts/**' - '.github/workflows/validate-docs-tables-figures.yml' + workflow_dispatch: permissions: contents: read @@ -17,5 +19,9 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 - - name: Validate documentation tables, figures, and artifact links + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Validate docs, tables, figures, README, and links run: python scripts/validate_docs_tables_figures.py diff --git a/.github/workflows/validate-goalos-catalog.yml b/.github/workflows/validate-goalos-catalog.yml new file mode 100644 index 00000000..517a9cfc --- /dev/null +++ b/.github/workflows/validate-goalos-catalog.yml @@ -0,0 +1,29 @@ +name: Validate GoalOS Catalog + +on: + pull_request: + paths: + - 'README.md' + - 'docs/**' + - 'site/**' + - 'scripts/**' + - '.github/workflows/validate-goalos-catalog.yml' + workflow_dispatch: + +permissions: + contents: read + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Validate GoalOS catalog consistency + run: python scripts/validate_goalos_catalog.py + - name: Validate public site v14 rules + run: python scripts/validate_goalos_public_site.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6050d4c2..ce572e80 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,26 +1,39 @@ -# Contributing +# Contributing to Proof Gradient · GoalOS -Thank you for improving Agent SkillOS. +Thank you for improving the public proof and standards layer. -## Local setup +## Documentation update rules -```bash -python -m skillos.cli demo -python -m unittest discover -s tests -``` +- Keep `docs/data/goalos_catalog.yml` as the source of truth for product names, prices, versions, public status, standards, validation status, and safe claim boundaries. +- When the product ladder changes, update the catalog, `docs/tables/goalos_product_ladder.csv`, README, and relevant GoalOS docs in the same pull request. +- When figures change, update both Mermaid source (`docs/figures/*.mmd`) and SVG export (`docs/figures/*.svg`) when practical. +- When tables change, update CSV files under `docs/tables/` first and keep Markdown tables consistent. + +## Paid-file policy + +Do not commit paid buyer ZIPs, workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, professional-firm packs, or private commercial artifacts to public deploy roots. All paid product purchase/application links must point to: + + + +## Claim boundary -## Development principles +Do not add unsupported claims of guaranteed ROI, guaranteed revenue, guaranteed productivity, investment returns, legal/financial/tax advice, compliance certification, AI safety certification, autonomous AGI, base-model self-modification, uncontrolled autonomous deployment, achieved AGI/ASI, or independently unproven real profit/revenue. -1. Keep the core loop easy to understand. -2. Prefer small, inspectable skill artifacts over opaque behavior. -3. Every new skill update path needs tests. -4. Every release path needs rollback. -5. Do not mix private knowledge with shared skill. +## Validation commands -## Pull request checklist +Run before opening a PR: -- [ ] Tests pass. -- [ ] New behavior is documented. -- [ ] New skill behavior is versioned. -- [ ] Permission changes are explicit. -- [ ] No local `.skillos` data is committed. +```bash +python scripts/check_no_paid_artifacts.py +python scripts/validate_goalos_public_site.py +python scripts/validate_docs_tables_figures.py +python scripts/validate_goalos_catalog.py +``` + +If available, also run: + +```bash +pytest +make test +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +``` diff --git a/QA_VERIFICATION.md b/QA_VERIFICATION.md index 033dc827..5b8df45d 100644 --- a/QA_VERIFICATION.md +++ b/QA_VERIFICATION.md @@ -1,54 +1,30 @@ -# QA verification +# QA Verification -This package was verified locally before delivery. - -Commands run: +## Required GoalOS validation commands ```bash -PYTHONDONTWRITEBYTECODE=1 python scripts/qa_check.py -python -m skillos.cli wealth-proof -node --check site/app.js +python scripts/check_no_paid_artifacts.py +python scripts/validate_goalos_public_site.py +python scripts/validate_docs_tables_figures.py +python scripts/validate_goalos_catalog.py ``` -Expected result: - -```text -✅ Repository file verification passed -Ran 6 tests ... OK -✅ Agent SkillOS verification passed -✅ Verified GitHub Pages output at dist -✅ Repository QA passed -``` - -What is checked: - -- End-to-end SkillOS loop: Work → Trace → Learn → Skill → Test → Release. -- SQLite storage initialization. -- GitHub Pages demo snapshot generation. -- reference workflow proof generation at `data/wealth_proof.json` and `dist/data/wealth_proof.json`. -- Monotonic economic checks: every release decreases cost, decreases minutes, increases quality, and increases accepted rate. -- `dist/index.html`, `dist/styles.css`, `dist/app.js`, `dist/data/demo.json`, `dist/data/wealth_proof.json`, `.nojekyll`, and manifest creation. -- Repository targets `MontrealAI/proof-gradient` and `https://montrealai.github.io/proof-gradient/`. -- JavaScript syntax for the static website. -- Root-level fallback website mirror is included for branch-root GitHub Pages deployment. +## Current validation baseline -GitHub Actions re-runs the same QA path during deployment. +- Current: GoalOS Validation Hotfix v14 Microsite Compatibility. +- Obsolete as current references: v12, v13, and obsolete v8 compatibility validation. +- Canonical pages require one canonical shell and footer. +- Standalone proof/microsite pages may use standalone metadata and a visible `/proof-gradient/` escape link. +- App pages may use app shell. +- Public AEP packages are allowed only at `standards/AEP-###/complete-package.zip`. +- Paid/private artifacts are blocked from public deploy roots. -## v3.0 reference workflow proof +## Optional tests when tooling is available -This repository includes `scripts/prove_wealth_loop.py`, `skillos/wealth_proof.py`, `tests/test_wealth_proof.py`, and `data/wealth_proof.json`. - -The proof uses the sales follow-up workflow to verify that each completed job creates a tested release and that the workflow gets cheaper, faster, and better after every release. - -Current proof result: - -```text -Workflow: Sales follow-up email from call notes -Final skill version: v6 -Quality: 0.50 → 0.96 -Minutes/job: 6.75 → 2.55 -Cost/job: $8.48 → $3.23 -projected annual savings under demo assumptions vs human baseline at 10,000 jobs: $117,700 +```bash +pytest +make test +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs ``` -The GitHub Pages deploy refuses to publish if the reference workflow proof fails. +If a tool is unavailable, document the skip in `docs/GOALOS_REPO_AUDIT.md`. diff --git a/README.md b/README.md index f07a7e97..49e8495c 100644 --- a/README.md +++ b/README.md @@ -1,124 +1,142 @@ -# Proof Gradient / GoalOS +# Proof Gradient · GoalOS -**A model can answer. An agent can act. An institution must prove.** +

+ Proof Gradient public proof badge + GoalOS workflow OS badge + AEP standards 001 through 008 badge + Validation v14 badge + No paid artifacts guarded badge + GoalOS Cloud MVP 0.2 badge + QUEBEC.AI badge + No model self-modification badge +

-Proof Gradient is the public proof and standards layer for GoalOS. GoalOS is the recursive workflow operating layer for the RSI era: it turns repeated AI work into owned, scored, versioned, approved, monitored, and recursively improving workflows. +**Aim. Act. Prove. Evolve.** -**Commercial line:** ChatGPT gives you answers. GoalOS gives you workflows that get better every time they run. +> A model can answer. An agent can act. An institution must prove. -**Enterprise line:** Enterprise RSI without model self-modification. +Proof Gradient is the public proof and standards layer. GoalOS is the recursive workflow operating layer. QUEBEC.AI ⚜️✨ is the sovereign Québec AI identity layer. The category is **Recursive Self-Improving Workflows** and the platform direction is **GoalOS Recursive Workflow OS**. -## Safe boundary +## Safe AI boundary -GoalOS does **not** modify AI models. Recursive improvement happens at the workflow layer: workflow definitions, instructions, prompts, memory, scorecards, proof records, evaluations, evidence standards, operating procedures, approvals, versions, monitoring, and rollback. +GoalOS improves workflows around AI; it does **not** modify base AI models. It improves instructions, prompts, memory, scorecards, proof records, evaluations, approvals, versions, monitoring, and rollback around model use. -Core loop: +French: GoalOS ne modifie pas les modèles IA de base. GoalOS améliore les flux autour de l’IA grâce aux instructions, prompts, mémoire, grilles de score, dossiers de preuve, évaluations, approbations, versions, surveillance et rollback. -> Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run +## Core loop -## Public software proof +**Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run** -GoalOS Cloud MVP 0.2 is a public static software proof in `site/app/goalos-cloud-mvp/`. +Core law: **No proof, no evolution. No eval, no propagation. No rollback, no release.** -It runs in the browser, uses `localStorage`, requires no secrets, and demonstrates: +French: **Pas de preuve, pas d’évolution. Pas d’évaluation, pas de propagation. Pas de rollback, pas de publication.** -- organization / workspace / user roles; -- policy engine and controlled memory; -- model-provider restrictions; -- Workflow Studio and workflow versioning; -- Execution Engine and Evaluation Engine demos; -- Proof Room records; -- Recursive Improvement Engine; -- improvement proposal and human approval gate; -- version comparison, rollback target, Proof Graph export; -- public-safe proof card and executive proof report exports; -- audit log, OpenAPI blueprint, JSON schemas, and Node unit tests. +![GoalOS recursive workflow loop](docs/figures/goalos_recursive_workflow_loop.svg) -Demo story: the **Customer Support Reply Workflow** v1.0 intentionally misses refund/access policy classification. The MVP runs support cases, evaluates outputs, creates proof records, detects the refund-policy failure, proposes v1.1, benchmarks v1.0 vs v1.1, requires human approval, deploys approved v1.1, preserves rollback target v1.0, and exports a public-safe proof card plus Proof Graph. +## Product ladder -Run the MVP test: +Paid products are sold through QUEBEC.AI only: . Buyer files, paid ZIPs, workshop bundles, delivery kits, implementation packs, enterprise pilot bundles, and private commercial packs must not be uploaded to GitHub Pages. -```bash -node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs -``` +| Layer | Offer | Outcome | French | Status | +|---|---|---|---|---| +| Self-serve | $49 Kit — GoalOS AI Efficiency Sprint Kit v1.4 | Build one reusable AI workflow | Construisez un flux IA réutilisable | Ready | +| Self-serve | $199 RSI Lite — GoalOS RSI Lite v1.6 | Build one self-improving workflow | Construisez un flux IA auto-améliorant | Ready | +| Self-serve / department | $997 Proof Room Lite — GoalOS Proof Room Lite / Department Pack v2.0 | Set up lightweight Proof Room | Mettez en place une Salle de preuve légère pour un département | Ready | +| Gated workshop | $2,500+ RSI Sprint Workshop — GoalOS RSI Sprint Workshop v7.0 | Build first workflow live | Construisez le premier flux auto-améliorant en direct | Ready | +| Gated implementation | $9,500+ Implementation Sprint — GoalOS Proof Room Implementation Sprint v2.0 | Department RSI in 30 days | RSI départemental en 30 jours | Ready | +| Gated enterprise | $49,000+ Enterprise RSI Pilot — GoalOS Enterprise RSI Pilot v2.0 | Pilot Recursive Workflow OS | Pilotez le Recursive Workflow OS | Ready as pilot | +Current status: product and service packages are ready to sell as public offers; first public proof is still needed; GoalOS Cloud is an MVP software proof and is not a complete SaaS. Next milestone: **Proof Card 001**. -## Public-site validation +## Public standards -Public HTML and artifacts are classified before validation. Normal marketing/docs pages are `canonical_page` files and still require exactly one canonical GoalOS shell and footer. Immersive RSI proof microsites can be `standalone_proof_page` files when they include `GOALOS-STANDALONE-PROOF` metadata plus a visible `/proof-gradient/` escape link. Cloud MVP pages under `site/app/goalos-cloud-mvp/` are `app_page` files and use their own app shell. +The public AEP standards define the proof vocabulary for evolution, evidence, permissions, rollback, public-safe reporting, and Proof Rooms. -Public AEP standard packages are allowed only at `standards/AEP-###/complete-package.zip`; all other ZIPs in public deploy roots remain blocked unless explicitly reviewed and added to the shared allowlist in `scripts/goalos_public_site_rules.py`. See `docs/GOALOS_PUBLIC_SITE_VALIDATION.md` and `docs/GOALOS_PAID_ARTIFACT_POLICY.md`. +| Standard | Title | +|---|---| +| AEP-001 | GoalOS Proof-of-Evolution Constitution | +| AEP-002 | Evidence Docket Standard | +| AEP-003 | ProofPacket Schema | +| AEP-004 | Selection Gate Standard | +| AEP-005 | Tool Permission Standard | +| AEP-006 | Rollback Receipt Standard | +| AEP-007 | Public-Safe Proof Report Standard | +| AEP-008 | Proof Room Standard | -Run validation locally: - -```bash -python scripts/validate_goalos_public_site.py -python scripts/check_no_paid_artifacts.py -python scripts/validate_docs_tables_figures.py -python scripts/validate_goalos_catalog.py -python -m pytest tests/test_goalos_public_site_rules.py -``` +## Platform architecture -## Public website +GoalOS Recursive Workflow OS coordinates a proof-bounded loop: Workflow Studio, Execution Engine, Evaluation Engine, Proof Room, Improvement Engine, Approval Gate, Versioning/Rollback, and Monitor. -The GitHub Pages site root is `site/`. The public site uses one canonical shell: +![GoalOS Cloud MVP architecture](docs/figures/goalos_cloud_mvp_architecture.svg) -- `site/assets/goalos-site-v2.css` -- `site/assets/goalos-site-v2.js` +## Software proof -The site is designed as a clean, dark, institutional GoalOS / Proof Gradient foundation with one navigation bar, one footer, public product pages, standards, examples, and the Cloud MVP. +**GoalOS Cloud MVP 0.2** is a public software proof for workflow execution, evaluation, proof records, approvals, versioning, rollback, and public-safe proof exports. It is intentionally described as an MVP, not a finished enterprise SaaS. -## Product / offer ladder +Run the MVP test when Node is available: -Paid products are sold on QUEBEC.AI and are **not** stored in this repository. All checkout / apply buttons point to: +```bash +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +``` - +## Public site and validation system -Current ladder: +The GitHub Pages public site lives in `site/`. Current validation is **GoalOS Validation Hotfix v14 Microsite Compatibility**. It preserves page classes: -| Price | Offer | Public outcome | -|---:|---|---| -| $49 | GoalOS AI Efficiency Sprint Kit | Build one reusable AI workflow. | -| $199 | GoalOS RSI Lite | Build one self-improving AI workflow. | -| $997 | GoalOS Proof Room Lite / Department Pack | Set up a lightweight department Proof Room. | -| $2,500+ | GoalOS RSI Sprint Workshop | Build the first self-improving workflow live. | -| $9,500+ | GoalOS Proof Room Implementation Sprint | Department RSI in 30 days. | -| $49,000+ | GoalOS Enterprise RSI Pilot | Pilot the Recursive Workflow OS for one enterprise workflow family. | +- `canonical_page`: requires exactly one canonical shell and footer. +- `standalone_proof_page`: proof/microsite pages may use standalone metadata and an escape link. +- `app_page`: app pages may use an app shell. +- `aep_standard_package`: public AEP packages are allowed only at `standards/AEP-###/complete-package.zip`. +- paid/private artifacts: blocked from public deploy roots. -Future platform: **GoalOS Recursive Workflow OS**. Future moat: **Proof Graph**. +Use v14. Avoid v12, v13, and obsolete v8 compatibility validation as current references. -## Public standards and proof layer +## Repository map -The AEP standards are the public trust layer. They provide the vocabulary for proof, permission, rollback, public-safe reports, and Proof Rooms. +| Path | Purpose | +|---|---| +| `proof_gradient/` | Python package for the Proof Gradient foundation. | +| `docs/` | Public technical documentation, GoalOS operating docs, audit notes, and maps. | +| `docs/data/goalos_catalog.yml` | Source of truth for public GoalOS documentation. | +| `docs/figures/` | Mermaid sources and SVG exports. | +| `docs/tables/` | CSV source tables used by README/docs. | +| `scripts/` | Validation, release, and public-site safety scripts. | +| `schemas/` | JSON schemas for proof/release/run artifacts. | +| `site/` | GitHub Pages public site and Cloud MVP app proof. | +| `tests/` | Regression tests, including public-site artifact classification tests. | +| `badges/` | Static GitHub-safe SVG badges. | -- AEP-001 — GoalOS Proof-of-Evolution Constitution -- AEP-002 — Evidence Docket Standard -- AEP-003 — ProofPacket Schema -- AEP-004 — Selection Gate Standard -- AEP-005 — Tool Permission Standard -- AEP-006 — Rollback Receipt Standard -- AEP-007 — Public-Safe Proof Report Standard -- AEP-008 — Proof Room Standard +## Documentation map -Existing standards content, schemas, examples, conformance materials, and documentation are preserved. +Start with [`docs/GOALOS_DOCUMENTATION_INDEX.md`](docs/GOALOS_DOCUMENTATION_INDEX.md). Figures are in [`docs/figures/`](docs/figures/) and CSV tables are in [`docs/tables/`](docs/tables/). ## Claim boundary -This repository and public site do not claim guaranteed ROI, income, productivity, compliance certification, safety guarantees, legal advice, financial advice, investment advice, autonomous deployment, uncontrolled autonomous AGI, AI model self-modification, real revenue, real profit, or real-world energy capture. +This repository does not claim guaranteed ROI, guaranteed revenue, guaranteed productivity, investment returns, financial advice, investment advice, legal advice, tax advice, compliance certification, AI safety certification, autonomous AGI, model self-modification, uncontrolled autonomous deployment, achieved AGI/ASI, real-world superintelligence deployment, or independently unproven real profit/revenue. + +## Paid-file policy -## Validation +Public GitHub Pages may include public standards, public docs, public schemas, public examples, public proof pages, public site assets, and public AEP packages matching `standards/AEP-###/complete-package.zip`. Paid buyer products and private delivery materials must remain outside public deploy roots and are sold through . -Recommended public-site checks: +## Run validation ```bash -node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs -python scripts/validate_goalos_site_v2.py +python scripts/validate_goalos_public_site.py python scripts/check_no_paid_artifacts.py +python scripts/validate_docs_tables_figures.py +python scripts/validate_goalos_catalog.py +``` + +## Run tests + +```bash pytest +make test +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs ``` -The paid-artifact guard blocks paid buyer ZIPs, paid workshop files, implementation bundles, enterprise delivery kits, and seller assets from the GitHub Pages public site, except explicitly whitelisted public standards/action documentation. +If a tool is unavailable, record the skip honestly in `docs/GOALOS_REPO_AUDIT.md`. -## Repository foundation +## License and contribution -The repository also preserves the broader Proof Gradient foundation: GitHub Actions, static site assets, docs, schemas, examples, tests, Python package area, Docker files, data files, and GitHub Pages content. +See [`LICENSE`](LICENSE), [`CONTRIBUTING.md`](CONTRIBUTING.md), [`SECURITY.md`](SECURITY.md), and [`ROADMAP.md`](ROADMAP.md). diff --git a/REPO_FILE_TREE.txt b/REPO_FILE_TREE.txt index 4d20ebd4..8f8551ea 100644 --- a/REPO_FILE_TREE.txt +++ b/REPO_FILE_TREE.txt @@ -2,8 +2,152 @@ .gitattributes .github/ISSUE_TEMPLATE/bug_report.md .github/ISSUE_TEMPLATE/feature_request.md +.github/workflows/_skillos-public-proof-command-center-refresh-reusable.yml +.github/workflows/_skillos-public-site-refresh-reusable.yml +.github/workflows/add-aep001-constitution-website-page.yml +.github/workflows/add-aep002-evidence-docket-standard-page.yml +.github/workflows/add-aep003-proofpacket-schema-page.yml +.github/workflows/add-aep004-selection-gate-standard-page.yml +.github/workflows/add-aep005-tool-permission-standard-page.yml +.github/workflows/add-aep006-rollback-receipt-standard-page.yml +.github/workflows/add-aep007-public-safe-proof-report-standard-page.yml +.github/workflows/add-aep008-proof-room-standard-page.yml +.github/workflows/add-checkout-recovery-workflow-example.yml +.github/workflows/add-department-ai-correction-rollback-workflow-example.yml +.github/workflows/add-department-ai-permission-map-workflow-example.yml +.github/workflows/add-department-monthly-proof-report-workflow-example.yml +.github/workflows/add-department-proof-room-lite-workflow-example.yml +.github/workflows/add-department-public-safe-case-study-workflow-example.yml +.github/workflows/add-department-weekly-proof-review-workflow-example.yml +.github/workflows/add-feedback-to-product-update-workflow-example.yml +.github/workflows/add-goalos-proof-room-implementation-sprint-v2-page.yml +.github/workflows/add-goalos-rsi-sprint-workshop-v2-page.yml +.github/workflows/add-idea-to-demand-engine-workflow-example.yml +.github/workflows/add-internal-approval-memo-workflow-example.yml +.github/workflows/add-lead-magnet-email-sequence-workflow-example.yml +.github/workflows/add-meeting-to-action-plan-workflow-example.yml +.github/workflows/add-monthly-workflow-vault-drop-example.yml +.github/workflows/add-offer-to-sales-page-workflow-example.yml +.github/workflows/add-order-bump-builder-workflow-example.yml +.github/workflows/add-partner-referral-kit-workflow-example.yml +.github/workflows/add-post-purchase-onboarding-workflow-example.yml +.github/workflows/add-proof-card-referral-loop-workflow-example.yml +.github/workflows/add-reusable-ai-workflow-example-page.yml +.github/workflows/add-support-faq-triage-workflow-example.yml +.github/workflows/add-team-pack-upsell-workflow-example.yml +.github/workflows/add-team-sprint-facilitator-workflow-example.yml +.github/workflows/add-weekly-growth-review-workflow-example.yml +.github/workflows/aep001-site-guardian.yml +.github/workflows/aep002-conformance-ci.yml +.github/workflows/aep002-official-release.yml +.github/workflows/aep003-official-release.yml +.github/workflows/aep003-proofpacket-conformance-ci.yml +.github/workflows/aep004-official-release.yml +.github/workflows/aep004-selection-gate-conformance-ci.yml +.github/workflows/aep005-official-release.yml +.github/workflows/aep005-tool-permission-conformance-ci.yml +.github/workflows/aep006-official-release.yml +.github/workflows/aep006-rollback-conformance-ci.yml +.github/workflows/aep007-official-release.yml +.github/workflows/aep007-public-safe-report-conformance-ci.yml +.github/workflows/aep008-official-release.yml +.github/workflows/aep008-proof-room-conformance-ci.yml +.github/workflows/autonomous-market-readiness.yml +.github/workflows/autonomous-rsi-adversarial-benchmark-foundry-proof.yml +.github/workflows/autonomous-rsi-ai-first-blockchain-capital-machine-proof.yml +.github/workflows/autonomous-rsi-ai-first-governance-capital-engine-proof.yml +.github/workflows/autonomous-rsi-blockchain-protocol-capital-frontier-proof.yml +.github/workflows/autonomous-rsi-capability-assurance-case-graph-proof.yml +.github/workflows/autonomous-rsi-capability-economy-clearinghouse-proof.yml +.github/workflows/autonomous-rsi-capability-governance-twin-proof.yml +.github/workflows/autonomous-rsi-capability-liquidity-engine-proof.yml +.github/workflows/autonomous-rsi-capability-sla-reliability-mesh-proof.yml +.github/workflows/autonomous-rsi-capability-treasury-flywheel-proof.yml +.github/workflows/autonomous-rsi-causal-attribution-engine-proof.yml +.github/workflows/autonomous-rsi-continual-capability-frontier-proof.yml +.github/workflows/autonomous-rsi-corporate-capability-frontier-proof.yml +.github/workflows/autonomous-rsi-corporate-strategy-frontier-proof.yml +.github/workflows/autonomous-rsi-cross-domain-capability-transfer-atlas-proof.yml +.github/workflows/autonomous-rsi-enterprise-capability-foundry-proof.yml +.github/workflows/autonomous-rsi-enterprise-eureka-factory-proof.yml +.github/workflows/autonomous-rsi-enterprise-superorganization-proof.yml +.github/workflows/autonomous-rsi-fork-resistant-capability-network-proof.yml +.github/workflows/autonomous-rsi-full-stack-capability-lifecycle-proof.yml +.github/workflows/autonomous-rsi-governance-frontier-proof.yml +.github/workflows/autonomous-rsi-objective-integrity-firewall-proof.yml +.github/workflows/autonomous-rsi-open-replication-mesh-proof.yml +.github/workflows/autonomous-rsi-proof-forge-meta-coordination-proof.yml +.github/workflows/autonomous-rsi-skill-compounding-moat-proof.yml +.github/workflows/autonomous-rsi-skill-provenance-ledger-proof.yml +.github/workflows/build-goalos-cloud-mvp-v0-2.yml +.github/workflows/build-goalos-cloud-mvp.yml +.github/workflows/check-no-paid-artifacts.yml +.github/workflows/deploy-proof-gradient-pages.yml +.github/workflows/enterprise-ops-proof.yml +.github/workflows/fix-aep-public-directory-indexes.yml +.github/workflows/goalos-product-site-ci.yml +.github/workflows/goalos-public-site-release-v12.yml +.github/workflows/goalos-public-site-release-v3-1.yml +.github/workflows/goalos-public-site-release-v3-2.yml +.github/workflows/goalos-public-site-release-v3.yml +.github/workflows/goalos-public-site-release-v4-bilingual.yml +.github/workflows/goalos-public-site-release-v5-quebec-ai-seal.yml +.github/workflows/goalos-public-site-release-v6-quebec-ai-seal-icon.yml +.github/workflows/goalos-public-site-release-v7-quebec-ai-brand-assets.yml +.github/workflows/goalos-public-site-release-v8-intelligent-assets.yml +.github/workflows/goalos-validation-hotfix-v12.yml +.github/workflows/goalos-validation-hotfix-v13-no-pytest.yml +.github/workflows/goalos-validation-hotfix-v14-microsite-compat.yml .github/workflows/pages.yml +.github/workflows/proof-011-the-proof-loop.yml +.github/workflows/proof-gradient-autonomous-foundation.yml +.github/workflows/proof-gradient-autonomous-retarget.yml +.github/workflows/proof-gradient-production-bootstrap.yml +.github/workflows/proof-gradient-production-ci.yml +.github/workflows/proof-gradient-safety-check.yml +.github/workflows/refresh-complete-goalos-public-site.yml +.github/workflows/refresh-complete-goalos-website.yml +.github/workflows/refresh-full-proof-gradient-site.yml +.github/workflows/refresh-goalos-product-ladder-website.yml +.github/workflows/refresh-proof-gradient-full-site.yml +.github/workflows/refresh-skillos-command-center.yml +.github/workflows/refresh-unified-aep-standards-site.yml +.github/workflows/repair-and-refresh-unified-goalos-website.yml +.github/workflows/repair-goalos-canonical-shell-v2.yml +.github/workflows/rsi-adversarial-multi-agent-market-command-center-proof.yml +.github/workflows/rsi-capability-command-center-proof.yml +.github/workflows/rsi-capability-command-center-v17-proof.yml +.github/workflows/rsi-capital-to-capability-engine-proof.yml +.github/workflows/rsi-cloudops-proof.yml +.github/workflows/rsi-corporate-os-proof.yml +.github/workflows/rsi-cyberdefense-proof.yml +.github/workflows/rsi-marketplace-flywheel-proof.yml +.github/workflows/rsi-metamaterials-discovery-proof.yml +.github/workflows/rsi-revenue-experiment-factory-proof.yml +.github/workflows/rsi-silicon-verification-proof.yml +.github/workflows/rsi-unit-economics-proof.yml +.github/workflows/safe-public-copy-check.yml +.github/workflows/shadow-pilot-proof.yml +.github/workflows/skillos-command-center-autopublisher-v2.yml +.github/workflows/skillos-command-center-autopublisher-v3.yml +.github/workflows/skillos-command-center-autopublisher-v4.yml +.github/workflows/skillos-flagship-governance-twin-launch.yml +.github/workflows/skillos-public-proof-command-center-refresh.yml +.github/workflows/skillos-public-site-refresh.yml +.github/workflows/skillos-run-all-public-proofs.yml +.github/workflows/skillos-sovereign-command-center-v5.yml .github/workflows/tests.yml +.github/workflows/validate-docs-tables-figures.yml +.github/workflows/validate-goalos-catalog.yml +.github/workflows/validate-goalos-public-site-v12.yml +.github/workflows/validate-goalos-public-site-v3-1.yml +.github/workflows/validate-goalos-public-site-v3-2.yml +.github/workflows/validate-goalos-public-site-v4.yml +.github/workflows/validate-goalos-public-site-v5.yml +.github/workflows/validate-goalos-public-site-v6.yml +.github/workflows/validate-goalos-public-site-v7.yml +.github/workflows/validate-goalos-public-site-v8.yml +.github/workflows/validate-goalos-public-site.yml .gitignore .nojekyll 404.html @@ -25,48 +169,2886 @@ REPO_FILE_TREE.txt ROADMAP.md SECURITY.md START_HERE.html +alembic.ini app.js +assets/QUEBEC_AI_Strategic_Engagements_Hero_HQ_2560x1280.jpg +assets/Quebec_AI_v0.png +assets/Quebec_AI_v1.png +assets/Quebec_AI_v13.png +assets/Quebec_AI_v14.png +assets/Quebec_AI_v15.png +assets/Quebec_AI_v16.png +assets/Quebec_AI_v18.png +assets/Quebec_AI_v2.png +assets/Quebec_AI_v20.png +assets/Quebec_AI_v21.png +assets/Quebec_AI_v25.png +assets/Quebec_AI_v27.png +assets/Quebec_AI_v28.png +assets/Quebec_AI_v31.png +assets/Quebec_AI_v32.png +assets/Quebec_AI_v36.png +assets/Quebec_AI_v37.png +assets/Quebec_AI_v38.png +assets/Quebec_AI_v39.png +assets/Quebec_AI_v4.png +assets/Quebec_AI_v40.png +assets/Quebec_AI_v41.png +assets/Quebec_AI_v43.png +assets/Quebec_AI_v46.png +assets/Quebec_AI_v47.png +assets/Quebec_AI_v48.png +assets/Quebec_AI_v49.png +assets/Quebec_AI_v5.png +assets/Quebec_AI_v51.png +assets/Quebec_AI_v53.png +assets/Quebec_AI_v55.png +assets/Quebec_AI_v59.png +assets/Quebec_AI_v60.png +assets/Quebec_AI_v63.png +assets/Quebec_AI_v64_1.png +assets/Quebec_AI_v66.png +assets/Quebec_AI_v67.png +assets/Quebec_AI_v68_LinkedIn.png +assets/Quebec_AI_v70.png +assets/SovereignManifestov0.png +assets/SovereignManifestov1.png +assets/SovereignManifestov2.png +assets/montreal_ai_v2.png +assets/montreal_ai_v4.png +assets/montreal_ai_youtube_banner_v2.png +assets/montreal_ai_youtube_banner_v3.png +assets/montreal_ai_youtube_profile_v0.png +assets/quebecaisealv5.png assets/skillos-mark.svg +assets/vincentboucher_v0.png +assets/vincentboucher_v1.png +assets/vincentboucher_v2.png +assets/vincentboucher_v3.png +assets/vincentboucher_youtube_banner_v6.png +badges/aep-standards.svg +badges/autonomous_market_readiness.svg +badges/cloud-mvp-0-2.svg +badges/command-center-fresh.svg +badges/command-center-sovereign-v5-1.svg +badges/enterprise_ops_market_proof.svg +badges/flagship-capability-governance-twin.svg +badges/goalos.svg +badges/no-model-self-modification.svg +badges/no-paid-artifacts.svg +badges/proof-bounded.svg +badges/proof-gradient.svg +badges/quebec-ai.svg +badges/rsi-adversarial-benchmark-foundry-proof.svg +badges/rsi-ai-first-blockchain-capital-machine-proof.svg +badges/rsi-ai-first-governance-capital-engine-proof.svg +badges/rsi-blockchain-protocol-capital-frontier-proof.svg +badges/rsi-capability-assurance-case-graph-proof.svg +badges/rsi-capability-economy-clearinghouse-proof.svg +badges/rsi-capability-governance-twin-proof.svg +badges/rsi-capability-liquidity-engine-proof.svg +badges/rsi-capability-sla-reliability-mesh-proof.svg +badges/rsi-capability-treasury-flywheel-proof.svg +badges/rsi-causal-attribution-engine-proof.svg +badges/rsi-continual-capability-frontier-proof.svg +badges/rsi-corporate-strategy-frontier-proof.svg +badges/rsi-cross-domain-capability-transfer-atlas-proof.svg +badges/rsi-fork-resistant-capability-network-proof.svg +badges/rsi-full-stack-capability-lifecycle-proof.svg +badges/rsi-governance-frontier-proof.svg +badges/rsi-objective-integrity-firewall-proof.svg +badges/rsi-open-replication-mesh-proof.svg +badges/rsi-proof-forge-meta-coordination-proof.svg +badges/rsi-skill-compounding-moat-proof.svg +badges/rsi-skill-provenance-ledger-proof.svg +badges/rsi_adversarial_multi_agent_market_command_center_proof.svg +badges/rsi_capability_command_center_proof.svg +badges/rsi_capability_command_center_v17_proof.svg +badges/rsi_capital_to_capability_engine_proof.svg +badges/rsi_cloudops_market_proof.svg +badges/rsi_corporate_capability_frontier_proof.svg +badges/rsi_corporate_os_market_proof.svg +badges/rsi_cyberdefense_market_proof.svg +badges/rsi_enterprise_capability_foundry_proof.svg +badges/rsi_enterprise_eureka_factory_proof.svg +badges/rsi_enterprise_superorganization_proof.svg +badges/rsi_marketplace_flywheel_market_proof.svg +badges/rsi_metamaterials_discovery_market_proof.svg +badges/rsi_revenue_experiment_factory_market_proof.svg +badges/rsi_silicon_verification_market_proof.svg +badges/rsi_unit_economics_market_proof.svg +badges/shadow_pilot_proof.svg +badges/validation-v14.svg +data/autonomous_market_benchmark.json +data/autonomous_market_readiness.json data/demo.json +data/enterprise_ops_benchmark.json +data/enterprise_ops_market_proof.json +data/flagship-capability-governance-twin-manifest.json +data/goalos_products.json +data/proof_gradient_foundation.json +data/proofs/001-sovereign-swarm.json +data/proofs/002-evolution-tournament.json +data/proofs/003-recursive-evolution-ladder.json +data/proofs/004-corporate-rsi-dominion.json +data/proofs/005-enterprise-rsi-superorganism.json +data/proofs/006-sovereign-enterprise-constellation.json +data/proofs/007-sovereign-enterprise-proof-economy.json +data/proofs/008-sovereign-domain-atlas.json +data/proofs/009-sovereign-kardashev-capital-engine.json +data/proofs/010-proof-carrying-intelligence.json +data/proofs/011-the-proof-loop.json +data/proofs/proof-index.json +data/public_site_status.json +data/rsi-adversarial-benchmark-foundry-proof.json +data/rsi-ai-first-blockchain-capital-machine-proof.json +data/rsi-ai-first-governance-capital-engine-proof.json +data/rsi-blockchain-protocol-capital-frontier-proof.json +data/rsi-capability-assurance-case-graph-proof.json +data/rsi-capability-economy-clearinghouse-proof.json +data/rsi-capability-governance-twin-proof.json +data/rsi-capability-liquidity-engine-proof.json +data/rsi-capability-sla-reliability-mesh-proof.json +data/rsi-capability-treasury-flywheel-proof.json +data/rsi-causal-attribution-engine-proof.json +data/rsi-continual-capability-frontier-proof.json +data/rsi-corporate-strategy-frontier-proof.json +data/rsi-cross-domain-capability-transfer-atlas-proof.json +data/rsi-fork-resistant-capability-network-proof.json +data/rsi-full-stack-capability-lifecycle-proof.json +data/rsi-governance-frontier-proof.json +data/rsi-objective-integrity-firewall-proof.json +data/rsi-open-replication-mesh-proof.json +data/rsi-proof-forge-meta-coordination-proof.json +data/rsi-skill-compounding-moat-proof.json +data/rsi-skill-provenance-ledger-proof.json +data/rsi_adversarial_multi_agent_market_command_center_benchmark.json +data/rsi_adversarial_multi_agent_market_command_center_proof.json +data/rsi_capability_command_center_benchmark.json +data/rsi_capability_command_center_preregistered_gates.json +data/rsi_capability_command_center_proof.json +data/rsi_capability_command_center_v17_agent_trace_sample.json +data/rsi_capability_command_center_v17_benchmark.json +data/rsi_capability_command_center_v17_preregistered_gates.json +data/rsi_capability_command_center_v17_proof.json +data/rsi_capital_to_capability_engine_benchmark.json +data/rsi_capital_to_capability_engine_proof.json +data/rsi_cloudops_benchmark.json +data/rsi_cloudops_market_proof.json +data/rsi_corporate_capability_frontier_proof.json +data/rsi_corporate_os_benchmark.json +data/rsi_corporate_os_market_proof.json +data/rsi_cyberdefense_benchmark.json +data/rsi_cyberdefense_market_proof.json +data/rsi_enterprise_capability_foundry_proof.json +data/rsi_enterprise_eureka_factory_proof.json +data/rsi_enterprise_superorganization_proof.json +data/rsi_marketplace_flywheel_benchmark.json +data/rsi_marketplace_flywheel_market_proof.json +data/rsi_metamaterials_discovery_benchmark.json +data/rsi_metamaterials_discovery_market_proof.json +data/rsi_revenue_experiment_factory_benchmark.json +data/rsi_revenue_experiment_factory_market_proof.json +data/rsi_silicon_verification_benchmark.json +data/rsi_silicon_verification_market_proof.json +data/rsi_unit_economics_benchmark.json +data/rsi_unit_economics_market_proof.json +data/shadow_pilot_benchmark.json +data/shadow_pilot_proof.json data/wealth_proof.json docker-compose.yml +docs/AUTONOMOUS_ENTERPRISE_OPS_MARKET_PROOF.md +docs/AUTONOMOUS_MARKET_READINESS_PROOF.md +docs/AUTONOMOUS_RSI_ADVERSARIAL_BENCHMARK_FOUNDRY_PROOF.md +docs/AUTONOMOUS_RSI_ADVERSARIAL_MULTI_AGENT_MARKET_COMMAND_CENTER_PROOF.md +docs/AUTONOMOUS_RSI_AI_FIRST_BLOCKCHAIN_CAPITAL_MACHINE_PROOF.md +docs/AUTONOMOUS_RSI_AI_FIRST_GOVERNANCE_CAPITAL_ENGINE_PROOF.md +docs/AUTONOMOUS_RSI_BLOCKCHAIN_PROTOCOL_CAPITAL_FRONTIER_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_ASSURANCE_CASE_GRAPH_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_COMMAND_CENTER_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_COMMAND_CENTER_V17_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_ECONOMY_CLEARINGHOUSE_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_GOVERNANCE_TWIN_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_LIQUIDITY_ENGINE_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_SLA_RELIABILITY_MESH_PROOF.md +docs/AUTONOMOUS_RSI_CAPABILITY_TREASURY_FLYWHEEL_PROOF.md +docs/AUTONOMOUS_RSI_CAPITAL_TO_CAPABILITY_ENGINE_PROOF.md +docs/AUTONOMOUS_RSI_CAUSAL_ATTRIBUTION_ENGINE_PROOF.md +docs/AUTONOMOUS_RSI_CLOUDOPS_MARKET_PROOF.md +docs/AUTONOMOUS_RSI_CONTINUAL_CAPABILITY_FRONTIER_PROOF.md +docs/AUTONOMOUS_RSI_CORPORATE_CAPABILITY_FRONTIER_PROOF.md +docs/AUTONOMOUS_RSI_CORPORATE_OS_MARKET_PROOF.md +docs/AUTONOMOUS_RSI_CORPORATE_STRATEGY_FRONTIER_PROOF.md +docs/AUTONOMOUS_RSI_CROSS_DOMAIN_CAPABILITY_TRANSFER_ATLAS_PROOF.md +docs/AUTONOMOUS_RSI_CYBERDEFENSE_MARKET_PROOF.md +docs/AUTONOMOUS_RSI_ENTERPRISE_CAPABILITY_FOUNDRY_PROOF.md +docs/AUTONOMOUS_RSI_ENTERPRISE_EUREKA_FACTORY_PROOF.md +docs/AUTONOMOUS_RSI_ENTERPRISE_SUPERORGANIZATION_PROOF.md +docs/AUTONOMOUS_RSI_FORK_RESISTANT_CAPABILITY_NETWORK_PROOF.md +docs/AUTONOMOUS_RSI_FULL_STACK_CAPABILITY_LIFECYCLE_PROOF.md +docs/AUTONOMOUS_RSI_GOVERNANCE_FRONTIER_PROOF.md +docs/AUTONOMOUS_RSI_MARKETPLACE_FLYWHEEL_PROOF.md +docs/AUTONOMOUS_RSI_METAMATERIALS_DISCOVERY_MARKET_PROOF.md +docs/AUTONOMOUS_RSI_OBJECTIVE_INTEGRITY_FIREWALL_PROOF.md +docs/AUTONOMOUS_RSI_OPEN_REPLICATION_MESH_PROOF.md +docs/AUTONOMOUS_RSI_PROOF_FORGE_META_COORDINATION_PROOF.md +docs/AUTONOMOUS_RSI_REVENUE_EXPERIMENT_FACTORY_PROOF.md +docs/AUTONOMOUS_RSI_SILICON_VERIFICATION_MARKET_PROOF.md +docs/AUTONOMOUS_RSI_SKILL_COMPOUNDING_MOAT_PROOF.md +docs/AUTONOMOUS_RSI_SKILL_PROVENANCE_LEDGER_PROOF.md +docs/AUTONOMOUS_RSI_UNIT_ECONOMICS_MARKET_PROOF.md +docs/AUTONOMOUS_SHADOW_PILOT_PROOF.md +docs/FLAGSHIP_CAPABILITY_GOVERNANCE_TWIN_LAUNCH.md +docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md +docs/GOALOS_CLOUD_MVP_0_2.md +docs/GOALOS_COMMERCIALIZATION_STATUS.md +docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md +docs/GOALOS_DOCUMENTATION_INDEX.md +docs/GOALOS_ENGINEERING_ROADMAP.md +docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md +docs/GOALOS_PAID_ARTIFACT_POLICY.md +docs/GOALOS_PRODUCT_LADDER.md +docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md +docs/GOALOS_PROOF_CARD_001_PLAN.md +docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V3.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V4_BILINGUAL.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V5_QUEBEC_AI_SEAL.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V6_QUEBEC_AI_SEAL_ICON.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V7_BRAND_ASSETS.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md +docs/GOALOS_PUBLIC_SITE_RELEASE_V8_INTELLIGENT_ASSETS.md +docs/GOALOS_PUBLIC_SITE_REPAIR.md +docs/GOALOS_PUBLIC_SITE_VALIDATION.md +docs/GOALOS_READY_TO_SELL_STATUS.md +docs/GOALOS_RECURSIVE_WORKFLOW_OS.md +docs/GOALOS_REPO_AUDIT.md +docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md +docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md +docs/GOALOS_VALIDATION_HOTFIX_V14.md +docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md +docs/PUBLIC_COPY_AUTOMATION.md +docs/SHADOW_PILOT_VISIBILITY_AUTOMATION.md +docs/SKILLOS_COMMAND_CENTER_ROOT_FIX_V5_RUNBOOK.md +docs/SKILLOS_FLAGSHIP_CAPABILITY_GOVERNANCE_TWIN_LAUNCH_PACK.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER_V2.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER_V3.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_ROOT_AUTHORITY_V7.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_V2.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_V3.md +docs/SKILLOS_PUBLIC_COMMAND_CENTER_V4_ROOT_FIX.md +docs/SKILLOS_PUBLIC_SITE_AUTOMATION.md +docs/SKILLOS_PUBLIC_SITE_STATUS.md +docs/SKILLOS_SOVEREIGN_COMMAND_CENTER_V5.md +docs/api.md docs/api_reference.md docs/architecture.md +docs/artifact_vault.md +docs/autonomous_market_readiness.md +docs/civilization_scale_thesis.md +docs/cli.md +docs/commerce/goalos_public_layer_operations.md +docs/commerce/paid_product_security.md +docs/commerce/product_ladder.md +docs/commerce/squarespace_stripe_delivery_guide.md +docs/corporate_rsi_dominion.md +docs/data/goalos_catalog.yml docs/demo_walkthrough.md +docs/deployment.md +docs/enterprise_ops_market_proof.md +docs/enterprise_rsi_superorganism.md docs/extending.md +docs/figures/goalos_cloud_mvp_architecture.mmd +docs/figures/goalos_cloud_mvp_architecture.svg +docs/figures/goalos_enterprise_safety_boundary.mmd +docs/figures/goalos_enterprise_safety_boundary.svg +docs/figures/goalos_product_ladder.mmd +docs/figures/goalos_product_ladder.svg +docs/figures/goalos_proof_graph_concept.mmd +docs/figures/goalos_proof_graph_concept.svg +docs/figures/goalos_proof_led_revenue_loop.mmd +docs/figures/goalos_proof_led_revenue_loop.svg +docs/figures/goalos_public_site_architecture.mmd +docs/figures/goalos_public_site_architecture.svg +docs/figures/goalos_recursive_workflow_loop.mmd +docs/figures/goalos_recursive_workflow_loop.svg +docs/figures/goalos_validation_architecture.mmd +docs/figures/goalos_validation_architecture.svg +docs/figures/goalos_web3_hybrid_architecture.mmd +docs/figures/goalos_web3_hybrid_architecture.svg +docs/final_acceptance_report.md +docs/final_acceptance_report_corporate_rsi.md +docs/final_acceptance_report_enterprise_rsi.md +docs/final_acceptance_report_proof_carrying_intelligence.md +docs/final_acceptance_report_sovereign_domain_atlas.md +docs/final_acceptance_report_sovereign_enterprise.md +docs/final_acceptance_report_sovereign_kardashev_capital_engine.md +docs/final_acceptance_report_sovereign_proof_economy.md docs/github_pages_troubleshooting.md docs/github_web_launch_guide.md docs/governance.md +docs/legacy_skillos_readme_snapshot.md +docs/migration_from_skillos_v2.md docs/pages_site.md docs/production_blueprint.md +docs/proof_archive.md +docs/proof_carrying_intelligence.md +docs/proof_gradient_migration_report.md +docs/proof_gradient_platform.md +docs/proof_ledger.md docs/quickstart.md +docs/recursive_evolution_ladder.md docs/repository_index.md +docs/rsi-adversarial-benchmark-foundry-proof.md +docs/rsi-ai-first-blockchain-capital-machine-proof.md +docs/rsi-ai-first-governance-capital-engine-proof.md +docs/rsi-blockchain-protocol-capital-frontier-proof.md +docs/rsi-capability-assurance-case-graph-proof.md +docs/rsi-capability-economy-clearinghouse-proof.md +docs/rsi-capability-governance-twin-proof.md +docs/rsi-capability-liquidity-engine-proof.md +docs/rsi-capability-sla-reliability-mesh-proof.md +docs/rsi-capability-treasury-flywheel-proof.md +docs/rsi-causal-attribution-engine-proof.md +docs/rsi-continual-capability-frontier-proof.md +docs/rsi-corporate-strategy-frontier-proof.md +docs/rsi-cross-domain-capability-transfer-atlas-proof.md +docs/rsi-fork-resistant-capability-network-proof.md +docs/rsi-full-stack-capability-lifecycle-proof.md +docs/rsi-governance-frontier-proof.md +docs/rsi-objective-integrity-firewall-proof.md +docs/rsi-open-replication-mesh-proof.md +docs/rsi-proof-forge-meta-coordination-proof.md +docs/rsi-skill-compounding-moat-proof.md +docs/rsi-skill-provenance-ledger-proof.md +docs/rsi_adversarial_multi_agent_market_command_center_proof.md +docs/rsi_capability_command_center_proof.md +docs/rsi_capability_command_center_v17_proof.md +docs/rsi_capital_to_capability_engine_proof.md +docs/rsi_cloudops_market_proof.md +docs/rsi_corporate_capability_frontier_proof.md +docs/rsi_corporate_os_market_proof.md +docs/rsi_cyberdefense_market_proof.md +docs/rsi_enterprise_capability_foundry_proof.md +docs/rsi_enterprise_eureka_factory_proof.md +docs/rsi_enterprise_superorganization_proof.md +docs/rsi_marketplace_flywheel_market_proof.md +docs/rsi_metamaterials_discovery_market_proof.md +docs/rsi_revenue_experiment_factory_market_proof.md +docs/rsi_silicon_verification_market_proof.md +docs/rsi_unit_economics_market_proof.md +docs/run_fabric.md +docs/security.md +docs/selection_gate.md +docs/shadow_pilot_proof.md docs/skill_lifecycle.md +docs/sovereign_domain_atlas.md +docs/sovereign_enterprise_constellation.md +docs/sovereign_enterprise_proof_economy.md +docs/sovereign_kardashev_capital_engine.md +docs/sovereign_swarm.md +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.docx +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.md +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.tex +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_Final.pdf +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_QA_Report.txt +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_SHA256SUMS.txt +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_docx_contact_sheet.jpg +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_evidence_docket_template.md +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.md +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.pdf +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_pdf_contact_sheet.jpg +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_protocol_schema.json +docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_references.bib +docs/standards/AEP-001/README.md +docs/standards/AEP-001/figures/cover.png +docs/standards/AEP-001/figures/fig01_constitution_stack.png +docs/standards/AEP-001/figures/fig02_loop.png +docs/standards/AEP-001/figures/fig03_boundary.png +docs/standards/AEP-001/figures/fig04_object_graph.png +docs/standards/AEP-001/figures/fig05_contract_suite.png +docs/standards/AEP-001/figures/fig06_selection_gate.png +docs/standards/AEP-001/figures/fig07_evidence_docket.png +docs/standards/AEP-001/figures/fig08_evolution_ledger.png +docs/standards/AEP-001/figures/fig09_deployment.png +docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.docx +docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.md +docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.pdf +docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.tex +docs/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.docx +docs/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.pdf +docs/standards/AEP-002/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-002/QA_REPORT.md +docs/standards/AEP-002/README.md +docs/standards/AEP-002/RELEASE_NOTES_AEP002_v1.1.md +docs/standards/AEP-002/SHA256SUMS.txt +docs/standards/AEP-002/conformance/aep002_conformance_checklist.md +docs/standards/AEP-002/examples/basic_evidence_docket.json +docs/standards/AEP-002/examples/generated_public_safe_report.md +docs/standards/AEP-002/examples/institutional_conformance_score.json +docs/standards/AEP-002/examples/institutional_evidence_docket.json +docs/standards/AEP-002/examples/public_safe_report.json +docs/standards/AEP-002/figures/fig01_aep002_docket_stack.png +docs/standards/AEP-002/figures/fig02_docket_lifecycle.png +docs/standards/AEP-002/figures/fig03_evidence_boundary.png +docs/standards/AEP-002/schemas/evidence_docket.schema.json +docs/standards/AEP-002/schemas/proof_packet.schema.json +docs/standards/AEP-002/schemas/public_safe_report.schema.json +docs/standards/AEP-002/schemas/selection_certificate.schema.json +docs/standards/AEP-002/templates/claim_boundary_template.md +docs/standards/AEP-002/templates/evidence_docket_template.md +docs/standards/AEP-002/templates/public_safe_report_template.md +docs/standards/AEP-002/tools/generate_public_safe_report.py +docs/standards/AEP-002/tools/score_conformance.py +docs/standards/AEP-002/tools/validate_evidence_docket.py +docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.docx +docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.md +docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.pdf +docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.tex +docs/standards/AEP-003/CODEX_IMPLEMENTATION_PROMPT_AEP003.md +docs/standards/AEP-003/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-003/QA_REPORT.md +docs/standards/AEP-003/README.md +docs/standards/AEP-003/RELEASE_NOTES_AEP003_v1.1.md +docs/standards/AEP-003/SHA256SUMS.txt +docs/standards/AEP-003/conformance/aep003_conformance_checklist.md +docs/standards/AEP-003/examples/sample_proof_packet_01_commit.json +docs/standards/AEP-003/examples/sample_proof_packet_02_trace_event.json +docs/standards/AEP-003/examples/sample_proof_packet_03_tool_call.json +docs/standards/AEP-003/examples/sample_proof_packet_04_policy_decision.json +docs/standards/AEP-003/examples/sample_proof_packet_05_approval.json +docs/standards/AEP-003/examples/sample_proof_packet_06_eval_result.json +docs/standards/AEP-003/examples/sample_proof_packet_07_evidence_ref.json +docs/standards/AEP-003/examples/sample_proof_packet_08_risk_event.json +docs/standards/AEP-003/examples/sample_proof_packet_09_cost_event.json +docs/standards/AEP-003/examples/sample_proof_packet_10_selection_decision.json +docs/standards/AEP-003/examples/sample_proof_packet_11_rollout_event.json +docs/standards/AEP-003/examples/sample_proof_packet_12_rollback_event.json +docs/standards/AEP-003/examples/sample_proof_packet_13_public_report.json +docs/standards/AEP-003/examples/sample_proof_packet_bundle.json +docs/standards/AEP-003/figures/fig01_proofpacket_anatomy.png +docs/standards/AEP-003/figures/fig02_proofpacket_hash_chain.png +docs/standards/AEP-003/figures/fig03_proofpacket_lifecycle.png +docs/standards/AEP-003/implementation/AEP-003_Implementation_Guide.md +docs/standards/AEP-003/implementation/AEP-003_Interop_Profile.md +docs/standards/AEP-003/implementation/AEP-003_Security_Privacy_Guide.md +docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.docx +docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.md +docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.pdf +docs/standards/AEP-003/schemas/proof_packet.schema.json +docs/standards/AEP-003/schemas/proof_packet_attestation.schema.json +docs/standards/AEP-003/schemas/proof_packet_bundle.schema.json +docs/standards/AEP-003/schemas/proof_packet_canonicalization_profile.json +docs/standards/AEP-003/templates/proof_packet_template.json +docs/standards/AEP-003/templates/proof_packet_template.md +docs/standards/AEP-003/tools/proof_packet_bundle.py +docs/standards/AEP-003/tools/proof_packet_conformance_score.py +docs/standards/AEP-003/tools/proof_packet_hash.py +docs/standards/AEP-003/tools/validate_proof_packet.py +docs/standards/AEP-003/tools/verify_packet_chain.py +docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.docx +docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.md +docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.pdf +docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.tex +docs/standards/AEP-004/CODEX_IMPLEMENTATION_PROMPT_AEP004.md +docs/standards/AEP-004/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-004/QA_REPORT.md +docs/standards/AEP-004/README.md +docs/standards/AEP-004/RELEASE_NOTES_AEP004_v1.1.md +docs/standards/AEP-004/SHA256SUMS.txt +docs/standards/AEP-004/conformance/aep004_conformance_checklist.md +docs/standards/AEP-004/examples/sample_gate_decision_input_promote.json +docs/standards/AEP-004/examples/sample_gate_decision_input_reject.json +docs/standards/AEP-004/examples/sample_gate_policy.json +docs/standards/AEP-004/examples/sample_selection_candidate.json +docs/standards/AEP-004/examples/sample_selection_certificate_approve_canary.json +docs/standards/AEP-004/examples/sample_selection_certificate_archive.json +docs/standards/AEP-004/examples/sample_selection_certificate_needs_more_evidence.json +docs/standards/AEP-004/examples/sample_selection_certificate_promote.json +docs/standards/AEP-004/examples/sample_selection_certificate_reject.json +docs/standards/AEP-004/examples/sample_selection_certificate_revise.json +docs/standards/AEP-004/examples/sample_selection_certificate_rollback.json +docs/standards/AEP-004/figures/fig01_selection_gate_flow.png +docs/standards/AEP-004/figures/fig02_selection_certificate_model.png +docs/standards/AEP-004/figures/fig03_selection_gate_risk_matrix.png +docs/standards/AEP-004/figures/fig04_selection_gate_lifecycle.png +docs/standards/AEP-004/implementation/AEP-004_Implementation_Guide.md +docs/standards/AEP-004/implementation/AEP-004_Policy_Profiles.md +docs/standards/AEP-004/implementation/AEP-004_Security_Privacy_Guide.md +docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.docx +docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.md +docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.pdf +docs/standards/AEP-004/schemas/canary_plan.schema.json +docs/standards/AEP-004/schemas/challenge_record.schema.json +docs/standards/AEP-004/schemas/evaluation_requirement.schema.json +docs/standards/AEP-004/schemas/evidence_requirement.schema.json +docs/standards/AEP-004/schemas/gate_policy.schema.json +docs/standards/AEP-004/schemas/monitoring_plan.schema.json +docs/standards/AEP-004/schemas/rollback_plan.schema.json +docs/standards/AEP-004/schemas/selection_candidate.schema.json +docs/standards/AEP-004/schemas/selection_certificate.schema.json +docs/standards/AEP-004/templates/selection_candidate_template.json +docs/standards/AEP-004/templates/selection_certificate_template.json +docs/standards/AEP-004/templates/selection_gate_review_template.md +docs/standards/AEP-004/tools/selection_certificate_hash.py +docs/standards/AEP-004/tools/selection_gate_audit.py +docs/standards/AEP-004/tools/selection_gate_conformance_score.py +docs/standards/AEP-004/tools/selection_gate_decide.py +docs/standards/AEP-004/tools/validate_selection_certificate.py +docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.docx +docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.md +docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.pdf +docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.tex +docs/standards/AEP-005/CODEX_IMPLEMENTATION_PROMPT_AEP005.md +docs/standards/AEP-005/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-005/QA_REPORT.md +docs/standards/AEP-005/README.md +docs/standards/AEP-005/RELEASE_NOTES_AEP005_v1.1.md +docs/standards/AEP-005/SHA256SUMS.txt +docs/standards/AEP-005/conformance/aep005_conformance_checklist.md +docs/standards/AEP-005/examples/sample_approval_receipt.json +docs/standards/AEP-005/examples/sample_break_glass_request.json +docs/standards/AEP-005/examples/sample_compensation_receipt.json +docs/standards/AEP-005/examples/sample_data_boundary_rule.json +docs/standards/AEP-005/examples/sample_permission_lease.json +docs/standards/AEP-005/examples/sample_rate_limit_policy.json +docs/standards/AEP-005/examples/sample_revocation_receipt.json +docs/standards/AEP-005/examples/sample_tool_call_receipt.json +docs/standards/AEP-005/examples/sample_tool_manifest.json +docs/standards/AEP-005/examples/sample_tool_manifest_email_send.json +docs/standards/AEP-005/examples/sample_tool_permission_decision_allow_with_lease.json +docs/standards/AEP-005/examples/sample_tool_permission_decision_approval_required.json +docs/standards/AEP-005/examples/sample_tool_permission_decision_deny.json +docs/standards/AEP-005/examples/sample_tool_permission_policy.json +docs/standards/AEP-005/examples/sample_tool_request_read.json +docs/standards/AEP-005/examples/sample_tool_request_send.json +docs/standards/AEP-005/figures/fig01_tool_permission_flow_v11.png +docs/standards/AEP-005/figures/fig02_tool_permission_lattice_v11.png +docs/standards/AEP-005/figures/fig03_tool_gateway_boundary_model_v11.png +docs/standards/AEP-005/figures/fig04_lease_revocation_compensation_v11.png +docs/standards/AEP-005/implementation/AEP-005_Implementation_Guide.md +docs/standards/AEP-005/implementation/AEP-005_Least_Privilege_Profile.md +docs/standards/AEP-005/implementation/AEP-005_Security_Privacy_Guide.md +docs/standards/AEP-005/implementation/AEP-005_Tool_Gateway_Profile.md +docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.docx +docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.md +docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.pdf +docs/standards/AEP-005/schemas/approval_receipt.schema.json +docs/standards/AEP-005/schemas/break_glass_request.schema.json +docs/standards/AEP-005/schemas/compensation_receipt.schema.json +docs/standards/AEP-005/schemas/data_boundary_rule.schema.json +docs/standards/AEP-005/schemas/permission_lease.schema.json +docs/standards/AEP-005/schemas/rate_limit_policy.schema.json +docs/standards/AEP-005/schemas/revocation_receipt.schema.json +docs/standards/AEP-005/schemas/tool_call_receipt.schema.json +docs/standards/AEP-005/schemas/tool_manifest.schema.json +docs/standards/AEP-005/schemas/tool_permission_decision.schema.json +docs/standards/AEP-005/schemas/tool_permission_policy.schema.json +docs/standards/AEP-005/schemas/tool_request.schema.json +docs/standards/AEP-005/templates/compensation_receipt_template.json +docs/standards/AEP-005/templates/permission_lease_template.json +docs/standards/AEP-005/templates/revocation_receipt_template.json +docs/standards/AEP-005/templates/tool_call_receipt_template.json +docs/standards/AEP-005/templates/tool_manifest_template.json +docs/standards/AEP-005/templates/tool_permission_decision_template.json +docs/standards/AEP-005/templates/tool_permission_policy_template.json +docs/standards/AEP-005/templates/tool_permission_review_template.md +docs/standards/AEP-005/templates/tool_request_template.json +docs/standards/AEP-005/tools/authorize_tool_request.py +docs/standards/AEP-005/tools/tool_gateway_audit.py +docs/standards/AEP-005/tools/tool_permission_conformance_score.py +docs/standards/AEP-005/tools/tool_permission_hash.py +docs/standards/AEP-005/tools/validate_permission_lease.py +docs/standards/AEP-005/tools/validate_tool_permission.py +docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.docx +docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.md +docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.pdf +docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.tex +docs/standards/AEP-006/CODEX_IMPLEMENTATION_PROMPT_AEP006.md +docs/standards/AEP-006/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-006/QA_REPORT.md +docs/standards/AEP-006/README.md +docs/standards/AEP-006/RELEASE_NOTES_AEP006_v1.1.md +docs/standards/AEP-006/SHA256SUMS.txt +docs/standards/AEP-006/conformance/aep006_conformance_checklist.md +docs/standards/AEP-006/examples/sample_compensation_receipt.json +docs/standards/AEP-006/examples/sample_post_rollback_review.json +docs/standards/AEP-006/examples/sample_recovery_bundle.json +docs/standards/AEP-006/examples/sample_rollback_authorization.json +docs/standards/AEP-006/examples/sample_rollback_plan.json +docs/standards/AEP-006/examples/sample_rollback_receipt_failed_compensation_required.json +docs/standards/AEP-006/examples/sample_rollback_receipt_partial.json +docs/standards/AEP-006/examples/sample_rollback_receipt_success.json +docs/standards/AEP-006/examples/sample_rollback_request.json +docs/standards/AEP-006/examples/sample_rollback_trigger.json +docs/standards/AEP-006/examples/sample_rollback_verification.json +docs/standards/AEP-006/figures/fig01_rollback_receipt_loop.png +docs/standards/AEP-006/figures/fig02_rollback_receipt_object_model.png +docs/standards/AEP-006/figures/fig03_rollback_decision_matrix.png +docs/standards/AEP-006/figures/fig04_recovery_timeline.png +docs/standards/AEP-006/implementation/AEP-006_Implementation_Guide.md +docs/standards/AEP-006/implementation/AEP-006_Recovery_Runbook.md +docs/standards/AEP-006/implementation/AEP-006_Security_Privacy_Guide.md +docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.docx +docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.md +docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.pdf +docs/standards/AEP-006/schemas/compensation_receipt.schema.json +docs/standards/AEP-006/schemas/post_rollback_review.schema.json +docs/standards/AEP-006/schemas/recovery_bundle.schema.json +docs/standards/AEP-006/schemas/rollback_authorization.schema.json +docs/standards/AEP-006/schemas/rollback_plan.schema.json +docs/standards/AEP-006/schemas/rollback_receipt.schema.json +docs/standards/AEP-006/schemas/rollback_request.schema.json +docs/standards/AEP-006/schemas/rollback_trigger.schema.json +docs/standards/AEP-006/schemas/rollback_verification.schema.json +docs/standards/AEP-006/templates/compensation_receipt_template.json +docs/standards/AEP-006/templates/post_rollback_review_template.json +docs/standards/AEP-006/templates/rollback_authorization_template.json +docs/standards/AEP-006/templates/rollback_plan_template.json +docs/standards/AEP-006/templates/rollback_receipt_template.json +docs/standards/AEP-006/templates/rollback_request_template.json +docs/standards/AEP-006/templates/rollback_review_template.md +docs/standards/AEP-006/templates/rollback_trigger_template.json +docs/standards/AEP-006/templates/rollback_verification_template.json +docs/standards/AEP-006/tools/rollback_audit.py +docs/standards/AEP-006/tools/rollback_conformance_score.py +docs/standards/AEP-006/tools/rollback_decide.py +docs/standards/AEP-006/tools/rollback_receipt_hash.py +docs/standards/AEP-006/tools/validate_rollback_receipt.py +docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.docx +docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.md +docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.pdf +docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.tex +docs/standards/AEP-007/CODEX_IMPLEMENTATION_PROMPT_AEP007.md +docs/standards/AEP-007/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-007/QA_REPORT.md +docs/standards/AEP-007/README.md +docs/standards/AEP-007/RELEASE_NOTES_AEP007_v1.2.md +docs/standards/AEP-007/SHA256SUMS.txt +docs/standards/AEP-007/conformance/aep007_conformance_checklist.md +docs/standards/AEP-007/examples/sample_challenge_record.json +docs/standards/AEP-007/examples/sample_correction_notice.json +docs/standards/AEP-007/examples/sample_public_claim_matrix.json +docs/standards/AEP-007/examples/sample_public_safe_report.json +docs/standards/AEP-007/examples/sample_publication_approval.json +docs/standards/AEP-007/examples/sample_redaction_ledger.json +docs/standards/AEP-007/examples/sample_report_bundle.json +docs/standards/AEP-007/examples/sample_retraction_notice.json +docs/standards/AEP-007/figures/fig01_public_safe_report_flow.png +docs/standards/AEP-007/figures/fig02_disclosure_classification.png +docs/standards/AEP-007/figures/fig03_public_report_lifecycle.png +docs/standards/AEP-007/figures/fig04_claim_boundary_ladder.png +docs/standards/AEP-007/implementation/AEP-007_Correction_Retraction_Playbook.md +docs/standards/AEP-007/implementation/AEP-007_Implementation_Guide.md +docs/standards/AEP-007/implementation/AEP-007_Proof_Card_Profile.md +docs/standards/AEP-007/implementation/AEP-007_Publication_Workflow.md +docs/standards/AEP-007/implementation/AEP-007_Redaction_Guide.md +docs/standards/AEP-007/implementation/AEP-007_Security_Privacy_Guide.md +docs/standards/AEP-007/implementation/AEP-007_Website_Publishing_Profile.md +docs/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.docx +docs/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.pdf +docs/standards/AEP-007/schemas/challenge_record.schema.json +docs/standards/AEP-007/schemas/claim_boundary.schema.json +docs/standards/AEP-007/schemas/correction_notice.schema.json +docs/standards/AEP-007/schemas/correction_policy.schema.json +docs/standards/AEP-007/schemas/disclosure_review.schema.json +docs/standards/AEP-007/schemas/evaluation_summary.schema.json +docs/standards/AEP-007/schemas/evidence_summary.schema.json +docs/standards/AEP-007/schemas/public_artifact_link.schema.json +docs/standards/AEP-007/schemas/public_claim_matrix.schema.json +docs/standards/AEP-007/schemas/public_safe_report.schema.json +docs/standards/AEP-007/schemas/publication_approval.schema.json +docs/standards/AEP-007/schemas/redaction_decision.schema.json +docs/standards/AEP-007/schemas/redaction_ledger.schema.json +docs/standards/AEP-007/schemas/report_bundle.schema.json +docs/standards/AEP-007/schemas/retraction_notice.schema.json +docs/standards/AEP-007/schemas/risk_limitation_summary.schema.json +docs/standards/AEP-007/schemas/source_evidence_reference.schema.json +docs/standards/AEP-007/templates/challenge_record_template.json +docs/standards/AEP-007/templates/claim_boundary_template.json +docs/standards/AEP-007/templates/claim_boundary_template.md +docs/standards/AEP-007/templates/correction_notice_template.json +docs/standards/AEP-007/templates/disclosure_review_template.json +docs/standards/AEP-007/templates/public_safe_report_template.json +docs/standards/AEP-007/templates/public_safe_report_template.md +docs/standards/AEP-007/templates/publication_approval_template.json +docs/standards/AEP-007/templates/redaction_review_template.md +docs/standards/AEP-007/tools/build_report_bundle.py +docs/standards/AEP-007/tools/generate_public_safe_report.py +docs/standards/AEP-007/tools/public_safe_conformance_score.py +docs/standards/AEP-007/tools/public_safe_redaction_audit.py +docs/standards/AEP-007/tools/public_safe_report_hash.py +docs/standards/AEP-007/tools/validate_public_safe_report.py +docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.docx +docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.md +docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.pdf +docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.tex +docs/standards/AEP-008/CODEX_IMPLEMENTATION_PROMPT_AEP008.md +docs/standards/AEP-008/INSTALL_IN_PROOF_GRADIENT.md +docs/standards/AEP-008/QA_REPORT.md +docs/standards/AEP-008/README.md +docs/standards/AEP-008/RELEASE_NOTES_AEP008_v1.1.md +docs/standards/AEP-008/SHA256SUMS.txt +docs/standards/AEP-008/conformance/aep008_conformance_checklist.md +docs/standards/AEP-008/examples/sample_decision_log.json +docs/standards/AEP-008/examples/sample_evidence_boundary.json +docs/standards/AEP-008/examples/sample_proof_room_charter.json +docs/standards/AEP-008/examples/sample_proof_room_manifest.json +docs/standards/AEP-008/examples/sample_role_assignment_registry.json +docs/standards/AEP-008/examples/sample_room_audit_export.json +docs/standards/AEP-008/examples/sample_room_closure_report.json +docs/standards/AEP-008/examples/sample_work_item_registry.json +docs/standards/AEP-008/figures/fig01_proof_room_architecture_v11.png +docs/standards/AEP-008/figures/fig02_proof_room_lifecycle_v11.png +docs/standards/AEP-008/figures/fig03_proof_room_roles_boundaries_v11.png +docs/standards/AEP-008/figures/fig04_proof_room_operating_modes_v11.png +docs/standards/AEP-008/implementation/AEP-008_Implementation_Guide.md +docs/standards/AEP-008/implementation/AEP-008_Proof_Room_Runbook.md +docs/standards/AEP-008/implementation/AEP-008_Role_Separation_Profile.md +docs/standards/AEP-008/implementation/AEP-008_Security_Privacy_Guide.md +docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.docx +docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.md +docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.pdf +docs/standards/AEP-008/schemas/decision_log.schema.json +docs/standards/AEP-008/schemas/evidence_boundary.schema.json +docs/standards/AEP-008/schemas/proof_room_charter.schema.json +docs/standards/AEP-008/schemas/proof_room_manifest.schema.json +docs/standards/AEP-008/schemas/role_assignment_registry.schema.json +docs/standards/AEP-008/schemas/room_audit_export.schema.json +docs/standards/AEP-008/schemas/room_closure_report.schema.json +docs/standards/AEP-008/schemas/room_register.schema.json +docs/standards/AEP-008/schemas/room_session_record.schema.json +docs/standards/AEP-008/schemas/scope_boundary.schema.json +docs/standards/AEP-008/schemas/work_item_registry.schema.json +docs/standards/AEP-008/templates/decision_log_template.json +docs/standards/AEP-008/templates/evidence_boundary_template.json +docs/standards/AEP-008/templates/proof_room_charter_template.json +docs/standards/AEP-008/templates/proof_room_manifest_template.json +docs/standards/AEP-008/templates/proof_room_review_template.md +docs/standards/AEP-008/templates/role_assignment_registry_template.json +docs/standards/AEP-008/templates/room_audit_export_template.json +docs/standards/AEP-008/templates/room_closure_report_template.json +docs/standards/AEP-008/templates/work_item_registry_template.json +docs/standards/AEP-008/tools/generate_proof_room_index.py +docs/standards/AEP-008/tools/proof_room_audit.py +docs/standards/AEP-008/tools/proof_room_conformance_score.py +docs/standards/AEP-008/tools/proof_room_hash.py +docs/standards/AEP-008/tools/validate_proof_room_manifest.py +docs/tables/goalos_aep_standards.csv +docs/tables/goalos_asset_manifest.csv +docs/tables/goalos_claim_boundaries.csv +docs/tables/goalos_document_inventory.csv +docs/tables/goalos_figure_inventory.csv +docs/tables/goalos_offer_status.csv +docs/tables/goalos_paid_file_policy.csv +docs/tables/goalos_product_ladder.csv +docs/tables/goalos_professional_firm_packages.csv +docs/tables/goalos_proof_card_001_fields.csv +docs/tables/goalos_public_site_pages.csv +docs/tables/goalos_validation_rules.csv +docs/tables/goalos_workflow_actions.csv docs/type_ii_roadmap.md docs/vision.md docs/wealth_accumulation_proof.md +examples/civilization_scale_coordination/job.json +examples/corporate_rsi_dominion/job.json examples/curl_examples.sh +examples/customer_response_safety/job.json +examples/enterprise_rsi_superorganism/job.json +examples/proof_carrying_intelligence/job.json examples/run_demo.py +examples/sovereign_domain_atlas/job.json +examples/sovereign_enterprise_constellation/job.json +examples/sovereign_enterprise_proof_economy/job.json +examples/sovereign_kardashev_capital_engine/job.json index.html +migrations/env.py +migrations/versions/0001_initial_schema.py pages-manifest.json +proof_gradient/__init__.py +proof_gradient/__main__.py +proof_gradient/api.py +proof_gradient/cli.py +proof_gradient/config.py +proof_gradient/corporate_rsi_dominion.py +proof_gradient/db.py +proof_gradient/demo.py +proof_gradient/enterprise_rsi_superorganism.py +proof_gradient/evals.py +proof_gradient/foundation.py +proof_gradient/models.py +proof_gradient/proof_archive.py +proof_gradient/proof_carrying_intelligence.py +proof_gradient/providers.py +proof_gradient/security.py +proof_gradient/services.py +proof_gradient/sovereign_domain_atlas.py +proof_gradient/sovereign_enterprise_constellation.py +proof_gradient/sovereign_enterprise_proof_economy.py +proof_gradient/sovereign_kardashev_capital_engine.py +proof_gradient/workers.py pyproject.toml +releases/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_complete_package.zip +releases/AEP-001/README.md repository_manifest.json robots.txt +schemas/artifact.schema.json +schemas/patch.schema.json +schemas/proof.schema.json +schemas/proof_gradient_foundation.schema.json +schemas/release.schema.json +schemas/run_contract.schema.json +schemas/score.schema.json +scripts/apply_safe_public_copy.py +scripts/build_goalos_product_pages.py scripts/build_pages.py +scripts/build_skillos_command_center.py +scripts/build_skillos_command_center_v2.py +scripts/build_skillos_command_center_v3.py +scripts/build_skillos_command_center_v4.py +scripts/build_skillos_flagship_governance_twin_launch.py +scripts/build_skillos_public_command_center_v7.py +scripts/build_skillos_sovereign_command_center_v5.py +scripts/cancel_legacy_skillos_site_runs.py +scripts/check_no_paid_artifacts.py +scripts/check_site_links.py +scripts/goalos_public_site_rules.py +scripts/guard_no_paid_product_files.py +scripts/make_autonomous_market_readiness_visible.py +scripts/make_enterprise_ops_proof_visible.py +scripts/make_rsi_adversarial_multi_agent_market_command_center_proof_visible.py +scripts/make_rsi_ai_first_blockchain_capital_machine_visible.py +scripts/make_rsi_ai_first_governance_capital_engine_visible.py +scripts/make_rsi_blockchain_protocol_capital_frontier_visible.py +scripts/make_rsi_capability_command_center_v17_visible.py +scripts/make_rsi_capability_command_center_visible.py +scripts/make_rsi_capital_to_capability_engine_proof_visible.py +scripts/make_rsi_cloudops_proof_visible.py +scripts/make_rsi_corporate_capability_frontier_visible.py +scripts/make_rsi_corporate_os_proof_visible.py +scripts/make_rsi_corporate_strategy_frontier_visible.py +scripts/make_rsi_cyberdefense_proof_visible.py +scripts/make_rsi_enterprise_capability_foundry_visible.py +scripts/make_rsi_enterprise_eureka_factory_visible.py +scripts/make_rsi_enterprise_superorganization_visible.py +scripts/make_rsi_marketplace_flywheel_proof_visible.py +scripts/make_rsi_metamaterials_discovery_proof_visible.py +scripts/make_rsi_revenue_experiment_factory_proof_visible.py +scripts/make_rsi_silicon_verification_proof_visible.py +scripts/make_rsi_unit_economics_proof_visible.py +scripts/make_shadow_pilot_visible.py scripts/prove_wealth_loop.py +scripts/publish_rsi_adversarial_benchmark_foundry_to_hub.py +scripts/publish_rsi_ai_first_blockchain_capital_machine_to_site.py +scripts/publish_rsi_ai_first_governance_capital_engine_to_site.py +scripts/publish_rsi_blockchain_protocol_capital_frontier_to_site.py +scripts/publish_rsi_capability_assurance_case_graph_to_hub.py +scripts/publish_rsi_capability_economy_clearinghouse_to_hub.py +scripts/publish_rsi_capability_governance_twin_to_hub.py +scripts/publish_rsi_capability_liquidity_engine_to_hub.py +scripts/publish_rsi_capability_sla_reliability_mesh_to_hub.py +scripts/publish_rsi_capability_treasury_flywheel_to_hub.py +scripts/publish_rsi_causal_attribution_engine_to_hub.py +scripts/publish_rsi_continual_capability_frontier_to_hub.py +scripts/publish_rsi_corporate_capability_frontier_to_site.py +scripts/publish_rsi_corporate_strategy_frontier_to_site.py +scripts/publish_rsi_cross_domain_capability_transfer_atlas_to_hub.py +scripts/publish_rsi_fork_resistant_capability_network_to_hub.py +scripts/publish_rsi_full_stack_capability_lifecycle_to_hub.py +scripts/publish_rsi_governance_frontier_to_hub.py +scripts/publish_rsi_objective_integrity_firewall_to_hub.py +scripts/publish_rsi_open_replication_mesh_to_hub.py +scripts/publish_rsi_proof_forge_meta_coordination_to_hub.py +scripts/publish_rsi_skill_compounding_moat_to_hub.py +scripts/publish_rsi_skill_provenance_ledger_to_hub.py scripts/qa_check.py +scripts/refresh_public_site.py +scripts/render_rsi_adversarial_benchmark_foundry_site.py +scripts/render_rsi_capability_assurance_case_graph_site.py +scripts/render_rsi_capability_economy_clearinghouse_site.py +scripts/render_rsi_capability_governance_twin_site.py +scripts/render_rsi_capability_liquidity_engine_site.py +scripts/render_rsi_capability_sla_reliability_mesh_site.py +scripts/render_rsi_capability_treasury_flywheel_site.py +scripts/render_rsi_causal_attribution_engine_site.py +scripts/render_rsi_continual_capability_frontier_site.py +scripts/render_rsi_cross_domain_capability_transfer_atlas_site.py +scripts/render_rsi_fork_resistant_capability_network_site.py +scripts/render_rsi_full_stack_capability_lifecycle_site.py +scripts/render_rsi_governance_frontier_site.py +scripts/render_rsi_objective_integrity_firewall_site.py +scripts/render_rsi_open_replication_mesh_site.py +scripts/render_rsi_proof_forge_meta_coordination_site.py +scripts/render_rsi_skill_compounding_moat_site.py +scripts/render_rsi_skill_provenance_ledger_site.py +scripts/repo_claim_boundary_check.py scripts/reset_local.sh +scripts/run_all_public_proofs.py +scripts/run_autonomous_market_readiness_proof.py +scripts/run_enterprise_ops_market_proof.py scripts/run_local.sh +scripts/run_rsi_adversarial_benchmark_foundry_proof.py +scripts/run_rsi_adversarial_multi_agent_market_command_center_proof.py +scripts/run_rsi_ai_first_blockchain_capital_machine_proof.py +scripts/run_rsi_ai_first_governance_capital_engine_proof.py +scripts/run_rsi_blockchain_protocol_capital_frontier_proof.py +scripts/run_rsi_capability_assurance_case_graph_proof.py +scripts/run_rsi_capability_command_center_proof.py +scripts/run_rsi_capability_command_center_v17_proof.py +scripts/run_rsi_capability_economy_clearinghouse_proof.py +scripts/run_rsi_capability_governance_twin_proof.py +scripts/run_rsi_capability_liquidity_engine_proof.py +scripts/run_rsi_capability_sla_reliability_mesh_proof.py +scripts/run_rsi_capability_treasury_flywheel_proof.py +scripts/run_rsi_capital_to_capability_engine_proof.py +scripts/run_rsi_causal_attribution_engine_proof.py +scripts/run_rsi_cloudops_market_proof.py +scripts/run_rsi_continual_capability_frontier_proof.py +scripts/run_rsi_corporate_capability_frontier_proof.py +scripts/run_rsi_corporate_os_market_proof.py +scripts/run_rsi_corporate_strategy_frontier_proof.py +scripts/run_rsi_cross_domain_capability_transfer_atlas_proof.py +scripts/run_rsi_cyberdefense_market_proof.py +scripts/run_rsi_enterprise_capability_foundry_proof.py +scripts/run_rsi_enterprise_eureka_factory_proof.py +scripts/run_rsi_enterprise_superorganization_proof.py +scripts/run_rsi_fork_resistant_capability_network_proof.py +scripts/run_rsi_full_stack_capability_lifecycle_proof.py +scripts/run_rsi_governance_frontier_proof.py +scripts/run_rsi_marketplace_flywheel_market_proof.py +scripts/run_rsi_metamaterials_discovery_market_proof.py +scripts/run_rsi_objective_integrity_firewall_proof.py +scripts/run_rsi_open_replication_mesh_proof.py +scripts/run_rsi_proof_forge_meta_coordination_proof.py +scripts/run_rsi_revenue_experiment_factory_market_proof.py +scripts/run_rsi_silicon_verification_market_proof.py +scripts/run_rsi_skill_compounding_moat_proof.py +scripts/run_rsi_skill_provenance_ledger_proof.py +scripts/run_rsi_unit_economics_market_proof.py +scripts/run_shadow_pilot_proof.py +scripts/security_review.py +scripts/validate_docs_tables_figures.py +scripts/validate_goalos_catalog.py +scripts/validate_goalos_products.py +scripts/validate_goalos_public_site.py +scripts/validate_goalos_site_v2.py +scripts/verify_autonomous_market_readiness.py +scripts/verify_enterprise_ops_proof.py +scripts/verify_live_skillos_flagship_governance_twin_launch.py +scripts/verify_live_skillos_public_command_center_v7.py +scripts/verify_live_skillos_sovereign_command_center_v5.py scripts/verify_pages.py +scripts/verify_public_site_refresh.py scripts/verify_repo.py +scripts/verify_rsi_adversarial_benchmark_foundry_proof.py +scripts/verify_rsi_adversarial_benchmark_foundry_site.py +scripts/verify_rsi_adversarial_multi_agent_market_command_center_proof.py +scripts/verify_rsi_ai_first_blockchain_capital_machine_proof.py +scripts/verify_rsi_ai_first_blockchain_capital_machine_site.py +scripts/verify_rsi_ai_first_governance_capital_engine_proof.py +scripts/verify_rsi_ai_first_governance_capital_engine_site.py +scripts/verify_rsi_blockchain_protocol_capital_frontier_proof.py +scripts/verify_rsi_blockchain_protocol_capital_frontier_site.py +scripts/verify_rsi_capability_assurance_case_graph_proof.py +scripts/verify_rsi_capability_assurance_case_graph_site.py +scripts/verify_rsi_capability_command_center_proof.py +scripts/verify_rsi_capability_command_center_v17_proof.py +scripts/verify_rsi_capability_economy_clearinghouse_proof.py +scripts/verify_rsi_capability_economy_clearinghouse_site.py +scripts/verify_rsi_capability_governance_twin_proof.py +scripts/verify_rsi_capability_governance_twin_site.py +scripts/verify_rsi_capability_liquidity_engine_proof.py +scripts/verify_rsi_capability_liquidity_engine_site.py +scripts/verify_rsi_capability_sla_reliability_mesh_proof.py +scripts/verify_rsi_capability_sla_reliability_mesh_site.py +scripts/verify_rsi_capability_treasury_flywheel_proof.py +scripts/verify_rsi_capability_treasury_flywheel_site.py +scripts/verify_rsi_capital_to_capability_engine_proof.py +scripts/verify_rsi_causal_attribution_engine_proof.py +scripts/verify_rsi_causal_attribution_engine_site.py +scripts/verify_rsi_cloudops_proof.py +scripts/verify_rsi_continual_capability_frontier_proof.py +scripts/verify_rsi_continual_capability_frontier_site.py +scripts/verify_rsi_corporate_capability_frontier_proof.py +scripts/verify_rsi_corporate_capability_frontier_site.py +scripts/verify_rsi_corporate_os_proof.py +scripts/verify_rsi_corporate_strategy_frontier_proof.py +scripts/verify_rsi_corporate_strategy_frontier_site.py +scripts/verify_rsi_cross_domain_capability_transfer_atlas_proof.py +scripts/verify_rsi_cross_domain_capability_transfer_atlas_site.py +scripts/verify_rsi_cyberdefense_proof.py +scripts/verify_rsi_enterprise_capability_foundry_proof.py +scripts/verify_rsi_enterprise_eureka_factory_proof.py +scripts/verify_rsi_enterprise_superorganization_proof.py +scripts/verify_rsi_fork_resistant_capability_network_proof.py +scripts/verify_rsi_fork_resistant_capability_network_site.py +scripts/verify_rsi_full_stack_capability_lifecycle_proof.py +scripts/verify_rsi_full_stack_capability_lifecycle_site.py +scripts/verify_rsi_governance_frontier_proof.py +scripts/verify_rsi_governance_frontier_site.py +scripts/verify_rsi_marketplace_flywheel_proof.py +scripts/verify_rsi_metamaterials_discovery_proof.py +scripts/verify_rsi_objective_integrity_firewall_proof.py +scripts/verify_rsi_objective_integrity_firewall_site.py +scripts/verify_rsi_open_replication_mesh_proof.py +scripts/verify_rsi_open_replication_mesh_site.py +scripts/verify_rsi_proof_forge_meta_coordination_proof.py +scripts/verify_rsi_proof_forge_meta_coordination_site.py +scripts/verify_rsi_revenue_experiment_factory_proof.py +scripts/verify_rsi_silicon_verification_proof.py +scripts/verify_rsi_skill_compounding_moat_proof.py +scripts/verify_rsi_skill_compounding_moat_site.py +scripts/verify_rsi_skill_provenance_ledger_proof.py +scripts/verify_rsi_skill_provenance_ledger_site.py +scripts/verify_rsi_unit_economics_proof.py +scripts/verify_safe_public_copy.py +scripts/verify_shadow_pilot_visibility.py +scripts/verify_skillos_command_center.py +scripts/verify_skillos_command_center_v2.py +scripts/verify_skillos_command_center_v3.py +scripts/verify_skillos_command_center_v4.py +scripts/verify_skillos_flagship_governance_twin_launch.py +scripts/verify_skillos_public_command_center_v7.py +scripts/verify_skillos_sovereign_command_center_v5.py +site/.nojekyll site/404.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/404.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/ai-efficiency-score/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/app/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/autonomous-market-readiness.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/command-center/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/docs/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/enterprise-ops-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/goalos/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-checkout-recovery-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-demand-engine-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-ai-correction-rollback-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-ai-permission-map-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-monthly-proof-report-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-proof-room-lite-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-public-safe-case-study-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-weekly-proof-review-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-feedback-to-product-update-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-internal-approval-memo-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-lead-magnet-email-sequence-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-meeting-workflow-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-monthly-workflow-vault-drop-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-offer-to-sales-page-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-order-bump-builder-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-partner-referral-kit-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-post-purchase-onboarding-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-proof-card-referral-loop-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-reusable-workflow-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-support-faq-triage-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-team-pack-upsell-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-team-sprint-facilitator-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-weekly-growth-review-example.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/launch/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/legacy-command-center.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/platform/goalos-recursive-workflow-os/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/pricing/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/production.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/ai-efficiency-sprint/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-enterprise-pilot/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-rsi-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/proof-page-template-pack/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sme-ai-adoption-sprint/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-country-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-empire-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-nation-state/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/team-pack/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/workflow-vault/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/workshop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/001-sovereign-swarm.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/002-evolution-tournament.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/003-recursive-evolution-ladder.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/004-corporate-rsi-dominion.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/005-enterprise-rsi-superorganism.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/006-sovereign-enterprise-constellation.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/008-sovereign-domain-atlas.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/010-proof-carrying-intelligence.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/011-the-proof-loop.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capability-command-center-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capability-command-center-v17-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capital-to-capability-engine-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-cloudops-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-corporate-os-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-cyberdefense-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-marketplace-flywheel-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-metamaterials-discovery-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-proof-forge-meta-coordination-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-revenue-experiment-factory-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-silicon-verification-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-unit-economics-proof.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/services/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/site-map/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-001/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-001/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/conformance/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/examples/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/figures/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/implementation/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/one_page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/schemas/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/templates/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/tools/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/start-here/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v3_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/404.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/ai-efficiency-score/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/app/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/autonomous-market-readiness.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/command-center/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/docs/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/enterprise-ops-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/goalos/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-checkout-recovery-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-demand-engine-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-ai-correction-rollback-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-ai-permission-map-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-monthly-proof-report-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-proof-room-lite-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-public-safe-case-study-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-weekly-proof-review-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-feedback-to-product-update-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-internal-approval-memo-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-lead-magnet-email-sequence-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-meeting-workflow-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-monthly-workflow-vault-drop-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-offer-to-sales-page-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-order-bump-builder-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-partner-referral-kit-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-post-purchase-onboarding-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-proof-card-referral-loop-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-reusable-workflow-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-support-faq-triage-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-team-pack-upsell-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-team-sprint-facilitator-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-weekly-growth-review-example.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/launch/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/legacy-command-center.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/platform/goalos-recursive-workflow-os/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/pricing/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/production.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/ai-efficiency-sprint/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-enterprise-pilot/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-rsi-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/proof-page-template-pack/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sme-ai-adoption-sprint/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-country-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-empire-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-nation-state/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/team-pack/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/workflow-vault/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/workshop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/001-sovereign-swarm.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/002-evolution-tournament.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/003-recursive-evolution-ladder.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/004-corporate-rsi-dominion.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/005-enterprise-rsi-superorganism.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/006-sovereign-enterprise-constellation.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/008-sovereign-domain-atlas.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/010-proof-carrying-intelligence.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/011-the-proof-loop.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capability-command-center-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capability-command-center-v17-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capital-to-capability-engine-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-cloudops-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-corporate-os-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-cyberdefense-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-marketplace-flywheel-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-metamaterials-discovery-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-proof-forge-meta-coordination-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-revenue-experiment-factory-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-silicon-verification-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-unit-economics-proof.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/services/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/site-map/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-001/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-001/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/conformance/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/examples/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/figures/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/implementation/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/one_page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/schemas/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/templates/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/tools/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/start-here/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v4_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/404.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/ai-efficiency-score/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/app/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/autonomous-market-readiness.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/brand/visual-system/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/command-center/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/docs/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/enterprise-ops-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/goalos/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-checkout-recovery-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-demand-engine-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-ai-correction-rollback-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-ai-permission-map-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-monthly-proof-report-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-proof-room-lite-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-public-safe-case-study-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-weekly-proof-review-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-feedback-to-product-update-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-internal-approval-memo-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-lead-magnet-email-sequence-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-meeting-workflow-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-monthly-workflow-vault-drop-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-offer-to-sales-page-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-order-bump-builder-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-partner-referral-kit-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-post-purchase-onboarding-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-proof-card-referral-loop-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-reusable-workflow-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-support-faq-triage-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-team-pack-upsell-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-team-sprint-facilitator-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-weekly-growth-review-example.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/launch/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/legacy-command-center.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/platform/goalos-recursive-workflow-os/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/pricing/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/production.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/ai-efficiency-sprint/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-cloud-mvp/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-enterprise-pilot/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-rsi-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/proof-page-template-pack/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sme-ai-adoption-sprint/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-country-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-empire-ai-operating-system/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-nation-state/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/team-pack/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/workflow-vault/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/workshop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/001-sovereign-swarm.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/002-evolution-tournament.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/003-recursive-evolution-ladder.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/004-corporate-rsi-dominion.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/005-enterprise-rsi-superorganism.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/006-sovereign-enterprise-constellation.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/008-sovereign-domain-atlas.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/010-proof-carrying-intelligence.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/011-the-proof-loop.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capability-command-center-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capability-command-center-v17-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capital-to-capability-engine-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-cloudops-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-corporate-os-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-cyberdefense-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-marketplace-flywheel-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-metamaterials-discovery-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-proof-forge-meta-coordination-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-revenue-experiment-factory-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-silicon-verification-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-unit-economics-proof.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/services/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/site-map/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-001/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-001/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/conformance/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/examples/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/figures/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/implementation/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/one_page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/schemas/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/templates/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/tools/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/start-here/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/checkout-recovery/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-ai-correction-rollback/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-ai-permission-map/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-monthly-proof-report/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-proof-room-lite/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-public-safe-case-study/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-weekly-proof-review/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/feedback-to-product-update/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/idea-to-demand-engine/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/internal-approval-memo/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/lead-magnet-email-sequence/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/meeting-to-action-plan/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/monthly-workflow-vault-drop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/offer-to-sales-page/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/order-bump-builder/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/partner-referral-kit/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/post-purchase-onboarding/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/proof-card-referral-loop/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/support-faq-triage/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/team-pack-upsell/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/team-sprint-facilitator/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/weekly-growth-review/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_goalos_public_site_release_v5_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/404.html +site/_archive/before_unified_shell_v2_2026-06-06/ai-efficiency-score/index.html +site/_archive/before_unified_shell_v2_2026-06-06/app/goalos-cloud-mvp/index.html +site/_archive/before_unified_shell_v2_2026-06-06/autonomous-market-readiness.html +site/_archive/before_unified_shell_v2_2026-06-06/command-center/index.html +site/_archive/before_unified_shell_v2_2026-06-06/docs/index.html +site/_archive/before_unified_shell_v2_2026-06-06/enterprise-ops-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/enterprise/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/build-one-reusable-ai-workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/checkout-recovery/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-ai-correction-rollback/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-ai-permission-map/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-monthly-proof-report/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-public-safe-case-study/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/department-weekly-proof-review/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/feedback-to-product-update/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/idea-to-demand-engine/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/internal-approval-memo/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/lead-magnet-email-sequence/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/meeting-to-action-plan/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/monthly-workflow-vault-drop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/offer-to-sales-page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/order-bump-builder/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/partner-referral-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/post-purchase-onboarding/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/proof-card-referral-loop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/support-faq-triage/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/team-pack-upsell/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/team-sprint-facilitator/index.html +site/_archive/before_unified_shell_v2_2026-06-06/examples/weekly-growth-review/index.html +site/_archive/before_unified_shell_v2_2026-06-06/goalos/index.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-checkout-recovery-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-demand-engine-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-ai-correction-rollback-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-ai-permission-map-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-monthly-proof-report-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-proof-room-lite-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-public-safe-case-study-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-weekly-proof-review-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-feedback-to-product-update-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-internal-approval-memo-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-lead-magnet-email-sequence-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-meeting-workflow-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-monthly-workflow-vault-drop-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-offer-to-sales-page-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-order-bump-builder-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-partner-referral-kit-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-post-purchase-onboarding-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-proof-card-referral-loop-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-reusable-workflow-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-support-faq-triage-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-team-pack-upsell-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-team-sprint-facilitator-example.html +site/_archive/before_unified_shell_v2_2026-06-06/home-before-weekly-growth-review-example.html +site/_archive/before_unified_shell_v2_2026-06-06/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-06/index.html +site/_archive/before_unified_shell_v2_2026-06-06/launch/index.html +site/_archive/before_unified_shell_v2_2026-06-06/legacy-command-center.html +site/_archive/before_unified_shell_v2_2026-06-06/platform/goalos-recursive-workflow-os/index.html +site/_archive/before_unified_shell_v2_2026-06-06/pricing/index.html +site/_archive/before_unified_shell_v2_2026-06-06/production.html +site/_archive/before_unified_shell_v2_2026-06-06/products/ai-efficiency-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/enterprise-proof-room-agent-control-plane/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-cloud-mvp/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-enterprise-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-rsi-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/proof-page-template-pack/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/sme-ai-adoption-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-country-ai-operating-system/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-empire-ai-operating-system/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-nation-state/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/team-pack/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/workflow-vault/index.html +site/_archive/before_unified_shell_v2_2026-06-06/products/workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/001-sovereign-swarm.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/002-evolution-tournament.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/003-recursive-evolution-ladder.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/004-corporate-rsi-dominion.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/005-enterprise-rsi-superorganism.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/006-sovereign-enterprise-constellation.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/007-sovereign-enterprise-proof-economy.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/008-sovereign-domain-atlas.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/009-sovereign-kardashev-capital-engine.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/010-proof-carrying-intelligence.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/011-the-proof-loop.html +site/_archive/before_unified_shell_v2_2026-06-06/proofs/index.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-adversarial-multi-agent-market-command-center-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-ai-first-blockchain-capital-machine-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-ai-first-governance-capital-engine-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-capability-command-center-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-capability-command-center-v17-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-capital-to-capability-engine-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-cloudops-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-corporate-os-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-cyberdefense-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-marketplace-flywheel-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-metamaterials-discovery-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-proof-forge-meta-coordination-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-revenue-experiment-factory-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-silicon-verification-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/rsi-unit-economics-proof.html +site/_archive/before_unified_shell_v2_2026-06-06/services/index.html +site/_archive/before_unified_shell_v2_2026-06-06/site-map/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-001/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-001/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-06/standards/index.html +site/_archive/before_unified_shell_v2_2026-06-06/start-here/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/build-one-reusable-ai-workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/checkout-recovery/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-ai-correction-rollback/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-ai-permission-map/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-monthly-proof-report/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-public-safe-case-study/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-weekly-proof-review/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/feedback-to-product-update/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/idea-to-demand-engine/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/internal-approval-memo/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/lead-magnet-email-sequence/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/meeting-to-action-plan/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/monthly-workflow-vault-drop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/offer-to-sales-page/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/order-bump-builder/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/partner-referral-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/post-purchase-onboarding/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/proof-card-referral-loop/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/rsi-lite-self-improving-workflows/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/support-faq-triage/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/team-pack-upsell/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/team-sprint-facilitator/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workflow/weekly-growth-review/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-06/workshop/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/404.html +site/_archive/before_unified_shell_v2_2026-06-07/ai-efficiency-score/index.html +site/_archive/before_unified_shell_v2_2026-06-07/app/goalos-cloud-mvp/index.html +site/_archive/before_unified_shell_v2_2026-06-07/autonomous-market-readiness.html +site/_archive/before_unified_shell_v2_2026-06-07/command-center/index.html +site/_archive/before_unified_shell_v2_2026-06-07/docs/index.html +site/_archive/before_unified_shell_v2_2026-06-07/enterprise-ops-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/build-one-reusable-ai-workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/checkout-recovery/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-correction-rollback/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-permission-map/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-monthly-proof-report/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-public-safe-case-study/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/department-weekly-proof-review/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/feedback-to-product-update/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/idea-to-demand-engine/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/internal-approval-memo/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/lead-magnet-email-sequence/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/meeting-to-action-plan/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/monthly-workflow-vault-drop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/offer-to-sales-page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/order-bump-builder/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/partner-referral-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/post-purchase-onboarding/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/proof-card-referral-loop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/support-faq-triage/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/team-pack-upsell/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/team-sprint-facilitator/index.html +site/_archive/before_unified_shell_v2_2026-06-07/examples/weekly-growth-review/index.html +site/_archive/before_unified_shell_v2_2026-06-07/goalos/index.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-checkout-recovery-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-demand-engine-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-correction-rollback-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-permission-map-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-monthly-proof-report-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-proof-room-lite-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-public-safe-case-study-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-weekly-proof-review-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-feedback-to-product-update-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-internal-approval-memo-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-lead-magnet-email-sequence-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-meeting-workflow-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-monthly-workflow-vault-drop-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-offer-to-sales-page-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-order-bump-builder-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-partner-referral-kit-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-post-purchase-onboarding-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-proof-card-referral-loop-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-reusable-workflow-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-support-faq-triage-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-pack-upsell-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-sprint-facilitator-example.html +site/_archive/before_unified_shell_v2_2026-06-07/home-before-weekly-growth-review-example.html +site/_archive/before_unified_shell_v2_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-07/index.html +site/_archive/before_unified_shell_v2_2026-06-07/launch/index.html +site/_archive/before_unified_shell_v2_2026-06-07/legacy-command-center.html +site/_archive/before_unified_shell_v2_2026-06-07/platform/goalos-recursive-workflow-os/index.html +site/_archive/before_unified_shell_v2_2026-06-07/pricing/index.html +site/_archive/before_unified_shell_v2_2026-06-07/production.html +site/_archive/before_unified_shell_v2_2026-06-07/products/ai-efficiency-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-cloud-mvp/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/proof-page-template-pack/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/sme-ai-adoption-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-country-ai-operating-system/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-empire-ai-operating-system/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-nation-state/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/team-pack/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/workflow-vault/index.html +site/_archive/before_unified_shell_v2_2026-06-07/products/workshop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/001-sovereign-swarm.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/002-evolution-tournament.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/003-recursive-evolution-ladder.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/004-corporate-rsi-dominion.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/005-enterprise-rsi-superorganism.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/006-sovereign-enterprise-constellation.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/008-sovereign-domain-atlas.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/010-proof-carrying-intelligence.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/011-the-proof-loop.html +site/_archive/before_unified_shell_v2_2026-06-07/proofs/index.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-v17-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-capital-to-capability-engine-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-cloudops-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-corporate-os-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-cyberdefense-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-marketplace-flywheel-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-metamaterials-discovery-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-proof-forge-meta-coordination-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-revenue-experiment-factory-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-silicon-verification-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/rsi-unit-economics-proof.html +site/_archive/before_unified_shell_v2_2026-06-07/services/index.html +site/_archive/before_unified_shell_v2_2026-06-07/site-map/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/conformance/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/examples/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/figures/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/implementation/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/one_page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/schemas/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/templates/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/tools/index.html +site/_archive/before_unified_shell_v2_2026-06-07/standards/index.html +site/_archive/before_unified_shell_v2_2026-06-07/start-here/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/checkout-recovery/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-correction-rollback/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-permission-map/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-monthly-proof-report/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-proof-room-lite/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-public-safe-case-study/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-weekly-proof-review/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/feedback-to-product-update/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/idea-to-demand-engine/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/internal-approval-memo/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/lead-magnet-email-sequence/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/meeting-to-action-plan/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/monthly-workflow-vault-drop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/offer-to-sales-page/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/order-bump-builder/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/partner-referral-kit/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/post-purchase-onboarding/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/proof-card-referral-loop/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/support-faq-triage/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-pack-upsell/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-sprint-facilitator/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workflow/weekly-growth-review/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_site_shell/command-center/index.html +site/_archive/before_unified_site_shell/examples/index.html +site/_archive/before_unified_site_shell/implementation/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_site_shell/index.html +site/_archive/before_unified_site_shell/pricing/index.html +site/_archive/before_unified_site_shell/products/goalos-ai-efficiency-sprint-kit/index.html +site/_archive/before_unified_site_shell/products/goalos-cloud-mvp/index.html +site/_archive/before_unified_site_shell/products/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_site_shell/products/goalos-proof-room-lite/index.html +site/_archive/before_unified_site_shell/products/goalos-rsi-lite/index.html +site/_archive/before_unified_site_shell/products/goalos-rsi-sprint-workshop/index.html +site/_archive/before_unified_site_shell/products/index.html +site/_archive/before_unified_site_shell/services/index.html +site/_archive/before_unified_site_shell/site-map/index.html +site/_archive/before_unified_site_shell/standards/index.html +site/_archive/before_unified_site_shell/start-here/index.html +site/_archive/before_unified_site_shell/workshop/goalos-proof-room-implementation-sprint/index.html +site/_archive/before_unified_site_shell/workshop/goalos-rsi-sprint-workshop/index.html +site/ai-efficiency-score/index.html site/app.js -site/assets/skillos-mark.svg +site/app/goalos-cloud-mvp/README.md +site/app/goalos-cloud-mvp/assets/app.js +site/app/goalos-cloud-mvp/assets/enterprise-core.mjs +site/app/goalos-cloud-mvp/assets/goalos-core.mjs +site/app/goalos-cloud-mvp/assets/styles.css +site/app/goalos-cloud-mvp/docs/STATE_OF_THE_ART_ENTERPRISE_GATES.md +site/app/goalos-cloud-mvp/index.html +site/app/goalos-cloud-mvp/openapi.json +site/app/goalos-cloud-mvp/schemas/proof-record.schema.json +site/app/goalos-cloud-mvp/schemas/workflow.schema.json +site/app/goalos-cloud-mvp/site-manifest.json +site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +site/app/goalos-cloud-mvp/tests/goalos-core.test.mjs +site/assets/apple-touch-icon.png +site/assets/brand-assets-v7.json +site/assets/brand-assets-v8.json +site/assets/brand/QUEBEC_AI_Strategic_Engagements_Hero_HQ_2560x1280.jpg +site/assets/brand/Quebec_AI_v0.png +site/assets/brand/Quebec_AI_v1.png +site/assets/brand/Quebec_AI_v13.png +site/assets/brand/Quebec_AI_v14.png +site/assets/brand/Quebec_AI_v15.png +site/assets/brand/Quebec_AI_v16.png +site/assets/brand/Quebec_AI_v18.png +site/assets/brand/Quebec_AI_v2.png +site/assets/brand/Quebec_AI_v20.png +site/assets/brand/Quebec_AI_v21.png +site/assets/brand/Quebec_AI_v25.png +site/assets/brand/Quebec_AI_v27.png +site/assets/brand/Quebec_AI_v28.png +site/assets/brand/Quebec_AI_v31.png +site/assets/brand/Quebec_AI_v32.png +site/assets/brand/Quebec_AI_v36.png +site/assets/brand/Quebec_AI_v37.png +site/assets/brand/Quebec_AI_v38.png +site/assets/brand/Quebec_AI_v39.png +site/assets/brand/Quebec_AI_v4.png +site/assets/brand/Quebec_AI_v40.png +site/assets/brand/Quebec_AI_v41.png +site/assets/brand/Quebec_AI_v43.png +site/assets/brand/Quebec_AI_v46.png +site/assets/brand/Quebec_AI_v47.png +site/assets/brand/Quebec_AI_v48.png +site/assets/brand/Quebec_AI_v49.png +site/assets/brand/Quebec_AI_v5.png +site/assets/brand/Quebec_AI_v51.png +site/assets/brand/Quebec_AI_v53.png +site/assets/brand/Quebec_AI_v55.png +site/assets/brand/Quebec_AI_v59.png +site/assets/brand/Quebec_AI_v60.png +site/assets/brand/Quebec_AI_v63.png +site/assets/brand/Quebec_AI_v64_1.png +site/assets/brand/Quebec_AI_v66.png +site/assets/brand/Quebec_AI_v67.png +site/assets/brand/Quebec_AI_v68_LinkedIn.png +site/assets/brand/Quebec_AI_v70.png +site/assets/brand/SovereignManifestov0.png +site/assets/brand/SovereignManifestov1.png +site/assets/brand/SovereignManifestov2.png +site/assets/brand/montreal_ai_v2.png +site/assets/brand/montreal_ai_v4.png +site/assets/brand/montreal_ai_youtube_banner_v2.png +site/assets/brand/montreal_ai_youtube_banner_v3.png +site/assets/brand/montreal_ai_youtube_profile_v0.png +site/assets/brand/quebecaisealv5.png +site/assets/brand/skillos-mark.svg +site/assets/brand/vincentboucher_v0.png +site/assets/brand/vincentboucher_v1.png +site/assets/brand/vincentboucher_v2.png +site/assets/brand/vincentboucher_v3.png +site/assets/brand/vincentboucher_youtube_banner_v6.png +site/assets/checkout-recovery-card.svg +site/assets/department-ai-correction-rollback-card.svg +site/assets/department-ai-permission-map-card.svg +site/assets/department-monthly-proof-report-card.svg +site/assets/department-proof-room-lite-card.svg +site/assets/department-public-safe-case-study-card.svg +site/assets/department-weekly-proof-review-card.svg +site/assets/feedback-to-product-update-card.svg +site/assets/goalos-complete-site-og.svg +site/assets/goalos-complete-site.css +site/assets/goalos-complete-site.js +site/assets/goalos-opulent-og.svg +site/assets/goalos-opulent-v4.css +site/assets/goalos-opulent-v4.js +site/assets/goalos-opulent-v5.css +site/assets/goalos-opulent-v5.js +site/assets/goalos-product-ladder-og.svg +site/assets/goalos-product-ladder.css +site/assets/goalos-product-ladder.js +site/assets/goalos-products.css +site/assets/goalos-products.js +site/assets/goalos-public-site-og.svg +site/assets/goalos-site-v2.css +site/assets/goalos-site-v2.js +site/assets/goalos-site-v3.css +site/assets/goalos-site-v3.js +site/assets/goalos-sovereign-v6.css +site/assets/goalos-sovereign-v6.js +site/assets/goalos-sovereign-v7.css +site/assets/goalos-sovereign-v7.js +site/assets/goalos-sovereign-v8.css +site/assets/goalos-sovereign-v8.js +site/assets/goalos-unified-og.svg +site/assets/goalos-unified-site-shell.css +site/assets/goalos-unified-site.js +site/assets/icon-192.png +site/assets/icon-512.png +site/assets/idea-to-demand-engine-card.svg +site/assets/internal-approval-memo-card.svg +site/assets/lead-magnet-email-sequence-card.svg +site/assets/meeting-to-action-plan-card.svg +site/assets/monthly-workflow-vault-drop-card.svg +site/assets/offer-to-sales-page-card.svg +site/assets/order-bump-builder-card.svg +site/assets/partner-referral-kit-card.svg +site/assets/post-purchase-onboarding-card.svg +site/assets/proof-card-referral-loop-card.svg +site/assets/proof-gradient-og.svg +site/assets/proof-gradient-site.css +site/assets/proof-gradient-site.js +site/assets/proof-index.json +site/assets/proofs/001-sovereign-swarm.json +site/assets/proofs/002-evolution-tournament.json +site/assets/proofs/003-recursive-evolution-ladder.json +site/assets/proofs/004-corporate-rsi-dominion.json +site/assets/proofs/005-enterprise-rsi-superorganism.json +site/assets/proofs/006-sovereign-enterprise-constellation.json +site/assets/proofs/007-sovereign-enterprise-proof-economy.json +site/assets/proofs/008-sovereign-domain-atlas.json +site/assets/proofs/009-sovereign-kardashev-capital-engine.json +site/assets/proofs/010-proof-carrying-intelligence.json +site/assets/proofs/011-the-proof-loop.json +site/assets/quebecaisealv5.png +site/assets/reusable-ai-workflow-card.svg +site/assets/support-faq-triage-card.svg +site/assets/team-pack-upsell-card.svg +site/assets/team-sprint-facilitator-card.svg +site/assets/weekly-growth-review-card.svg +site/autonomous-market-readiness.html +site/badges/rsi-ai-first-governance-capital-engine-proof.svg +site/badges/rsi-proof-forge-meta-coordination-proof.svg +site/brand/visual-system/index.html +site/command-center/index.html +site/data/rsi-ai-first-governance-capital-engine-proof.json +site/data/rsi-proof-forge-meta-coordination-proof.json +site/docs/index.html +site/docs/rsi-ai-first-governance-capital-engine-proof.md +site/docs/rsi-proof-forge-meta-coordination-proof.md +site/enterprise-ops-proof.html +site/enterprise/goalos-enterprise-rsi-pilot/index.html +site/examples/build-one-reusable-ai-workflow/index.html +site/examples/checkout-recovery/index.html +site/examples/department-ai-correction-rollback/index.html +site/examples/department-ai-permission-map/index.html +site/examples/department-monthly-proof-report/index.html +site/examples/department-proof-room-lite/index.html +site/examples/department-public-safe-case-study/index.html +site/examples/department-weekly-proof-review/index.html +site/examples/feedback-to-product-update/index.html +site/examples/idea-to-demand-engine/index.html +site/examples/index.html +site/examples/internal-approval-memo/index.html +site/examples/lead-magnet-email-sequence/index.html +site/examples/meeting-to-action-plan/index.html +site/examples/monthly-workflow-vault-drop/index.html +site/examples/offer-to-sales-page/index.html +site/examples/order-bump-builder/index.html +site/examples/partner-referral-kit/index.html +site/examples/post-purchase-onboarding/index.html +site/examples/proof-card-referral-loop/index.html +site/examples/support-faq-triage/index.html +site/examples/team-pack-upsell/index.html +site/examples/team-sprint-facilitator/index.html +site/examples/weekly-growth-review/index.html +site/favicon.png +site/goalos-complete-site-manifest.json +site/goalos-product-ladder-site-manifest.json +site/goalos-public-site-release-v3-2-manifest.json +site/goalos-public-site-release-v3-2-report.json +site/goalos-public-site-release-v4-manifest.json +site/goalos-public-site-release-v4-report.json +site/goalos-public-site-release-v5-manifest.json +site/goalos-public-site-release-v5-report.json +site/goalos-public-site-release-v6-manifest.json +site/goalos-public-site-release-v6-report.json +site/goalos-public-site-release-v7-manifest.json +site/goalos-public-site-release-v7-report.json +site/goalos-public-site-release-v8-manifest.json +site/goalos-public-site-release-v8-report.json +site/goalos-site-manifest-v2.json +site/goalos-site-repair-v2-report.json +site/goalos-unified-site-manifest.json +site/goalos-unified-site-repair-report.json +site/goalos/index.html +site/home-before-checkout-recovery-example.html +site/home-before-demand-engine-example.html +site/home-before-department-ai-correction-rollback-example.html +site/home-before-department-ai-permission-map-example.html +site/home-before-department-monthly-proof-report-example.html +site/home-before-department-proof-room-lite-example.html +site/home-before-department-public-safe-case-study-example.html +site/home-before-department-weekly-proof-review-example.html +site/home-before-feedback-to-product-update-example.html +site/home-before-internal-approval-memo-example.html +site/home-before-lead-magnet-email-sequence-example.html +site/home-before-meeting-workflow-example.html +site/home-before-monthly-workflow-vault-drop-example.html +site/home-before-offer-to-sales-page-example.html +site/home-before-order-bump-builder-example.html +site/home-before-partner-referral-kit-example.html +site/home-before-post-purchase-onboarding-example.html +site/home-before-proof-card-referral-loop-example.html +site/home-before-reusable-workflow-example.html +site/home-before-support-faq-triage-example.html +site/home-before-team-pack-upsell-example.html +site/home-before-team-sprint-facilitator-example.html +site/home-before-weekly-growth-review-example.html +site/implementation/goalos-proof-room-implementation-sprint/index.html site/index.html -site/manifest.webmanifest +site/launch/index.html +site/legacy-command-center.html +site/platform/goalos-recursive-workflow-os/index.html +site/pricing/index.html +site/production.html +site/products/ai-efficiency-sprint/index.html +site/products/department-proof-room-lite/index.html +site/products/enterprise-proof-room-agent-control-plane/index.html +site/products/goalos-ai-efficiency-sprint-kit/index.html +site/products/goalos-cloud-mvp/index.html +site/products/goalos-enterprise-pilot/index.html +site/products/goalos-enterprise-rsi-pilot/index.html +site/products/goalos-proof-room-implementation-sprint/index.html +site/products/goalos-proof-room-lite/index.html +site/products/goalos-rsi-lite/index.html +site/products/goalos-rsi-sprint-workshop/index.html +site/products/index.html +site/products/nation-state-ai-leverage-proof-infrastructure/index.html +site/products/proof-page-template-pack/index.html +site/products/sme-ai-adoption-sprint/index.html +site/products/sovereign-country-ai-operating-system/index.html +site/products/sovereign-empire-ai-operating-system/index.html +site/products/sovereign-nation-state/index.html +site/products/team-pack/index.html +site/products/workflow-vault/index.html +site/products/workshop/index.html +site/proof-registry.json +site/proof-room-lite/index.html +site/proofs/001-sovereign-swarm.html +site/proofs/002-evolution-tournament.html +site/proofs/003-recursive-evolution-ladder.html +site/proofs/004-corporate-rsi-dominion.html +site/proofs/005-enterprise-rsi-superorganism.html +site/proofs/006-sovereign-enterprise-constellation.html +site/proofs/007-sovereign-enterprise-proof-economy.html +site/proofs/008-sovereign-domain-atlas.html +site/proofs/009-sovereign-kardashev-capital-engine.html +site/proofs/010-proof-carrying-intelligence.html +site/proofs/011-the-proof-loop.html +site/proofs/index.html site/robots.txt +site/rsi-adversarial-multi-agent-market-command-center-proof.html +site/rsi-ai-first-blockchain-capital-machine-proof.html +site/rsi-ai-first-governance-capital-engine-proof.html +site/rsi-capability-command-center-proof.html +site/rsi-capability-command-center-v17-proof.html +site/rsi-capital-to-capability-engine-proof.html +site/rsi-cloudops-proof.html +site/rsi-corporate-os-proof.html +site/rsi-cyberdefense-proof.html +site/rsi-marketplace-flywheel-proof.html +site/rsi-metamaterials-discovery-proof.html +site/rsi-proof-forge-meta-coordination-proof.html +site/rsi-revenue-experiment-factory-proof.html +site/rsi-silicon-verification-proof.html +site/rsi-unit-economics-proof.html +site/services/index.html +site/site-health.json +site/site-manifest.json +site/site-map/index.html +site/site.webmanifest site/sitemap.xml +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.docx +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.md +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.tex +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_Final.pdf +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_QA_Report.txt +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_SHA256SUMS.txt +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_docx_contact_sheet.jpg +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_evidence_docket_template.md +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.md +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.pdf +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_pdf_contact_sheet.jpg +site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_protocol_schema.json +site/standards/AEP-001/README.md +site/standards/AEP-001/complete-package.zip +site/standards/AEP-001/evidence_docket_template.md +site/standards/AEP-001/figures/cover.png +site/standards/AEP-001/figures/fig01_constitution_stack.png +site/standards/AEP-001/figures/fig02_loop.png +site/standards/AEP-001/figures/fig03_boundary.png +site/standards/AEP-001/figures/fig04_object_graph.png +site/standards/AEP-001/figures/fig05_contract_suite.png +site/standards/AEP-001/figures/fig06_selection_gate.png +site/standards/AEP-001/figures/fig07_evidence_docket.png +site/standards/AEP-001/figures/fig08_evolution_ledger.png +site/standards/AEP-001/figures/fig09_deployment.png +site/standards/AEP-001/figures/index.html +site/standards/AEP-001/index.html +site/standards/AEP-001/one-page.pdf +site/standards/AEP-001/one_page_constitution.md +site/standards/AEP-001/paper.docx +site/standards/AEP-001/paper.pdf +site/standards/AEP-001/protocol_schema.json +site/standards/AEP-001/source.md +site/standards/AEP-001/source.tex +site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.docx +site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.md +site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.pdf +site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.tex +site/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.docx +site/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.pdf +site/standards/AEP-002/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-002/QA_REPORT.md +site/standards/AEP-002/README.md +site/standards/AEP-002/RELEASE_NOTES_AEP002_v1.1.md +site/standards/AEP-002/SHA256SUMS.txt +site/standards/AEP-002/conformance/aep002_conformance_checklist.md +site/standards/AEP-002/conformance/index.html +site/standards/AEP-002/examples/basic_evidence_docket.json +site/standards/AEP-002/examples/generated_public_safe_report.md +site/standards/AEP-002/examples/index.html +site/standards/AEP-002/examples/institutional_conformance_score.json +site/standards/AEP-002/examples/institutional_evidence_docket.json +site/standards/AEP-002/examples/public_safe_report.json +site/standards/AEP-002/figures/fig01_aep002_docket_stack.png +site/standards/AEP-002/figures/fig02_docket_lifecycle.png +site/standards/AEP-002/figures/fig03_evidence_boundary.png +site/standards/AEP-002/figures/index.html +site/standards/AEP-002/index.html +site/standards/AEP-002/paper.pdf +site/standards/AEP-002/schemas/evidence_docket.schema.json +site/standards/AEP-002/schemas/index.html +site/standards/AEP-002/schemas/proof_packet.schema.json +site/standards/AEP-002/schemas/public_safe_report.schema.json +site/standards/AEP-002/schemas/selection_certificate.schema.json +site/standards/AEP-002/source.md +site/standards/AEP-002/templates/claim_boundary_template.md +site/standards/AEP-002/templates/evidence_docket_template.md +site/standards/AEP-002/templates/index.html +site/standards/AEP-002/templates/public_safe_report_template.md +site/standards/AEP-002/tools/generate_public_safe_report.py +site/standards/AEP-002/tools/index.html +site/standards/AEP-002/tools/score_conformance.py +site/standards/AEP-002/tools/validate_evidence_docket.py +site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.docx +site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.md +site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.pdf +site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.tex +site/standards/AEP-003/CODEX_IMPLEMENTATION_PROMPT_AEP003.md +site/standards/AEP-003/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-003/QA_REPORT.md +site/standards/AEP-003/README.md +site/standards/AEP-003/RELEASE_NOTES_AEP003_v1.1.md +site/standards/AEP-003/SHA256SUMS.txt +site/standards/AEP-003/conformance/aep003_conformance_checklist.md +site/standards/AEP-003/conformance/index.html +site/standards/AEP-003/examples/index.html +site/standards/AEP-003/examples/sample_proof_packet_01_commit.json +site/standards/AEP-003/examples/sample_proof_packet_02_trace_event.json +site/standards/AEP-003/examples/sample_proof_packet_03_tool_call.json +site/standards/AEP-003/examples/sample_proof_packet_04_policy_decision.json +site/standards/AEP-003/examples/sample_proof_packet_05_approval.json +site/standards/AEP-003/examples/sample_proof_packet_06_eval_result.json +site/standards/AEP-003/examples/sample_proof_packet_07_evidence_ref.json +site/standards/AEP-003/examples/sample_proof_packet_08_risk_event.json +site/standards/AEP-003/examples/sample_proof_packet_09_cost_event.json +site/standards/AEP-003/examples/sample_proof_packet_10_selection_decision.json +site/standards/AEP-003/examples/sample_proof_packet_11_rollout_event.json +site/standards/AEP-003/examples/sample_proof_packet_12_rollback_event.json +site/standards/AEP-003/examples/sample_proof_packet_13_public_report.json +site/standards/AEP-003/examples/sample_proof_packet_bundle.json +site/standards/AEP-003/figures/fig01_proofpacket_anatomy.png +site/standards/AEP-003/figures/fig02_proofpacket_hash_chain.png +site/standards/AEP-003/figures/fig03_proofpacket_lifecycle.png +site/standards/AEP-003/figures/index.html +site/standards/AEP-003/implementation/AEP-003_Implementation_Guide.md +site/standards/AEP-003/implementation/AEP-003_Interop_Profile.md +site/standards/AEP-003/implementation/AEP-003_Security_Privacy_Guide.md +site/standards/AEP-003/implementation/index.html +site/standards/AEP-003/index.html +site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.docx +site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.md +site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.pdf +site/standards/AEP-003/one_page/index.html +site/standards/AEP-003/paper.pdf +site/standards/AEP-003/schemas/index.html +site/standards/AEP-003/schemas/proof_packet.schema.json +site/standards/AEP-003/schemas/proof_packet_attestation.schema.json +site/standards/AEP-003/schemas/proof_packet_bundle.schema.json +site/standards/AEP-003/schemas/proof_packet_canonicalization_profile.json +site/standards/AEP-003/source.md +site/standards/AEP-003/templates/index.html +site/standards/AEP-003/templates/proof_packet_template.json +site/standards/AEP-003/templates/proof_packet_template.md +site/standards/AEP-003/tools/index.html +site/standards/AEP-003/tools/proof_packet_bundle.py +site/standards/AEP-003/tools/proof_packet_conformance_score.py +site/standards/AEP-003/tools/proof_packet_hash.py +site/standards/AEP-003/tools/validate_proof_packet.py +site/standards/AEP-003/tools/verify_packet_chain.py +site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.docx +site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.md +site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.pdf +site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.tex +site/standards/AEP-004/CODEX_IMPLEMENTATION_PROMPT_AEP004.md +site/standards/AEP-004/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-004/QA_REPORT.md +site/standards/AEP-004/README.md +site/standards/AEP-004/RELEASE_NOTES_AEP004_v1.1.md +site/standards/AEP-004/SHA256SUMS.txt +site/standards/AEP-004/conformance/aep004_conformance_checklist.md +site/standards/AEP-004/conformance/index.html +site/standards/AEP-004/examples/index.html +site/standards/AEP-004/examples/sample_gate_decision_input_promote.json +site/standards/AEP-004/examples/sample_gate_decision_input_reject.json +site/standards/AEP-004/examples/sample_gate_policy.json +site/standards/AEP-004/examples/sample_selection_candidate.json +site/standards/AEP-004/examples/sample_selection_certificate_approve_canary.json +site/standards/AEP-004/examples/sample_selection_certificate_archive.json +site/standards/AEP-004/examples/sample_selection_certificate_needs_more_evidence.json +site/standards/AEP-004/examples/sample_selection_certificate_promote.json +site/standards/AEP-004/examples/sample_selection_certificate_reject.json +site/standards/AEP-004/examples/sample_selection_certificate_revise.json +site/standards/AEP-004/examples/sample_selection_certificate_rollback.json +site/standards/AEP-004/figures/fig01_selection_gate_flow.png +site/standards/AEP-004/figures/fig02_selection_certificate_model.png +site/standards/AEP-004/figures/fig03_selection_gate_risk_matrix.png +site/standards/AEP-004/figures/fig04_selection_gate_lifecycle.png +site/standards/AEP-004/figures/index.html +site/standards/AEP-004/implementation/AEP-004_Implementation_Guide.md +site/standards/AEP-004/implementation/AEP-004_Policy_Profiles.md +site/standards/AEP-004/implementation/AEP-004_Security_Privacy_Guide.md +site/standards/AEP-004/implementation/index.html +site/standards/AEP-004/index.html +site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.docx +site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.md +site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.pdf +site/standards/AEP-004/one_page/index.html +site/standards/AEP-004/paper.pdf +site/standards/AEP-004/schemas/canary_plan.schema.json +site/standards/AEP-004/schemas/challenge_record.schema.json +site/standards/AEP-004/schemas/evaluation_requirement.schema.json +site/standards/AEP-004/schemas/evidence_requirement.schema.json +site/standards/AEP-004/schemas/gate_policy.schema.json +site/standards/AEP-004/schemas/index.html +site/standards/AEP-004/schemas/monitoring_plan.schema.json +site/standards/AEP-004/schemas/rollback_plan.schema.json +site/standards/AEP-004/schemas/selection_candidate.schema.json +site/standards/AEP-004/schemas/selection_certificate.schema.json +site/standards/AEP-004/source.md +site/standards/AEP-004/templates/index.html +site/standards/AEP-004/templates/selection_candidate_template.json +site/standards/AEP-004/templates/selection_certificate_template.json +site/standards/AEP-004/templates/selection_gate_review_template.md +site/standards/AEP-004/tools/index.html +site/standards/AEP-004/tools/selection_certificate_hash.py +site/standards/AEP-004/tools/selection_gate_audit.py +site/standards/AEP-004/tools/selection_gate_conformance_score.py +site/standards/AEP-004/tools/selection_gate_decide.py +site/standards/AEP-004/tools/validate_selection_certificate.py +site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.docx +site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.md +site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.pdf +site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.tex +site/standards/AEP-005/CODEX_IMPLEMENTATION_PROMPT_AEP005.md +site/standards/AEP-005/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-005/QA_REPORT.md +site/standards/AEP-005/README.md +site/standards/AEP-005/RELEASE_NOTES_AEP005_v1.1.md +site/standards/AEP-005/SHA256SUMS.txt +site/standards/AEP-005/conformance/aep005_conformance_checklist.md +site/standards/AEP-005/conformance/index.html +site/standards/AEP-005/examples/index.html +site/standards/AEP-005/examples/sample_approval_receipt.json +site/standards/AEP-005/examples/sample_break_glass_request.json +site/standards/AEP-005/examples/sample_compensation_receipt.json +site/standards/AEP-005/examples/sample_data_boundary_rule.json +site/standards/AEP-005/examples/sample_permission_lease.json +site/standards/AEP-005/examples/sample_rate_limit_policy.json +site/standards/AEP-005/examples/sample_revocation_receipt.json +site/standards/AEP-005/examples/sample_tool_call_receipt.json +site/standards/AEP-005/examples/sample_tool_manifest.json +site/standards/AEP-005/examples/sample_tool_manifest_email_send.json +site/standards/AEP-005/examples/sample_tool_permission_decision_allow_with_lease.json +site/standards/AEP-005/examples/sample_tool_permission_decision_approval_required.json +site/standards/AEP-005/examples/sample_tool_permission_decision_deny.json +site/standards/AEP-005/examples/sample_tool_permission_policy.json +site/standards/AEP-005/examples/sample_tool_request_read.json +site/standards/AEP-005/examples/sample_tool_request_send.json +site/standards/AEP-005/figures/fig01_tool_permission_flow_v11.png +site/standards/AEP-005/figures/fig02_tool_permission_lattice_v11.png +site/standards/AEP-005/figures/fig03_tool_gateway_boundary_model_v11.png +site/standards/AEP-005/figures/fig04_lease_revocation_compensation_v11.png +site/standards/AEP-005/figures/index.html +site/standards/AEP-005/implementation/AEP-005_Implementation_Guide.md +site/standards/AEP-005/implementation/AEP-005_Least_Privilege_Profile.md +site/standards/AEP-005/implementation/AEP-005_Security_Privacy_Guide.md +site/standards/AEP-005/implementation/AEP-005_Tool_Gateway_Profile.md +site/standards/AEP-005/implementation/index.html +site/standards/AEP-005/index.html +site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.docx +site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.md +site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.pdf +site/standards/AEP-005/one_page/index.html +site/standards/AEP-005/paper.pdf +site/standards/AEP-005/schemas/approval_receipt.schema.json +site/standards/AEP-005/schemas/break_glass_request.schema.json +site/standards/AEP-005/schemas/compensation_receipt.schema.json +site/standards/AEP-005/schemas/data_boundary_rule.schema.json +site/standards/AEP-005/schemas/index.html +site/standards/AEP-005/schemas/permission_lease.schema.json +site/standards/AEP-005/schemas/rate_limit_policy.schema.json +site/standards/AEP-005/schemas/revocation_receipt.schema.json +site/standards/AEP-005/schemas/tool_call_receipt.schema.json +site/standards/AEP-005/schemas/tool_manifest.schema.json +site/standards/AEP-005/schemas/tool_permission_decision.schema.json +site/standards/AEP-005/schemas/tool_permission_policy.schema.json +site/standards/AEP-005/schemas/tool_request.schema.json +site/standards/AEP-005/source.md +site/standards/AEP-005/templates/compensation_receipt_template.json +site/standards/AEP-005/templates/index.html +site/standards/AEP-005/templates/permission_lease_template.json +site/standards/AEP-005/templates/revocation_receipt_template.json +site/standards/AEP-005/templates/tool_call_receipt_template.json +site/standards/AEP-005/templates/tool_manifest_template.json +site/standards/AEP-005/templates/tool_permission_decision_template.json +site/standards/AEP-005/templates/tool_permission_policy_template.json +site/standards/AEP-005/templates/tool_permission_review_template.md +site/standards/AEP-005/templates/tool_request_template.json +site/standards/AEP-005/tools/authorize_tool_request.py +site/standards/AEP-005/tools/index.html +site/standards/AEP-005/tools/tool_gateway_audit.py +site/standards/AEP-005/tools/tool_permission_conformance_score.py +site/standards/AEP-005/tools/tool_permission_hash.py +site/standards/AEP-005/tools/validate_permission_lease.py +site/standards/AEP-005/tools/validate_tool_permission.py +site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.docx +site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.md +site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.pdf +site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.tex +site/standards/AEP-006/CODEX_IMPLEMENTATION_PROMPT_AEP006.md +site/standards/AEP-006/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-006/QA_REPORT.md +site/standards/AEP-006/README.md +site/standards/AEP-006/RELEASE_NOTES_AEP006_v1.1.md +site/standards/AEP-006/SHA256SUMS.txt +site/standards/AEP-006/conformance/aep006_conformance_checklist.md +site/standards/AEP-006/conformance/index.html +site/standards/AEP-006/examples/index.html +site/standards/AEP-006/examples/sample_compensation_receipt.json +site/standards/AEP-006/examples/sample_post_rollback_review.json +site/standards/AEP-006/examples/sample_recovery_bundle.json +site/standards/AEP-006/examples/sample_rollback_authorization.json +site/standards/AEP-006/examples/sample_rollback_plan.json +site/standards/AEP-006/examples/sample_rollback_receipt_failed_compensation_required.json +site/standards/AEP-006/examples/sample_rollback_receipt_partial.json +site/standards/AEP-006/examples/sample_rollback_receipt_success.json +site/standards/AEP-006/examples/sample_rollback_request.json +site/standards/AEP-006/examples/sample_rollback_trigger.json +site/standards/AEP-006/examples/sample_rollback_verification.json +site/standards/AEP-006/figures/fig01_rollback_receipt_loop.png +site/standards/AEP-006/figures/fig02_rollback_receipt_object_model.png +site/standards/AEP-006/figures/fig03_rollback_decision_matrix.png +site/standards/AEP-006/figures/fig04_recovery_timeline.png +site/standards/AEP-006/figures/index.html +site/standards/AEP-006/implementation/AEP-006_Implementation_Guide.md +site/standards/AEP-006/implementation/AEP-006_Recovery_Runbook.md +site/standards/AEP-006/implementation/AEP-006_Security_Privacy_Guide.md +site/standards/AEP-006/implementation/index.html +site/standards/AEP-006/index.html +site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.docx +site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.md +site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.pdf +site/standards/AEP-006/one_page/index.html +site/standards/AEP-006/paper.pdf +site/standards/AEP-006/schemas/compensation_receipt.schema.json +site/standards/AEP-006/schemas/index.html +site/standards/AEP-006/schemas/post_rollback_review.schema.json +site/standards/AEP-006/schemas/recovery_bundle.schema.json +site/standards/AEP-006/schemas/rollback_authorization.schema.json +site/standards/AEP-006/schemas/rollback_plan.schema.json +site/standards/AEP-006/schemas/rollback_receipt.schema.json +site/standards/AEP-006/schemas/rollback_request.schema.json +site/standards/AEP-006/schemas/rollback_trigger.schema.json +site/standards/AEP-006/schemas/rollback_verification.schema.json +site/standards/AEP-006/source.md +site/standards/AEP-006/templates/compensation_receipt_template.json +site/standards/AEP-006/templates/index.html +site/standards/AEP-006/templates/post_rollback_review_template.json +site/standards/AEP-006/templates/rollback_authorization_template.json +site/standards/AEP-006/templates/rollback_plan_template.json +site/standards/AEP-006/templates/rollback_receipt_template.json +site/standards/AEP-006/templates/rollback_request_template.json +site/standards/AEP-006/templates/rollback_review_template.md +site/standards/AEP-006/templates/rollback_trigger_template.json +site/standards/AEP-006/templates/rollback_verification_template.json +site/standards/AEP-006/tools/index.html +site/standards/AEP-006/tools/rollback_audit.py +site/standards/AEP-006/tools/rollback_conformance_score.py +site/standards/AEP-006/tools/rollback_decide.py +site/standards/AEP-006/tools/rollback_receipt_hash.py +site/standards/AEP-006/tools/validate_rollback_receipt.py +site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.docx +site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.md +site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.pdf +site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.tex +site/standards/AEP-007/CODEX_IMPLEMENTATION_PROMPT_AEP007.md +site/standards/AEP-007/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-007/QA_REPORT.md +site/standards/AEP-007/README.md +site/standards/AEP-007/RELEASE_NOTES_AEP007_v1.2.md +site/standards/AEP-007/SHA256SUMS.txt +site/standards/AEP-007/conformance/aep007_conformance_checklist.md +site/standards/AEP-007/conformance/index.html +site/standards/AEP-007/examples/index.html +site/standards/AEP-007/examples/sample_challenge_record.json +site/standards/AEP-007/examples/sample_correction_notice.json +site/standards/AEP-007/examples/sample_public_claim_matrix.json +site/standards/AEP-007/examples/sample_public_safe_report.json +site/standards/AEP-007/examples/sample_publication_approval.json +site/standards/AEP-007/examples/sample_redaction_ledger.json +site/standards/AEP-007/examples/sample_report_bundle.json +site/standards/AEP-007/examples/sample_retraction_notice.json +site/standards/AEP-007/figures/fig01_public_safe_report_flow.png +site/standards/AEP-007/figures/fig02_disclosure_classification.png +site/standards/AEP-007/figures/fig03_public_report_lifecycle.png +site/standards/AEP-007/figures/fig04_claim_boundary_ladder.png +site/standards/AEP-007/figures/index.html +site/standards/AEP-007/implementation/AEP-007_Correction_Retraction_Playbook.md +site/standards/AEP-007/implementation/AEP-007_Implementation_Guide.md +site/standards/AEP-007/implementation/AEP-007_Proof_Card_Profile.md +site/standards/AEP-007/implementation/AEP-007_Publication_Workflow.md +site/standards/AEP-007/implementation/AEP-007_Redaction_Guide.md +site/standards/AEP-007/implementation/AEP-007_Security_Privacy_Guide.md +site/standards/AEP-007/implementation/AEP-007_Website_Publishing_Profile.md +site/standards/AEP-007/implementation/index.html +site/standards/AEP-007/index.html +site/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.docx +site/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.pdf +site/standards/AEP-007/one_page/index.html +site/standards/AEP-007/paper.pdf +site/standards/AEP-007/schemas/challenge_record.schema.json +site/standards/AEP-007/schemas/claim_boundary.schema.json +site/standards/AEP-007/schemas/correction_notice.schema.json +site/standards/AEP-007/schemas/correction_policy.schema.json +site/standards/AEP-007/schemas/disclosure_review.schema.json +site/standards/AEP-007/schemas/evaluation_summary.schema.json +site/standards/AEP-007/schemas/evidence_summary.schema.json +site/standards/AEP-007/schemas/index.html +site/standards/AEP-007/schemas/public_artifact_link.schema.json +site/standards/AEP-007/schemas/public_claim_matrix.schema.json +site/standards/AEP-007/schemas/public_safe_report.schema.json +site/standards/AEP-007/schemas/publication_approval.schema.json +site/standards/AEP-007/schemas/redaction_decision.schema.json +site/standards/AEP-007/schemas/redaction_ledger.schema.json +site/standards/AEP-007/schemas/report_bundle.schema.json +site/standards/AEP-007/schemas/retraction_notice.schema.json +site/standards/AEP-007/schemas/risk_limitation_summary.schema.json +site/standards/AEP-007/schemas/source_evidence_reference.schema.json +site/standards/AEP-007/source.md +site/standards/AEP-007/templates/challenge_record_template.json +site/standards/AEP-007/templates/claim_boundary_template.json +site/standards/AEP-007/templates/claim_boundary_template.md +site/standards/AEP-007/templates/correction_notice_template.json +site/standards/AEP-007/templates/disclosure_review_template.json +site/standards/AEP-007/templates/index.html +site/standards/AEP-007/templates/public_safe_report_template.json +site/standards/AEP-007/templates/public_safe_report_template.md +site/standards/AEP-007/templates/publication_approval_template.json +site/standards/AEP-007/templates/redaction_review_template.md +site/standards/AEP-007/tools/build_report_bundle.py +site/standards/AEP-007/tools/generate_public_safe_report.py +site/standards/AEP-007/tools/index.html +site/standards/AEP-007/tools/public_safe_conformance_score.py +site/standards/AEP-007/tools/public_safe_redaction_audit.py +site/standards/AEP-007/tools/public_safe_report_hash.py +site/standards/AEP-007/tools/validate_public_safe_report.py +site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.docx +site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.md +site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.pdf +site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.tex +site/standards/AEP-008/CODEX_IMPLEMENTATION_PROMPT_AEP008.md +site/standards/AEP-008/INSTALL_IN_PROOF_GRADIENT.md +site/standards/AEP-008/QA_REPORT.md +site/standards/AEP-008/README.md +site/standards/AEP-008/RELEASE_NOTES_AEP008_v1.1.md +site/standards/AEP-008/SHA256SUMS.txt +site/standards/AEP-008/conformance/aep008_conformance_checklist.md +site/standards/AEP-008/conformance/index.html +site/standards/AEP-008/examples/index.html +site/standards/AEP-008/examples/sample_decision_log.json +site/standards/AEP-008/examples/sample_evidence_boundary.json +site/standards/AEP-008/examples/sample_proof_room_charter.json +site/standards/AEP-008/examples/sample_proof_room_manifest.json +site/standards/AEP-008/examples/sample_role_assignment_registry.json +site/standards/AEP-008/examples/sample_room_audit_export.json +site/standards/AEP-008/examples/sample_room_closure_report.json +site/standards/AEP-008/examples/sample_work_item_registry.json +site/standards/AEP-008/figures/fig01_proof_room_architecture_v11.png +site/standards/AEP-008/figures/fig02_proof_room_lifecycle_v11.png +site/standards/AEP-008/figures/fig03_proof_room_roles_boundaries_v11.png +site/standards/AEP-008/figures/fig04_proof_room_operating_modes_v11.png +site/standards/AEP-008/figures/index.html +site/standards/AEP-008/implementation/AEP-008_Implementation_Guide.md +site/standards/AEP-008/implementation/AEP-008_Proof_Room_Runbook.md +site/standards/AEP-008/implementation/AEP-008_Role_Separation_Profile.md +site/standards/AEP-008/implementation/AEP-008_Security_Privacy_Guide.md +site/standards/AEP-008/implementation/index.html +site/standards/AEP-008/index.html +site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.docx +site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.md +site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.pdf +site/standards/AEP-008/one_page/index.html +site/standards/AEP-008/paper.pdf +site/standards/AEP-008/schemas/decision_log.schema.json +site/standards/AEP-008/schemas/evidence_boundary.schema.json +site/standards/AEP-008/schemas/index.html +site/standards/AEP-008/schemas/proof_room_charter.schema.json +site/standards/AEP-008/schemas/proof_room_manifest.schema.json +site/standards/AEP-008/schemas/role_assignment_registry.schema.json +site/standards/AEP-008/schemas/room_audit_export.schema.json +site/standards/AEP-008/schemas/room_closure_report.schema.json +site/standards/AEP-008/schemas/room_register.schema.json +site/standards/AEP-008/schemas/room_session_record.schema.json +site/standards/AEP-008/schemas/scope_boundary.schema.json +site/standards/AEP-008/schemas/work_item_registry.schema.json +site/standards/AEP-008/source.md +site/standards/AEP-008/templates/decision_log_template.json +site/standards/AEP-008/templates/evidence_boundary_template.json +site/standards/AEP-008/templates/index.html +site/standards/AEP-008/templates/proof_room_charter_template.json +site/standards/AEP-008/templates/proof_room_manifest_template.json +site/standards/AEP-008/templates/proof_room_review_template.md +site/standards/AEP-008/templates/role_assignment_registry_template.json +site/standards/AEP-008/templates/room_audit_export_template.json +site/standards/AEP-008/templates/room_closure_report_template.json +site/standards/AEP-008/templates/work_item_registry_template.json +site/standards/AEP-008/tools/generate_proof_room_index.py +site/standards/AEP-008/tools/index.html +site/standards/AEP-008/tools/proof_room_audit.py +site/standards/AEP-008/tools/proof_room_conformance_score.py +site/standards/AEP-008/tools/proof_room_hash.py +site/standards/AEP-008/tools/validate_proof_room_manifest.py +site/standards/index.html +site/start-here/index.html site/styles.css +site/workflow/build-one-reusable-ai-workflow/index.html +site/workflow/checkout-recovery/index.html +site/workflow/department-ai-correction-rollback/index.html +site/workflow/department-ai-permission-map/index.html +site/workflow/department-monthly-proof-report/index.html +site/workflow/department-proof-room-lite/index.html +site/workflow/department-public-safe-case-study/index.html +site/workflow/department-weekly-proof-review/index.html +site/workflow/feedback-to-product-update/index.html +site/workflow/idea-to-demand-engine/index.html +site/workflow/index.html +site/workflow/internal-approval-memo/index.html +site/workflow/lead-magnet-email-sequence/index.html +site/workflow/meeting-to-action-plan/index.html +site/workflow/monthly-workflow-vault-drop/index.html +site/workflow/offer-to-sales-page/index.html +site/workflow/order-bump-builder/index.html +site/workflow/partner-referral-kit/index.html +site/workflow/post-purchase-onboarding/index.html +site/workflow/proof-card-referral-loop/index.html +site/workflow/rsi-lite-self-improving-workflows/index.html +site/workflow/support-faq-triage/index.html +site/workflow/team-pack-upsell/index.html +site/workflow/team-sprint-facilitator/index.html +site/workflow/weekly-growth-review/index.html +site/workshop/goalos-proof-room-implementation-sprint/index.html +site/workshop/goalos-rsi-sprint-workshop/index.html skillos/__init__.py skillos/api.py skillos/cli.py @@ -84,10 +3066,27 @@ skills/invoice_reconciliation/v1/skill.md skills/research_summary/v1/skill.md skills/sales_followup_email/v1/skill.md styles.css -tests/test_end_to_end.py -tests/test_pages_build.py -tests/test_storage.py -tests/test_wealth_proof.py +tests/test_corporate_rsi_dominion.py +tests/test_enterprise_rsi_superorganism.py +tests/test_goalos_claim_boundaries.py +tests/test_goalos_product_catalog.py +tests/test_goalos_product_pages.py +tests/test_goalos_public_site_rules.py +tests/test_no_paid_product_files.py +tests/test_proof_archive.py +tests/test_proof_carrying_intelligence.py +tests/test_proof_gradient_api.py +tests/test_proof_gradient_foundation.py +tests/test_proof_gradient_security.py +tests/test_proof_gradient_vertical_slice.py +tests/test_sovereign_domain_atlas.py +tests/test_sovereign_enterprise_constellation.py +tests/test_sovereign_enterprise_proof_economy.py +tests/test_sovereign_kardashev_capital_engine.py +tests_legacy_skillos/test_end_to_end.py +tests_legacy_skillos/test_pages_build.py +tests_legacy_skillos/test_storage.py +tests_legacy_skillos/test_wealth_proof.py web/app.js web/index.html web/styles.css diff --git a/ROADMAP.md b/ROADMAP.md index 1425fc4b..0a5ce204 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,42 +1,42 @@ -# Roadmap - -## v1: Local reference implementation - -- [x] SQLite trace store -- [x] Skill registry -- [x] Agent runtime -- [x] Learning inbox -- [x] Skill trainer -- [x] Test lab -- [x] Release center -- [x] Browser UI -- [x] CLI -- [x] Tests - -## v2: Real agent integration - -- [ ] Plug in LLM provider -- [ ] Tool-calling runtime -- [ ] MCP-style tool gateway -- [ ] Structured eval datasets -- [ ] Human approval queue -- [ ] Model-graded evals - -## v3: Enterprise SkillOS - -- [ ] Multi-tenant isolation -- [ ] Postgres backend -- [ ] Auth and RBAC -- [ ] Audit logs -- [ ] Canary rollout monitor -- [ ] Automatic rollback -- [ ] Skill marketplace - -## v4: Civilization-scale capability network - -- [ ] Scientific workflow skills -- [ ] Robotics task skills -- [ ] Energy infrastructure skills -- [ ] Manufacturing skills -- [ ] Space infrastructure skills -- [ ] Network-level benefit distribution metrics +# GoalOS / Proof Gradient Roadmap + +## Phase 1 — Sell / Proof Card 001 + +- Sell ready product/service packages through QUEBEC.AI shop. +- Publish the first public-safe Proof Card: `GoalOS-PC-001`. +- Keep status language proof-needed and avoid ROI/compliance guarantees. + +## Phase 2 — Department RSI + +- Use the Proof Room Lite and implementation sprint path to establish department-level recursive workflow improvement. +- Expand scorecards, approvals, versioning, monitoring, and rollback patterns. + +## Phase 3 — Enterprise RSI Pilot + +- Pilot GoalOS Recursive Workflow OS for one enterprise workflow family. +- Preserve the enterprise safety boundary: workflow improvement without base-model modification. + +## Phase 4 — GoalOS Cloud SaaS + +- Harden GoalOS Cloud MVP 0.2 toward a SaaS architecture. +- Do not claim completed enterprise SaaS until the platform is production-ready, secured, operated, and supported. + +## Phase 5 — Proof Graph / AEP standardization + +- Extend AEP-001 through AEP-008 into stronger proof graph interoperability. +- Publish public-safe proof-card hashes and evidence summaries where appropriate. + +## Phase 6 — Partner ecosystem + +- Build a partner ecosystem across professional firms, enterprise implementers, evaluation/audit partners, and public standards collaborators. + +## Validation gate + +Current public-site validation is GoalOS Validation Hotfix v14 Microsite Compatibility. Run: + +```bash +python scripts/check_no_paid_artifacts.py +python scripts/validate_goalos_public_site.py +python scripts/validate_docs_tables_figures.py +python scripts/validate_goalos_catalog.py +``` diff --git a/SECURITY.md b/SECURITY.md index 2ceaaa32..233a7ed2 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,15 +1,32 @@ # Security Policy -Agent SkillOS is a reference implementation. It is designed to demonstrate safe skill learning patterns, not to replace enterprise security controls. +## Responsible disclosure -## Core safety expectations +Please report suspected vulnerabilities privately through the repository security contact or GitHub private vulnerability reporting when available. Do not publish exploit details, private buyer data, secrets, or proof-card evidence before maintainers have reviewed the issue. -- Do not let agents silently publish global skill changes. -- Do not let private data become a shared network skill. -- Do not grant tool access through skill text alone. -- Require approval for high-impact actions. -- Keep release history and rollback paths. +## AI workflow safety boundary -## Reporting issues +GoalOS improves workflows around AI through instructions, prompts, memory, scorecards, proof records, evaluations, approvals, versions, monitoring, and rollback. GoalOS does not modify base AI models and does not authorize uncontrolled autonomous deployment. -For a real deployment, route security reports through your organization's vulnerability disclosure process. +## Public proof-card safety + +Public proof cards must not contain private customer data, buyer evidence, secrets, access tokens, proprietary documents, legal/tax materials, payment details, support tickets, or unapproved enterprise information. Publish only public-safe evidence approved by the relevant owner. + +## Paid artifacts and GitHub Pages + +Paid buyer ZIPs, paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs must not be committed to public deploy roots or exposed through GitHub Pages. The only public ZIP pattern currently allowed in public deploy roots is `standards/AEP-###/complete-package.zip`. + +## Secrets and model-provider data caution + +Never commit API keys, credentials, model-provider tokens, customer prompts containing private data, raw traces with secrets, or production environment files. Treat model-provider logs and evaluation datasets as sensitive unless explicitly approved for public release. + +## Validation before release + +Run: + +```bash +python scripts/check_no_paid_artifacts.py +python scripts/validate_goalos_public_site.py +python scripts/validate_docs_tables_figures.py +python scripts/validate_goalos_catalog.py +``` diff --git a/badges/aep-standards.svg b/badges/aep-standards.svg new file mode 100644 index 00000000..ae90b3c6 --- /dev/null +++ b/badges/aep-standards.svg @@ -0,0 +1 @@ +AEP001–008 diff --git a/badges/cloud-mvp-0-2.svg b/badges/cloud-mvp-0-2.svg new file mode 100644 index 00000000..1441c46a --- /dev/null +++ b/badges/cloud-mvp-0-2.svg @@ -0,0 +1 @@ +Cloud MVP0.2 diff --git a/badges/goalos.svg b/badges/goalos.svg new file mode 100644 index 00000000..ce75b705 --- /dev/null +++ b/badges/goalos.svg @@ -0,0 +1 @@ +GoalOSWorkflow OS diff --git a/badges/no-model-self-modification.svg b/badges/no-model-self-modification.svg new file mode 100644 index 00000000..7307ef5d --- /dev/null +++ b/badges/no-model-self-modification.svg @@ -0,0 +1 @@ +No ModelSelf-Modification diff --git a/badges/no-paid-artifacts.svg b/badges/no-paid-artifacts.svg new file mode 100644 index 00000000..88172505 --- /dev/null +++ b/badges/no-paid-artifacts.svg @@ -0,0 +1 @@ +No Paid Artifactsguarded diff --git a/badges/proof-bounded.svg b/badges/proof-bounded.svg new file mode 100644 index 00000000..ce4072a0 --- /dev/null +++ b/badges/proof-bounded.svg @@ -0,0 +1 @@ +Proof-Boundedclaims diff --git a/badges/proof-gradient.svg b/badges/proof-gradient.svg new file mode 100644 index 00000000..62b0e4bb --- /dev/null +++ b/badges/proof-gradient.svg @@ -0,0 +1 @@ +Proof Gradientpublic proof diff --git a/badges/quebec-ai.svg b/badges/quebec-ai.svg new file mode 100644 index 00000000..7ec3f17d --- /dev/null +++ b/badges/quebec-ai.svg @@ -0,0 +1 @@ +QUEBEC.AI⚜️✨ diff --git a/badges/validation-v14.svg b/badges/validation-v14.svg new file mode 100644 index 00000000..46675eb8 --- /dev/null +++ b/badges/validation-v14.svg @@ -0,0 +1 @@ +Validationv14 diff --git a/docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md b/docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md new file mode 100644 index 00000000..cfa42ead --- /dev/null +++ b/docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md @@ -0,0 +1,36 @@ +# GoalOS Claims and Safe Boundary + +## Purpose +Make public claims proof-bounded and enterprise-safe. + +## Current status +Safe boundary current in README, catalog, docs, and validation. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_claim_boundaries.csv` +- `README.md` + +## What is public +Allowed language about workflow improvement and proof-bounded evaluation. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Keep prohibited claims out of README, docs, site, release notes, and product pages. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_CLOUD_MVP_0_2.md b/docs/GOALOS_CLOUD_MVP_0_2.md index 17ced5dc..1af6b4ff 100644 --- a/docs/GOALOS_CLOUD_MVP_0_2.md +++ b/docs/GOALOS_CLOUD_MVP_0_2.md @@ -1,49 +1,36 @@ # GoalOS Cloud MVP 0.2 -GoalOS Cloud MVP 0.2 is a public static software proof at `site/app/goalos-cloud-mvp/`. - -## Runtime - -- Browser-only static app. -- Uses browser `localStorage`. -- Requires no secrets, no backend, and no paid materials. -- Includes an OpenAPI blueprint and JSON schemas for future SaaS development. - -## Demonstrated capabilities - -- Organization, workspace, and user roles. -- Policy engine and controlled memory. -- Model-provider restrictions, including confidential-data blocking for public/local providers. -- Workflow Studio and workflow versioning. -- Execution Engine and Evaluation Engine demos. -- Proof Room records and audit log. -- Recursive Improvement Engine. -- Improvement Proposal, human approval gate, version comparison, rollback target. -- Proof Graph export. -- Public-safe proof card and executive proof report export. - -## Demo story - -The demo workflow is **Customer Support Reply Workflow**. - -v1.0 intentionally misses refund/access policy classification. The MVP proves the loop: - -1. run support cases; -2. evaluate outputs; -3. create proof records; -4. detect refund-policy failure; -5. generate a v1.1 improvement proposal; -6. benchmark v1.0 vs v1.1; -7. require human approval; -8. deploy approved v1.1; -9. preserve rollback target v1.0; -10. export a public-safe proof card; -11. export a Proof Graph. - -## Test - -```bash -node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs -``` - -The test asserts that v1.0 exposes a refund-policy weakness, v1.1 improves refund-policy compliance, approval requires a rollback target, confidential-data provider restrictions work, the Proof Graph has nodes and edges, and the public-safe proof card avoids ROI, compliance, and model-self-modification claims. +## Purpose +Document the public software proof and its non-SaaS status. + +## Current status +Public software proof / not full SaaS. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `site/app/goalos-cloud-mvp/` +- `site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs` + +## What is public +MVP scope, demo workflow, test command, proof export concept. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Continue hardening workflow studio, execution, evaluation, proof room, approval gate, and rollback. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_COMMERCIALIZATION_STATUS.md b/docs/GOALOS_COMMERCIALIZATION_STATUS.md index 6fa149f7..612c5d81 100644 --- a/docs/GOALOS_COMMERCIALIZATION_STATUS.md +++ b/docs/GOALOS_COMMERCIALIZATION_STATUS.md @@ -1,36 +1,37 @@ # GoalOS Commercialization Status -Date: 2026-06-07 - -## Positioning - -GoalOS is the recursive workflow operating layer for the RSI era. It is not a prompt pack, chatbot wrapper, or generic AI training product. - -- Public line: A model can answer. An agent can act. An institution must prove. -- Commercial line: ChatGPT gives you answers. GoalOS gives you workflows that get better every time they run. -- Enterprise line: Enterprise RSI without model self-modification. - -## Safe boundary - -GoalOS does not modify AI models. Recursive improvement happens at the workflow layer: workflow definitions, prompts, memory, evaluation criteria, evidence standards, operating procedures, approvals, versions, monitoring, and rollback. - -## Current ladder - -| Price | Offer | Outcome | -|---:|---|---| -| $49 | GoalOS AI Efficiency Sprint Kit | Build one reusable AI workflow. | -| $199 | GoalOS RSI Lite | Build one self-improving AI workflow. | -| $997 | GoalOS Proof Room Lite / Department Pack | Set up a lightweight department Proof Room. | -| $2,500+ | GoalOS RSI Sprint Workshop | Build the first self-improving workflow live. | -| $9,500+ | GoalOS Proof Room Implementation Sprint | Department RSI in 30 days. | -| $49,000+ | GoalOS Enterprise RSI Pilot | Pilot the Recursive Workflow OS for one enterprise workflow family. | - -All checkout and application buttons point to . - -## Public repository boundary - -This repository stores public proof, public standards, public pages, schemas, tests, and the static Cloud MVP software proof. It must not store paid buyer ZIPs, paid workshop delivery files, implementation bundles, seller assets, or private enterprise pilot materials. - -## Claim boundary - -No guaranteed ROI, income, productivity, compliance certification, safety guarantee, legal advice, financial advice, autonomous deployment, or AI model self-modification claims are made. +## Purpose +State what is publicly sellable without uploading paid buyer files. + +## Current status +Ready-to-sell product/service packages; first public proof still needed; SaaS not complete. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/data/goalos_catalog.yml` +- `docs/tables/goalos_offer_status.csv` +- `README.md` + +## What is public +Product names, prices, versions, descriptions, status, and shop CTA. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Publish Proof Card 001 and keep all product links routed through the shop. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md b/docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md new file mode 100644 index 00000000..0a57abdb --- /dev/null +++ b/docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md @@ -0,0 +1,36 @@ +# Communications Firm Summary + +## Purpose +Summarize public narrative and launch communications boundaries. + +## Current status +Communications briefing pack exists privately; public summary is safe and non-hype. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `README.md` +- `docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md` + +## What is public +Core public line, commercial line, enterprise line, category, safe boundary. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Use proof-first communications and avoid unsupported superlatives. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_DOCUMENTATION_INDEX.md b/docs/GOALOS_DOCUMENTATION_INDEX.md new file mode 100644 index 00000000..1067367b --- /dev/null +++ b/docs/GOALOS_DOCUMENTATION_INDEX.md @@ -0,0 +1,66 @@ +# GoalOS Documentation Index + +## 1. Start here +- [README](../README.md) +- [Repository audit](GOALOS_REPO_AUDIT.md) +- [Catalog source of truth](data/goalos_catalog.yml) + +## 2. Public site +- [Public Site Release v8](GOALOS_PUBLIC_SITE_RELEASE_V8.md) +- [Public Site Asset System](GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md) + +## 3. Product ladder +- [Product Ladder](GOALOS_PRODUCT_LADDER.md) +- [Ready to Sell Status](GOALOS_READY_TO_SELL_STATUS.md) +- [Commercialization Status](GOALOS_COMMERCIALIZATION_STATUS.md) + +## 4. AEP standards +- [AEP standards table](tables/goalos_aep_standards.csv) + +## 5. GoalOS Recursive Workflow OS +- [Recursive Workflow OS](GOALOS_RECURSIVE_WORKFLOW_OS.md) +- [Claims and Safe Boundary](GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md) + +## 6. Cloud MVP +- [GoalOS Cloud MVP 0.2](GOALOS_CLOUD_MVP_0_2.md) + +## 7. Validation and CI +- [Validation Hotfix v14](GOALOS_VALIDATION_HOTFIX_V14.md) +- [Paid Artifact Policy](GOALOS_PAID_ARTIFACT_POLICY.md) +- [Validation rules table](tables/goalos_validation_rules.csv) + +## 8. Figures +- [Figures directory](figures/) +- [Figure inventory](tables/goalos_figure_inventory.csv) + +## 9. Tables +- [Tables directory](tables/) +- [Product ladder CSV](tables/goalos_product_ladder.csv) + +## 10. Asset system +- [Public Site Asset System](GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md) +- [Asset manifest table](tables/goalos_asset_manifest.csv) + +## 11. Paid-file policy +- [Paid Artifact Policy](GOALOS_PAID_ARTIFACT_POLICY.md) + +## 12. Legal/payment/support summary +- [Legal, Payments, Buyer Success Summary](GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md) + +## 13. Tax/CFO summary +- [Tax, Accounting, CFO Summary](GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md) + +## 14. Communications summary +- [Communications Firm Summary](GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md) + +## 15. Professional firm packages summary +- [Professional Firm Packages Summary](GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md) + +## 16. Engineering roadmap +- [Engineering Roadmap](GOALOS_ENGINEERING_ROADMAP.md) + +## 17. Web3 / AGI.eth / ASI.eth optional architecture +- [Web3 Hybrid Architecture](GOALOS_WEB3_HYBRID_ARCHITECTURE.md) + +## 18. Proof Card 001 plan +- [Proof Card 001 Plan](GOALOS_PROOF_CARD_001_PLAN.md) diff --git a/docs/GOALOS_ENGINEERING_ROADMAP.md b/docs/GOALOS_ENGINEERING_ROADMAP.md new file mode 100644 index 00000000..10ac7fb1 --- /dev/null +++ b/docs/GOALOS_ENGINEERING_ROADMAP.md @@ -0,0 +1,36 @@ +# GoalOS Engineering Roadmap + +## Purpose +Define engineering phases from Proof Card 001 to Proof Graph standardization. + +## Current status +Roadmap current: proof-first, department, enterprise, SaaS, Proof Graph, partner ecosystem. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `ROADMAP.md` +- `docs/data/goalos_catalog.yml` + +## What is public +Phases, validation commands, safety gates, and next milestones. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Execute Proof Card 001 and harden Cloud MVP toward SaaS without claiming completion early. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md b/docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md new file mode 100644 index 00000000..2eee1afe --- /dev/null +++ b/docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md @@ -0,0 +1,36 @@ +# Legal / Payments / Buyer Success Summary + +## Purpose +Summarize operational boundaries without giving legal advice. + +## Current status +Operating pack exists privately; public docs may summarize existence and boundaries. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/data/goalos_catalog.yml` +- `docs/GOALOS_PAID_ARTIFACT_POLICY.md` + +## What is public +High-level routing, shop CTA, buyer success principles, privacy caution. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Have qualified counsel review terms, privacy, refunds, delivery, and support before scaling. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_PAID_ARTIFACT_POLICY.md b/docs/GOALOS_PAID_ARTIFACT_POLICY.md index 51921b61..1aec6fc9 100644 --- a/docs/GOALOS_PAID_ARTIFACT_POLICY.md +++ b/docs/GOALOS_PAID_ARTIFACT_POLICY.md @@ -1,35 +1,64 @@ # GoalOS Paid Artifact Policy -Date: 2026-06-07 +## Purpose +Define what may and may not be public on GitHub Pages. -GoalOS public deploy roots (`site/` or `public/`) must not contain buyer-paid, private, delivery-kit, workshop, facilitator, master-pack, or other commercial ZIP artifacts. The paid-file guard is centralized in `scripts/goalos_public_site_rules.py` and consumed by the validation scripts and GitHub Actions. +## Current status +Strict public guard active; only AEP package ZIP pattern is allowed. -## Public ZIP allowlist +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. -Allowed public ZIP: +## Files involved +- `scripts/check_no_paid_artifacts.py` +- `scripts/goalos_public_site_rules.py` +- `tests/test_goalos_public_site_rules.py` -```text -standards/AEP-###/complete-package.zip -``` +## What is public +Public standards, docs, schemas, examples, proof pages, site assets, and AEP packages at `standards/AEP-###/complete-package.zip`. -Blocked: +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. -```text -all other ZIPs in public deploy roots unless explicitly reviewed and added to a narrow public allowlist. -``` +## Next actions +Review every new ZIP or commercial artifact before it enters a public deploy root. -## Blocked examples +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. -The following examples must remain blocked from public deploy roots: +## Allowed public ZIP pattern -```text -site/GoalOS_RSI_Sprint_Workshop_v6_0_COMPLETE_BUNDLE.zip -site/GoalOS_RSI_Sprint_Workshop_v6_0_BUYER_FACILITATOR_DELIVERY_KIT.zip -site/GoalOS_Enterprise_RSI_Pilot_v2_0_BUYER_DELIVERY_KIT.zip -site/GoalOS_Commercialization_Ready_Master_Pack.zip -site/private-anything.zip -``` +`standards/AEP-###/complete-package.zip` -## Safe publication rule +## Public GitHub Pages may include -Public pages may describe offers and link to the QUEBEC.AI shop, but buyer deliverables and private bundles must not be stored, linked, or deployed from the public site. If a new public standards package is needed, add it only under the AEP allowlist shape and add regression tests. +- public standards; +- public docs; +- public schemas; +- public examples; +- public proof pages; +- public site assets; +- public AEP standard packages matching `standards/AEP-###/complete-package.zip`. + +## Public GitHub Pages must not include + +- paid buyer ZIPs; +- paid digital products; +- paid workshop bundles; +- buyer/facilitator delivery kits; +- implementation bundles; +- enterprise pilot bundles; +- commercialization packs; +- private files. + +Blocked examples for regression tests include the public filenames listed in `tests/test_goalos_public_site_rules.py`; docs may mention product names but must not publish buyer download links. diff --git a/docs/GOALOS_PRODUCT_LADDER.md b/docs/GOALOS_PRODUCT_LADDER.md new file mode 100644 index 00000000..743b8672 --- /dev/null +++ b/docs/GOALOS_PRODUCT_LADDER.md @@ -0,0 +1,47 @@ +# GoalOS Product Ladder + +## Purpose +Define the public ladder from self-serve education to enterprise pilot. + +## Current status +Current ladder: $49, $199, $997, $2,500+, $9,500+, $49,000+. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_product_ladder.csv` +- `docs/data/goalos_catalog.yml` + +## What is public +Offer names, outcomes, bilingual summaries, and statuses. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Update catalog and CSV before changing any public product text. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## Current ladder + +| Layer | Price | Offer | Version | Outcome | Status | +|---|---:|---|---|---|---| +| Self-serve | $49 | GoalOS AI Efficiency Sprint Kit | v1.4 | Build one reusable AI workflow. / Construisez un flux IA réutilisable. | Ready to sell as instant-access digital educational workflow product. | +| Self-serve | $199 | GoalOS RSI Lite | v1.6 | Build one self-improving AI workflow. / Construisez un flux IA auto-améliorant. | Ready to sell; can also be included as an AGI Club member benefit. | +| Self-serve / department | $997 | GoalOS Proof Room Lite / Department Pack | v2.0 | Set up a lightweight department Proof Room. / Mettez en place une Salle de preuve légère pour un département. | Ready to sell as premium self-serve department pack. | +| Gated workshop | $2,500+ | GoalOS RSI Sprint Workshop | v7.0 | Build the first self-improving workflow live. / Construisez le premier flux auto-améliorant en direct. | Ready as gated founding workshop / Proof Card 001 engine. | +| Gated implementation | $9,500+ | GoalOS Proof Room Implementation Sprint | v2.0 | Department RSI in 30 days. / RSI départemental en 30 jours. | Ready as gated implementation offer. | +| Gated enterprise | $49,000+ | GoalOS Enterprise RSI Pilot | v2.0 | Pilot the Recursive Workflow OS. / Pilotez le Recursive Workflow OS. | Ready as gated enterprise pilot offer. | diff --git a/docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md b/docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md new file mode 100644 index 00000000..647d2d30 --- /dev/null +++ b/docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md @@ -0,0 +1,53 @@ +# Professional Firm Packages Summary + +## Purpose +List the professional-firm package areas and privacy boundary. + +## Current status +Package areas documented publicly; package payloads remain private. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_professional_firm_packages.csv` + +## What is public +Names of advisory areas and safe public summaries. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Engage qualified firms before claims requiring legal, tax, security, privacy, procurement, or audit validation. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## Package areas + +1. Tax / Accounting / CFO +2. Privacy / Data Protection +3. Security / SOC 2 / Trust Center +4. IP / Trademark / Licensing +5. UX / CRO / Buyer Journey +6. Enterprise Sales / GTM +7. RevOps / Analytics +8. Brand / Design System +9. Growth Marketing +10. Accessibility / Bilingual Localization +11. Insurance / Commercial Risk +12. Enterprise Procurement / Trust Center +13. Independent Proof Audit / Evaluation + +Do not upload package ZIPs to the public site unless explicitly intended to be public and reviewed. diff --git a/docs/GOALOS_PROOF_CARD_001_PLAN.md b/docs/GOALOS_PROOF_CARD_001_PLAN.md new file mode 100644 index 00000000..32a0bd65 --- /dev/null +++ b/docs/GOALOS_PROOF_CARD_001_PLAN.md @@ -0,0 +1,52 @@ +# GoalOS Proof Card 001 Plan + +## Purpose +Define the first public proof card and approval path. + +## Current status +Planned first public proof card: GoalOS-PC-001. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_proof_card_001_fields.csv` +- `site/` public-safe proof pages after approval + +## What is public +Public-safe story, scorecard summary, version diff, claims avoided, approval status. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Execute the Customer Support Reply Workflow proof and publish only approved public-safe evidence. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## Proof Card ID + +GoalOS-PC-001 + +## Recommended first workflow + +Customer Support Reply Workflow + +## Proof story + +v1.0 was polite but missed refund/access classification. The scorecard detected the weakness. v1.1 added policy classification and a human-review flag. The workflow became clearer, safer, and more reusable. + +## Required fields + +See [Proof Card 001 fields](tables/goalos_proof_card_001_fields.csv). Claims avoided: no ROI guarantee, no compliance certification, no autonomous deployment claim, and no model self-modification claim. diff --git a/docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md b/docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md new file mode 100644 index 00000000..34b418ea --- /dev/null +++ b/docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md @@ -0,0 +1,38 @@ +# GoalOS Public Site Asset System + +## Purpose +Document public asset boundaries and badge/figure usage. + +## Current status +Current v8 intelligent assets plus new docs badges and SVG diagrams. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `assets/` +- `site/assets/` +- `badges/` +- `docs/figures/` + +## What is public +Public-safe brand assets, diagrams, CSS, JS, icons, and manifests. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Keep assets small, accessible, and public-safe; do not store paid product payloads. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md b/docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md new file mode 100644 index 00000000..f5671a89 --- /dev/null +++ b/docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md @@ -0,0 +1,37 @@ +# GoalOS Public Site Release v8 Intelligent Assets + +## Purpose +Record the current public-site release baseline. + +## Current status +Current public-site release action: v8 Intelligent Assets. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `site/` +- `site/assets/` +- `docs/tables/goalos_public_site_pages.csv` + +## What is public +Public pages, public assets, AEP standards, proof pages, Cloud MVP app. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Preserve v8 assets while validating with v14 rules. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_READY_TO_SELL_STATUS.md b/docs/GOALOS_READY_TO_SELL_STATUS.md new file mode 100644 index 00000000..6b14dbf1 --- /dev/null +++ b/docs/GOALOS_READY_TO_SELL_STATUS.md @@ -0,0 +1,47 @@ +# GoalOS Ready-to-Sell Status + +## Purpose +Clarify ready-to-sell status without exposing paid files. + +## Current status +Ready to sell as product/service packages; first public proof still needed. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `README.md` +- `docs/tables/goalos_offer_status.csv` + +## What is public +Ready-to-sell statements and shop CTA: https://www.quebecartificialintelligence.com/shop + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Capture Proof Card 001; keep public language proof-needed. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## Ready to sell + +- $49 Kit +- $199 RSI Lite +- $997 Proof Room Lite +- $2,500+ RSI Sprint Workshop +- $9,500+ Implementation Sprint +- $49,000+ Enterprise RSI Pilot + +Safe status language: ready to sell as product/service packages; first public proof still needed. Next milestone: Proof Card 001. diff --git a/docs/GOALOS_RECURSIVE_WORKFLOW_OS.md b/docs/GOALOS_RECURSIVE_WORKFLOW_OS.md new file mode 100644 index 00000000..828f1bef --- /dev/null +++ b/docs/GOALOS_RECURSIVE_WORKFLOW_OS.md @@ -0,0 +1,36 @@ +# GoalOS Recursive Workflow OS + +## Purpose +Describe the operating model for Recursive Self-Improving Workflows. + +## Current status +Formal platform direction; implemented publicly as docs, standards, validation, and Cloud MVP proof. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/figures/goalos_recursive_workflow_loop.*` +- `docs/figures/goalos_cloud_mvp_architecture.*` + +## What is public +Architecture, loop, laws, safe boundary, and public proof vocabulary. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Keep release gates tied to proof, evaluation, approval, versioning, monitoring, and rollback. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_REPO_AUDIT.md b/docs/GOALOS_REPO_AUDIT.md index 2d63d8f7..96cd04a7 100644 --- a/docs/GOALOS_REPO_AUDIT.md +++ b/docs/GOALOS_REPO_AUDIT.md @@ -1,94 +1,109 @@ -# GoalOS / Proof Gradient Repository Audit +# GoalOS Repository Audit -Date: 2026-06-07 -Branch: `feature/goalos-public-site-mvp-unification` +Audit date: 2026-06-08. -## Current site root +## Purpose +Audit the repository before and after the GoalOS documentation refresh so merge risk is visible. -- The active public GitHub Pages site root is `site/`. -- Root-level files such as `404.html`, `START_HERE.html`, and static assets exist, but this repair targets `site/` as the deployable Pages root. +## Current status +Audit updated for the README/docs/figures/tables/badges/validation refresh. -## Pages and structure found before repair +## Key decisions +- Preserve AEP standards, schemas, scripts, tests, public site, validation hotfix logic, public AEP package allowlist, QUEBEC.AI assets, and proof pages. +- Treat `docs/data/goalos_catalog.yml` as the documentation source of truth. +- Use GoalOS Validation Hotfix v14 Microsite Compatibility as the current validation baseline. -- Public HTML pages under `site/` outside `site/_archive/`: 206. -- Key public areas found: `site/index.html`, `site/start-here/`, `site/products/`, `site/pricing/`, `site/services/`, `site/examples/`, `site/standards/`, `site/command-center/`, `site/enterprise/`, `site/platform/`, `site/workshop/`, and `site/app/goalos-cloud-mvp/`. -- Existing AEP standards content was present under `site/standards/AEP-001` through `site/standards/AEP-008`, including source markdown, generated index pages, schemas, examples, conformance materials, and implementation documentation. -- Existing software foundation areas include `.github/workflows/`, `scripts/`, `schemas/`, `tests/`, `proof_gradient/`, Docker files, examples, data files, and documentation. +## Files involved +- `README.md` +- `docs/` +- `docs/data/goalos_catalog.yml` +- `docs/figures/` +- `docs/tables/` +- `badges/` +- `scripts/` +- `.github/workflows/` -## Duplicate shell / navigation issue summary +## What is public +Public docs, public standards, public schemas, public examples, public proof pages, public site assets, and public AEP packages matching `standards/AEP-###/complete-package.zip`. -- The site had accumulated multiple historical GoalOS shell systems, including `goalos-complete-site`, `goalos-product-ladder`, `goalos-unified-site`, and `goalos-site-v2` assets. -- A pre-repair scan found 900 old GoalOS shell markers in public `site/**/*.html` files, including `GOALOS-COMPLETE-NAV`, `GOALOS-PRODUCT-LADDER-NAV`, and `GOALOS-UNIFIED-SHELL`. -- Many HTML files included injected canonical-looking CSS/JS plus older body-level nav/footer blocks, creating the stacked-topbar / multiple-site-shell public website problem. +## What must remain private +Paid buyer ZIPs, paid digital products, paid workshop bundles, buyer/facilitator delivery kits, implementation bundles, enterprise pilot bundles, commercialization packs, professional-firm ZIP payloads, and private buyer evidence. -## Paid or private artifact scan +## Next actions +Run validation, publish Proof Card 001 when approved, and keep obsolete v12/v13 validation references clearly marked as obsolete. -- Paid-risk filename patterns found before repair included standards ZIP material under `site/standards/AEP-001/complete-package.zip` and release ZIP material outside the public site under `releases/`. -- Standards implementation files were detected by broad filename patterns because they include the word `implementation`; they are public standards documentation, not paid delivery kits. -- `scripts/check_no_paid_artifacts.py` now blocks ZIPs and paid buyer/workshop/implementation/enterprise bundle patterns from public deploy roots, with only the narrow `standards/AEP-###/complete-package.zip` public AEP package allowlist. +## Validation checklist +- [ ] README current. +- [ ] Docs index current. +- [ ] Catalog, tables, figures, and badges present. +- [ ] Paid-file guard passes. +- [ ] Public-site validation passes. -## Files changed +## 1. Repository structure +Top-level structure includes README, docs, scripts, schemas, site, tests, proof_gradient package, assets, workflows, and GitHub Pages support files. -- Created / refreshed the canonical public shell assets: `site/assets/goalos-site-v2.css` and `site/assets/goalos-site-v2.js`. -- Canonicalized all 206 public `site/**/*.html` pages outside `site/_archive/` to exactly one canonical nav and one canonical footer. -- Refreshed core public pages: home, start, products, pricing, services, Cloud MVP, product ladder pages, workshop pages, implementation page, enterprise page, platform page, examples, standards, command center, site map, 404, sitemap, and robots. -- Preserved and unified AEP standard pages under `site/standards/AEP-001` through `site/standards/AEP-008`. -- Verified GoalOS Cloud MVP 0.2 files under `site/app/goalos-cloud-mvp/` and kept the browser/localStorage/no-secrets public software proof. -- Added validation/security scripts: `scripts/validate_goalos_site_v2.py` and `scripts/check_no_paid_artifacts.py`. -- Updated `scripts/check_site_links.py` to skip archived backup HTML when validating current public site links. -- Updated / added documentation: `README.md`, `docs/GOALOS_COMMERCIALIZATION_STATUS.md`, `docs/GOALOS_CLOUD_MVP_0_2.md`, `docs/GOALOS_PUBLIC_SITE_REPAIR.md`, and this audit. -- Added / updated GitHub Actions for shell repair, Cloud MVP build, and complete public-site refresh. +## 2. Current README state +README has been refreshed as the official Proof Gradient · GoalOS entry point with badges, product ladder, safe boundary, validation commands, and repository map. -## Files preserved +## 3. Current docs state +GoalOS operational docs now use `docs/GOALOS_DOCUMENTATION_INDEX.md` as the human map and `docs/data/goalos_catalog.yml` as source of truth. -- Existing standards, docs, examples, schemas, tests, package files, Docker files, workflows, data files, and previous public pages were preserved. -- Existing AEP standards content was not removed; public HTML index pages were shell-unified only. -- Paid buyer products were not added to the repository. Public buttons point to QUEBEC.AI shop. +## 4. Current figures state +Required Mermaid sources and SVG exports exist under `docs/figures/`. SVGs were generated as lightweight static accessible diagrams without requiring Mermaid CLI. -## Files backed up +## 5. Current tables state +Required CSV tables exist under `docs/tables/` and mirror catalog products, standards, rules, and inventories. -- All 206 pre-repair public HTML files were backed up under `site/_archive/before_unified_shell_v2_2026-06-07/` before canonicalization. +## 6. Current badge state +Static SVG badges exist under `badges/` and avoid workflow status claims. -## Tests run +## 7. Current workflows/actions state +New or updated workflows validate docs/tables/figures, paid artifacts, catalog, and public site with dependency-free Python where possible. Existing older v12/v13/v8 workflows remain in history but are documented as obsolete references. -- `node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs` — passed. -- `python scripts/validate_goalos_site_v2.py` — passed for 206 public HTML pages. -- `python scripts/check_no_paid_artifacts.py` — passed. -- `python scripts/validate_goalos_products.py` — passed. -- `python scripts/check_site_links.py` — passed. -- `pytest` — passed: 72 tests, 2 warnings. -- `make test` — passed: 56 unittest tests. +## 8. Current public site state +`site/` remains the public GitHub Pages root; v8 Intelligent Assets is the current site release baseline. -## Known limitations +## 9. Current AEP standards state +AEP-001 through AEP-008 remain public standards. Public AEP complete packages are allowed only at `standards/AEP-###/complete-package.zip` inside public deploy roots. -- No browser screenshot was captured in this headless container because no Chromium/Chrome executable was available. Local HTML was validated by static checks and test suites. -- This repository still contains many historical automation workflows and archived generated pages. The current public site outside `site/_archive/` is unified; archived pages intentionally preserve historical pre-repair markup. -- `pytest` emits existing FastAPI deprecation warnings related to `on_event`; they are not introduced by this repair. +## 10. Current schemas state +Existing JSON schemas under `schemas/` are preserved. -## 2026 validation hotfix +## 11. Current tests state +Existing pytest tests and the GoalOS Cloud MVP Node test are preserved. Paid-artifact regression tests were expanded for current buyer ZIP names. -- Fixed false positive on AEP `complete-package.zip` by allowing only `standards/AEP-###/complete-package.zip` public standard packages. -- Classified standalone proof HTML pages so immersive RSI proof microsites are not treated as broken marketing pages when they explicitly carry standalone proof metadata. -- Centralized validation rules in `scripts/goalos_public_site_rules.py` for path normalization, page classification, canonical shell requirements, app-page handling, AEP package allowlisting, paid/private artifact blocking, icon/seal checks, link checks, and claim-boundary checks. -- Updated workflows to call shared Python validation scripts instead of embedding duplicate paid-file or shell logic in YAML. +## 12. Current assets state +QUEBEC.AI seal/assets and public site assets are preserved; new static badges and diagrams are public-safe assets. +## 13. Current paid-file guard state +`scripts/check_no_paid_artifacts.py` remains strict and delegates artifact classification to `scripts/goalos_public_site_rules.py`. -## 2026 validation hotfix v12 verification note +## 14. Obsolete workflow findings +Validation v12, v13, and obsolete v8 compatibility workflows are not current. Current docs direct users to GoalOS Validation Hotfix v14 Microsite Compatibility. -- `pytest` now relies on `pythonpath = ["."]` in `pyproject.toml` so the standalone `pytest` command can import both `proof_gradient` and shared `scripts` modules consistently. -- Installed development dependencies with `python -m pip install -e '.[dev]'` in this validation environment before running full repository tests. +## 15. Broken-link findings +Internal docs links are checked by `scripts/validate_docs_tables_figures.py`; no broken internal Markdown links remained after this refresh. -## 2026 validation hotfix v12 local command results +## 16. Stale pricing/version findings +Current prices and versions are centralized in `docs/data/goalos_catalog.yml`: $49 v1.4, $199 v1.6, $997 v2.0, $2,500+ v7.0, $9,500+ v2.0, $49,000+ v2.0, Cloud MVP 0.2, validation v14. -- Required targeted regression command: `python -m pytest tests/test_goalos_public_site_rules.py -q` — passed. -- Required paid-artifact guard command: `python scripts/check_no_paid_artifacts.py` — passed. -- Required public-site validator command: `python scripts/validate_goalos_public_site.py` — passed. -- Existing repository tests: `pytest` — passed with existing FastAPI deprecation warnings. -- Existing make-based tests: `make test` — passed. +## 17. Missing documentation findings +Core GoalOS docs were missing or inconsistent; this refresh creates/updates required operational docs. -## 2026 validation hotfix v12 dependency verification update +## 18. Missing figures/tables findings +Required figures, SVG exports, and CSV source tables were missing or incomplete; this refresh adds them. -- A fresh `pytest` / `make test` attempt initially failed because the local container had Starlette/FastAPI installed without the optional `httpx`/`httpx2` test client dependency available to `fastapi.testclient`. -- Installed the missing test-client dependency in the validation environment with `python -m pip install httpx`; the project dev extra already declares `httpx` and `httpx2` for normal contributor setup. -- Re-ran `pytest` successfully after adding validation regression coverage: 85 tests passed with existing FastAPI/Starlette deprecation warnings. -- Re-ran `make test` successfully: 56 unittest tests passed, with the same existing Starlette `httpx` deprecation warning. +## 19. Files to preserve +Preserve AEP standards, schemas, scripts, tests, public site, `proof_gradient` package, validation hotfix logic, public AEP allowlist, QUEBEC.AI seal/assets, and public proof pages/microsites. + +## 20. Files to update +README, GoalOS docs, catalog, tables, figures, badges, validation scripts, validation workflows, SECURITY, CONTRIBUTING, ROADMAP, QA verification, file tree, and manifest. + +## 21. Files not to touch +Do not delete useful code, schemas, tests, public proof pages, public site assets, or AEP materials. Do not upload buyer ZIPs or private bundles. + +## 22. Risks before merge +- Some legacy workflows remain numerous and may confuse users; docs identify v14 as current. +- Full pytest requires Python dependencies such as FastAPI/Pydantic; if not installed, run dependency installation before treating pytest as release-blocking. +- `make test` may depend on the local environment. +- Mermaid CLI is not required because SVG exports are committed as static SVG files. diff --git a/docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md b/docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md new file mode 100644 index 00000000..943b8060 --- /dev/null +++ b/docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md @@ -0,0 +1,36 @@ +# GoalOS RSI Sprint Workshop Public Positioning + +## Purpose +Position the $2,500+ workshop as a gated proof-building service. + +## Current status +Ready as gated founding workshop / Proof Card 001 engine. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_product_ladder.csv` +- `docs/GOALOS_READY_TO_SELL_STATUS.md` + +## What is public +Public positioning, outcome, shop/application CTA. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Use workshop delivery to create Proof Card 001 without public buyer data exposure. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md b/docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md new file mode 100644 index 00000000..b9c6b49c --- /dev/null +++ b/docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md @@ -0,0 +1,35 @@ +# Tax / Accounting / CFO Summary + +## Purpose +Summarize finance-operations posture without giving tax or financial advice. + +## Current status +Private brief exists; public repository provides non-advisory operational summary only. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/tables/goalos_professional_firm_packages.csv` + +## What is public +High-level status and need for qualified professional review. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Confirm revenue recognition, unit economics, tax, accounting, and reporting with qualified advisors. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. diff --git a/docs/GOALOS_VALIDATION_HOTFIX_V14.md b/docs/GOALOS_VALIDATION_HOTFIX_V14.md new file mode 100644 index 00000000..f570dd32 --- /dev/null +++ b/docs/GOALOS_VALIDATION_HOTFIX_V14.md @@ -0,0 +1,46 @@ +# GoalOS Validation Hotfix v14 Microsite Compatibility + +## Purpose +Explain the current validation logic and obsolete versions. + +## Current status +Current successful validation fix. v12 and v13 are obsolete; v8 compatibility validation is not current. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `scripts/validate_goalos_public_site.py` +- `scripts/goalos_public_site_rules.py` +- `.github/workflows/goalos-validation-hotfix-v14-microsite-compat.yml` + +## What is public +Page classes, public AEP allowlist, paid/private artifact blocks, and local commands. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Keep obsolete workflows documented or routed to shared v14 scripts; do not reintroduce v12/v13 logic. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## v14 rules + +- Canonical pages require exactly one canonical shell and footer. +- Standalone proof/microsite pages do not require the normal marketing shell when they carry standalone metadata and a visible escape link. +- App pages can use the app shell. +- Public AEP packages are allowed only at `standards/AEP-###/complete-package.zip`. +- Paid/private artifacts are blocked. +- v12 and v13 are obsolete; v14 is current. diff --git a/docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md b/docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md new file mode 100644 index 00000000..8bbcf48a --- /dev/null +++ b/docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md @@ -0,0 +1,59 @@ +# GoalOS Web3 Hybrid Architecture + +## Purpose +Describe optional AGI.eth / ASI.eth architecture without investment language. + +## Current status +Conceptual optional architecture only. + +## Key decisions +- Proof Gradient remains the public proof and standards layer. +- GoalOS remains the recursive workflow operating layer. +- QUEBEC.AI ⚜️✨ remains the sovereign Québec AI identity layer. +- GoalOS improves workflows around AI; it does not modify base AI models. +- Public purchase/application CTAs point to https://www.quebecartificialintelligence.com/shop. + +## Files involved +- `docs/figures/goalos_web3_hybrid_architecture.*` + +## What is public +Web3-native core, Web2-simple UX, no CEX dependency by default, on-chain access/proof/credentials, off-chain controls. + +## What must remain private +- Paid buyer ZIPs and paid digital products. +- Paid workshop bundles, delivery kits, implementation bundles, enterprise pilot bundles, and private commercial packs. +- Private buyer evidence, support tickets, legal/tax decisions, and enterprise statements of work. + +## Next actions +Prototype proof-card hashes and credential flows while keeping private evidence off-chain. + +## Validation checklist +- [ ] Catalog, CSV tables, README, and docs stay synchronized. +- [ ] Safe AI boundary is visible. +- [ ] Claim boundary avoids guaranteed ROI, legal/financial/tax advice, compliance certification, autonomous AGI, uncontrolled autonomy, and model self-modification. +- [ ] Paid-file guard passes. +- [ ] Public-site validation uses GoalOS Validation Hotfix v14 Microsite Compatibility. + +## Optimal hybrid approach + +- Web3-native core. +- Web2-simple user experience. +- No CEX dependency by default. +- Off-chain legal/tax/support controls. +- On-chain access, proof, credentials, referrals, and treasury routing. + +## AGI.eth + +AGI Club membership / community / RSI Lite included / proof credentials. + +## ASI.eth + +Institutional / frontier / enterprise / Proof Graph / Enterprise RSI layer. + +## On-chain + +Membership, access rights, proof-card hashes, credentials, referral attribution. + +## Off-chain + +Private evidence, buyer data, support tickets, legal/tax decisions, enterprise SOWs. No investment language, revenue share, guaranteed resale value, or yield. diff --git a/docs/data/goalos_catalog.yml b/docs/data/goalos_catalog.yml new file mode 100644 index 00000000..8050708f --- /dev/null +++ b/docs/data/goalos_catalog.yml @@ -0,0 +1,194 @@ +# GoalOS public documentation source of truth +shop_url: "https://www.quebecartificialintelligence.com/shop" +category: "Recursive Self-Improving Workflows" +platform_direction: "GoalOS Recursive Workflow OS" +identity_line: "Aim. Act. Prove. Evolve." +public_thesis: "A model can answer. An agent can act. An institution must prove." +commercial_line: "ChatGPT gives you answers. GoalOS gives you workflows that get better every time they run." +enterprise_line: "Enterprise RSI without model self-modification." +core_law_en: + - "No proof, no evolution." + - "No eval, no propagation." + - "No rollback, no release." +core_law_fr: + - "Pas de preuve, pas d’évolution." + - "Pas d’évaluation, pas de propagation." + - "Pas de rollback, pas de publication." +core_loop: + - Run + - Score + - Prove + - Diagnose + - Improve + - Approve + - Version + - Monitor + - Re-run +safe_boundary: "GoalOS improves workflows around AI through instructions, prompts, memory, scorecards, proof records, evaluations, approvals, versions, monitoring, and rollback; it does not modify base AI models." +safe_boundary_fr: "GoalOS ne modifie pas les modèles IA de base. GoalOS améliore les flux autour de l’IA grâce aux instructions, prompts, mémoire, grilles de score, dossiers de preuve, évaluations, approbations, versions, surveillance et rollback." +prohibited_claims: + - "guaranteed ROI" + - "guaranteed revenue" + - "guaranteed productivity" + - "investment returns" + - "financial advice" + - "legal advice" + - "tax advice" + - "compliance certification" + - "AI safety certification" + - "autonomous AGI" + - "model self-modification" + - "uncontrolled autonomous deployment" + - "achieved AGI/ASI" + - "real-world superintelligence deployment" + - "real profit/revenue unless independently proven" +product_ladder: + - layer: "Self-serve" + price: "$49" + name: "GoalOS AI Efficiency Sprint Kit" + version: "v1.4" + description_en: "Build one reusable AI workflow." + description_fr: "Construisez un flux IA réutilisable." + status: "Ready to sell as instant-access digital educational workflow product." + public_url: "https://www.quebecartificialintelligence.com/shop" + - layer: "Self-serve" + price: "$199" + name: "GoalOS RSI Lite" + version: "v1.6" + description_en: "Build one self-improving AI workflow." + description_fr: "Construisez un flux IA auto-améliorant." + status: "Ready to sell; can also be included as an AGI Club member benefit." + public_url: "https://www.quebecartificialintelligence.com/shop" + - layer: "Self-serve / department" + price: "$997" + name: "GoalOS Proof Room Lite / Department Pack" + version: "v2.0" + description_en: "Set up a lightweight department Proof Room." + description_fr: "Mettez en place une Salle de preuve légère pour un département." + status: "Ready to sell as premium self-serve department pack." + public_url: "https://www.quebecartificialintelligence.com/shop" + - layer: "Gated workshop" + price: "$2,500+" + name: "GoalOS RSI Sprint Workshop" + version: "v7.0" + description_en: "Build the first self-improving workflow live." + description_fr: "Construisez le premier flux auto-améliorant en direct." + status: "Ready as gated founding workshop / Proof Card 001 engine." + public_url: "https://www.quebecartificialintelligence.com/shop" + - layer: "Gated implementation" + price: "$9,500+" + name: "GoalOS Proof Room Implementation Sprint" + version: "v2.0" + description_en: "Department RSI in 30 days." + description_fr: "RSI départemental en 30 jours." + status: "Ready as gated implementation offer." + public_url: "https://www.quebecartificialintelligence.com/shop" + - layer: "Gated enterprise" + price: "$49,000+" + name: "GoalOS Enterprise RSI Pilot" + version: "v2.0" + description_en: "Pilot the Recursive Workflow OS." + description_fr: "Pilotez le Recursive Workflow OS." + status: "Ready as gated enterprise pilot offer." + public_url: "https://www.quebecartificialintelligence.com/shop" +software_mvp: + name: "GoalOS Cloud MVP" + version: "0.2" + status: "public software proof / not full SaaS" +public_site: + name: "GoalOS Public Site Release v8 Intelligent Assets" + status: "current public-site release action" +validation: + name: "GoalOS Validation Hotfix v14 Microsite Compatibility" + status: "current successful validation fix" + obsolete: ["v12", "v13", "obsolete v8 compatibility validation"] +aep_standards: + - code: "AEP-001" + title: "GoalOS Proof-of-Evolution Constitution" + - code: "AEP-002" + title: "Evidence Docket Standard" + - code: "AEP-003" + title: "ProofPacket Schema" + - code: "AEP-004" + title: "Selection Gate Standard" + - code: "AEP-005" + title: "Tool Permission Standard" + - code: "AEP-006" + title: "Rollback Receipt Standard" + - code: "AEP-007" + title: "Public-Safe Proof Report Standard" + - code: "AEP-008" + title: "Proof Room Standard" +documentation_inventory: + - "docs/GOALOS_COMMERCIALIZATION_STATUS.md" + - "docs/GOALOS_PRODUCT_LADDER.md" + - "docs/GOALOS_READY_TO_SELL_STATUS.md" + - "docs/GOALOS_PROOF_CARD_001_PLAN.md" + - "docs/GOALOS_RECURSIVE_WORKFLOW_OS.md" + - "docs/GOALOS_CLOUD_MVP_0_2.md" + - "docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md" + - "docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md" + - "docs/GOALOS_VALIDATION_HOTFIX_V14.md" + - "docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md" + - "docs/GOALOS_PAID_ARTIFACT_POLICY.md" + - "docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md" + - "docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md" + - "docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md" + - "docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md" + - "docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md" + - "docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md" + - "docs/GOALOS_ENGINEERING_ROADMAP.md" + - "docs/GOALOS_REPO_AUDIT.md" +figure_inventory: + - "docs/figures/goalos_recursive_workflow_loop.mmd" + - "docs/figures/goalos_product_ladder.mmd" + - "docs/figures/goalos_proof_led_revenue_loop.mmd" + - "docs/figures/goalos_public_site_architecture.mmd" + - "docs/figures/goalos_validation_architecture.mmd" + - "docs/figures/goalos_cloud_mvp_architecture.mmd" + - "docs/figures/goalos_enterprise_safety_boundary.mmd" + - "docs/figures/goalos_web3_hybrid_architecture.mmd" + - "docs/figures/goalos_proof_graph_concept.mmd" + - "docs/figures/goalos_recursive_workflow_loop.svg" + - "docs/figures/goalos_product_ladder.svg" + - "docs/figures/goalos_proof_led_revenue_loop.svg" + - "docs/figures/goalos_public_site_architecture.svg" + - "docs/figures/goalos_validation_architecture.svg" + - "docs/figures/goalos_cloud_mvp_architecture.svg" + - "docs/figures/goalos_enterprise_safety_boundary.svg" + - "docs/figures/goalos_web3_hybrid_architecture.svg" + - "docs/figures/goalos_proof_graph_concept.svg" +table_inventory: + - "docs/tables/goalos_product_ladder.csv" + - "docs/tables/goalos_offer_status.csv" + - "docs/tables/goalos_claim_boundaries.csv" + - "docs/tables/goalos_public_site_pages.csv" + - "docs/tables/goalos_paid_file_policy.csv" + - "docs/tables/goalos_aep_standards.csv" + - "docs/tables/goalos_document_inventory.csv" + - "docs/tables/goalos_figure_inventory.csv" + - "docs/tables/goalos_asset_manifest.csv" + - "docs/tables/goalos_validation_rules.csv" + - "docs/tables/goalos_workflow_actions.csv" + - "docs/tables/goalos_proof_card_001_fields.csv" + - "docs/tables/goalos_professional_firm_packages.csv" +public_private_artifact_rules: + allowed_public_zip_pattern: "standards/AEP-###/complete-package.zip" + blocked_public_artifacts: + - "paid buyer ZIPs" + - "paid digital products" + - "paid workshop bundles" + - "delivery kits" + - "implementation bundles" + - "enterprise pilot bundles" + - "private commercial packs" +workflow_names: + - "Validate GoalOS Docs, Tables, Figures" + - "Check No Paid Artifacts" + - "Validate GoalOS Catalog" +site_release_status: "current: v8 Intelligent Assets" +professional_firm_packages_status: + - "GoalOS Communications Firm Briefing Pack v1.0" + - "GoalOS Legal / Payments / Buyer Success Operating Pack v2.0" + - "GoalOS Tax / Accounting / Revenue Recognition / Unit Economics Brief v1.0" + - "GoalOS World-Class Professional Firm Packages v1.0" diff --git a/docs/figures/goalos_cloud_mvp_architecture.mmd b/docs/figures/goalos_cloud_mvp_architecture.mmd new file mode 100644 index 00000000..b04b0ed5 --- /dev/null +++ b/docs/figures/goalos_cloud_mvp_architecture.mmd @@ -0,0 +1,7 @@ +flowchart LR + n0["Workflow Studio"] --> n1["Execution Engine"] + n1["Execution Engine"] --> n2["Evaluation Engine"] + n2["Evaluation Engine"] --> n3["Proof Room"] + n3["Proof Room"] --> n4["Improvement Engine"] + n4["Improvement Engine"] --> n5["Approval Gate"] + n5["Approval Gate"] --> n6["Versioning/Rollback"] diff --git a/docs/figures/goalos_cloud_mvp_architecture.svg b/docs/figures/goalos_cloud_mvp_architecture.svg new file mode 100644 index 00000000..90072146 --- /dev/null +++ b/docs/figures/goalos_cloud_mvp_architecture.svg @@ -0,0 +1,26 @@ + +goalos cloud mvp architecture +GoalOS proof-bounded architecture diagram. + + + +Workflow Studio + + +Execution Engine + + +Evaluation Engine + + +Proof Room + + +Improvement Engine + + +Approval Gate + + +Versioning/Rollback + diff --git a/docs/figures/goalos_enterprise_safety_boundary.mmd b/docs/figures/goalos_enterprise_safety_boundary.mmd new file mode 100644 index 00000000..6763ff91 --- /dev/null +++ b/docs/figures/goalos_enterprise_safety_boundary.mmd @@ -0,0 +1,6 @@ +flowchart LR + n0["Base model unchanged"] --> n1["Workflow layer"] + n1["Workflow layer"] --> n2["Instructions/prompts"] + n2["Instructions/prompts"] --> n3["Scorecards/proof"] + n3["Scorecards/proof"] --> n4["Approval/version/rollback"] + n4["Approval/version/rollback"] --> n5["Safer release"] diff --git a/docs/figures/goalos_enterprise_safety_boundary.svg b/docs/figures/goalos_enterprise_safety_boundary.svg new file mode 100644 index 00000000..b3e71360 --- /dev/null +++ b/docs/figures/goalos_enterprise_safety_boundary.svg @@ -0,0 +1,23 @@ + +goalos enterprise safety boundary +GoalOS proof-bounded architecture diagram. + + + +Base model unchanged + + +Workflow layer + + +Instructions/prompts + + +Scorecards/proof + + +Approval/version/rollback + + +Safer release + diff --git a/docs/figures/goalos_product_ladder.mmd b/docs/figures/goalos_product_ladder.mmd new file mode 100644 index 00000000..0a836ddb --- /dev/null +++ b/docs/figures/goalos_product_ladder.mmd @@ -0,0 +1,7 @@ +flowchart LR + n0["$49 Kit"] --> n1["$199 RSI Lite"] + n1["$199 RSI Lite"] --> n2["$997 Proof Room Lite"] + n2["$997 Proof Room Lite"] --> n3["$2,500+ Workshop"] + n3["$2,500+ Workshop"] --> n4["$9,500+ Implementation"] + n4["$9,500+ Implementation"] --> n5["$49,000+ Enterprise Pilot"] + n5["$49,000+ Enterprise Pilot"] --> n6["GoalOS Cloud SaaS"] diff --git a/docs/figures/goalos_product_ladder.svg b/docs/figures/goalos_product_ladder.svg new file mode 100644 index 00000000..87710a75 --- /dev/null +++ b/docs/figures/goalos_product_ladder.svg @@ -0,0 +1,26 @@ + +goalos product ladder +GoalOS proof-bounded architecture diagram. + + + +$49 Kit + + +$199 RSI Lite + + +$997 Proof Room Lite + + +$2,500+ Workshop + + +$9,500+ Implementation + + +$49,000+ Enterprise Pilot + + +GoalOS Cloud SaaS + diff --git a/docs/figures/goalos_proof_graph_concept.mmd b/docs/figures/goalos_proof_graph_concept.mmd new file mode 100644 index 00000000..055d12cb --- /dev/null +++ b/docs/figures/goalos_proof_graph_concept.mmd @@ -0,0 +1,5 @@ +flowchart LR + n0["workflow nodes"] --> n1["version nodes"] + n1["version nodes"] --> n2["proof nodes"] + n2["proof nodes"] --> n3["approval nodes"] + n3["approval nodes"] --> n4["rollback nodes"] diff --git a/docs/figures/goalos_proof_graph_concept.svg b/docs/figures/goalos_proof_graph_concept.svg new file mode 100644 index 00000000..29c30b71 --- /dev/null +++ b/docs/figures/goalos_proof_graph_concept.svg @@ -0,0 +1,20 @@ + +goalos proof graph concept +GoalOS proof-bounded architecture diagram. + + + +workflow nodes + + +version nodes + + +proof nodes + + +approval nodes + + +rollback nodes + diff --git a/docs/figures/goalos_proof_led_revenue_loop.mmd b/docs/figures/goalos_proof_led_revenue_loop.mmd new file mode 100644 index 00000000..73f2c1d3 --- /dev/null +++ b/docs/figures/goalos_proof_led_revenue_loop.mmd @@ -0,0 +1,8 @@ +flowchart LR + n0["Small sale"] --> n1["buyer education"] + n1["buyer education"] --> n2["workflow success"] + n2["workflow success"] --> n3["proof"] + n3["proof"] --> n4["trust"] + n4["trust"] --> n5["high-ticket offer"] + n5["high-ticket offer"] --> n6["enterprise pilot"] + n6["enterprise pilot"] --> n7["software validation"] diff --git a/docs/figures/goalos_proof_led_revenue_loop.svg b/docs/figures/goalos_proof_led_revenue_loop.svg new file mode 100644 index 00000000..9b11ea46 --- /dev/null +++ b/docs/figures/goalos_proof_led_revenue_loop.svg @@ -0,0 +1,29 @@ + +goalos proof led revenue loop +GoalOS proof-bounded architecture diagram. + + + +Small sale + + +buyer education + + +workflow success + + +proof + + +trust + + +high-ticket offer + + +enterprise pilot + + +software validation + diff --git a/docs/figures/goalos_public_site_architecture.mmd b/docs/figures/goalos_public_site_architecture.mmd new file mode 100644 index 00000000..709ebe8b --- /dev/null +++ b/docs/figures/goalos_public_site_architecture.mmd @@ -0,0 +1,5 @@ +flowchart LR + n0["GitHub repo"] --> n1["site/"] + n1["site/"] --> n2["validation"] + n2["validation"] --> n3["GitHub Pages"] + n3["GitHub Pages"] --> n4["public site"] diff --git a/docs/figures/goalos_public_site_architecture.svg b/docs/figures/goalos_public_site_architecture.svg new file mode 100644 index 00000000..86ec1905 --- /dev/null +++ b/docs/figures/goalos_public_site_architecture.svg @@ -0,0 +1,20 @@ + +goalos public site architecture +GoalOS proof-bounded architecture diagram. + + + +GitHub repo + + +site/ + + +validation + + +GitHub Pages + + +public site + diff --git a/docs/figures/goalos_recursive_workflow_loop.mmd b/docs/figures/goalos_recursive_workflow_loop.mmd new file mode 100644 index 00000000..781da9cc --- /dev/null +++ b/docs/figures/goalos_recursive_workflow_loop.mmd @@ -0,0 +1,13 @@ +flowchart LR + n0["Goal"] --> n1["Workflow"] + n1["Workflow"] --> n2["Execution"] + n2["Execution"] --> n3["Output"] + n3["Output"] --> n4["Evaluation"] + n4["Evaluation"] --> n5["Proof"] + n5["Proof"] --> n6["Diagnosis"] + n6["Diagnosis"] --> n7["Improvement Proposal"] + n7["Improvement Proposal"] --> n8["Approval"] + n8["Approval"] --> n9["New Version"] + n9["New Version"] --> n10["Re-Test"] + n10["Re-Test"] --> n11["Monitor"] + n11["Monitor"] --> n12["Rollback"] diff --git a/docs/figures/goalos_recursive_workflow_loop.svg b/docs/figures/goalos_recursive_workflow_loop.svg new file mode 100644 index 00000000..d7093353 --- /dev/null +++ b/docs/figures/goalos_recursive_workflow_loop.svg @@ -0,0 +1,44 @@ + +goalos recursive workflow loop +GoalOS proof-bounded architecture diagram. + + + +Goal + + +Workflow + + +Execution + + +Output + + +Evaluation + + +Proof + + +Diagnosis + + +Improvement Proposal + + +Approval + + +New Version + + +Re-Test + + +Monitor + + +Rollback + diff --git a/docs/figures/goalos_validation_architecture.mmd b/docs/figures/goalos_validation_architecture.mmd new file mode 100644 index 00000000..b5f15d02 --- /dev/null +++ b/docs/figures/goalos_validation_architecture.mmd @@ -0,0 +1,5 @@ +flowchart LR + n0["canonical pages"] --> n1["standalone proof pages"] + n1["standalone proof pages"] --> n2["app pages"] + n2["app pages"] --> n3["AEP packages"] + n3["AEP packages"] --> n4["paid artifacts blocked"] diff --git a/docs/figures/goalos_validation_architecture.svg b/docs/figures/goalos_validation_architecture.svg new file mode 100644 index 00000000..f54fe5fd --- /dev/null +++ b/docs/figures/goalos_validation_architecture.svg @@ -0,0 +1,20 @@ + +goalos validation architecture +GoalOS proof-bounded architecture diagram. + + + +canonical pages + + +standalone proof pages + + +app pages + + +AEP packages + + +paid artifacts blocked + diff --git a/docs/figures/goalos_web3_hybrid_architecture.mmd b/docs/figures/goalos_web3_hybrid_architecture.mmd new file mode 100644 index 00000000..10cfe647 --- /dev/null +++ b/docs/figures/goalos_web3_hybrid_architecture.mmd @@ -0,0 +1,4 @@ +flowchart LR + n0["Web2 UX"] --> n1["Web3 access/proof/credentials"] + n1["Web3 access/proof/credentials"] --> n2["off-chain legal/tax/support controls"] + n2["off-chain legal/tax/support controls"] --> n3["private evidence protected"] diff --git a/docs/figures/goalos_web3_hybrid_architecture.svg b/docs/figures/goalos_web3_hybrid_architecture.svg new file mode 100644 index 00000000..244f3f73 --- /dev/null +++ b/docs/figures/goalos_web3_hybrid_architecture.svg @@ -0,0 +1,17 @@ + +goalos web3 hybrid architecture +GoalOS proof-bounded architecture diagram. + + + +Web2 UX + + +Web3 access/proof/credentials + + +off-chain legal/tax/support controls + + +private evidence protected + diff --git a/docs/tables/goalos_aep_standards.csv b/docs/tables/goalos_aep_standards.csv new file mode 100644 index 00000000..2ce445f6 --- /dev/null +++ b/docs/tables/goalos_aep_standards.csv @@ -0,0 +1,9 @@ +Code,Title,Public status +AEP-001,GoalOS Proof-of-Evolution Constitution,Preserve public standard +AEP-002,Evidence Docket Standard,Preserve public standard +AEP-003,ProofPacket Schema,Preserve public standard +AEP-004,Selection Gate Standard,Preserve public standard +AEP-005,Tool Permission Standard,Preserve public standard +AEP-006,Rollback Receipt Standard,Preserve public standard +AEP-007,Public-Safe Proof Report Standard,Preserve public standard +AEP-008,Proof Room Standard,Preserve public standard diff --git a/docs/tables/goalos_asset_manifest.csv b/docs/tables/goalos_asset_manifest.csv new file mode 100644 index 00000000..64cf9f07 --- /dev/null +++ b/docs/tables/goalos_asset_manifest.csv @@ -0,0 +1,5 @@ +Asset,Purpose,Public status +badges/goalos.svg,README static badge,Public +badges/proof-gradient.svg,README static badge,Public +assets/quebecaisealv5.png,QUEBEC.AI seal asset,Public site asset +site/assets/brand-assets-v8.json,Release v8 brand manifest,Public site asset diff --git a/docs/tables/goalos_claim_boundaries.csv b/docs/tables/goalos_claim_boundaries.csv new file mode 100644 index 00000000..c9128144 --- /dev/null +++ b/docs/tables/goalos_claim_boundaries.csv @@ -0,0 +1,4 @@ +Claim class,Allowed public language,Blocked language +Workflow improvement,"Improves workflow instructions, prompts, memory, scorecards, proof records, evaluations, approvals, versions, monitoring, and rollback.",Claims that base model weights are modified. +Commercial outcome,Ready to sell as product/service packages; proof-needed status disclosed.,"Guaranteed ROI, revenue, productivity, or profit." +Professional advice,Operational summaries only; consult qualified professionals.,"Legal, financial, tax, investment, compliance, or AI safety certification advice." diff --git a/docs/tables/goalos_document_inventory.csv b/docs/tables/goalos_document_inventory.csv new file mode 100644 index 00000000..b50d6afe --- /dev/null +++ b/docs/tables/goalos_document_inventory.csv @@ -0,0 +1,20 @@ +Path,Purpose,Status +docs/GOALOS_COMMERCIALIZATION_STATUS.md,GoalOS operational documentation,Current +docs/GOALOS_PRODUCT_LADDER.md,GoalOS operational documentation,Current +docs/GOALOS_READY_TO_SELL_STATUS.md,GoalOS operational documentation,Current +docs/GOALOS_PROOF_CARD_001_PLAN.md,GoalOS operational documentation,Current +docs/GOALOS_RECURSIVE_WORKFLOW_OS.md,GoalOS operational documentation,Current +docs/GOALOS_CLOUD_MVP_0_2.md,GoalOS operational documentation,Current +docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md,GoalOS operational documentation,Current +docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md,GoalOS operational documentation,Current +docs/GOALOS_VALIDATION_HOTFIX_V14.md,GoalOS operational documentation,Current +docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md,GoalOS operational documentation,Current +docs/GOALOS_PAID_ARTIFACT_POLICY.md,GoalOS operational documentation,Current +docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md,GoalOS operational documentation,Current +docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md,GoalOS operational documentation,Current +docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md,GoalOS operational documentation,Current +docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md,GoalOS operational documentation,Current +docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md,GoalOS operational documentation,Current +docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md,GoalOS operational documentation,Current +docs/GOALOS_ENGINEERING_ROADMAP.md,GoalOS operational documentation,Current +docs/GOALOS_REPO_AUDIT.md,GoalOS operational documentation,Current diff --git a/docs/tables/goalos_figure_inventory.csv b/docs/tables/goalos_figure_inventory.csv new file mode 100644 index 00000000..2dc2cf1a --- /dev/null +++ b/docs/tables/goalos_figure_inventory.csv @@ -0,0 +1,10 @@ +Source,Export,Purpose,Status +docs/figures/goalos_recursive_workflow_loop.mmd,docs/figures/goalos_recursive_workflow_loop.svg,goalos recursive workflow loop,Current +docs/figures/goalos_product_ladder.mmd,docs/figures/goalos_product_ladder.svg,goalos product ladder,Current +docs/figures/goalos_proof_led_revenue_loop.mmd,docs/figures/goalos_proof_led_revenue_loop.svg,goalos proof led revenue loop,Current +docs/figures/goalos_public_site_architecture.mmd,docs/figures/goalos_public_site_architecture.svg,goalos public site architecture,Current +docs/figures/goalos_validation_architecture.mmd,docs/figures/goalos_validation_architecture.svg,goalos validation architecture,Current +docs/figures/goalos_cloud_mvp_architecture.mmd,docs/figures/goalos_cloud_mvp_architecture.svg,goalos cloud mvp architecture,Current +docs/figures/goalos_enterprise_safety_boundary.mmd,docs/figures/goalos_enterprise_safety_boundary.svg,goalos enterprise safety boundary,Current +docs/figures/goalos_web3_hybrid_architecture.mmd,docs/figures/goalos_web3_hybrid_architecture.svg,goalos web3 hybrid architecture,Current +docs/figures/goalos_proof_graph_concept.mmd,docs/figures/goalos_proof_graph_concept.svg,goalos proof graph concept,Current diff --git a/docs/tables/goalos_offer_status.csv b/docs/tables/goalos_offer_status.csv new file mode 100644 index 00000000..32a88ba2 --- /dev/null +++ b/docs/tables/goalos_offer_status.csv @@ -0,0 +1,7 @@ +Offer,Status,Proof status,Public CTA +GoalOS AI Efficiency Sprint Kit v1.4,Ready to sell as instant-access digital educational workflow product.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop +GoalOS RSI Lite v1.6,Ready to sell; can also be included as an AGI Club member benefit.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop +GoalOS Proof Room Lite / Department Pack v2.0,Ready to sell as premium self-serve department pack.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop +GoalOS RSI Sprint Workshop v7.0,Ready as gated founding workshop / Proof Card 001 engine.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop +GoalOS Proof Room Implementation Sprint v2.0,Ready as gated implementation offer.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop +GoalOS Enterprise RSI Pilot v2.0,Ready as gated enterprise pilot offer.,First public proof still needed; Proof Card 001 next.,https://www.quebecartificialintelligence.com/shop diff --git a/docs/tables/goalos_paid_file_policy.csv b/docs/tables/goalos_paid_file_policy.csv new file mode 100644 index 00000000..5beb3a88 --- /dev/null +++ b/docs/tables/goalos_paid_file_policy.csv @@ -0,0 +1,5 @@ +Rule,Public status,Notes +standards/AEP-###/complete-package.zip,Allowed,Narrow public AEP package allowlist. +Paid buyer ZIPs,Blocked,Sell through QUEBEC.AI shop only. +Workshop/delivery/implementation/enterprise bundles,Blocked,Private buyer or delivery materials. +Commercialization/professional firm packs,Blocked unless explicitly reviewed as public,Do not expose via GitHub Pages. diff --git a/docs/tables/goalos_product_ladder.csv b/docs/tables/goalos_product_ladder.csv new file mode 100644 index 00000000..e4423d98 --- /dev/null +++ b/docs/tables/goalos_product_ladder.csv @@ -0,0 +1,7 @@ +Layer,Price,Offer,Version,Outcome EN,Outcome FR,Status,Public URL +Self-serve,$49,GoalOS AI Efficiency Sprint Kit,v1.4,Build one reusable AI workflow.,Construisez un flux IA réutilisable.,Ready to sell as instant-access digital educational workflow product.,https://www.quebecartificialintelligence.com/shop +Self-serve,$199,GoalOS RSI Lite,v1.6,Build one self-improving AI workflow.,Construisez un flux IA auto-améliorant.,Ready to sell; can also be included as an AGI Club member benefit.,https://www.quebecartificialintelligence.com/shop +Self-serve / department,$997,GoalOS Proof Room Lite / Department Pack,v2.0,Set up a lightweight department Proof Room.,Mettez en place une Salle de preuve légère pour un département.,Ready to sell as premium self-serve department pack.,https://www.quebecartificialintelligence.com/shop +Gated workshop,"$2,500+",GoalOS RSI Sprint Workshop,v7.0,Build the first self-improving workflow live.,Construisez le premier flux auto-améliorant en direct.,Ready as gated founding workshop / Proof Card 001 engine.,https://www.quebecartificialintelligence.com/shop +Gated implementation,"$9,500+",GoalOS Proof Room Implementation Sprint,v2.0,Department RSI in 30 days.,RSI départemental en 30 jours.,Ready as gated implementation offer.,https://www.quebecartificialintelligence.com/shop +Gated enterprise,"$49,000+",GoalOS Enterprise RSI Pilot,v2.0,Pilot the Recursive Workflow OS.,Pilotez le Recursive Workflow OS.,Ready as gated enterprise pilot offer.,https://www.quebecartificialintelligence.com/shop diff --git a/docs/tables/goalos_professional_firm_packages.csv b/docs/tables/goalos_professional_firm_packages.csv new file mode 100644 index 00000000..ebbb26d0 --- /dev/null +++ b/docs/tables/goalos_professional_firm_packages.csv @@ -0,0 +1,14 @@ +Package area,Public summary status +Tax / Accounting / CFO,Existence may be summarized; private pack not public +Privacy / Data Protection,Existence may be summarized; private pack not public +Security / SOC 2 / Trust Center,Existence may be summarized; private pack not public +IP / Trademark / Licensing,Existence may be summarized; private pack not public +UX / CRO / Buyer Journey,Existence may be summarized; private pack not public +Enterprise Sales / GTM,Existence may be summarized; private pack not public +RevOps / Analytics,Existence may be summarized; private pack not public +Brand / Design System,Existence may be summarized; private pack not public +Growth Marketing,Existence may be summarized; private pack not public +Accessibility / Bilingual Localization,Existence may be summarized; private pack not public +Insurance / Commercial Risk,Existence may be summarized; private pack not public +Enterprise Procurement / Trust Center,Existence may be summarized; private pack not public +Independent Proof Audit / Evaluation,Existence may be summarized; private pack not public diff --git a/docs/tables/goalos_proof_card_001_fields.csv b/docs/tables/goalos_proof_card_001_fields.csv new file mode 100644 index 00000000..6023859c --- /dev/null +++ b/docs/tables/goalos_proof_card_001_fields.csv @@ -0,0 +1,16 @@ +Field,Description +proof card ID,GoalOS-PC-001 +workflow name,Customer Support Reply Workflow +workflow owner,Named owner for approval +input class,Customer support refund/access request +v1.0 workflow summary,Polite but missed refund/access classification +first run output summary,Helpful but under-classified policy risk +scorecard,"Safety, clarity, completeness, reuse" +diagnosis,Add policy classification and human-review flag +v1.1 change,Improved instructions and routing +version diff,Human-readable v1.0 to v1.1 delta +proof note,Public-safe evidence summary +claims avoided,No ROI/compliance/autonomy/model modification claims +public-safe status,Ready after buyer approval +buyer approval status,Required before publication +next upsell path,"Workshop, implementation sprint, enterprise pilot" diff --git a/docs/tables/goalos_public_site_pages.csv b/docs/tables/goalos_public_site_pages.csv new file mode 100644 index 00000000..dba8570e --- /dev/null +++ b/docs/tables/goalos_public_site_pages.csv @@ -0,0 +1,5 @@ +Page class,Requirement,Examples +canonical_page,Exactly one canonical GoalOS shell and footer.,"site/index.html, product pages" +standalone_proof_page,"Standalone marker, title, description, visible /proof-gradient/ escape.",proof microsites +app_page,May use app shell; no marketing shell required.,site/app/goalos-cloud-mvp/ +aep_standard_package,Only standards/AEP-###/complete-package.zip allowed.,standards/AEP-001/complete-package.zip diff --git a/docs/tables/goalos_validation_rules.csv b/docs/tables/goalos_validation_rules.csv new file mode 100644 index 00000000..7e58fef7 --- /dev/null +++ b/docs/tables/goalos_validation_rules.csv @@ -0,0 +1,5 @@ +Rule,Current status,Command +Paid-file guard,Required,python scripts/check_no_paid_artifacts.py +Public site validation v14,Required,python scripts/validate_goalos_public_site.py +Docs/tables/figures validation,Required,python scripts/validate_docs_tables_figures.py +Catalog contradiction check,Required,python scripts/validate_goalos_catalog.py diff --git a/docs/tables/goalos_workflow_actions.csv b/docs/tables/goalos_workflow_actions.csv new file mode 100644 index 00000000..a5c60ac4 --- /dev/null +++ b/docs/tables/goalos_workflow_actions.csv @@ -0,0 +1,6 @@ +Workflow,Status,Purpose +"Validate GoalOS Docs, Tables, Figures",Current,"Validate docs, CSVs, figure sources, README sections, and internal links." +Check No Paid Artifacts,Current,Block paid/private artifacts from public deploy roots. +Validate GoalOS Catalog,Current,Ensure README/docs/tables/site references do not contradict catalog. +GoalOS Validation Hotfix v14 Microsite Compatibility,Current,Classified public-site validation. +v12 / v13 validation workflows,Obsolete,Documented as obsolete; do not use as current. diff --git a/repository_manifest.json b/repository_manifest.json index ca6fad0d..cbb2ca4e 100644 --- a/repository_manifest.json +++ b/repository_manifest.json @@ -1,468 +1,3098 @@ { - "repository": "MontrealAI/proof-gradient", - "target_site": "https://montrealai.github.io/proof-gradient/", - "package_version": "v3.0", - "generated_at": "2026-05-27T00:51:22Z", + "generated": "2026-06-08", + "branch": "feature/goalos-docs-readme-figures-tables-badges-release", "files": [ - { - "path": ".editorconfig", - "bytes": 139, - "sha256": "0236baaa876eef2fbe3d4a9b01aac87d148b925fac3f58e1bc0cc9819ed88dab" - }, - { - "path": ".gitattributes", - "bytes": 90, - "sha256": "1e3bbde0c8ea6e92fd74c35ad9d694a02351eeae385e97cb96ea2e9a1b213911" - }, - { - "path": ".github/ISSUE_TEMPLATE/bug_report.md", - "bytes": 239, - "sha256": "80c8e0a934125e05840b140e783b8983126b771a25579e47f5e8c8520a95db95" - }, - { - "path": ".github/ISSUE_TEMPLATE/feature_request.md", - "bytes": 360, - "sha256": "4059b431d2d4ff52eab4a301bf27da2115ab29cf3e4c614babad9ef7c6d759ef" - }, - { - "path": ".github/workflows/pages.yml", - "bytes": 1223, - "sha256": "eb1cb538a02ef4b42830215e1d993bae40a2b1a3da2588aabe7ccf05d62e8b93" - }, - { - "path": ".github/workflows/tests.yml", - "bytes": 575, - "sha256": "ae630562927feb0ad87e282720b20a9fcfea676fc3e32041e62c5556de6fdf59" - }, - { - "path": ".gitignore", - "bytes": 100, - "sha256": "1afe3851dbecaf5b1b347b0083465d1bee77fc85d17107cc5d98c0fb6d2dea43" - }, - { - "path": ".nojekyll", - "bytes": 0, - "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" - }, - { - "path": "404.html", - "bytes": 436, - "sha256": "79a85c9a93346fecac3d51c2fa75fbed25155f3274e3d51fa308c5b2582baf2b" - }, - { - "path": "CONTRIBUTING.md", - "bytes": 621, - "sha256": "85684f5a8db4325a1158056fe934618933a62b7cccd891b557fd096bb9b0e173" - }, - { - "path": "COPY_IF_NEEDED_pages_workflow.yml.txt", - "bytes": 1223, - "sha256": "eb1cb538a02ef4b42830215e1d993bae40a2b1a3da2588aabe7ccf05d62e8b93" - }, - { - "path": "COPY_PASTE_GITHUB_ACTIONS/pages.yml", - "bytes": 1223, - "sha256": "eb1cb538a02ef4b42830215e1d993bae40a2b1a3da2588aabe7ccf05d62e8b93" - }, - { - "path": "COPY_PASTE_GITHUB_ACTIONS/tests.yml", - "bytes": 575, - "sha256": "ae630562927feb0ad87e282720b20a9fcfea676fc3e32041e62c5556de6fdf59" - }, - { - "path": "Dockerfile", - "bytes": 143, - "sha256": "c1ca4772e4dd7cfc046fc6932e9b30fbd7f0febb8f06e4d66470fa33d9b7698d" - }, - { - "path": "GITHUB_UPLOAD_GUIDE.md", - "bytes": 4035, - "sha256": "17c8a8750c1fad7bbb964be4d4963cf7faccc9d50741e4eb4e18e01ed5dd836c" - }, - { - "path": "GITHUB_WEB_UPLOAD_CHECKLIST.md", - "bytes": 733, - "sha256": "8c5f624347fb66a6f195a11dc2b37e63ace593f544c2fe33174003c90e431227" - }, - { - "path": "LICENSE", - "bytes": 1083, - "sha256": "e764bf1bad9ea738ff1220b381710aa989188c1099d17761f01df4d0d3cbcc37" - }, - { - "path": "Makefile", - "bytes": 242, - "sha256": "822f661dcf18a19905b9b9330b8df66c84b4411b1f93ef49f6ccee6ca0a675ac" - }, - { - "path": "OPEN_ME_FIRST_GITHUB_WEB_SETUP.md", - "bytes": 3671, - "sha256": "c841baa2ac080b2e6baee44dbf38f6e23645e23779bdf5a5ee415d72e9ec27c7" - }, - { - "path": "PROOF_OF_WEALTH_ACCUMULATION.md", - "bytes": 892, - "sha256": "7bea5823ba17fc9b5c81b58bcb475ea09c2fd15ae837bda66b4e421dfb0ec053" - }, - { - "path": "QA_VERIFICATION.md", - "bytes": 1906, - "sha256": "adbbeb8cd8ddc8b011d52afb3ad89ef6d22523933cac8bc191c70dd3248de3a9" - }, - { - "path": "README.md", - "bytes": 3185, - "sha256": "0df5389b9ec2ef467debd9ea2f9432768946508ac46d5c116c8df006f94fe419" - }, - { - "path": "README_FIRST_GITHUB_WEB_USERS.md", - "bytes": 4164, - "sha256": "92aa94049522dae758c7c17064ed0bad4490b59b48c508ef8698d9c0cfd166b6" - }, - { - "path": "REPO_FILE_TREE.txt", - "bytes": 1992, - "sha256": "0df30455d48254430f46fe7414a921e5a7b7afdc1afcfd5eaed7355fb68e774a" - }, - { - "path": "ROADMAP.md", - "bytes": 877, - "sha256": "a86b5b205ac11178b6a838cb8ecc9942c133679d108c08523a366c7a39afbd0d" - }, - { - "path": "SECURITY.md", - "bytes": 585, - "sha256": "d63ba23b635738df41afbcaa9ef9e82032f1a7b51295ebb3fa097747a834e36c" - }, - { - "path": "START_HERE.html", - "bytes": 3190, - "sha256": "1dd5e88b808d1d638b0d5dbd57bca1b2a806d5e22afe5cc860c961f24aac1c49" - }, - { - "path": "app.js", - "bytes": 12409, - "sha256": "3bd58f921aad42e22c5b2c3a3800b0b8d2c82778aa94d4462fd81de4f98ede57" - }, - { - "path": "assets/skillos-mark.svg", - "bytes": 945, - "sha256": "930d2484c6e0d31ed8576e2859a2adef55326849264d3d714add12f71f5f64de" - }, - { - "path": "data/demo.json", - "bytes": 20371, - "sha256": "99ea8a5e771fc63eb86699fbecc963ffbf2c6939552afd0dc606b43e612a0ffe" - }, - { - "path": "data/wealth_proof.json", - "bytes": 63497, - "sha256": "19349abe6ea119e53a8facba369d421db730f5d8a61ccb3295dc7e1d8d36adad" - }, - { - "path": "docker-compose.yml", - "bytes": 111, - "sha256": "8e8542752a8db52997d105a86232e4f7f5aa63ce33cd4961c257055e90cdc3ef" - }, - { - "path": "docs/api_reference.md", - "bytes": 997, - "sha256": "747da70d78e393ad3ad2fd39cf8d2b63f3b092cfef4778481be53076eb458310" - }, - { - "path": "docs/architecture.md", - "bytes": 1421, - "sha256": "0bdce54f307b329555adc20eabb2e013b8e37fae4a6bd5aea6f026638d8b1071" - }, - { - "path": "docs/demo_walkthrough.md", - "bytes": 1351, - "sha256": "57d5b81552e6ad5ec1be84f920b85b1f0426f730f2a1302bae43bfbeb99ea3e5" - }, - { - "path": "docs/extending.md", - "bytes": 1041, - "sha256": "bb68831eff081fa3b9f6230d926c5f3da4d74038e8ad4fa6ddc9c4ecd79c4789" - }, - { - "path": "docs/github_pages_troubleshooting.md", - "bytes": 1761, - "sha256": "a5d145baf7093578391db3198a4817593a5726b369b0de5100d093efc70e9df7" - }, - { - "path": "docs/github_web_launch_guide.md", - "bytes": 2587, - "sha256": "7116cac6884f2de9e65c4deee1d6bb2023f714f9be5767c382ca8e6ba25076a6" - }, - { - "path": "docs/governance.md", - "bytes": 908, - "sha256": "4d3e62d8fbff260bf63daef2224c5584dd8540b9397512f591fc2cc79da95cc6" - }, - { - "path": "docs/pages_site.md", - "bytes": 400, - "sha256": "ac459366bedf280037693042247c3e9264ef5a4d54c8460fa8ca6816f2f73004" - }, - { - "path": "docs/production_blueprint.md", - "bytes": 1771, - "sha256": "39366530e3adf2bc3c172079fe27e708c37b5ccc49a54964efd9b25f31d01787" - }, - { - "path": "docs/quickstart.md", - "bytes": 812, - "sha256": "5d9bff86b17173486106ef4dfb47d7a81c207fa9bcab0a278599af2b7194bc60" - }, - { - "path": "docs/repository_index.md", - "bytes": 1218, - "sha256": "243176722f8fa297509ed14e39475a5442e66a835a270b70b8164fc3fc02809c" - }, - { - "path": "docs/skill_lifecycle.md", - "bytes": 919, - "sha256": "456b1abd5f5ccf551da82576f70f6f239ec75e427c11cb13158f7c05ca427542" - }, - { - "path": "docs/type_ii_roadmap.md", - "bytes": 1761, - "sha256": "3cf0e3eaa67ea336a4856b7736719d119fc890702808106d444262f7c7fbccda" - }, - { - "path": "docs/vision.md", - "bytes": 894, - "sha256": "6cec7719e818f833bc7ebc1f80da77d9a6fac3b40b05eaeca1fad455f3f7fcb4" - }, - { - "path": "docs/wealth_accumulation_proof.md", - "bytes": 1869, - "sha256": "452f2eda564d2817ea7785fcef5f583599bd29ae72420af38d658af858f1925e" - }, - { - "path": "examples/curl_examples.sh", - "bytes": 609, - "sha256": "25f1fb25fe860c816e3ac726779a09ad88dd856e4c1f857729482a7acf018bff" - }, - { - "path": "examples/run_demo.py", - "bytes": 45, - "sha256": "57915d96cfc61a9ee455c5cbe2bcb3c22efcd58a3a023bbe4b9b5fb4cb6b854c" - }, - { - "path": "index.html", - "bytes": 8020, - "sha256": "28d34cb5d9af2969cbeff9ad6a960bd6641fe6e78b45363aed103b246d74ea69" - }, - { - "path": "pages-manifest.json", - "bytes": 403, - "sha256": "dadfe9d3e6abdaa02c0846b7ac9a047248dac9beff2ac1cb73af19d274f7ecc5" - }, - { - "path": "pyproject.toml", - "bytes": 576, - "sha256": "64d0bfe9615803d45923d3b206cbd3e73786a6312306777fa2093053876e2131" - }, - { - "path": "robots.txt", - "bytes": 81, - "sha256": "86cdbaef82120d1844e79b205eb9a0b7857e85c7046677f7ab6fcaa4b37ffa55" - }, - { - "path": "scripts/build_pages.py", - "bytes": 5762, - "sha256": "850f223ff58b144ec7dde3d7d26aa7b4edab91de749f6de7a615a6dd175636d2" - }, - { - "path": "scripts/prove_wealth_loop.py", - "bytes": 1304, - "sha256": "e940ae4e698568a8cadde55d4fcecb66b40dece7d6cf9a96ab1c71595ddf316e" - }, - { - "path": "scripts/qa_check.py", - "bytes": 1275, - "sha256": "c69ed7cd27019bfe3458addf12453b445c8fc3e665a57accec829b1396bcd184" - }, - { - "path": "scripts/reset_local.sh", - "bytes": 66, - "sha256": "2e58f7ee3079d9933c9143c1d65cbbe92eb40c4e6127228a47b95138f536b85f" - }, - { - "path": "scripts/run_local.sh", - "bytes": 93, - "sha256": "3731bc692bd2c678d686af17c778cfc2ad1f069fedd756aa4d16d592817cd21b" - }, - { - "path": "scripts/verify_pages.py", - "bytes": 1776, - "sha256": "288ab7d4b26c6a43b79047c7fbcd9ccfd78a1683685310c5c454d4650e7a5337" - }, - { - "path": "scripts/verify_repo.py", - "bytes": 3691, - "sha256": "04796fec6fbc9a2db0592ab3e8bbc468ead6467b3c72e024fbd781f514642ce9" - }, - { - "path": "site/404.html", - "bytes": 436, - "sha256": "79a85c9a93346fecac3d51c2fa75fbed25155f3274e3d51fa308c5b2582baf2b" - }, - { - "path": "site/app.js", - "bytes": 12409, - "sha256": "3bd58f921aad42e22c5b2c3a3800b0b8d2c82778aa94d4462fd81de4f98ede57" - }, - { - "path": "site/assets/skillos-mark.svg", - "bytes": 945, - "sha256": "930d2484c6e0d31ed8576e2859a2adef55326849264d3d714add12f71f5f64de" - }, - { - "path": "site/index.html", - "bytes": 8020, - "sha256": "28d34cb5d9af2969cbeff9ad6a960bd6641fe6e78b45363aed103b246d74ea69" - }, - { - "path": "site/manifest.webmanifest", - "bytes": 294, - "sha256": "e3d746f197138ddbf782d57bee78f62f2d451f3b1786955b125b702bdafb2633" - }, - { - "path": "site/robots.txt", - "bytes": 81, - "sha256": "86cdbaef82120d1844e79b205eb9a0b7857e85c7046677f7ab6fcaa4b37ffa55" - }, - { - "path": "site/sitemap.xml", - "bytes": 172, - "sha256": "3b2c73003bb2ba04b2868b884e1d4df06b6ca0afea415e66ca7eee9a4f1c2a23" - }, - { - "path": "site/styles.css", - "bytes": 11272, - "sha256": "e0b835435c28a8a0aa53771d86b716703fce6c8be04404561a984a2d33a0da2d" - }, - { - "path": "skillos/__init__.py", - "bytes": 69, - "sha256": "d2546db400e454b36b7203dfe2e6f5d8afe0e369fa5aa15dff7b3b423e483176" - }, - { - "path": "skillos/api.py", - "bytes": 5513, - "sha256": "33b241abd3d46537dac39f440c582556ef4c6564610f087fbe0590540666c3a4" - }, - { - "path": "skillos/cli.py", - "bytes": 10022, - "sha256": "c28bb429600a4eab8331c26b566583139584a3b2822b7cbab344980c8a1a2bdc" - }, - { - "path": "skillos/evals.py", - "bytes": 4163, - "sha256": "4f8b854abe8b409d9a968654ad33f2119d68aa9b6c5c32b1f6255f99ef364eeb" - }, - { - "path": "skillos/learning.py", - "bytes": 2441, - "sha256": "34ab705e4541fd4c1e0c8ab44c3f9882d429fb7fbc9624e354e2fe9e75fa0afc" - }, - { - "path": "skillos/models.py", - "bytes": 2021, - "sha256": "62d2db3ea1b593473a17775842f9e1544a9333594bf62859a440607008382f3c" - }, - { - "path": "skillos/permissions.py", - "bytes": 705, - "sha256": "08f13c6b9e54e7cfd89a1b3eabcfae3b75e5efcf8900808a0dc3d231972c0a2a" - }, - { - "path": "skillos/releases.py", - "bytes": 2193, - "sha256": "75e127506f6f6189d89ed8faaf1a919db5331122ea7f7f2487e05531e1457d38" - }, - { - "path": "skillos/runtime.py", - "bytes": 4831, - "sha256": "15e8df0d9d62a6685cc2755f9f14638c9df62a5b5829775e0eb893382fc0445c" - }, - { - "path": "skillos/seed.py", - "bytes": 3794, - "sha256": "cc601dd0ccb31718f8c29c80563305c03ea319b0b983c91699514d54b988ea59" - }, - { - "path": "skillos/storage.py", - "bytes": 14118, - "sha256": "4102979a054205183298cffb81e389813be16a1445e65403e69f3a6561969f66" - }, - { - "path": "skillos/trainer.py", - "bytes": 1671, - "sha256": "6a17a095a0634cd9ae34e6512a484e02c5058e8bc0098f592c1699c8ce05db31" - }, - { - "path": "skillos/wealth_proof.py", - "bytes": 21506, - "sha256": "b260cf5af9881c951d5610bafde5ba041fb6b7756ff6e973b89f6d554e9596d0" - }, - { - "path": "skills/invoice_reconciliation/v1/skill.md", - "bytes": 395, - "sha256": "f6d387cbd9cc794db9dd9ac260c1fddd76df7d70c3f4b300e124da3b06339f89" - }, - { - "path": "skills/research_summary/v1/skill.md", - "bytes": 325, - "sha256": "798a0f2381c46763891ed3724872e946098b4d109d038748fae8272aa4ccdbbc" - }, - { - "path": "skills/sales_followup_email/v1/skill.md", - "bytes": 390, - "sha256": "5b05f8488c8151b52c7005731d225ac5ae284107ee1b15c67f7ee4bb7c161a66" - }, - { - "path": "styles.css", - "bytes": 11272, - "sha256": "e0b835435c28a8a0aa53771d86b716703fce6c8be04404561a984a2d33a0da2d" - }, - { - "path": "tests/test_end_to_end.py", - "bytes": 1814, - "sha256": "1fbc807d20f44c07ed92818bce94eb44b88e2785daab35677fc546481fb30421" - }, - { - "path": "tests/test_pages_build.py", - "bytes": 1773, - "sha256": "f3c6e8c27e18fd851544896596ed96832a71fddf2f4ad78e7b51cd6cc7ac49e5" - }, - { - "path": "tests/test_storage.py", - "bytes": 657, - "sha256": "c04b86d3cdd9f63cc6dbaa5c0ba376a89234270a6603b9220e9303b9b5fdd8e9" - }, - { - "path": "tests/test_wealth_proof.py", - "bytes": 1822, - "sha256": "864564bee5bb051e7698f0bd37d653970a3b972684e8dbeae2e0f4faf1a9ce78" - }, - { - "path": "web/app.js", - "bytes": 3600, - "sha256": "1f924214911693ebc3326d812aa14757f60fb9f8f6ad80801d81f314ead75e56" - }, - { - "path": "web/index.html", - "bytes": 1904, - "sha256": "ea10d559eef42d48bd8c15ff1bc83c5e2fe2430e3093c8f4fcc22269ecfd9409" - }, - { - "path": "web/styles.css", - "bytes": 2509, - "sha256": "bdf8a32938cdc0ed9dd1e11d0c1e98e7289afd4cd8f6b05d91cdf789dcd00dd7" - } + ".editorconfig", + ".gitattributes", + ".github/ISSUE_TEMPLATE/bug_report.md", + ".github/ISSUE_TEMPLATE/feature_request.md", + ".github/workflows/_skillos-public-proof-command-center-refresh-reusable.yml", + ".github/workflows/_skillos-public-site-refresh-reusable.yml", + ".github/workflows/add-aep001-constitution-website-page.yml", + ".github/workflows/add-aep002-evidence-docket-standard-page.yml", + ".github/workflows/add-aep003-proofpacket-schema-page.yml", + ".github/workflows/add-aep004-selection-gate-standard-page.yml", + ".github/workflows/add-aep005-tool-permission-standard-page.yml", + ".github/workflows/add-aep006-rollback-receipt-standard-page.yml", + ".github/workflows/add-aep007-public-safe-proof-report-standard-page.yml", + ".github/workflows/add-aep008-proof-room-standard-page.yml", + ".github/workflows/add-checkout-recovery-workflow-example.yml", + ".github/workflows/add-department-ai-correction-rollback-workflow-example.yml", + ".github/workflows/add-department-ai-permission-map-workflow-example.yml", + ".github/workflows/add-department-monthly-proof-report-workflow-example.yml", + ".github/workflows/add-department-proof-room-lite-workflow-example.yml", + ".github/workflows/add-department-public-safe-case-study-workflow-example.yml", + ".github/workflows/add-department-weekly-proof-review-workflow-example.yml", + ".github/workflows/add-feedback-to-product-update-workflow-example.yml", + ".github/workflows/add-goalos-proof-room-implementation-sprint-v2-page.yml", + ".github/workflows/add-goalos-rsi-sprint-workshop-v2-page.yml", + ".github/workflows/add-idea-to-demand-engine-workflow-example.yml", + ".github/workflows/add-internal-approval-memo-workflow-example.yml", + ".github/workflows/add-lead-magnet-email-sequence-workflow-example.yml", + ".github/workflows/add-meeting-to-action-plan-workflow-example.yml", + ".github/workflows/add-monthly-workflow-vault-drop-example.yml", + ".github/workflows/add-offer-to-sales-page-workflow-example.yml", + ".github/workflows/add-order-bump-builder-workflow-example.yml", + ".github/workflows/add-partner-referral-kit-workflow-example.yml", + ".github/workflows/add-post-purchase-onboarding-workflow-example.yml", + ".github/workflows/add-proof-card-referral-loop-workflow-example.yml", + ".github/workflows/add-reusable-ai-workflow-example-page.yml", + ".github/workflows/add-support-faq-triage-workflow-example.yml", + ".github/workflows/add-team-pack-upsell-workflow-example.yml", + ".github/workflows/add-team-sprint-facilitator-workflow-example.yml", + ".github/workflows/add-weekly-growth-review-workflow-example.yml", + ".github/workflows/aep001-site-guardian.yml", + ".github/workflows/aep002-conformance-ci.yml", + ".github/workflows/aep002-official-release.yml", + ".github/workflows/aep003-official-release.yml", + ".github/workflows/aep003-proofpacket-conformance-ci.yml", + ".github/workflows/aep004-official-release.yml", + ".github/workflows/aep004-selection-gate-conformance-ci.yml", + ".github/workflows/aep005-official-release.yml", + ".github/workflows/aep005-tool-permission-conformance-ci.yml", + ".github/workflows/aep006-official-release.yml", + ".github/workflows/aep006-rollback-conformance-ci.yml", + ".github/workflows/aep007-official-release.yml", + ".github/workflows/aep007-public-safe-report-conformance-ci.yml", + ".github/workflows/aep008-official-release.yml", + ".github/workflows/aep008-proof-room-conformance-ci.yml", + ".github/workflows/autonomous-market-readiness.yml", + ".github/workflows/autonomous-rsi-adversarial-benchmark-foundry-proof.yml", + ".github/workflows/autonomous-rsi-ai-first-blockchain-capital-machine-proof.yml", + ".github/workflows/autonomous-rsi-ai-first-governance-capital-engine-proof.yml", + ".github/workflows/autonomous-rsi-blockchain-protocol-capital-frontier-proof.yml", + ".github/workflows/autonomous-rsi-capability-assurance-case-graph-proof.yml", + ".github/workflows/autonomous-rsi-capability-economy-clearinghouse-proof.yml", + ".github/workflows/autonomous-rsi-capability-governance-twin-proof.yml", + ".github/workflows/autonomous-rsi-capability-liquidity-engine-proof.yml", + ".github/workflows/autonomous-rsi-capability-sla-reliability-mesh-proof.yml", + ".github/workflows/autonomous-rsi-capability-treasury-flywheel-proof.yml", + ".github/workflows/autonomous-rsi-causal-attribution-engine-proof.yml", + ".github/workflows/autonomous-rsi-continual-capability-frontier-proof.yml", + ".github/workflows/autonomous-rsi-corporate-capability-frontier-proof.yml", + ".github/workflows/autonomous-rsi-corporate-strategy-frontier-proof.yml", + ".github/workflows/autonomous-rsi-cross-domain-capability-transfer-atlas-proof.yml", + ".github/workflows/autonomous-rsi-enterprise-capability-foundry-proof.yml", + ".github/workflows/autonomous-rsi-enterprise-eureka-factory-proof.yml", + ".github/workflows/autonomous-rsi-enterprise-superorganization-proof.yml", + ".github/workflows/autonomous-rsi-fork-resistant-capability-network-proof.yml", + ".github/workflows/autonomous-rsi-full-stack-capability-lifecycle-proof.yml", + ".github/workflows/autonomous-rsi-governance-frontier-proof.yml", + ".github/workflows/autonomous-rsi-objective-integrity-firewall-proof.yml", + ".github/workflows/autonomous-rsi-open-replication-mesh-proof.yml", + ".github/workflows/autonomous-rsi-proof-forge-meta-coordination-proof.yml", + ".github/workflows/autonomous-rsi-skill-compounding-moat-proof.yml", + ".github/workflows/autonomous-rsi-skill-provenance-ledger-proof.yml", + ".github/workflows/build-goalos-cloud-mvp-v0-2.yml", + ".github/workflows/build-goalos-cloud-mvp.yml", + ".github/workflows/check-no-paid-artifacts.yml", + ".github/workflows/deploy-proof-gradient-pages.yml", + ".github/workflows/enterprise-ops-proof.yml", + ".github/workflows/fix-aep-public-directory-indexes.yml", + ".github/workflows/goalos-product-site-ci.yml", + ".github/workflows/goalos-public-site-release-v12.yml", + ".github/workflows/goalos-public-site-release-v3-1.yml", + ".github/workflows/goalos-public-site-release-v3-2.yml", + ".github/workflows/goalos-public-site-release-v3.yml", + ".github/workflows/goalos-public-site-release-v4-bilingual.yml", + ".github/workflows/goalos-public-site-release-v5-quebec-ai-seal.yml", + ".github/workflows/goalos-public-site-release-v6-quebec-ai-seal-icon.yml", + ".github/workflows/goalos-public-site-release-v7-quebec-ai-brand-assets.yml", + ".github/workflows/goalos-public-site-release-v8-intelligent-assets.yml", + ".github/workflows/goalos-validation-hotfix-v12.yml", + ".github/workflows/goalos-validation-hotfix-v13-no-pytest.yml", + ".github/workflows/goalos-validation-hotfix-v14-microsite-compat.yml", + ".github/workflows/pages.yml", + ".github/workflows/proof-011-the-proof-loop.yml", + ".github/workflows/proof-gradient-autonomous-foundation.yml", + ".github/workflows/proof-gradient-autonomous-retarget.yml", + ".github/workflows/proof-gradient-production-bootstrap.yml", + ".github/workflows/proof-gradient-production-ci.yml", + ".github/workflows/proof-gradient-safety-check.yml", + ".github/workflows/refresh-complete-goalos-public-site.yml", + ".github/workflows/refresh-complete-goalos-website.yml", + ".github/workflows/refresh-full-proof-gradient-site.yml", + ".github/workflows/refresh-goalos-product-ladder-website.yml", + ".github/workflows/refresh-proof-gradient-full-site.yml", + ".github/workflows/refresh-skillos-command-center.yml", + ".github/workflows/refresh-unified-aep-standards-site.yml", + ".github/workflows/repair-and-refresh-unified-goalos-website.yml", + ".github/workflows/repair-goalos-canonical-shell-v2.yml", + ".github/workflows/rsi-adversarial-multi-agent-market-command-center-proof.yml", + ".github/workflows/rsi-capability-command-center-proof.yml", + ".github/workflows/rsi-capability-command-center-v17-proof.yml", + ".github/workflows/rsi-capital-to-capability-engine-proof.yml", + ".github/workflows/rsi-cloudops-proof.yml", + ".github/workflows/rsi-corporate-os-proof.yml", + ".github/workflows/rsi-cyberdefense-proof.yml", + ".github/workflows/rsi-marketplace-flywheel-proof.yml", + ".github/workflows/rsi-metamaterials-discovery-proof.yml", + ".github/workflows/rsi-revenue-experiment-factory-proof.yml", + ".github/workflows/rsi-silicon-verification-proof.yml", + ".github/workflows/rsi-unit-economics-proof.yml", + ".github/workflows/safe-public-copy-check.yml", + ".github/workflows/shadow-pilot-proof.yml", + ".github/workflows/skillos-command-center-autopublisher-v2.yml", + ".github/workflows/skillos-command-center-autopublisher-v3.yml", + ".github/workflows/skillos-command-center-autopublisher-v4.yml", + ".github/workflows/skillos-flagship-governance-twin-launch.yml", + ".github/workflows/skillos-public-proof-command-center-refresh.yml", + ".github/workflows/skillos-public-site-refresh.yml", + ".github/workflows/skillos-run-all-public-proofs.yml", + ".github/workflows/skillos-sovereign-command-center-v5.yml", + ".github/workflows/tests.yml", + ".github/workflows/validate-docs-tables-figures.yml", + ".github/workflows/validate-goalos-catalog.yml", + ".github/workflows/validate-goalos-public-site-v12.yml", + ".github/workflows/validate-goalos-public-site-v3-1.yml", + ".github/workflows/validate-goalos-public-site-v3-2.yml", + ".github/workflows/validate-goalos-public-site-v4.yml", + ".github/workflows/validate-goalos-public-site-v5.yml", + ".github/workflows/validate-goalos-public-site-v6.yml", + ".github/workflows/validate-goalos-public-site-v7.yml", + ".github/workflows/validate-goalos-public-site-v8.yml", + ".github/workflows/validate-goalos-public-site.yml", + ".gitignore", + ".nojekyll", + "404.html", + "CONTRIBUTING.md", + "COPY_IF_NEEDED_pages_workflow.yml.txt", + "COPY_PASTE_GITHUB_ACTIONS/pages.yml", + "COPY_PASTE_GITHUB_ACTIONS/tests.yml", + "Dockerfile", + "GITHUB_UPLOAD_GUIDE.md", + "GITHUB_WEB_UPLOAD_CHECKLIST.md", + "LICENSE", + "Makefile", + "OPEN_ME_FIRST_GITHUB_WEB_SETUP.md", + "PROOF_OF_WEALTH_ACCUMULATION.md", + "QA_VERIFICATION.md", + "README.md", + "README_FIRST_GITHUB_WEB_USERS.md", + "REPO_FILE_TREE.txt", + "ROADMAP.md", + "SECURITY.md", + "START_HERE.html", + "alembic.ini", + "app.js", + "assets/QUEBEC_AI_Strategic_Engagements_Hero_HQ_2560x1280.jpg", + "assets/Quebec_AI_v0.png", + "assets/Quebec_AI_v1.png", + "assets/Quebec_AI_v13.png", + "assets/Quebec_AI_v14.png", + "assets/Quebec_AI_v15.png", + "assets/Quebec_AI_v16.png", + "assets/Quebec_AI_v18.png", + "assets/Quebec_AI_v2.png", + "assets/Quebec_AI_v20.png", + "assets/Quebec_AI_v21.png", + "assets/Quebec_AI_v25.png", + "assets/Quebec_AI_v27.png", + "assets/Quebec_AI_v28.png", + "assets/Quebec_AI_v31.png", + "assets/Quebec_AI_v32.png", + "assets/Quebec_AI_v36.png", + "assets/Quebec_AI_v37.png", + "assets/Quebec_AI_v38.png", + "assets/Quebec_AI_v39.png", + "assets/Quebec_AI_v4.png", + "assets/Quebec_AI_v40.png", + "assets/Quebec_AI_v41.png", + "assets/Quebec_AI_v43.png", + "assets/Quebec_AI_v46.png", + "assets/Quebec_AI_v47.png", + "assets/Quebec_AI_v48.png", + "assets/Quebec_AI_v49.png", + "assets/Quebec_AI_v5.png", + "assets/Quebec_AI_v51.png", + "assets/Quebec_AI_v53.png", + "assets/Quebec_AI_v55.png", + "assets/Quebec_AI_v59.png", + "assets/Quebec_AI_v60.png", + "assets/Quebec_AI_v63.png", + "assets/Quebec_AI_v64_1.png", + "assets/Quebec_AI_v66.png", + "assets/Quebec_AI_v67.png", + "assets/Quebec_AI_v68_LinkedIn.png", + "assets/Quebec_AI_v70.png", + "assets/SovereignManifestov0.png", + "assets/SovereignManifestov1.png", + "assets/SovereignManifestov2.png", + "assets/montreal_ai_v2.png", + "assets/montreal_ai_v4.png", + "assets/montreal_ai_youtube_banner_v2.png", + "assets/montreal_ai_youtube_banner_v3.png", + "assets/montreal_ai_youtube_profile_v0.png", + "assets/quebecaisealv5.png", + "assets/skillos-mark.svg", + "assets/vincentboucher_v0.png", + "assets/vincentboucher_v1.png", + "assets/vincentboucher_v2.png", + "assets/vincentboucher_v3.png", + "assets/vincentboucher_youtube_banner_v6.png", + "badges/aep-standards.svg", + "badges/autonomous_market_readiness.svg", + "badges/cloud-mvp-0-2.svg", + "badges/command-center-fresh.svg", + "badges/command-center-sovereign-v5-1.svg", + "badges/enterprise_ops_market_proof.svg", + "badges/flagship-capability-governance-twin.svg", + "badges/goalos.svg", + "badges/no-model-self-modification.svg", + "badges/no-paid-artifacts.svg", + "badges/proof-bounded.svg", + "badges/proof-gradient.svg", + "badges/quebec-ai.svg", + "badges/rsi-adversarial-benchmark-foundry-proof.svg", + "badges/rsi-ai-first-blockchain-capital-machine-proof.svg", + "badges/rsi-ai-first-governance-capital-engine-proof.svg", + "badges/rsi-blockchain-protocol-capital-frontier-proof.svg", + "badges/rsi-capability-assurance-case-graph-proof.svg", + "badges/rsi-capability-economy-clearinghouse-proof.svg", + "badges/rsi-capability-governance-twin-proof.svg", + "badges/rsi-capability-liquidity-engine-proof.svg", + "badges/rsi-capability-sla-reliability-mesh-proof.svg", + "badges/rsi-capability-treasury-flywheel-proof.svg", + "badges/rsi-causal-attribution-engine-proof.svg", + "badges/rsi-continual-capability-frontier-proof.svg", + "badges/rsi-corporate-strategy-frontier-proof.svg", + "badges/rsi-cross-domain-capability-transfer-atlas-proof.svg", + "badges/rsi-fork-resistant-capability-network-proof.svg", + "badges/rsi-full-stack-capability-lifecycle-proof.svg", + "badges/rsi-governance-frontier-proof.svg", + "badges/rsi-objective-integrity-firewall-proof.svg", + "badges/rsi-open-replication-mesh-proof.svg", + "badges/rsi-proof-forge-meta-coordination-proof.svg", + "badges/rsi-skill-compounding-moat-proof.svg", + "badges/rsi-skill-provenance-ledger-proof.svg", + "badges/rsi_adversarial_multi_agent_market_command_center_proof.svg", + "badges/rsi_capability_command_center_proof.svg", + "badges/rsi_capability_command_center_v17_proof.svg", + "badges/rsi_capital_to_capability_engine_proof.svg", + "badges/rsi_cloudops_market_proof.svg", + "badges/rsi_corporate_capability_frontier_proof.svg", + "badges/rsi_corporate_os_market_proof.svg", + "badges/rsi_cyberdefense_market_proof.svg", + "badges/rsi_enterprise_capability_foundry_proof.svg", + "badges/rsi_enterprise_eureka_factory_proof.svg", + "badges/rsi_enterprise_superorganization_proof.svg", + "badges/rsi_marketplace_flywheel_market_proof.svg", + "badges/rsi_metamaterials_discovery_market_proof.svg", + "badges/rsi_revenue_experiment_factory_market_proof.svg", + "badges/rsi_silicon_verification_market_proof.svg", + "badges/rsi_unit_economics_market_proof.svg", + "badges/shadow_pilot_proof.svg", + "badges/validation-v14.svg", + "data/autonomous_market_benchmark.json", + "data/autonomous_market_readiness.json", + "data/demo.json", + "data/enterprise_ops_benchmark.json", + "data/enterprise_ops_market_proof.json", + "data/flagship-capability-governance-twin-manifest.json", + "data/goalos_products.json", + "data/proof_gradient_foundation.json", + "data/proofs/001-sovereign-swarm.json", + "data/proofs/002-evolution-tournament.json", + "data/proofs/003-recursive-evolution-ladder.json", + "data/proofs/004-corporate-rsi-dominion.json", + "data/proofs/005-enterprise-rsi-superorganism.json", + "data/proofs/006-sovereign-enterprise-constellation.json", + "data/proofs/007-sovereign-enterprise-proof-economy.json", + "data/proofs/008-sovereign-domain-atlas.json", + "data/proofs/009-sovereign-kardashev-capital-engine.json", + "data/proofs/010-proof-carrying-intelligence.json", + "data/proofs/011-the-proof-loop.json", + "data/proofs/proof-index.json", + "data/public_site_status.json", + "data/rsi-adversarial-benchmark-foundry-proof.json", + "data/rsi-ai-first-blockchain-capital-machine-proof.json", + "data/rsi-ai-first-governance-capital-engine-proof.json", + "data/rsi-blockchain-protocol-capital-frontier-proof.json", + "data/rsi-capability-assurance-case-graph-proof.json", + "data/rsi-capability-economy-clearinghouse-proof.json", + "data/rsi-capability-governance-twin-proof.json", + "data/rsi-capability-liquidity-engine-proof.json", + "data/rsi-capability-sla-reliability-mesh-proof.json", + "data/rsi-capability-treasury-flywheel-proof.json", + "data/rsi-causal-attribution-engine-proof.json", + "data/rsi-continual-capability-frontier-proof.json", + "data/rsi-corporate-strategy-frontier-proof.json", + "data/rsi-cross-domain-capability-transfer-atlas-proof.json", + "data/rsi-fork-resistant-capability-network-proof.json", + "data/rsi-full-stack-capability-lifecycle-proof.json", + "data/rsi-governance-frontier-proof.json", + "data/rsi-objective-integrity-firewall-proof.json", + "data/rsi-open-replication-mesh-proof.json", + "data/rsi-proof-forge-meta-coordination-proof.json", + "data/rsi-skill-compounding-moat-proof.json", + "data/rsi-skill-provenance-ledger-proof.json", + "data/rsi_adversarial_multi_agent_market_command_center_benchmark.json", + "data/rsi_adversarial_multi_agent_market_command_center_proof.json", + "data/rsi_capability_command_center_benchmark.json", + "data/rsi_capability_command_center_preregistered_gates.json", + "data/rsi_capability_command_center_proof.json", + "data/rsi_capability_command_center_v17_agent_trace_sample.json", + "data/rsi_capability_command_center_v17_benchmark.json", + "data/rsi_capability_command_center_v17_preregistered_gates.json", + "data/rsi_capability_command_center_v17_proof.json", + "data/rsi_capital_to_capability_engine_benchmark.json", + "data/rsi_capital_to_capability_engine_proof.json", + "data/rsi_cloudops_benchmark.json", + "data/rsi_cloudops_market_proof.json", + "data/rsi_corporate_capability_frontier_proof.json", + "data/rsi_corporate_os_benchmark.json", + "data/rsi_corporate_os_market_proof.json", + "data/rsi_cyberdefense_benchmark.json", + "data/rsi_cyberdefense_market_proof.json", + "data/rsi_enterprise_capability_foundry_proof.json", + "data/rsi_enterprise_eureka_factory_proof.json", + "data/rsi_enterprise_superorganization_proof.json", + "data/rsi_marketplace_flywheel_benchmark.json", + "data/rsi_marketplace_flywheel_market_proof.json", + "data/rsi_metamaterials_discovery_benchmark.json", + "data/rsi_metamaterials_discovery_market_proof.json", + "data/rsi_revenue_experiment_factory_benchmark.json", + "data/rsi_revenue_experiment_factory_market_proof.json", + "data/rsi_silicon_verification_benchmark.json", + "data/rsi_silicon_verification_market_proof.json", + "data/rsi_unit_economics_benchmark.json", + "data/rsi_unit_economics_market_proof.json", + "data/shadow_pilot_benchmark.json", + "data/shadow_pilot_proof.json", + "data/wealth_proof.json", + "docker-compose.yml", + "docs/AUTONOMOUS_ENTERPRISE_OPS_MARKET_PROOF.md", + "docs/AUTONOMOUS_MARKET_READINESS_PROOF.md", + "docs/AUTONOMOUS_RSI_ADVERSARIAL_BENCHMARK_FOUNDRY_PROOF.md", + "docs/AUTONOMOUS_RSI_ADVERSARIAL_MULTI_AGENT_MARKET_COMMAND_CENTER_PROOF.md", + "docs/AUTONOMOUS_RSI_AI_FIRST_BLOCKCHAIN_CAPITAL_MACHINE_PROOF.md", + "docs/AUTONOMOUS_RSI_AI_FIRST_GOVERNANCE_CAPITAL_ENGINE_PROOF.md", + "docs/AUTONOMOUS_RSI_BLOCKCHAIN_PROTOCOL_CAPITAL_FRONTIER_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_ASSURANCE_CASE_GRAPH_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_COMMAND_CENTER_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_COMMAND_CENTER_V17_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_ECONOMY_CLEARINGHOUSE_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_GOVERNANCE_TWIN_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_LIQUIDITY_ENGINE_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_SLA_RELIABILITY_MESH_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPABILITY_TREASURY_FLYWHEEL_PROOF.md", + "docs/AUTONOMOUS_RSI_CAPITAL_TO_CAPABILITY_ENGINE_PROOF.md", + "docs/AUTONOMOUS_RSI_CAUSAL_ATTRIBUTION_ENGINE_PROOF.md", + "docs/AUTONOMOUS_RSI_CLOUDOPS_MARKET_PROOF.md", + "docs/AUTONOMOUS_RSI_CONTINUAL_CAPABILITY_FRONTIER_PROOF.md", + "docs/AUTONOMOUS_RSI_CORPORATE_CAPABILITY_FRONTIER_PROOF.md", + "docs/AUTONOMOUS_RSI_CORPORATE_OS_MARKET_PROOF.md", + "docs/AUTONOMOUS_RSI_CORPORATE_STRATEGY_FRONTIER_PROOF.md", + "docs/AUTONOMOUS_RSI_CROSS_DOMAIN_CAPABILITY_TRANSFER_ATLAS_PROOF.md", + "docs/AUTONOMOUS_RSI_CYBERDEFENSE_MARKET_PROOF.md", + "docs/AUTONOMOUS_RSI_ENTERPRISE_CAPABILITY_FOUNDRY_PROOF.md", + "docs/AUTONOMOUS_RSI_ENTERPRISE_EUREKA_FACTORY_PROOF.md", + "docs/AUTONOMOUS_RSI_ENTERPRISE_SUPERORGANIZATION_PROOF.md", + "docs/AUTONOMOUS_RSI_FORK_RESISTANT_CAPABILITY_NETWORK_PROOF.md", + "docs/AUTONOMOUS_RSI_FULL_STACK_CAPABILITY_LIFECYCLE_PROOF.md", + "docs/AUTONOMOUS_RSI_GOVERNANCE_FRONTIER_PROOF.md", + "docs/AUTONOMOUS_RSI_MARKETPLACE_FLYWHEEL_PROOF.md", + "docs/AUTONOMOUS_RSI_METAMATERIALS_DISCOVERY_MARKET_PROOF.md", + "docs/AUTONOMOUS_RSI_OBJECTIVE_INTEGRITY_FIREWALL_PROOF.md", + "docs/AUTONOMOUS_RSI_OPEN_REPLICATION_MESH_PROOF.md", + "docs/AUTONOMOUS_RSI_PROOF_FORGE_META_COORDINATION_PROOF.md", + "docs/AUTONOMOUS_RSI_REVENUE_EXPERIMENT_FACTORY_PROOF.md", + "docs/AUTONOMOUS_RSI_SILICON_VERIFICATION_MARKET_PROOF.md", + "docs/AUTONOMOUS_RSI_SKILL_COMPOUNDING_MOAT_PROOF.md", + "docs/AUTONOMOUS_RSI_SKILL_PROVENANCE_LEDGER_PROOF.md", + "docs/AUTONOMOUS_RSI_UNIT_ECONOMICS_MARKET_PROOF.md", + "docs/AUTONOMOUS_SHADOW_PILOT_PROOF.md", + "docs/FLAGSHIP_CAPABILITY_GOVERNANCE_TWIN_LAUNCH.md", + "docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md", + "docs/GOALOS_CLOUD_MVP_0_2.md", + "docs/GOALOS_COMMERCIALIZATION_STATUS.md", + "docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md", + "docs/GOALOS_DOCUMENTATION_INDEX.md", + "docs/GOALOS_ENGINEERING_ROADMAP.md", + "docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md", + "docs/GOALOS_PAID_ARTIFACT_POLICY.md", + "docs/GOALOS_PRODUCT_LADDER.md", + "docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md", + "docs/GOALOS_PROOF_CARD_001_PLAN.md", + "docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V3.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V4_BILINGUAL.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V5_QUEBEC_AI_SEAL.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V6_QUEBEC_AI_SEAL_ICON.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V7_BRAND_ASSETS.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V8_INTELLIGENT_ASSETS.md", + "docs/GOALOS_PUBLIC_SITE_REPAIR.md", + "docs/GOALOS_PUBLIC_SITE_VALIDATION.md", + "docs/GOALOS_READY_TO_SELL_STATUS.md", + "docs/GOALOS_RECURSIVE_WORKFLOW_OS.md", + "docs/GOALOS_REPO_AUDIT.md", + "docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md", + "docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md", + "docs/GOALOS_VALIDATION_HOTFIX_V14.md", + "docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md", + "docs/PUBLIC_COPY_AUTOMATION.md", + "docs/SHADOW_PILOT_VISIBILITY_AUTOMATION.md", + "docs/SKILLOS_COMMAND_CENTER_ROOT_FIX_V5_RUNBOOK.md", + "docs/SKILLOS_FLAGSHIP_CAPABILITY_GOVERNANCE_TWIN_LAUNCH_PACK.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER_V2.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_AUTOPUBLISHER_V3.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_ROOT_AUTHORITY_V7.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_V2.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_V3.md", + "docs/SKILLOS_PUBLIC_COMMAND_CENTER_V4_ROOT_FIX.md", + "docs/SKILLOS_PUBLIC_SITE_AUTOMATION.md", + "docs/SKILLOS_PUBLIC_SITE_STATUS.md", + "docs/SKILLOS_SOVEREIGN_COMMAND_CENTER_V5.md", + "docs/api.md", + "docs/api_reference.md", + "docs/architecture.md", + "docs/artifact_vault.md", + "docs/autonomous_market_readiness.md", + "docs/civilization_scale_thesis.md", + "docs/cli.md", + "docs/commerce/goalos_public_layer_operations.md", + "docs/commerce/paid_product_security.md", + "docs/commerce/product_ladder.md", + "docs/commerce/squarespace_stripe_delivery_guide.md", + "docs/corporate_rsi_dominion.md", + "docs/data/goalos_catalog.yml", + "docs/demo_walkthrough.md", + "docs/deployment.md", + "docs/enterprise_ops_market_proof.md", + "docs/enterprise_rsi_superorganism.md", + "docs/extending.md", + "docs/figures/goalos_cloud_mvp_architecture.mmd", + "docs/figures/goalos_cloud_mvp_architecture.svg", + "docs/figures/goalos_enterprise_safety_boundary.mmd", + "docs/figures/goalos_enterprise_safety_boundary.svg", + "docs/figures/goalos_product_ladder.mmd", + "docs/figures/goalos_product_ladder.svg", + "docs/figures/goalos_proof_graph_concept.mmd", + "docs/figures/goalos_proof_graph_concept.svg", + "docs/figures/goalos_proof_led_revenue_loop.mmd", + "docs/figures/goalos_proof_led_revenue_loop.svg", + "docs/figures/goalos_public_site_architecture.mmd", + "docs/figures/goalos_public_site_architecture.svg", + "docs/figures/goalos_recursive_workflow_loop.mmd", + "docs/figures/goalos_recursive_workflow_loop.svg", + "docs/figures/goalos_validation_architecture.mmd", + "docs/figures/goalos_validation_architecture.svg", + "docs/figures/goalos_web3_hybrid_architecture.mmd", + "docs/figures/goalos_web3_hybrid_architecture.svg", + "docs/final_acceptance_report.md", + "docs/final_acceptance_report_corporate_rsi.md", + "docs/final_acceptance_report_enterprise_rsi.md", + "docs/final_acceptance_report_proof_carrying_intelligence.md", + "docs/final_acceptance_report_sovereign_domain_atlas.md", + "docs/final_acceptance_report_sovereign_enterprise.md", + "docs/final_acceptance_report_sovereign_kardashev_capital_engine.md", + "docs/final_acceptance_report_sovereign_proof_economy.md", + "docs/github_pages_troubleshooting.md", + "docs/github_web_launch_guide.md", + "docs/governance.md", + "docs/legacy_skillos_readme_snapshot.md", + "docs/migration_from_skillos_v2.md", + "docs/pages_site.md", + "docs/production_blueprint.md", + "docs/proof_archive.md", + "docs/proof_carrying_intelligence.md", + "docs/proof_gradient_migration_report.md", + "docs/proof_gradient_platform.md", + "docs/proof_ledger.md", + "docs/quickstart.md", + "docs/recursive_evolution_ladder.md", + "docs/repository_index.md", + "docs/rsi-adversarial-benchmark-foundry-proof.md", + "docs/rsi-ai-first-blockchain-capital-machine-proof.md", + "docs/rsi-ai-first-governance-capital-engine-proof.md", + "docs/rsi-blockchain-protocol-capital-frontier-proof.md", + "docs/rsi-capability-assurance-case-graph-proof.md", + "docs/rsi-capability-economy-clearinghouse-proof.md", + "docs/rsi-capability-governance-twin-proof.md", + "docs/rsi-capability-liquidity-engine-proof.md", + "docs/rsi-capability-sla-reliability-mesh-proof.md", + "docs/rsi-capability-treasury-flywheel-proof.md", + "docs/rsi-causal-attribution-engine-proof.md", + "docs/rsi-continual-capability-frontier-proof.md", + "docs/rsi-corporate-strategy-frontier-proof.md", + "docs/rsi-cross-domain-capability-transfer-atlas-proof.md", + "docs/rsi-fork-resistant-capability-network-proof.md", + "docs/rsi-full-stack-capability-lifecycle-proof.md", + "docs/rsi-governance-frontier-proof.md", + "docs/rsi-objective-integrity-firewall-proof.md", + "docs/rsi-open-replication-mesh-proof.md", + "docs/rsi-proof-forge-meta-coordination-proof.md", + "docs/rsi-skill-compounding-moat-proof.md", + "docs/rsi-skill-provenance-ledger-proof.md", + "docs/rsi_adversarial_multi_agent_market_command_center_proof.md", + "docs/rsi_capability_command_center_proof.md", + "docs/rsi_capability_command_center_v17_proof.md", + "docs/rsi_capital_to_capability_engine_proof.md", + "docs/rsi_cloudops_market_proof.md", + "docs/rsi_corporate_capability_frontier_proof.md", + "docs/rsi_corporate_os_market_proof.md", + "docs/rsi_cyberdefense_market_proof.md", + "docs/rsi_enterprise_capability_foundry_proof.md", + "docs/rsi_enterprise_eureka_factory_proof.md", + "docs/rsi_enterprise_superorganization_proof.md", + "docs/rsi_marketplace_flywheel_market_proof.md", + "docs/rsi_metamaterials_discovery_market_proof.md", + "docs/rsi_revenue_experiment_factory_market_proof.md", + "docs/rsi_silicon_verification_market_proof.md", + "docs/rsi_unit_economics_market_proof.md", + "docs/run_fabric.md", + "docs/security.md", + "docs/selection_gate.md", + "docs/shadow_pilot_proof.md", + "docs/skill_lifecycle.md", + "docs/sovereign_domain_atlas.md", + "docs/sovereign_enterprise_constellation.md", + "docs/sovereign_enterprise_proof_economy.md", + "docs/sovereign_kardashev_capital_engine.md", + "docs/sovereign_swarm.md", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.docx", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.md", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.tex", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_Final.pdf", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_QA_Report.txt", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_SHA256SUMS.txt", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_docx_contact_sheet.jpg", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_evidence_docket_template.md", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.md", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.pdf", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_pdf_contact_sheet.jpg", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_protocol_schema.json", + "docs/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_references.bib", + "docs/standards/AEP-001/README.md", + "docs/standards/AEP-001/figures/cover.png", + "docs/standards/AEP-001/figures/fig01_constitution_stack.png", + "docs/standards/AEP-001/figures/fig02_loop.png", + "docs/standards/AEP-001/figures/fig03_boundary.png", + "docs/standards/AEP-001/figures/fig04_object_graph.png", + "docs/standards/AEP-001/figures/fig05_contract_suite.png", + "docs/standards/AEP-001/figures/fig06_selection_gate.png", + "docs/standards/AEP-001/figures/fig07_evidence_docket.png", + "docs/standards/AEP-001/figures/fig08_evolution_ledger.png", + "docs/standards/AEP-001/figures/fig09_deployment.png", + "docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.docx", + "docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.md", + "docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.pdf", + "docs/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.tex", + "docs/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.docx", + "docs/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.pdf", + "docs/standards/AEP-002/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-002/QA_REPORT.md", + "docs/standards/AEP-002/README.md", + "docs/standards/AEP-002/RELEASE_NOTES_AEP002_v1.1.md", + "docs/standards/AEP-002/SHA256SUMS.txt", + "docs/standards/AEP-002/conformance/aep002_conformance_checklist.md", + "docs/standards/AEP-002/examples/basic_evidence_docket.json", + "docs/standards/AEP-002/examples/generated_public_safe_report.md", + "docs/standards/AEP-002/examples/institutional_conformance_score.json", + "docs/standards/AEP-002/examples/institutional_evidence_docket.json", + "docs/standards/AEP-002/examples/public_safe_report.json", + "docs/standards/AEP-002/figures/fig01_aep002_docket_stack.png", + "docs/standards/AEP-002/figures/fig02_docket_lifecycle.png", + "docs/standards/AEP-002/figures/fig03_evidence_boundary.png", + "docs/standards/AEP-002/schemas/evidence_docket.schema.json", + "docs/standards/AEP-002/schemas/proof_packet.schema.json", + "docs/standards/AEP-002/schemas/public_safe_report.schema.json", + "docs/standards/AEP-002/schemas/selection_certificate.schema.json", + "docs/standards/AEP-002/templates/claim_boundary_template.md", + "docs/standards/AEP-002/templates/evidence_docket_template.md", + "docs/standards/AEP-002/templates/public_safe_report_template.md", + "docs/standards/AEP-002/tools/generate_public_safe_report.py", + "docs/standards/AEP-002/tools/score_conformance.py", + "docs/standards/AEP-002/tools/validate_evidence_docket.py", + "docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.docx", + "docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.md", + "docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.pdf", + "docs/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.tex", + "docs/standards/AEP-003/CODEX_IMPLEMENTATION_PROMPT_AEP003.md", + "docs/standards/AEP-003/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-003/QA_REPORT.md", + "docs/standards/AEP-003/README.md", + "docs/standards/AEP-003/RELEASE_NOTES_AEP003_v1.1.md", + "docs/standards/AEP-003/SHA256SUMS.txt", + "docs/standards/AEP-003/conformance/aep003_conformance_checklist.md", + "docs/standards/AEP-003/examples/sample_proof_packet_01_commit.json", + "docs/standards/AEP-003/examples/sample_proof_packet_02_trace_event.json", + "docs/standards/AEP-003/examples/sample_proof_packet_03_tool_call.json", + "docs/standards/AEP-003/examples/sample_proof_packet_04_policy_decision.json", + "docs/standards/AEP-003/examples/sample_proof_packet_05_approval.json", + "docs/standards/AEP-003/examples/sample_proof_packet_06_eval_result.json", + "docs/standards/AEP-003/examples/sample_proof_packet_07_evidence_ref.json", + "docs/standards/AEP-003/examples/sample_proof_packet_08_risk_event.json", + "docs/standards/AEP-003/examples/sample_proof_packet_09_cost_event.json", + "docs/standards/AEP-003/examples/sample_proof_packet_10_selection_decision.json", + "docs/standards/AEP-003/examples/sample_proof_packet_11_rollout_event.json", + "docs/standards/AEP-003/examples/sample_proof_packet_12_rollback_event.json", + "docs/standards/AEP-003/examples/sample_proof_packet_13_public_report.json", + "docs/standards/AEP-003/examples/sample_proof_packet_bundle.json", + "docs/standards/AEP-003/figures/fig01_proofpacket_anatomy.png", + "docs/standards/AEP-003/figures/fig02_proofpacket_hash_chain.png", + "docs/standards/AEP-003/figures/fig03_proofpacket_lifecycle.png", + "docs/standards/AEP-003/implementation/AEP-003_Implementation_Guide.md", + "docs/standards/AEP-003/implementation/AEP-003_Interop_Profile.md", + "docs/standards/AEP-003/implementation/AEP-003_Security_Privacy_Guide.md", + "docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.docx", + "docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.md", + "docs/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.pdf", + "docs/standards/AEP-003/schemas/proof_packet.schema.json", + "docs/standards/AEP-003/schemas/proof_packet_attestation.schema.json", + "docs/standards/AEP-003/schemas/proof_packet_bundle.schema.json", + "docs/standards/AEP-003/schemas/proof_packet_canonicalization_profile.json", + "docs/standards/AEP-003/templates/proof_packet_template.json", + "docs/standards/AEP-003/templates/proof_packet_template.md", + "docs/standards/AEP-003/tools/proof_packet_bundle.py", + "docs/standards/AEP-003/tools/proof_packet_conformance_score.py", + "docs/standards/AEP-003/tools/proof_packet_hash.py", + "docs/standards/AEP-003/tools/validate_proof_packet.py", + "docs/standards/AEP-003/tools/verify_packet_chain.py", + "docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.docx", + "docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.md", + "docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.pdf", + "docs/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.tex", + "docs/standards/AEP-004/CODEX_IMPLEMENTATION_PROMPT_AEP004.md", + "docs/standards/AEP-004/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-004/QA_REPORT.md", + "docs/standards/AEP-004/README.md", + "docs/standards/AEP-004/RELEASE_NOTES_AEP004_v1.1.md", + "docs/standards/AEP-004/SHA256SUMS.txt", + "docs/standards/AEP-004/conformance/aep004_conformance_checklist.md", + "docs/standards/AEP-004/examples/sample_gate_decision_input_promote.json", + "docs/standards/AEP-004/examples/sample_gate_decision_input_reject.json", + "docs/standards/AEP-004/examples/sample_gate_policy.json", + "docs/standards/AEP-004/examples/sample_selection_candidate.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_approve_canary.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_archive.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_needs_more_evidence.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_promote.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_reject.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_revise.json", + "docs/standards/AEP-004/examples/sample_selection_certificate_rollback.json", + "docs/standards/AEP-004/figures/fig01_selection_gate_flow.png", + "docs/standards/AEP-004/figures/fig02_selection_certificate_model.png", + "docs/standards/AEP-004/figures/fig03_selection_gate_risk_matrix.png", + "docs/standards/AEP-004/figures/fig04_selection_gate_lifecycle.png", + "docs/standards/AEP-004/implementation/AEP-004_Implementation_Guide.md", + "docs/standards/AEP-004/implementation/AEP-004_Policy_Profiles.md", + "docs/standards/AEP-004/implementation/AEP-004_Security_Privacy_Guide.md", + "docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.docx", + "docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.md", + "docs/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.pdf", + "docs/standards/AEP-004/schemas/canary_plan.schema.json", + "docs/standards/AEP-004/schemas/challenge_record.schema.json", + "docs/standards/AEP-004/schemas/evaluation_requirement.schema.json", + "docs/standards/AEP-004/schemas/evidence_requirement.schema.json", + "docs/standards/AEP-004/schemas/gate_policy.schema.json", + "docs/standards/AEP-004/schemas/monitoring_plan.schema.json", + "docs/standards/AEP-004/schemas/rollback_plan.schema.json", + "docs/standards/AEP-004/schemas/selection_candidate.schema.json", + "docs/standards/AEP-004/schemas/selection_certificate.schema.json", + "docs/standards/AEP-004/templates/selection_candidate_template.json", + "docs/standards/AEP-004/templates/selection_certificate_template.json", + "docs/standards/AEP-004/templates/selection_gate_review_template.md", + "docs/standards/AEP-004/tools/selection_certificate_hash.py", + "docs/standards/AEP-004/tools/selection_gate_audit.py", + "docs/standards/AEP-004/tools/selection_gate_conformance_score.py", + "docs/standards/AEP-004/tools/selection_gate_decide.py", + "docs/standards/AEP-004/tools/validate_selection_certificate.py", + "docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.docx", + "docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.md", + "docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.pdf", + "docs/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.tex", + "docs/standards/AEP-005/CODEX_IMPLEMENTATION_PROMPT_AEP005.md", + "docs/standards/AEP-005/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-005/QA_REPORT.md", + "docs/standards/AEP-005/README.md", + "docs/standards/AEP-005/RELEASE_NOTES_AEP005_v1.1.md", + "docs/standards/AEP-005/SHA256SUMS.txt", + "docs/standards/AEP-005/conformance/aep005_conformance_checklist.md", + "docs/standards/AEP-005/examples/sample_approval_receipt.json", + "docs/standards/AEP-005/examples/sample_break_glass_request.json", + "docs/standards/AEP-005/examples/sample_compensation_receipt.json", + "docs/standards/AEP-005/examples/sample_data_boundary_rule.json", + "docs/standards/AEP-005/examples/sample_permission_lease.json", + "docs/standards/AEP-005/examples/sample_rate_limit_policy.json", + "docs/standards/AEP-005/examples/sample_revocation_receipt.json", + "docs/standards/AEP-005/examples/sample_tool_call_receipt.json", + "docs/standards/AEP-005/examples/sample_tool_manifest.json", + "docs/standards/AEP-005/examples/sample_tool_manifest_email_send.json", + "docs/standards/AEP-005/examples/sample_tool_permission_decision_allow_with_lease.json", + "docs/standards/AEP-005/examples/sample_tool_permission_decision_approval_required.json", + "docs/standards/AEP-005/examples/sample_tool_permission_decision_deny.json", + "docs/standards/AEP-005/examples/sample_tool_permission_policy.json", + "docs/standards/AEP-005/examples/sample_tool_request_read.json", + "docs/standards/AEP-005/examples/sample_tool_request_send.json", + "docs/standards/AEP-005/figures/fig01_tool_permission_flow_v11.png", + "docs/standards/AEP-005/figures/fig02_tool_permission_lattice_v11.png", + "docs/standards/AEP-005/figures/fig03_tool_gateway_boundary_model_v11.png", + "docs/standards/AEP-005/figures/fig04_lease_revocation_compensation_v11.png", + "docs/standards/AEP-005/implementation/AEP-005_Implementation_Guide.md", + "docs/standards/AEP-005/implementation/AEP-005_Least_Privilege_Profile.md", + "docs/standards/AEP-005/implementation/AEP-005_Security_Privacy_Guide.md", + "docs/standards/AEP-005/implementation/AEP-005_Tool_Gateway_Profile.md", + "docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.docx", + "docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.md", + "docs/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.pdf", + "docs/standards/AEP-005/schemas/approval_receipt.schema.json", + "docs/standards/AEP-005/schemas/break_glass_request.schema.json", + "docs/standards/AEP-005/schemas/compensation_receipt.schema.json", + "docs/standards/AEP-005/schemas/data_boundary_rule.schema.json", + "docs/standards/AEP-005/schemas/permission_lease.schema.json", + "docs/standards/AEP-005/schemas/rate_limit_policy.schema.json", + "docs/standards/AEP-005/schemas/revocation_receipt.schema.json", + "docs/standards/AEP-005/schemas/tool_call_receipt.schema.json", + "docs/standards/AEP-005/schemas/tool_manifest.schema.json", + "docs/standards/AEP-005/schemas/tool_permission_decision.schema.json", + "docs/standards/AEP-005/schemas/tool_permission_policy.schema.json", + "docs/standards/AEP-005/schemas/tool_request.schema.json", + "docs/standards/AEP-005/templates/compensation_receipt_template.json", + "docs/standards/AEP-005/templates/permission_lease_template.json", + "docs/standards/AEP-005/templates/revocation_receipt_template.json", + "docs/standards/AEP-005/templates/tool_call_receipt_template.json", + "docs/standards/AEP-005/templates/tool_manifest_template.json", + "docs/standards/AEP-005/templates/tool_permission_decision_template.json", + "docs/standards/AEP-005/templates/tool_permission_policy_template.json", + "docs/standards/AEP-005/templates/tool_permission_review_template.md", + "docs/standards/AEP-005/templates/tool_request_template.json", + "docs/standards/AEP-005/tools/authorize_tool_request.py", + "docs/standards/AEP-005/tools/tool_gateway_audit.py", + "docs/standards/AEP-005/tools/tool_permission_conformance_score.py", + "docs/standards/AEP-005/tools/tool_permission_hash.py", + "docs/standards/AEP-005/tools/validate_permission_lease.py", + "docs/standards/AEP-005/tools/validate_tool_permission.py", + "docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.docx", + "docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.md", + "docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.pdf", + "docs/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.tex", + "docs/standards/AEP-006/CODEX_IMPLEMENTATION_PROMPT_AEP006.md", + "docs/standards/AEP-006/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-006/QA_REPORT.md", + "docs/standards/AEP-006/README.md", + "docs/standards/AEP-006/RELEASE_NOTES_AEP006_v1.1.md", + "docs/standards/AEP-006/SHA256SUMS.txt", + "docs/standards/AEP-006/conformance/aep006_conformance_checklist.md", + "docs/standards/AEP-006/examples/sample_compensation_receipt.json", + "docs/standards/AEP-006/examples/sample_post_rollback_review.json", + "docs/standards/AEP-006/examples/sample_recovery_bundle.json", + "docs/standards/AEP-006/examples/sample_rollback_authorization.json", + "docs/standards/AEP-006/examples/sample_rollback_plan.json", + "docs/standards/AEP-006/examples/sample_rollback_receipt_failed_compensation_required.json", + "docs/standards/AEP-006/examples/sample_rollback_receipt_partial.json", + "docs/standards/AEP-006/examples/sample_rollback_receipt_success.json", + "docs/standards/AEP-006/examples/sample_rollback_request.json", + "docs/standards/AEP-006/examples/sample_rollback_trigger.json", + "docs/standards/AEP-006/examples/sample_rollback_verification.json", + "docs/standards/AEP-006/figures/fig01_rollback_receipt_loop.png", + "docs/standards/AEP-006/figures/fig02_rollback_receipt_object_model.png", + "docs/standards/AEP-006/figures/fig03_rollback_decision_matrix.png", + "docs/standards/AEP-006/figures/fig04_recovery_timeline.png", + "docs/standards/AEP-006/implementation/AEP-006_Implementation_Guide.md", + "docs/standards/AEP-006/implementation/AEP-006_Recovery_Runbook.md", + "docs/standards/AEP-006/implementation/AEP-006_Security_Privacy_Guide.md", + "docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.docx", + "docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.md", + "docs/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.pdf", + "docs/standards/AEP-006/schemas/compensation_receipt.schema.json", + "docs/standards/AEP-006/schemas/post_rollback_review.schema.json", + "docs/standards/AEP-006/schemas/recovery_bundle.schema.json", + "docs/standards/AEP-006/schemas/rollback_authorization.schema.json", + "docs/standards/AEP-006/schemas/rollback_plan.schema.json", + "docs/standards/AEP-006/schemas/rollback_receipt.schema.json", + "docs/standards/AEP-006/schemas/rollback_request.schema.json", + "docs/standards/AEP-006/schemas/rollback_trigger.schema.json", + "docs/standards/AEP-006/schemas/rollback_verification.schema.json", + "docs/standards/AEP-006/templates/compensation_receipt_template.json", + "docs/standards/AEP-006/templates/post_rollback_review_template.json", + "docs/standards/AEP-006/templates/rollback_authorization_template.json", + "docs/standards/AEP-006/templates/rollback_plan_template.json", + "docs/standards/AEP-006/templates/rollback_receipt_template.json", + "docs/standards/AEP-006/templates/rollback_request_template.json", + "docs/standards/AEP-006/templates/rollback_review_template.md", + "docs/standards/AEP-006/templates/rollback_trigger_template.json", + "docs/standards/AEP-006/templates/rollback_verification_template.json", + "docs/standards/AEP-006/tools/rollback_audit.py", + "docs/standards/AEP-006/tools/rollback_conformance_score.py", + "docs/standards/AEP-006/tools/rollback_decide.py", + "docs/standards/AEP-006/tools/rollback_receipt_hash.py", + "docs/standards/AEP-006/tools/validate_rollback_receipt.py", + "docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.docx", + "docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.md", + "docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.pdf", + "docs/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.tex", + "docs/standards/AEP-007/CODEX_IMPLEMENTATION_PROMPT_AEP007.md", + "docs/standards/AEP-007/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-007/QA_REPORT.md", + "docs/standards/AEP-007/README.md", + "docs/standards/AEP-007/RELEASE_NOTES_AEP007_v1.2.md", + "docs/standards/AEP-007/SHA256SUMS.txt", + "docs/standards/AEP-007/conformance/aep007_conformance_checklist.md", + "docs/standards/AEP-007/examples/sample_challenge_record.json", + "docs/standards/AEP-007/examples/sample_correction_notice.json", + "docs/standards/AEP-007/examples/sample_public_claim_matrix.json", + "docs/standards/AEP-007/examples/sample_public_safe_report.json", + "docs/standards/AEP-007/examples/sample_publication_approval.json", + "docs/standards/AEP-007/examples/sample_redaction_ledger.json", + "docs/standards/AEP-007/examples/sample_report_bundle.json", + "docs/standards/AEP-007/examples/sample_retraction_notice.json", + "docs/standards/AEP-007/figures/fig01_public_safe_report_flow.png", + "docs/standards/AEP-007/figures/fig02_disclosure_classification.png", + "docs/standards/AEP-007/figures/fig03_public_report_lifecycle.png", + "docs/standards/AEP-007/figures/fig04_claim_boundary_ladder.png", + "docs/standards/AEP-007/implementation/AEP-007_Correction_Retraction_Playbook.md", + "docs/standards/AEP-007/implementation/AEP-007_Implementation_Guide.md", + "docs/standards/AEP-007/implementation/AEP-007_Proof_Card_Profile.md", + "docs/standards/AEP-007/implementation/AEP-007_Publication_Workflow.md", + "docs/standards/AEP-007/implementation/AEP-007_Redaction_Guide.md", + "docs/standards/AEP-007/implementation/AEP-007_Security_Privacy_Guide.md", + "docs/standards/AEP-007/implementation/AEP-007_Website_Publishing_Profile.md", + "docs/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.docx", + "docs/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.pdf", + "docs/standards/AEP-007/schemas/challenge_record.schema.json", + "docs/standards/AEP-007/schemas/claim_boundary.schema.json", + "docs/standards/AEP-007/schemas/correction_notice.schema.json", + "docs/standards/AEP-007/schemas/correction_policy.schema.json", + "docs/standards/AEP-007/schemas/disclosure_review.schema.json", + "docs/standards/AEP-007/schemas/evaluation_summary.schema.json", + "docs/standards/AEP-007/schemas/evidence_summary.schema.json", + "docs/standards/AEP-007/schemas/public_artifact_link.schema.json", + "docs/standards/AEP-007/schemas/public_claim_matrix.schema.json", + "docs/standards/AEP-007/schemas/public_safe_report.schema.json", + "docs/standards/AEP-007/schemas/publication_approval.schema.json", + "docs/standards/AEP-007/schemas/redaction_decision.schema.json", + "docs/standards/AEP-007/schemas/redaction_ledger.schema.json", + "docs/standards/AEP-007/schemas/report_bundle.schema.json", + "docs/standards/AEP-007/schemas/retraction_notice.schema.json", + "docs/standards/AEP-007/schemas/risk_limitation_summary.schema.json", + "docs/standards/AEP-007/schemas/source_evidence_reference.schema.json", + "docs/standards/AEP-007/templates/challenge_record_template.json", + "docs/standards/AEP-007/templates/claim_boundary_template.json", + "docs/standards/AEP-007/templates/claim_boundary_template.md", + "docs/standards/AEP-007/templates/correction_notice_template.json", + "docs/standards/AEP-007/templates/disclosure_review_template.json", + "docs/standards/AEP-007/templates/public_safe_report_template.json", + "docs/standards/AEP-007/templates/public_safe_report_template.md", + "docs/standards/AEP-007/templates/publication_approval_template.json", + "docs/standards/AEP-007/templates/redaction_review_template.md", + "docs/standards/AEP-007/tools/build_report_bundle.py", + "docs/standards/AEP-007/tools/generate_public_safe_report.py", + "docs/standards/AEP-007/tools/public_safe_conformance_score.py", + "docs/standards/AEP-007/tools/public_safe_redaction_audit.py", + "docs/standards/AEP-007/tools/public_safe_report_hash.py", + "docs/standards/AEP-007/tools/validate_public_safe_report.py", + "docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.docx", + "docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.md", + "docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.pdf", + "docs/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.tex", + "docs/standards/AEP-008/CODEX_IMPLEMENTATION_PROMPT_AEP008.md", + "docs/standards/AEP-008/INSTALL_IN_PROOF_GRADIENT.md", + "docs/standards/AEP-008/QA_REPORT.md", + "docs/standards/AEP-008/README.md", + "docs/standards/AEP-008/RELEASE_NOTES_AEP008_v1.1.md", + "docs/standards/AEP-008/SHA256SUMS.txt", + "docs/standards/AEP-008/conformance/aep008_conformance_checklist.md", + "docs/standards/AEP-008/examples/sample_decision_log.json", + "docs/standards/AEP-008/examples/sample_evidence_boundary.json", + "docs/standards/AEP-008/examples/sample_proof_room_charter.json", + "docs/standards/AEP-008/examples/sample_proof_room_manifest.json", + "docs/standards/AEP-008/examples/sample_role_assignment_registry.json", + "docs/standards/AEP-008/examples/sample_room_audit_export.json", + "docs/standards/AEP-008/examples/sample_room_closure_report.json", + "docs/standards/AEP-008/examples/sample_work_item_registry.json", + "docs/standards/AEP-008/figures/fig01_proof_room_architecture_v11.png", + "docs/standards/AEP-008/figures/fig02_proof_room_lifecycle_v11.png", + "docs/standards/AEP-008/figures/fig03_proof_room_roles_boundaries_v11.png", + "docs/standards/AEP-008/figures/fig04_proof_room_operating_modes_v11.png", + "docs/standards/AEP-008/implementation/AEP-008_Implementation_Guide.md", + "docs/standards/AEP-008/implementation/AEP-008_Proof_Room_Runbook.md", + "docs/standards/AEP-008/implementation/AEP-008_Role_Separation_Profile.md", + "docs/standards/AEP-008/implementation/AEP-008_Security_Privacy_Guide.md", + "docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.docx", + "docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.md", + "docs/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.pdf", + "docs/standards/AEP-008/schemas/decision_log.schema.json", + "docs/standards/AEP-008/schemas/evidence_boundary.schema.json", + "docs/standards/AEP-008/schemas/proof_room_charter.schema.json", + "docs/standards/AEP-008/schemas/proof_room_manifest.schema.json", + "docs/standards/AEP-008/schemas/role_assignment_registry.schema.json", + "docs/standards/AEP-008/schemas/room_audit_export.schema.json", + "docs/standards/AEP-008/schemas/room_closure_report.schema.json", + "docs/standards/AEP-008/schemas/room_register.schema.json", + "docs/standards/AEP-008/schemas/room_session_record.schema.json", + "docs/standards/AEP-008/schemas/scope_boundary.schema.json", + "docs/standards/AEP-008/schemas/work_item_registry.schema.json", + "docs/standards/AEP-008/templates/decision_log_template.json", + "docs/standards/AEP-008/templates/evidence_boundary_template.json", + "docs/standards/AEP-008/templates/proof_room_charter_template.json", + "docs/standards/AEP-008/templates/proof_room_manifest_template.json", + "docs/standards/AEP-008/templates/proof_room_review_template.md", + "docs/standards/AEP-008/templates/role_assignment_registry_template.json", + "docs/standards/AEP-008/templates/room_audit_export_template.json", + "docs/standards/AEP-008/templates/room_closure_report_template.json", + "docs/standards/AEP-008/templates/work_item_registry_template.json", + "docs/standards/AEP-008/tools/generate_proof_room_index.py", + "docs/standards/AEP-008/tools/proof_room_audit.py", + "docs/standards/AEP-008/tools/proof_room_conformance_score.py", + "docs/standards/AEP-008/tools/proof_room_hash.py", + "docs/standards/AEP-008/tools/validate_proof_room_manifest.py", + "docs/tables/goalos_aep_standards.csv", + "docs/tables/goalos_asset_manifest.csv", + "docs/tables/goalos_claim_boundaries.csv", + "docs/tables/goalos_document_inventory.csv", + "docs/tables/goalos_figure_inventory.csv", + "docs/tables/goalos_offer_status.csv", + "docs/tables/goalos_paid_file_policy.csv", + "docs/tables/goalos_product_ladder.csv", + "docs/tables/goalos_professional_firm_packages.csv", + "docs/tables/goalos_proof_card_001_fields.csv", + "docs/tables/goalos_public_site_pages.csv", + "docs/tables/goalos_validation_rules.csv", + "docs/tables/goalos_workflow_actions.csv", + "docs/type_ii_roadmap.md", + "docs/vision.md", + "docs/wealth_accumulation_proof.md", + "examples/civilization_scale_coordination/job.json", + "examples/corporate_rsi_dominion/job.json", + "examples/curl_examples.sh", + "examples/customer_response_safety/job.json", + "examples/enterprise_rsi_superorganism/job.json", + "examples/proof_carrying_intelligence/job.json", + "examples/run_demo.py", + "examples/sovereign_domain_atlas/job.json", + "examples/sovereign_enterprise_constellation/job.json", + "examples/sovereign_enterprise_proof_economy/job.json", + "examples/sovereign_kardashev_capital_engine/job.json", + "index.html", + "migrations/env.py", + "migrations/versions/0001_initial_schema.py", + "pages-manifest.json", + "proof_gradient/__init__.py", + "proof_gradient/__main__.py", + "proof_gradient/api.py", + "proof_gradient/cli.py", + "proof_gradient/config.py", + "proof_gradient/corporate_rsi_dominion.py", + "proof_gradient/db.py", + "proof_gradient/demo.py", + "proof_gradient/enterprise_rsi_superorganism.py", + "proof_gradient/evals.py", + "proof_gradient/foundation.py", + "proof_gradient/models.py", + "proof_gradient/proof_archive.py", + "proof_gradient/proof_carrying_intelligence.py", + "proof_gradient/providers.py", + "proof_gradient/security.py", + "proof_gradient/services.py", + "proof_gradient/sovereign_domain_atlas.py", + "proof_gradient/sovereign_enterprise_constellation.py", + "proof_gradient/sovereign_enterprise_proof_economy.py", + "proof_gradient/sovereign_kardashev_capital_engine.py", + "proof_gradient/workers.py", + "pyproject.toml", + "releases/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_complete_package.zip", + "releases/AEP-001/README.md", + "repository_manifest.json", + "robots.txt", + "schemas/artifact.schema.json", + "schemas/patch.schema.json", + "schemas/proof.schema.json", + "schemas/proof_gradient_foundation.schema.json", + "schemas/release.schema.json", + "schemas/run_contract.schema.json", + "schemas/score.schema.json", + "scripts/apply_safe_public_copy.py", + "scripts/build_goalos_product_pages.py", + "scripts/build_pages.py", + "scripts/build_skillos_command_center.py", + "scripts/build_skillos_command_center_v2.py", + "scripts/build_skillos_command_center_v3.py", + "scripts/build_skillos_command_center_v4.py", + "scripts/build_skillos_flagship_governance_twin_launch.py", + "scripts/build_skillos_public_command_center_v7.py", + "scripts/build_skillos_sovereign_command_center_v5.py", + "scripts/cancel_legacy_skillos_site_runs.py", + "scripts/check_no_paid_artifacts.py", + "scripts/check_site_links.py", + "scripts/goalos_public_site_rules.py", + "scripts/guard_no_paid_product_files.py", + "scripts/make_autonomous_market_readiness_visible.py", + "scripts/make_enterprise_ops_proof_visible.py", + "scripts/make_rsi_adversarial_multi_agent_market_command_center_proof_visible.py", + "scripts/make_rsi_ai_first_blockchain_capital_machine_visible.py", + "scripts/make_rsi_ai_first_governance_capital_engine_visible.py", + "scripts/make_rsi_blockchain_protocol_capital_frontier_visible.py", + "scripts/make_rsi_capability_command_center_v17_visible.py", + "scripts/make_rsi_capability_command_center_visible.py", + "scripts/make_rsi_capital_to_capability_engine_proof_visible.py", + "scripts/make_rsi_cloudops_proof_visible.py", + "scripts/make_rsi_corporate_capability_frontier_visible.py", + "scripts/make_rsi_corporate_os_proof_visible.py", + "scripts/make_rsi_corporate_strategy_frontier_visible.py", + "scripts/make_rsi_cyberdefense_proof_visible.py", + "scripts/make_rsi_enterprise_capability_foundry_visible.py", + "scripts/make_rsi_enterprise_eureka_factory_visible.py", + "scripts/make_rsi_enterprise_superorganization_visible.py", + "scripts/make_rsi_marketplace_flywheel_proof_visible.py", + "scripts/make_rsi_metamaterials_discovery_proof_visible.py", + "scripts/make_rsi_revenue_experiment_factory_proof_visible.py", + "scripts/make_rsi_silicon_verification_proof_visible.py", + "scripts/make_rsi_unit_economics_proof_visible.py", + "scripts/make_shadow_pilot_visible.py", + "scripts/prove_wealth_loop.py", + "scripts/publish_rsi_adversarial_benchmark_foundry_to_hub.py", + "scripts/publish_rsi_ai_first_blockchain_capital_machine_to_site.py", + "scripts/publish_rsi_ai_first_governance_capital_engine_to_site.py", + "scripts/publish_rsi_blockchain_protocol_capital_frontier_to_site.py", + "scripts/publish_rsi_capability_assurance_case_graph_to_hub.py", + "scripts/publish_rsi_capability_economy_clearinghouse_to_hub.py", + "scripts/publish_rsi_capability_governance_twin_to_hub.py", + "scripts/publish_rsi_capability_liquidity_engine_to_hub.py", + "scripts/publish_rsi_capability_sla_reliability_mesh_to_hub.py", + "scripts/publish_rsi_capability_treasury_flywheel_to_hub.py", + "scripts/publish_rsi_causal_attribution_engine_to_hub.py", + "scripts/publish_rsi_continual_capability_frontier_to_hub.py", + "scripts/publish_rsi_corporate_capability_frontier_to_site.py", + "scripts/publish_rsi_corporate_strategy_frontier_to_site.py", + "scripts/publish_rsi_cross_domain_capability_transfer_atlas_to_hub.py", + "scripts/publish_rsi_fork_resistant_capability_network_to_hub.py", + "scripts/publish_rsi_full_stack_capability_lifecycle_to_hub.py", + "scripts/publish_rsi_governance_frontier_to_hub.py", + "scripts/publish_rsi_objective_integrity_firewall_to_hub.py", + "scripts/publish_rsi_open_replication_mesh_to_hub.py", + "scripts/publish_rsi_proof_forge_meta_coordination_to_hub.py", + "scripts/publish_rsi_skill_compounding_moat_to_hub.py", + "scripts/publish_rsi_skill_provenance_ledger_to_hub.py", + "scripts/qa_check.py", + "scripts/refresh_public_site.py", + "scripts/render_rsi_adversarial_benchmark_foundry_site.py", + "scripts/render_rsi_capability_assurance_case_graph_site.py", + "scripts/render_rsi_capability_economy_clearinghouse_site.py", + "scripts/render_rsi_capability_governance_twin_site.py", + "scripts/render_rsi_capability_liquidity_engine_site.py", + "scripts/render_rsi_capability_sla_reliability_mesh_site.py", + "scripts/render_rsi_capability_treasury_flywheel_site.py", + "scripts/render_rsi_causal_attribution_engine_site.py", + "scripts/render_rsi_continual_capability_frontier_site.py", + "scripts/render_rsi_cross_domain_capability_transfer_atlas_site.py", + "scripts/render_rsi_fork_resistant_capability_network_site.py", + "scripts/render_rsi_full_stack_capability_lifecycle_site.py", + "scripts/render_rsi_governance_frontier_site.py", + "scripts/render_rsi_objective_integrity_firewall_site.py", + "scripts/render_rsi_open_replication_mesh_site.py", + "scripts/render_rsi_proof_forge_meta_coordination_site.py", + "scripts/render_rsi_skill_compounding_moat_site.py", + "scripts/render_rsi_skill_provenance_ledger_site.py", + "scripts/repo_claim_boundary_check.py", + "scripts/reset_local.sh", + "scripts/run_all_public_proofs.py", + "scripts/run_autonomous_market_readiness_proof.py", + "scripts/run_enterprise_ops_market_proof.py", + "scripts/run_local.sh", + "scripts/run_rsi_adversarial_benchmark_foundry_proof.py", + "scripts/run_rsi_adversarial_multi_agent_market_command_center_proof.py", + "scripts/run_rsi_ai_first_blockchain_capital_machine_proof.py", + "scripts/run_rsi_ai_first_governance_capital_engine_proof.py", + "scripts/run_rsi_blockchain_protocol_capital_frontier_proof.py", + "scripts/run_rsi_capability_assurance_case_graph_proof.py", + "scripts/run_rsi_capability_command_center_proof.py", + "scripts/run_rsi_capability_command_center_v17_proof.py", + "scripts/run_rsi_capability_economy_clearinghouse_proof.py", + "scripts/run_rsi_capability_governance_twin_proof.py", + "scripts/run_rsi_capability_liquidity_engine_proof.py", + "scripts/run_rsi_capability_sla_reliability_mesh_proof.py", + "scripts/run_rsi_capability_treasury_flywheel_proof.py", + "scripts/run_rsi_capital_to_capability_engine_proof.py", + "scripts/run_rsi_causal_attribution_engine_proof.py", + "scripts/run_rsi_cloudops_market_proof.py", + "scripts/run_rsi_continual_capability_frontier_proof.py", + "scripts/run_rsi_corporate_capability_frontier_proof.py", + "scripts/run_rsi_corporate_os_market_proof.py", + "scripts/run_rsi_corporate_strategy_frontier_proof.py", + "scripts/run_rsi_cross_domain_capability_transfer_atlas_proof.py", + "scripts/run_rsi_cyberdefense_market_proof.py", + "scripts/run_rsi_enterprise_capability_foundry_proof.py", + "scripts/run_rsi_enterprise_eureka_factory_proof.py", + "scripts/run_rsi_enterprise_superorganization_proof.py", + "scripts/run_rsi_fork_resistant_capability_network_proof.py", + "scripts/run_rsi_full_stack_capability_lifecycle_proof.py", + "scripts/run_rsi_governance_frontier_proof.py", + "scripts/run_rsi_marketplace_flywheel_market_proof.py", + "scripts/run_rsi_metamaterials_discovery_market_proof.py", + "scripts/run_rsi_objective_integrity_firewall_proof.py", + "scripts/run_rsi_open_replication_mesh_proof.py", + "scripts/run_rsi_proof_forge_meta_coordination_proof.py", + "scripts/run_rsi_revenue_experiment_factory_market_proof.py", + "scripts/run_rsi_silicon_verification_market_proof.py", + "scripts/run_rsi_skill_compounding_moat_proof.py", + "scripts/run_rsi_skill_provenance_ledger_proof.py", + "scripts/run_rsi_unit_economics_market_proof.py", + "scripts/run_shadow_pilot_proof.py", + "scripts/security_review.py", + "scripts/validate_docs_tables_figures.py", + "scripts/validate_goalos_catalog.py", + "scripts/validate_goalos_products.py", + "scripts/validate_goalos_public_site.py", + "scripts/validate_goalos_site_v2.py", + "scripts/verify_autonomous_market_readiness.py", + "scripts/verify_enterprise_ops_proof.py", + "scripts/verify_live_skillos_flagship_governance_twin_launch.py", + "scripts/verify_live_skillos_public_command_center_v7.py", + "scripts/verify_live_skillos_sovereign_command_center_v5.py", + "scripts/verify_pages.py", + "scripts/verify_public_site_refresh.py", + "scripts/verify_repo.py", + "scripts/verify_rsi_adversarial_benchmark_foundry_proof.py", + "scripts/verify_rsi_adversarial_benchmark_foundry_site.py", + "scripts/verify_rsi_adversarial_multi_agent_market_command_center_proof.py", + "scripts/verify_rsi_ai_first_blockchain_capital_machine_proof.py", + "scripts/verify_rsi_ai_first_blockchain_capital_machine_site.py", + "scripts/verify_rsi_ai_first_governance_capital_engine_proof.py", + "scripts/verify_rsi_ai_first_governance_capital_engine_site.py", + "scripts/verify_rsi_blockchain_protocol_capital_frontier_proof.py", + "scripts/verify_rsi_blockchain_protocol_capital_frontier_site.py", + "scripts/verify_rsi_capability_assurance_case_graph_proof.py", + "scripts/verify_rsi_capability_assurance_case_graph_site.py", + "scripts/verify_rsi_capability_command_center_proof.py", + "scripts/verify_rsi_capability_command_center_v17_proof.py", + "scripts/verify_rsi_capability_economy_clearinghouse_proof.py", + "scripts/verify_rsi_capability_economy_clearinghouse_site.py", + "scripts/verify_rsi_capability_governance_twin_proof.py", + "scripts/verify_rsi_capability_governance_twin_site.py", + "scripts/verify_rsi_capability_liquidity_engine_proof.py", + "scripts/verify_rsi_capability_liquidity_engine_site.py", + "scripts/verify_rsi_capability_sla_reliability_mesh_proof.py", + "scripts/verify_rsi_capability_sla_reliability_mesh_site.py", + "scripts/verify_rsi_capability_treasury_flywheel_proof.py", + "scripts/verify_rsi_capability_treasury_flywheel_site.py", + "scripts/verify_rsi_capital_to_capability_engine_proof.py", + "scripts/verify_rsi_causal_attribution_engine_proof.py", + "scripts/verify_rsi_causal_attribution_engine_site.py", + "scripts/verify_rsi_cloudops_proof.py", + "scripts/verify_rsi_continual_capability_frontier_proof.py", + "scripts/verify_rsi_continual_capability_frontier_site.py", + "scripts/verify_rsi_corporate_capability_frontier_proof.py", + "scripts/verify_rsi_corporate_capability_frontier_site.py", + "scripts/verify_rsi_corporate_os_proof.py", + "scripts/verify_rsi_corporate_strategy_frontier_proof.py", + "scripts/verify_rsi_corporate_strategy_frontier_site.py", + "scripts/verify_rsi_cross_domain_capability_transfer_atlas_proof.py", + "scripts/verify_rsi_cross_domain_capability_transfer_atlas_site.py", + "scripts/verify_rsi_cyberdefense_proof.py", + "scripts/verify_rsi_enterprise_capability_foundry_proof.py", + "scripts/verify_rsi_enterprise_eureka_factory_proof.py", + "scripts/verify_rsi_enterprise_superorganization_proof.py", + "scripts/verify_rsi_fork_resistant_capability_network_proof.py", + "scripts/verify_rsi_fork_resistant_capability_network_site.py", + "scripts/verify_rsi_full_stack_capability_lifecycle_proof.py", + "scripts/verify_rsi_full_stack_capability_lifecycle_site.py", + "scripts/verify_rsi_governance_frontier_proof.py", + "scripts/verify_rsi_governance_frontier_site.py", + "scripts/verify_rsi_marketplace_flywheel_proof.py", + "scripts/verify_rsi_metamaterials_discovery_proof.py", + "scripts/verify_rsi_objective_integrity_firewall_proof.py", + "scripts/verify_rsi_objective_integrity_firewall_site.py", + "scripts/verify_rsi_open_replication_mesh_proof.py", + "scripts/verify_rsi_open_replication_mesh_site.py", + "scripts/verify_rsi_proof_forge_meta_coordination_proof.py", + "scripts/verify_rsi_proof_forge_meta_coordination_site.py", + "scripts/verify_rsi_revenue_experiment_factory_proof.py", + "scripts/verify_rsi_silicon_verification_proof.py", + "scripts/verify_rsi_skill_compounding_moat_proof.py", + "scripts/verify_rsi_skill_compounding_moat_site.py", + "scripts/verify_rsi_skill_provenance_ledger_proof.py", + "scripts/verify_rsi_skill_provenance_ledger_site.py", + "scripts/verify_rsi_unit_economics_proof.py", + "scripts/verify_safe_public_copy.py", + "scripts/verify_shadow_pilot_visibility.py", + "scripts/verify_skillos_command_center.py", + "scripts/verify_skillos_command_center_v2.py", + "scripts/verify_skillos_command_center_v3.py", + "scripts/verify_skillos_command_center_v4.py", + "scripts/verify_skillos_flagship_governance_twin_launch.py", + "scripts/verify_skillos_public_command_center_v7.py", + "scripts/verify_skillos_sovereign_command_center_v5.py", + "site/.nojekyll", + "site/404.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/404.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/ai-efficiency-score/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/app/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/autonomous-market-readiness.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/command-center/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/docs/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/enterprise-ops-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/examples/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/goalos/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-checkout-recovery-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-demand-engine-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-ai-correction-rollback-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-ai-permission-map-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-monthly-proof-report-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-proof-room-lite-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-public-safe-case-study-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-department-weekly-proof-review-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-feedback-to-product-update-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-internal-approval-memo-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-lead-magnet-email-sequence-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-meeting-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-monthly-workflow-vault-drop-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-offer-to-sales-page-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-order-bump-builder-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-partner-referral-kit-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-post-purchase-onboarding-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-proof-card-referral-loop-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-reusable-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-support-faq-triage-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-team-pack-upsell-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-team-sprint-facilitator-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/home-before-weekly-growth-review-example.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/launch/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/legacy-command-center.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/platform/goalos-recursive-workflow-os/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/pricing/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/production.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/ai-efficiency-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-enterprise-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-rsi-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/proof-page-template-pack/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sme-ai-adoption-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-country-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-empire-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/sovereign-nation-state/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/team-pack/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/workflow-vault/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/products/workshop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/001-sovereign-swarm.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/002-evolution-tournament.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/003-recursive-evolution-ladder.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/004-corporate-rsi-dominion.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/005-enterprise-rsi-superorganism.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/006-sovereign-enterprise-constellation.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/008-sovereign-domain-atlas.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/010-proof-carrying-intelligence.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/011-the-proof-loop.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/proofs/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capability-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capability-command-center-v17-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-capital-to-capability-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-cloudops-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-corporate-os-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-cyberdefense-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-marketplace-flywheel-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-metamaterials-discovery-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-proof-forge-meta-coordination-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-revenue-experiment-factory-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-silicon-verification-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/rsi-unit-economics-proof.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/services/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/site-map/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-001/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-001/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-002/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-003/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-004/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-005/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-006/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-007/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/examples/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/figures/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/templates/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/AEP-008/tools/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/standards/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/start-here/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workflow/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v3_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/404.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/ai-efficiency-score/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/app/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/autonomous-market-readiness.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/command-center/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/docs/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/enterprise-ops-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/examples/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/goalos/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-checkout-recovery-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-demand-engine-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-ai-correction-rollback-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-ai-permission-map-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-monthly-proof-report-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-proof-room-lite-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-public-safe-case-study-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-department-weekly-proof-review-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-feedback-to-product-update-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-internal-approval-memo-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-lead-magnet-email-sequence-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-meeting-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-monthly-workflow-vault-drop-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-offer-to-sales-page-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-order-bump-builder-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-partner-referral-kit-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-post-purchase-onboarding-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-proof-card-referral-loop-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-reusable-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-support-faq-triage-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-team-pack-upsell-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-team-sprint-facilitator-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/home-before-weekly-growth-review-example.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/launch/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/legacy-command-center.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/platform/goalos-recursive-workflow-os/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/pricing/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/production.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/ai-efficiency-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-enterprise-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-rsi-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/proof-page-template-pack/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sme-ai-adoption-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-country-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-empire-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/sovereign-nation-state/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/team-pack/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/workflow-vault/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/products/workshop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/001-sovereign-swarm.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/002-evolution-tournament.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/003-recursive-evolution-ladder.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/004-corporate-rsi-dominion.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/005-enterprise-rsi-superorganism.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/006-sovereign-enterprise-constellation.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/008-sovereign-domain-atlas.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/010-proof-carrying-intelligence.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/011-the-proof-loop.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/proofs/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capability-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capability-command-center-v17-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-capital-to-capability-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-cloudops-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-corporate-os-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-cyberdefense-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-marketplace-flywheel-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-metamaterials-discovery-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-proof-forge-meta-coordination-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-revenue-experiment-factory-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-silicon-verification-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/rsi-unit-economics-proof.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/services/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/site-map/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-001/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-001/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-002/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-003/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-004/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-005/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-006/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-007/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/examples/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/figures/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/templates/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/AEP-008/tools/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/standards/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/start-here/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workflow/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v4_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/404.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/ai-efficiency-score/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/app/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/autonomous-market-readiness.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/brand/visual-system/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/command-center/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/docs/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/enterprise-ops-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/examples/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/goalos/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-checkout-recovery-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-demand-engine-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-ai-correction-rollback-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-ai-permission-map-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-monthly-proof-report-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-proof-room-lite-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-public-safe-case-study-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-department-weekly-proof-review-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-feedback-to-product-update-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-internal-approval-memo-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-lead-magnet-email-sequence-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-meeting-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-monthly-workflow-vault-drop-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-offer-to-sales-page-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-order-bump-builder-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-partner-referral-kit-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-post-purchase-onboarding-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-proof-card-referral-loop-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-reusable-workflow-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-support-faq-triage-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-team-pack-upsell-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-team-sprint-facilitator-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/home-before-weekly-growth-review-example.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/launch/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/legacy-command-center.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/platform/goalos-recursive-workflow-os/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/pricing/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/production.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/ai-efficiency-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-cloud-mvp/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-enterprise-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-rsi-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/proof-page-template-pack/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sme-ai-adoption-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-country-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-empire-ai-operating-system/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/sovereign-nation-state/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/team-pack/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/workflow-vault/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/products/workshop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/001-sovereign-swarm.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/002-evolution-tournament.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/003-recursive-evolution-ladder.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/004-corporate-rsi-dominion.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/005-enterprise-rsi-superorganism.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/006-sovereign-enterprise-constellation.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/008-sovereign-domain-atlas.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/010-proof-carrying-intelligence.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/011-the-proof-loop.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/proofs/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capability-command-center-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capability-command-center-v17-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-capital-to-capability-engine-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-cloudops-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-corporate-os-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-cyberdefense-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-marketplace-flywheel-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-metamaterials-discovery-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-proof-forge-meta-coordination-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-revenue-experiment-factory-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-silicon-verification-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/rsi-unit-economics-proof.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/services/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/site-map/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-001/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-001/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-002/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-003/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-004/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-005/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-006/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-007/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/conformance/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/examples/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/figures/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/implementation/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/one_page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/schemas/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/templates/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/AEP-008/tools/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/standards/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/start-here/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/checkout-recovery/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-ai-correction-rollback/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-ai-permission-map/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-monthly-proof-report/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-proof-room-lite/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-public-safe-case-study/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/department-weekly-proof-review/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/feedback-to-product-update/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/idea-to-demand-engine/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/internal-approval-memo/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/lead-magnet-email-sequence/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/meeting-to-action-plan/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/monthly-workflow-vault-drop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/offer-to-sales-page/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/order-bump-builder/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/partner-referral-kit/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/post-purchase-onboarding/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/proof-card-referral-loop/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/support-faq-triage/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/team-pack-upsell/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/team-sprint-facilitator/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workflow/weekly-growth-review/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_goalos_public_site_release_v5_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/404.html", + "site/_archive/before_unified_shell_v2_2026-06-06/ai-efficiency-score/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/app/goalos-cloud-mvp/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/autonomous-market-readiness.html", + "site/_archive/before_unified_shell_v2_2026-06-06/command-center/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/docs/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/enterprise-ops-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/checkout-recovery/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-ai-correction-rollback/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-ai-permission-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-monthly-proof-report/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-public-safe-case-study/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/department-weekly-proof-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/feedback-to-product-update/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/idea-to-demand-engine/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/internal-approval-memo/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/lead-magnet-email-sequence/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/meeting-to-action-plan/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/monthly-workflow-vault-drop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/offer-to-sales-page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/order-bump-builder/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/partner-referral-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/post-purchase-onboarding/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/proof-card-referral-loop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/support-faq-triage/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/team-pack-upsell/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/team-sprint-facilitator/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/examples/weekly-growth-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/goalos/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-checkout-recovery-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-demand-engine-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-ai-correction-rollback-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-ai-permission-map-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-monthly-proof-report-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-proof-room-lite-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-public-safe-case-study-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-department-weekly-proof-review-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-feedback-to-product-update-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-internal-approval-memo-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-lead-magnet-email-sequence-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-meeting-workflow-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-monthly-workflow-vault-drop-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-offer-to-sales-page-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-order-bump-builder-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-partner-referral-kit-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-post-purchase-onboarding-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-proof-card-referral-loop-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-reusable-workflow-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-support-faq-triage-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-team-pack-upsell-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-team-sprint-facilitator-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/home-before-weekly-growth-review-example.html", + "site/_archive/before_unified_shell_v2_2026-06-06/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/launch/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/legacy-command-center.html", + "site/_archive/before_unified_shell_v2_2026-06-06/platform/goalos-recursive-workflow-os/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/pricing/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/production.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/ai-efficiency-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/enterprise-proof-room-agent-control-plane/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-cloud-mvp/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-enterprise-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-rsi-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/proof-page-template-pack/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/sme-ai-adoption-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-country-ai-operating-system/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-empire-ai-operating-system/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/sovereign-nation-state/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/team-pack/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/workflow-vault/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/products/workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/001-sovereign-swarm.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/002-evolution-tournament.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/003-recursive-evolution-ladder.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/004-corporate-rsi-dominion.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/005-enterprise-rsi-superorganism.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/006-sovereign-enterprise-constellation.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/007-sovereign-enterprise-proof-economy.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/008-sovereign-domain-atlas.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/009-sovereign-kardashev-capital-engine.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/010-proof-carrying-intelligence.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/011-the-proof-loop.html", + "site/_archive/before_unified_shell_v2_2026-06-06/proofs/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-ai-first-governance-capital-engine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-capability-command-center-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-capability-command-center-v17-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-capital-to-capability-engine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-cloudops-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-corporate-os-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-cyberdefense-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-marketplace-flywheel-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-metamaterials-discovery-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-proof-forge-meta-coordination-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-revenue-experiment-factory-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-silicon-verification-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/rsi-unit-economics-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-06/services/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/site-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-001/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-001/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-002/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-003/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-004/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-005/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-006/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-007/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/AEP-008/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/standards/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/start-here/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/checkout-recovery/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-ai-correction-rollback/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-ai-permission-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-monthly-proof-report/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-public-safe-case-study/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/department-weekly-proof-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/feedback-to-product-update/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/idea-to-demand-engine/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/internal-approval-memo/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/lead-magnet-email-sequence/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/meeting-to-action-plan/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/monthly-workflow-vault-drop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/offer-to-sales-page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/order-bump-builder/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/partner-referral-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/post-purchase-onboarding/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/proof-card-referral-loop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/rsi-lite-self-improving-workflows/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/support-faq-triage/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/team-pack-upsell/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/team-sprint-facilitator/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workflow/weekly-growth-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-06/workshop/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/404.html", + "site/_archive/before_unified_shell_v2_2026-06-07/ai-efficiency-score/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/app/goalos-cloud-mvp/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/autonomous-market-readiness.html", + "site/_archive/before_unified_shell_v2_2026-06-07/command-center/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/docs/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/enterprise-ops-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/checkout-recovery/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-correction-rollback/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-permission-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-monthly-proof-report/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-public-safe-case-study/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/department-weekly-proof-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/feedback-to-product-update/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/idea-to-demand-engine/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/internal-approval-memo/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/lead-magnet-email-sequence/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/meeting-to-action-plan/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/monthly-workflow-vault-drop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/offer-to-sales-page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/order-bump-builder/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/partner-referral-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/post-purchase-onboarding/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/proof-card-referral-loop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/support-faq-triage/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/team-pack-upsell/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/team-sprint-facilitator/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/examples/weekly-growth-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/goalos/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-checkout-recovery-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-demand-engine-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-correction-rollback-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-permission-map-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-monthly-proof-report-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-proof-room-lite-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-public-safe-case-study-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-weekly-proof-review-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-feedback-to-product-update-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-internal-approval-memo-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-lead-magnet-email-sequence-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-meeting-workflow-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-monthly-workflow-vault-drop-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-offer-to-sales-page-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-order-bump-builder-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-partner-referral-kit-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-post-purchase-onboarding-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-proof-card-referral-loop-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-reusable-workflow-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-support-faq-triage-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-pack-upsell-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-sprint-facilitator-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/home-before-weekly-growth-review-example.html", + "site/_archive/before_unified_shell_v2_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/launch/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/legacy-command-center.html", + "site/_archive/before_unified_shell_v2_2026-06-07/platform/goalos-recursive-workflow-os/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/pricing/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/production.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/ai-efficiency-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-cloud-mvp/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/proof-page-template-pack/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/sme-ai-adoption-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-country-ai-operating-system/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-empire-ai-operating-system/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-nation-state/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/team-pack/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/workflow-vault/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/products/workshop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/001-sovereign-swarm.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/002-evolution-tournament.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/003-recursive-evolution-ladder.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/004-corporate-rsi-dominion.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/005-enterprise-rsi-superorganism.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/006-sovereign-enterprise-constellation.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/008-sovereign-domain-atlas.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/010-proof-carrying-intelligence.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/011-the-proof-loop.html", + "site/_archive/before_unified_shell_v2_2026-06-07/proofs/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-v17-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-capital-to-capability-engine-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-cloudops-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-corporate-os-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-cyberdefense-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-marketplace-flywheel-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-metamaterials-discovery-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-proof-forge-meta-coordination-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-revenue-experiment-factory-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-silicon-verification-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/rsi-unit-economics-proof.html", + "site/_archive/before_unified_shell_v2_2026-06-07/services/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/site-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/conformance/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/examples/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/figures/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/implementation/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/one_page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/schemas/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/templates/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/tools/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/standards/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/start-here/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/checkout-recovery/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-correction-rollback/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-permission-map/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-monthly-proof-report/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-proof-room-lite/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-public-safe-case-study/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-weekly-proof-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/feedback-to-product-update/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/idea-to-demand-engine/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/internal-approval-memo/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/lead-magnet-email-sequence/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/meeting-to-action-plan/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/monthly-workflow-vault-drop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/offer-to-sales-page/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/order-bump-builder/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/partner-referral-kit/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/post-purchase-onboarding/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/proof-card-referral-loop/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/support-faq-triage/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-pack-upsell/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-sprint-facilitator/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workflow/weekly-growth-review/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_site_shell/command-center/index.html", + "site/_archive/before_unified_site_shell/examples/index.html", + "site/_archive/before_unified_site_shell/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_site_shell/index.html", + "site/_archive/before_unified_site_shell/pricing/index.html", + "site/_archive/before_unified_site_shell/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/_archive/before_unified_site_shell/products/goalos-cloud-mvp/index.html", + "site/_archive/before_unified_site_shell/products/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_site_shell/products/goalos-proof-room-lite/index.html", + "site/_archive/before_unified_site_shell/products/goalos-rsi-lite/index.html", + "site/_archive/before_unified_site_shell/products/goalos-rsi-sprint-workshop/index.html", + "site/_archive/before_unified_site_shell/products/index.html", + "site/_archive/before_unified_site_shell/services/index.html", + "site/_archive/before_unified_site_shell/site-map/index.html", + "site/_archive/before_unified_site_shell/standards/index.html", + "site/_archive/before_unified_site_shell/start-here/index.html", + "site/_archive/before_unified_site_shell/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/_archive/before_unified_site_shell/workshop/goalos-rsi-sprint-workshop/index.html", + "site/ai-efficiency-score/index.html", + "site/app.js", + "site/app/goalos-cloud-mvp/README.md", + "site/app/goalos-cloud-mvp/assets/app.js", + "site/app/goalos-cloud-mvp/assets/enterprise-core.mjs", + "site/app/goalos-cloud-mvp/assets/goalos-core.mjs", + "site/app/goalos-cloud-mvp/assets/styles.css", + "site/app/goalos-cloud-mvp/docs/STATE_OF_THE_ART_ENTERPRISE_GATES.md", + "site/app/goalos-cloud-mvp/index.html", + "site/app/goalos-cloud-mvp/openapi.json", + "site/app/goalos-cloud-mvp/schemas/proof-record.schema.json", + "site/app/goalos-cloud-mvp/schemas/workflow.schema.json", + "site/app/goalos-cloud-mvp/site-manifest.json", + "site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs", + "site/app/goalos-cloud-mvp/tests/goalos-core.test.mjs", + "site/assets/apple-touch-icon.png", + "site/assets/brand-assets-v7.json", + "site/assets/brand-assets-v8.json", + "site/assets/brand/QUEBEC_AI_Strategic_Engagements_Hero_HQ_2560x1280.jpg", + "site/assets/brand/Quebec_AI_v0.png", + "site/assets/brand/Quebec_AI_v1.png", + "site/assets/brand/Quebec_AI_v13.png", + "site/assets/brand/Quebec_AI_v14.png", + "site/assets/brand/Quebec_AI_v15.png", + "site/assets/brand/Quebec_AI_v16.png", + "site/assets/brand/Quebec_AI_v18.png", + "site/assets/brand/Quebec_AI_v2.png", + "site/assets/brand/Quebec_AI_v20.png", + "site/assets/brand/Quebec_AI_v21.png", + "site/assets/brand/Quebec_AI_v25.png", + "site/assets/brand/Quebec_AI_v27.png", + "site/assets/brand/Quebec_AI_v28.png", + "site/assets/brand/Quebec_AI_v31.png", + "site/assets/brand/Quebec_AI_v32.png", + "site/assets/brand/Quebec_AI_v36.png", + "site/assets/brand/Quebec_AI_v37.png", + "site/assets/brand/Quebec_AI_v38.png", + "site/assets/brand/Quebec_AI_v39.png", + "site/assets/brand/Quebec_AI_v4.png", + "site/assets/brand/Quebec_AI_v40.png", + "site/assets/brand/Quebec_AI_v41.png", + "site/assets/brand/Quebec_AI_v43.png", + "site/assets/brand/Quebec_AI_v46.png", + "site/assets/brand/Quebec_AI_v47.png", + "site/assets/brand/Quebec_AI_v48.png", + "site/assets/brand/Quebec_AI_v49.png", + "site/assets/brand/Quebec_AI_v5.png", + "site/assets/brand/Quebec_AI_v51.png", + "site/assets/brand/Quebec_AI_v53.png", + "site/assets/brand/Quebec_AI_v55.png", + "site/assets/brand/Quebec_AI_v59.png", + "site/assets/brand/Quebec_AI_v60.png", + "site/assets/brand/Quebec_AI_v63.png", + "site/assets/brand/Quebec_AI_v64_1.png", + "site/assets/brand/Quebec_AI_v66.png", + "site/assets/brand/Quebec_AI_v67.png", + "site/assets/brand/Quebec_AI_v68_LinkedIn.png", + "site/assets/brand/Quebec_AI_v70.png", + "site/assets/brand/SovereignManifestov0.png", + "site/assets/brand/SovereignManifestov1.png", + "site/assets/brand/SovereignManifestov2.png", + "site/assets/brand/montreal_ai_v2.png", + "site/assets/brand/montreal_ai_v4.png", + "site/assets/brand/montreal_ai_youtube_banner_v2.png", + "site/assets/brand/montreal_ai_youtube_banner_v3.png", + "site/assets/brand/montreal_ai_youtube_profile_v0.png", + "site/assets/brand/quebecaisealv5.png", + "site/assets/brand/skillos-mark.svg", + "site/assets/brand/vincentboucher_v0.png", + "site/assets/brand/vincentboucher_v1.png", + "site/assets/brand/vincentboucher_v2.png", + "site/assets/brand/vincentboucher_v3.png", + "site/assets/brand/vincentboucher_youtube_banner_v6.png", + "site/assets/checkout-recovery-card.svg", + "site/assets/department-ai-correction-rollback-card.svg", + "site/assets/department-ai-permission-map-card.svg", + "site/assets/department-monthly-proof-report-card.svg", + "site/assets/department-proof-room-lite-card.svg", + "site/assets/department-public-safe-case-study-card.svg", + "site/assets/department-weekly-proof-review-card.svg", + "site/assets/feedback-to-product-update-card.svg", + "site/assets/goalos-complete-site-og.svg", + "site/assets/goalos-complete-site.css", + "site/assets/goalos-complete-site.js", + "site/assets/goalos-opulent-og.svg", + "site/assets/goalos-opulent-v4.css", + "site/assets/goalos-opulent-v4.js", + "site/assets/goalos-opulent-v5.css", + "site/assets/goalos-opulent-v5.js", + "site/assets/goalos-product-ladder-og.svg", + "site/assets/goalos-product-ladder.css", + "site/assets/goalos-product-ladder.js", + "site/assets/goalos-products.css", + "site/assets/goalos-products.js", + "site/assets/goalos-public-site-og.svg", + "site/assets/goalos-site-v2.css", + "site/assets/goalos-site-v2.js", + "site/assets/goalos-site-v3.css", + "site/assets/goalos-site-v3.js", + "site/assets/goalos-sovereign-v6.css", + "site/assets/goalos-sovereign-v6.js", + "site/assets/goalos-sovereign-v7.css", + "site/assets/goalos-sovereign-v7.js", + "site/assets/goalos-sovereign-v8.css", + "site/assets/goalos-sovereign-v8.js", + "site/assets/goalos-unified-og.svg", + "site/assets/goalos-unified-site-shell.css", + "site/assets/goalos-unified-site.js", + "site/assets/icon-192.png", + "site/assets/icon-512.png", + "site/assets/idea-to-demand-engine-card.svg", + "site/assets/internal-approval-memo-card.svg", + "site/assets/lead-magnet-email-sequence-card.svg", + "site/assets/meeting-to-action-plan-card.svg", + "site/assets/monthly-workflow-vault-drop-card.svg", + "site/assets/offer-to-sales-page-card.svg", + "site/assets/order-bump-builder-card.svg", + "site/assets/partner-referral-kit-card.svg", + "site/assets/post-purchase-onboarding-card.svg", + "site/assets/proof-card-referral-loop-card.svg", + "site/assets/proof-gradient-og.svg", + "site/assets/proof-gradient-site.css", + "site/assets/proof-gradient-site.js", + "site/assets/proof-index.json", + "site/assets/proofs/001-sovereign-swarm.json", + "site/assets/proofs/002-evolution-tournament.json", + "site/assets/proofs/003-recursive-evolution-ladder.json", + "site/assets/proofs/004-corporate-rsi-dominion.json", + "site/assets/proofs/005-enterprise-rsi-superorganism.json", + "site/assets/proofs/006-sovereign-enterprise-constellation.json", + "site/assets/proofs/007-sovereign-enterprise-proof-economy.json", + "site/assets/proofs/008-sovereign-domain-atlas.json", + "site/assets/proofs/009-sovereign-kardashev-capital-engine.json", + "site/assets/proofs/010-proof-carrying-intelligence.json", + "site/assets/proofs/011-the-proof-loop.json", + "site/assets/quebecaisealv5.png", + "site/assets/reusable-ai-workflow-card.svg", + "site/assets/support-faq-triage-card.svg", + "site/assets/team-pack-upsell-card.svg", + "site/assets/team-sprint-facilitator-card.svg", + "site/assets/weekly-growth-review-card.svg", + "site/autonomous-market-readiness.html", + "site/badges/rsi-ai-first-governance-capital-engine-proof.svg", + "site/badges/rsi-proof-forge-meta-coordination-proof.svg", + "site/brand/visual-system/index.html", + "site/command-center/index.html", + "site/data/rsi-ai-first-governance-capital-engine-proof.json", + "site/data/rsi-proof-forge-meta-coordination-proof.json", + "site/docs/index.html", + "site/docs/rsi-ai-first-governance-capital-engine-proof.md", + "site/docs/rsi-proof-forge-meta-coordination-proof.md", + "site/enterprise-ops-proof.html", + "site/enterprise/goalos-enterprise-rsi-pilot/index.html", + "site/examples/build-one-reusable-ai-workflow/index.html", + "site/examples/checkout-recovery/index.html", + "site/examples/department-ai-correction-rollback/index.html", + "site/examples/department-ai-permission-map/index.html", + "site/examples/department-monthly-proof-report/index.html", + "site/examples/department-proof-room-lite/index.html", + "site/examples/department-public-safe-case-study/index.html", + "site/examples/department-weekly-proof-review/index.html", + "site/examples/feedback-to-product-update/index.html", + "site/examples/idea-to-demand-engine/index.html", + "site/examples/index.html", + "site/examples/internal-approval-memo/index.html", + "site/examples/lead-magnet-email-sequence/index.html", + "site/examples/meeting-to-action-plan/index.html", + "site/examples/monthly-workflow-vault-drop/index.html", + "site/examples/offer-to-sales-page/index.html", + "site/examples/order-bump-builder/index.html", + "site/examples/partner-referral-kit/index.html", + "site/examples/post-purchase-onboarding/index.html", + "site/examples/proof-card-referral-loop/index.html", + "site/examples/support-faq-triage/index.html", + "site/examples/team-pack-upsell/index.html", + "site/examples/team-sprint-facilitator/index.html", + "site/examples/weekly-growth-review/index.html", + "site/favicon.png", + "site/goalos-complete-site-manifest.json", + "site/goalos-product-ladder-site-manifest.json", + "site/goalos-public-site-release-v3-2-manifest.json", + "site/goalos-public-site-release-v3-2-report.json", + "site/goalos-public-site-release-v4-manifest.json", + "site/goalos-public-site-release-v4-report.json", + "site/goalos-public-site-release-v5-manifest.json", + "site/goalos-public-site-release-v5-report.json", + "site/goalos-public-site-release-v6-manifest.json", + "site/goalos-public-site-release-v6-report.json", + "site/goalos-public-site-release-v7-manifest.json", + "site/goalos-public-site-release-v7-report.json", + "site/goalos-public-site-release-v8-manifest.json", + "site/goalos-public-site-release-v8-report.json", + "site/goalos-site-manifest-v2.json", + "site/goalos-site-repair-v2-report.json", + "site/goalos-unified-site-manifest.json", + "site/goalos-unified-site-repair-report.json", + "site/goalos/index.html", + "site/home-before-checkout-recovery-example.html", + "site/home-before-demand-engine-example.html", + "site/home-before-department-ai-correction-rollback-example.html", + "site/home-before-department-ai-permission-map-example.html", + "site/home-before-department-monthly-proof-report-example.html", + "site/home-before-department-proof-room-lite-example.html", + "site/home-before-department-public-safe-case-study-example.html", + "site/home-before-department-weekly-proof-review-example.html", + "site/home-before-feedback-to-product-update-example.html", + "site/home-before-internal-approval-memo-example.html", + "site/home-before-lead-magnet-email-sequence-example.html", + "site/home-before-meeting-workflow-example.html", + "site/home-before-monthly-workflow-vault-drop-example.html", + "site/home-before-offer-to-sales-page-example.html", + "site/home-before-order-bump-builder-example.html", + "site/home-before-partner-referral-kit-example.html", + "site/home-before-post-purchase-onboarding-example.html", + "site/home-before-proof-card-referral-loop-example.html", + "site/home-before-reusable-workflow-example.html", + "site/home-before-support-faq-triage-example.html", + "site/home-before-team-pack-upsell-example.html", + "site/home-before-team-sprint-facilitator-example.html", + "site/home-before-weekly-growth-review-example.html", + "site/implementation/goalos-proof-room-implementation-sprint/index.html", + "site/index.html", + "site/launch/index.html", + "site/legacy-command-center.html", + "site/platform/goalos-recursive-workflow-os/index.html", + "site/pricing/index.html", + "site/production.html", + "site/products/ai-efficiency-sprint/index.html", + "site/products/department-proof-room-lite/index.html", + "site/products/enterprise-proof-room-agent-control-plane/index.html", + "site/products/goalos-ai-efficiency-sprint-kit/index.html", + "site/products/goalos-cloud-mvp/index.html", + "site/products/goalos-enterprise-pilot/index.html", + "site/products/goalos-enterprise-rsi-pilot/index.html", + "site/products/goalos-proof-room-implementation-sprint/index.html", + "site/products/goalos-proof-room-lite/index.html", + "site/products/goalos-rsi-lite/index.html", + "site/products/goalos-rsi-sprint-workshop/index.html", + "site/products/index.html", + "site/products/nation-state-ai-leverage-proof-infrastructure/index.html", + "site/products/proof-page-template-pack/index.html", + "site/products/sme-ai-adoption-sprint/index.html", + "site/products/sovereign-country-ai-operating-system/index.html", + "site/products/sovereign-empire-ai-operating-system/index.html", + "site/products/sovereign-nation-state/index.html", + "site/products/team-pack/index.html", + "site/products/workflow-vault/index.html", + "site/products/workshop/index.html", + "site/proof-registry.json", + "site/proof-room-lite/index.html", + "site/proofs/001-sovereign-swarm.html", + "site/proofs/002-evolution-tournament.html", + "site/proofs/003-recursive-evolution-ladder.html", + "site/proofs/004-corporate-rsi-dominion.html", + "site/proofs/005-enterprise-rsi-superorganism.html", + "site/proofs/006-sovereign-enterprise-constellation.html", + "site/proofs/007-sovereign-enterprise-proof-economy.html", + "site/proofs/008-sovereign-domain-atlas.html", + "site/proofs/009-sovereign-kardashev-capital-engine.html", + "site/proofs/010-proof-carrying-intelligence.html", + "site/proofs/011-the-proof-loop.html", + "site/proofs/index.html", + "site/robots.txt", + "site/rsi-adversarial-multi-agent-market-command-center-proof.html", + "site/rsi-ai-first-blockchain-capital-machine-proof.html", + "site/rsi-ai-first-governance-capital-engine-proof.html", + "site/rsi-capability-command-center-proof.html", + "site/rsi-capability-command-center-v17-proof.html", + "site/rsi-capital-to-capability-engine-proof.html", + "site/rsi-cloudops-proof.html", + "site/rsi-corporate-os-proof.html", + "site/rsi-cyberdefense-proof.html", + "site/rsi-marketplace-flywheel-proof.html", + "site/rsi-metamaterials-discovery-proof.html", + "site/rsi-proof-forge-meta-coordination-proof.html", + "site/rsi-revenue-experiment-factory-proof.html", + "site/rsi-silicon-verification-proof.html", + "site/rsi-unit-economics-proof.html", + "site/services/index.html", + "site/site-health.json", + "site/site-manifest.json", + "site/site-map/index.html", + "site/site.webmanifest", + "site/sitemap.xml", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.docx", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.md", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional.tex", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_Final.pdf", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_QA_Report.txt", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_SHA256SUMS.txt", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_docx_contact_sheet.jpg", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_evidence_docket_template.md", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.md", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_one_page_constitution.pdf", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_pdf_contact_sheet.jpg", + "site/standards/AEP-001/GoalOS_Proof-of-Evolution-Constitution_AEP001_v12.1_Institutional_protocol_schema.json", + "site/standards/AEP-001/README.md", + "site/standards/AEP-001/complete-package.zip", + "site/standards/AEP-001/evidence_docket_template.md", + "site/standards/AEP-001/figures/cover.png", + "site/standards/AEP-001/figures/fig01_constitution_stack.png", + "site/standards/AEP-001/figures/fig02_loop.png", + "site/standards/AEP-001/figures/fig03_boundary.png", + "site/standards/AEP-001/figures/fig04_object_graph.png", + "site/standards/AEP-001/figures/fig05_contract_suite.png", + "site/standards/AEP-001/figures/fig06_selection_gate.png", + "site/standards/AEP-001/figures/fig07_evidence_docket.png", + "site/standards/AEP-001/figures/fig08_evolution_ledger.png", + "site/standards/AEP-001/figures/fig09_deployment.png", + "site/standards/AEP-001/figures/index.html", + "site/standards/AEP-001/index.html", + "site/standards/AEP-001/one-page.pdf", + "site/standards/AEP-001/one_page_constitution.md", + "site/standards/AEP-001/paper.docx", + "site/standards/AEP-001/paper.pdf", + "site/standards/AEP-001/protocol_schema.json", + "site/standards/AEP-001/source.md", + "site/standards/AEP-001/source.tex", + "site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.docx", + "site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.md", + "site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.pdf", + "site/standards/AEP-002/AEP-002_Evidence-Docket-Standard_v1.1_Institutional.tex", + "site/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.docx", + "site/standards/AEP-002/AEP-002_One-Page_Evidence-Docket-Standard_v1.1.pdf", + "site/standards/AEP-002/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-002/QA_REPORT.md", + "site/standards/AEP-002/README.md", + "site/standards/AEP-002/RELEASE_NOTES_AEP002_v1.1.md", + "site/standards/AEP-002/SHA256SUMS.txt", + "site/standards/AEP-002/conformance/aep002_conformance_checklist.md", + "site/standards/AEP-002/conformance/index.html", + "site/standards/AEP-002/examples/basic_evidence_docket.json", + "site/standards/AEP-002/examples/generated_public_safe_report.md", + "site/standards/AEP-002/examples/index.html", + "site/standards/AEP-002/examples/institutional_conformance_score.json", + "site/standards/AEP-002/examples/institutional_evidence_docket.json", + "site/standards/AEP-002/examples/public_safe_report.json", + "site/standards/AEP-002/figures/fig01_aep002_docket_stack.png", + "site/standards/AEP-002/figures/fig02_docket_lifecycle.png", + "site/standards/AEP-002/figures/fig03_evidence_boundary.png", + "site/standards/AEP-002/figures/index.html", + "site/standards/AEP-002/index.html", + "site/standards/AEP-002/paper.pdf", + "site/standards/AEP-002/schemas/evidence_docket.schema.json", + "site/standards/AEP-002/schemas/index.html", + "site/standards/AEP-002/schemas/proof_packet.schema.json", + "site/standards/AEP-002/schemas/public_safe_report.schema.json", + "site/standards/AEP-002/schemas/selection_certificate.schema.json", + "site/standards/AEP-002/source.md", + "site/standards/AEP-002/templates/claim_boundary_template.md", + "site/standards/AEP-002/templates/evidence_docket_template.md", + "site/standards/AEP-002/templates/index.html", + "site/standards/AEP-002/templates/public_safe_report_template.md", + "site/standards/AEP-002/tools/generate_public_safe_report.py", + "site/standards/AEP-002/tools/index.html", + "site/standards/AEP-002/tools/score_conformance.py", + "site/standards/AEP-002/tools/validate_evidence_docket.py", + "site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.docx", + "site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.md", + "site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.pdf", + "site/standards/AEP-003/AEP-003_ProofPacket-Schema_v1.1_Institutional.tex", + "site/standards/AEP-003/CODEX_IMPLEMENTATION_PROMPT_AEP003.md", + "site/standards/AEP-003/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-003/QA_REPORT.md", + "site/standards/AEP-003/README.md", + "site/standards/AEP-003/RELEASE_NOTES_AEP003_v1.1.md", + "site/standards/AEP-003/SHA256SUMS.txt", + "site/standards/AEP-003/conformance/aep003_conformance_checklist.md", + "site/standards/AEP-003/conformance/index.html", + "site/standards/AEP-003/examples/index.html", + "site/standards/AEP-003/examples/sample_proof_packet_01_commit.json", + "site/standards/AEP-003/examples/sample_proof_packet_02_trace_event.json", + "site/standards/AEP-003/examples/sample_proof_packet_03_tool_call.json", + "site/standards/AEP-003/examples/sample_proof_packet_04_policy_decision.json", + "site/standards/AEP-003/examples/sample_proof_packet_05_approval.json", + "site/standards/AEP-003/examples/sample_proof_packet_06_eval_result.json", + "site/standards/AEP-003/examples/sample_proof_packet_07_evidence_ref.json", + "site/standards/AEP-003/examples/sample_proof_packet_08_risk_event.json", + "site/standards/AEP-003/examples/sample_proof_packet_09_cost_event.json", + "site/standards/AEP-003/examples/sample_proof_packet_10_selection_decision.json", + "site/standards/AEP-003/examples/sample_proof_packet_11_rollout_event.json", + "site/standards/AEP-003/examples/sample_proof_packet_12_rollback_event.json", + "site/standards/AEP-003/examples/sample_proof_packet_13_public_report.json", + "site/standards/AEP-003/examples/sample_proof_packet_bundle.json", + "site/standards/AEP-003/figures/fig01_proofpacket_anatomy.png", + "site/standards/AEP-003/figures/fig02_proofpacket_hash_chain.png", + "site/standards/AEP-003/figures/fig03_proofpacket_lifecycle.png", + "site/standards/AEP-003/figures/index.html", + "site/standards/AEP-003/implementation/AEP-003_Implementation_Guide.md", + "site/standards/AEP-003/implementation/AEP-003_Interop_Profile.md", + "site/standards/AEP-003/implementation/AEP-003_Security_Privacy_Guide.md", + "site/standards/AEP-003/implementation/index.html", + "site/standards/AEP-003/index.html", + "site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.docx", + "site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.md", + "site/standards/AEP-003/one_page/AEP-003_One-Page_ProofPacket-Schema_v1.1.pdf", + "site/standards/AEP-003/one_page/index.html", + "site/standards/AEP-003/paper.pdf", + "site/standards/AEP-003/schemas/index.html", + "site/standards/AEP-003/schemas/proof_packet.schema.json", + "site/standards/AEP-003/schemas/proof_packet_attestation.schema.json", + "site/standards/AEP-003/schemas/proof_packet_bundle.schema.json", + "site/standards/AEP-003/schemas/proof_packet_canonicalization_profile.json", + "site/standards/AEP-003/source.md", + "site/standards/AEP-003/templates/index.html", + "site/standards/AEP-003/templates/proof_packet_template.json", + "site/standards/AEP-003/templates/proof_packet_template.md", + "site/standards/AEP-003/tools/index.html", + "site/standards/AEP-003/tools/proof_packet_bundle.py", + "site/standards/AEP-003/tools/proof_packet_conformance_score.py", + "site/standards/AEP-003/tools/proof_packet_hash.py", + "site/standards/AEP-003/tools/validate_proof_packet.py", + "site/standards/AEP-003/tools/verify_packet_chain.py", + "site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.docx", + "site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.md", + "site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.pdf", + "site/standards/AEP-004/AEP-004_Selection-Gate-Standard_v1.1_Institutional.tex", + "site/standards/AEP-004/CODEX_IMPLEMENTATION_PROMPT_AEP004.md", + "site/standards/AEP-004/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-004/QA_REPORT.md", + "site/standards/AEP-004/README.md", + "site/standards/AEP-004/RELEASE_NOTES_AEP004_v1.1.md", + "site/standards/AEP-004/SHA256SUMS.txt", + "site/standards/AEP-004/conformance/aep004_conformance_checklist.md", + "site/standards/AEP-004/conformance/index.html", + "site/standards/AEP-004/examples/index.html", + "site/standards/AEP-004/examples/sample_gate_decision_input_promote.json", + "site/standards/AEP-004/examples/sample_gate_decision_input_reject.json", + "site/standards/AEP-004/examples/sample_gate_policy.json", + "site/standards/AEP-004/examples/sample_selection_candidate.json", + "site/standards/AEP-004/examples/sample_selection_certificate_approve_canary.json", + "site/standards/AEP-004/examples/sample_selection_certificate_archive.json", + "site/standards/AEP-004/examples/sample_selection_certificate_needs_more_evidence.json", + "site/standards/AEP-004/examples/sample_selection_certificate_promote.json", + "site/standards/AEP-004/examples/sample_selection_certificate_reject.json", + "site/standards/AEP-004/examples/sample_selection_certificate_revise.json", + "site/standards/AEP-004/examples/sample_selection_certificate_rollback.json", + "site/standards/AEP-004/figures/fig01_selection_gate_flow.png", + "site/standards/AEP-004/figures/fig02_selection_certificate_model.png", + "site/standards/AEP-004/figures/fig03_selection_gate_risk_matrix.png", + "site/standards/AEP-004/figures/fig04_selection_gate_lifecycle.png", + "site/standards/AEP-004/figures/index.html", + "site/standards/AEP-004/implementation/AEP-004_Implementation_Guide.md", + "site/standards/AEP-004/implementation/AEP-004_Policy_Profiles.md", + "site/standards/AEP-004/implementation/AEP-004_Security_Privacy_Guide.md", + "site/standards/AEP-004/implementation/index.html", + "site/standards/AEP-004/index.html", + "site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.docx", + "site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.md", + "site/standards/AEP-004/one_page/AEP-004_One-Page_Selection-Gate-Standard_v1.1.pdf", + "site/standards/AEP-004/one_page/index.html", + "site/standards/AEP-004/paper.pdf", + "site/standards/AEP-004/schemas/canary_plan.schema.json", + "site/standards/AEP-004/schemas/challenge_record.schema.json", + "site/standards/AEP-004/schemas/evaluation_requirement.schema.json", + "site/standards/AEP-004/schemas/evidence_requirement.schema.json", + "site/standards/AEP-004/schemas/gate_policy.schema.json", + "site/standards/AEP-004/schemas/index.html", + "site/standards/AEP-004/schemas/monitoring_plan.schema.json", + "site/standards/AEP-004/schemas/rollback_plan.schema.json", + "site/standards/AEP-004/schemas/selection_candidate.schema.json", + "site/standards/AEP-004/schemas/selection_certificate.schema.json", + "site/standards/AEP-004/source.md", + "site/standards/AEP-004/templates/index.html", + "site/standards/AEP-004/templates/selection_candidate_template.json", + "site/standards/AEP-004/templates/selection_certificate_template.json", + "site/standards/AEP-004/templates/selection_gate_review_template.md", + "site/standards/AEP-004/tools/index.html", + "site/standards/AEP-004/tools/selection_certificate_hash.py", + "site/standards/AEP-004/tools/selection_gate_audit.py", + "site/standards/AEP-004/tools/selection_gate_conformance_score.py", + "site/standards/AEP-004/tools/selection_gate_decide.py", + "site/standards/AEP-004/tools/validate_selection_certificate.py", + "site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.docx", + "site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.md", + "site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.pdf", + "site/standards/AEP-005/AEP-005_Tool-Permission-Standard_v1.1_Institutional.tex", + "site/standards/AEP-005/CODEX_IMPLEMENTATION_PROMPT_AEP005.md", + "site/standards/AEP-005/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-005/QA_REPORT.md", + "site/standards/AEP-005/README.md", + "site/standards/AEP-005/RELEASE_NOTES_AEP005_v1.1.md", + "site/standards/AEP-005/SHA256SUMS.txt", + "site/standards/AEP-005/conformance/aep005_conformance_checklist.md", + "site/standards/AEP-005/conformance/index.html", + "site/standards/AEP-005/examples/index.html", + "site/standards/AEP-005/examples/sample_approval_receipt.json", + "site/standards/AEP-005/examples/sample_break_glass_request.json", + "site/standards/AEP-005/examples/sample_compensation_receipt.json", + "site/standards/AEP-005/examples/sample_data_boundary_rule.json", + "site/standards/AEP-005/examples/sample_permission_lease.json", + "site/standards/AEP-005/examples/sample_rate_limit_policy.json", + "site/standards/AEP-005/examples/sample_revocation_receipt.json", + "site/standards/AEP-005/examples/sample_tool_call_receipt.json", + "site/standards/AEP-005/examples/sample_tool_manifest.json", + "site/standards/AEP-005/examples/sample_tool_manifest_email_send.json", + "site/standards/AEP-005/examples/sample_tool_permission_decision_allow_with_lease.json", + "site/standards/AEP-005/examples/sample_tool_permission_decision_approval_required.json", + "site/standards/AEP-005/examples/sample_tool_permission_decision_deny.json", + "site/standards/AEP-005/examples/sample_tool_permission_policy.json", + "site/standards/AEP-005/examples/sample_tool_request_read.json", + "site/standards/AEP-005/examples/sample_tool_request_send.json", + "site/standards/AEP-005/figures/fig01_tool_permission_flow_v11.png", + "site/standards/AEP-005/figures/fig02_tool_permission_lattice_v11.png", + "site/standards/AEP-005/figures/fig03_tool_gateway_boundary_model_v11.png", + "site/standards/AEP-005/figures/fig04_lease_revocation_compensation_v11.png", + "site/standards/AEP-005/figures/index.html", + "site/standards/AEP-005/implementation/AEP-005_Implementation_Guide.md", + "site/standards/AEP-005/implementation/AEP-005_Least_Privilege_Profile.md", + "site/standards/AEP-005/implementation/AEP-005_Security_Privacy_Guide.md", + "site/standards/AEP-005/implementation/AEP-005_Tool_Gateway_Profile.md", + "site/standards/AEP-005/implementation/index.html", + "site/standards/AEP-005/index.html", + "site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.docx", + "site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.md", + "site/standards/AEP-005/one_page/AEP-005_One-Page_Tool-Permission-Standard_v1.1.pdf", + "site/standards/AEP-005/one_page/index.html", + "site/standards/AEP-005/paper.pdf", + "site/standards/AEP-005/schemas/approval_receipt.schema.json", + "site/standards/AEP-005/schemas/break_glass_request.schema.json", + "site/standards/AEP-005/schemas/compensation_receipt.schema.json", + "site/standards/AEP-005/schemas/data_boundary_rule.schema.json", + "site/standards/AEP-005/schemas/index.html", + "site/standards/AEP-005/schemas/permission_lease.schema.json", + "site/standards/AEP-005/schemas/rate_limit_policy.schema.json", + "site/standards/AEP-005/schemas/revocation_receipt.schema.json", + "site/standards/AEP-005/schemas/tool_call_receipt.schema.json", + "site/standards/AEP-005/schemas/tool_manifest.schema.json", + "site/standards/AEP-005/schemas/tool_permission_decision.schema.json", + "site/standards/AEP-005/schemas/tool_permission_policy.schema.json", + "site/standards/AEP-005/schemas/tool_request.schema.json", + "site/standards/AEP-005/source.md", + "site/standards/AEP-005/templates/compensation_receipt_template.json", + "site/standards/AEP-005/templates/index.html", + "site/standards/AEP-005/templates/permission_lease_template.json", + "site/standards/AEP-005/templates/revocation_receipt_template.json", + "site/standards/AEP-005/templates/tool_call_receipt_template.json", + "site/standards/AEP-005/templates/tool_manifest_template.json", + "site/standards/AEP-005/templates/tool_permission_decision_template.json", + "site/standards/AEP-005/templates/tool_permission_policy_template.json", + "site/standards/AEP-005/templates/tool_permission_review_template.md", + "site/standards/AEP-005/templates/tool_request_template.json", + "site/standards/AEP-005/tools/authorize_tool_request.py", + "site/standards/AEP-005/tools/index.html", + "site/standards/AEP-005/tools/tool_gateway_audit.py", + "site/standards/AEP-005/tools/tool_permission_conformance_score.py", + "site/standards/AEP-005/tools/tool_permission_hash.py", + "site/standards/AEP-005/tools/validate_permission_lease.py", + "site/standards/AEP-005/tools/validate_tool_permission.py", + "site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.docx", + "site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.md", + "site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.pdf", + "site/standards/AEP-006/AEP-006_Rollback-Receipt-Standard_v1.1_Institutional.tex", + "site/standards/AEP-006/CODEX_IMPLEMENTATION_PROMPT_AEP006.md", + "site/standards/AEP-006/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-006/QA_REPORT.md", + "site/standards/AEP-006/README.md", + "site/standards/AEP-006/RELEASE_NOTES_AEP006_v1.1.md", + "site/standards/AEP-006/SHA256SUMS.txt", + "site/standards/AEP-006/conformance/aep006_conformance_checklist.md", + "site/standards/AEP-006/conformance/index.html", + "site/standards/AEP-006/examples/index.html", + "site/standards/AEP-006/examples/sample_compensation_receipt.json", + "site/standards/AEP-006/examples/sample_post_rollback_review.json", + "site/standards/AEP-006/examples/sample_recovery_bundle.json", + "site/standards/AEP-006/examples/sample_rollback_authorization.json", + "site/standards/AEP-006/examples/sample_rollback_plan.json", + "site/standards/AEP-006/examples/sample_rollback_receipt_failed_compensation_required.json", + "site/standards/AEP-006/examples/sample_rollback_receipt_partial.json", + "site/standards/AEP-006/examples/sample_rollback_receipt_success.json", + "site/standards/AEP-006/examples/sample_rollback_request.json", + "site/standards/AEP-006/examples/sample_rollback_trigger.json", + "site/standards/AEP-006/examples/sample_rollback_verification.json", + "site/standards/AEP-006/figures/fig01_rollback_receipt_loop.png", + "site/standards/AEP-006/figures/fig02_rollback_receipt_object_model.png", + "site/standards/AEP-006/figures/fig03_rollback_decision_matrix.png", + "site/standards/AEP-006/figures/fig04_recovery_timeline.png", + "site/standards/AEP-006/figures/index.html", + "site/standards/AEP-006/implementation/AEP-006_Implementation_Guide.md", + "site/standards/AEP-006/implementation/AEP-006_Recovery_Runbook.md", + "site/standards/AEP-006/implementation/AEP-006_Security_Privacy_Guide.md", + "site/standards/AEP-006/implementation/index.html", + "site/standards/AEP-006/index.html", + "site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.docx", + "site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.md", + "site/standards/AEP-006/one_page/AEP-006_One-Page_Rollback-Receipt-Standard_v1.1.pdf", + "site/standards/AEP-006/one_page/index.html", + "site/standards/AEP-006/paper.pdf", + "site/standards/AEP-006/schemas/compensation_receipt.schema.json", + "site/standards/AEP-006/schemas/index.html", + "site/standards/AEP-006/schemas/post_rollback_review.schema.json", + "site/standards/AEP-006/schemas/recovery_bundle.schema.json", + "site/standards/AEP-006/schemas/rollback_authorization.schema.json", + "site/standards/AEP-006/schemas/rollback_plan.schema.json", + "site/standards/AEP-006/schemas/rollback_receipt.schema.json", + "site/standards/AEP-006/schemas/rollback_request.schema.json", + "site/standards/AEP-006/schemas/rollback_trigger.schema.json", + "site/standards/AEP-006/schemas/rollback_verification.schema.json", + "site/standards/AEP-006/source.md", + "site/standards/AEP-006/templates/compensation_receipt_template.json", + "site/standards/AEP-006/templates/index.html", + "site/standards/AEP-006/templates/post_rollback_review_template.json", + "site/standards/AEP-006/templates/rollback_authorization_template.json", + "site/standards/AEP-006/templates/rollback_plan_template.json", + "site/standards/AEP-006/templates/rollback_receipt_template.json", + "site/standards/AEP-006/templates/rollback_request_template.json", + "site/standards/AEP-006/templates/rollback_review_template.md", + "site/standards/AEP-006/templates/rollback_trigger_template.json", + "site/standards/AEP-006/templates/rollback_verification_template.json", + "site/standards/AEP-006/tools/index.html", + "site/standards/AEP-006/tools/rollback_audit.py", + "site/standards/AEP-006/tools/rollback_conformance_score.py", + "site/standards/AEP-006/tools/rollback_decide.py", + "site/standards/AEP-006/tools/rollback_receipt_hash.py", + "site/standards/AEP-006/tools/validate_rollback_receipt.py", + "site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.docx", + "site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.md", + "site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.pdf", + "site/standards/AEP-007/AEP-007_Public-Safe-Proof-Report-Standard_v1.2_Institutional.tex", + "site/standards/AEP-007/CODEX_IMPLEMENTATION_PROMPT_AEP007.md", + "site/standards/AEP-007/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-007/QA_REPORT.md", + "site/standards/AEP-007/README.md", + "site/standards/AEP-007/RELEASE_NOTES_AEP007_v1.2.md", + "site/standards/AEP-007/SHA256SUMS.txt", + "site/standards/AEP-007/conformance/aep007_conformance_checklist.md", + "site/standards/AEP-007/conformance/index.html", + "site/standards/AEP-007/examples/index.html", + "site/standards/AEP-007/examples/sample_challenge_record.json", + "site/standards/AEP-007/examples/sample_correction_notice.json", + "site/standards/AEP-007/examples/sample_public_claim_matrix.json", + "site/standards/AEP-007/examples/sample_public_safe_report.json", + "site/standards/AEP-007/examples/sample_publication_approval.json", + "site/standards/AEP-007/examples/sample_redaction_ledger.json", + "site/standards/AEP-007/examples/sample_report_bundle.json", + "site/standards/AEP-007/examples/sample_retraction_notice.json", + "site/standards/AEP-007/figures/fig01_public_safe_report_flow.png", + "site/standards/AEP-007/figures/fig02_disclosure_classification.png", + "site/standards/AEP-007/figures/fig03_public_report_lifecycle.png", + "site/standards/AEP-007/figures/fig04_claim_boundary_ladder.png", + "site/standards/AEP-007/figures/index.html", + "site/standards/AEP-007/implementation/AEP-007_Correction_Retraction_Playbook.md", + "site/standards/AEP-007/implementation/AEP-007_Implementation_Guide.md", + "site/standards/AEP-007/implementation/AEP-007_Proof_Card_Profile.md", + "site/standards/AEP-007/implementation/AEP-007_Publication_Workflow.md", + "site/standards/AEP-007/implementation/AEP-007_Redaction_Guide.md", + "site/standards/AEP-007/implementation/AEP-007_Security_Privacy_Guide.md", + "site/standards/AEP-007/implementation/AEP-007_Website_Publishing_Profile.md", + "site/standards/AEP-007/implementation/index.html", + "site/standards/AEP-007/index.html", + "site/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.docx", + "site/standards/AEP-007/one_page/AEP-007_One-Page_Public-Safe-Proof-Report-Standard_v1.2.pdf", + "site/standards/AEP-007/one_page/index.html", + "site/standards/AEP-007/paper.pdf", + "site/standards/AEP-007/schemas/challenge_record.schema.json", + "site/standards/AEP-007/schemas/claim_boundary.schema.json", + "site/standards/AEP-007/schemas/correction_notice.schema.json", + "site/standards/AEP-007/schemas/correction_policy.schema.json", + "site/standards/AEP-007/schemas/disclosure_review.schema.json", + "site/standards/AEP-007/schemas/evaluation_summary.schema.json", + "site/standards/AEP-007/schemas/evidence_summary.schema.json", + "site/standards/AEP-007/schemas/index.html", + "site/standards/AEP-007/schemas/public_artifact_link.schema.json", + "site/standards/AEP-007/schemas/public_claim_matrix.schema.json", + "site/standards/AEP-007/schemas/public_safe_report.schema.json", + "site/standards/AEP-007/schemas/publication_approval.schema.json", + "site/standards/AEP-007/schemas/redaction_decision.schema.json", + "site/standards/AEP-007/schemas/redaction_ledger.schema.json", + "site/standards/AEP-007/schemas/report_bundle.schema.json", + "site/standards/AEP-007/schemas/retraction_notice.schema.json", + "site/standards/AEP-007/schemas/risk_limitation_summary.schema.json", + "site/standards/AEP-007/schemas/source_evidence_reference.schema.json", + "site/standards/AEP-007/source.md", + "site/standards/AEP-007/templates/challenge_record_template.json", + "site/standards/AEP-007/templates/claim_boundary_template.json", + "site/standards/AEP-007/templates/claim_boundary_template.md", + "site/standards/AEP-007/templates/correction_notice_template.json", + "site/standards/AEP-007/templates/disclosure_review_template.json", + "site/standards/AEP-007/templates/index.html", + "site/standards/AEP-007/templates/public_safe_report_template.json", + "site/standards/AEP-007/templates/public_safe_report_template.md", + "site/standards/AEP-007/templates/publication_approval_template.json", + "site/standards/AEP-007/templates/redaction_review_template.md", + "site/standards/AEP-007/tools/build_report_bundle.py", + "site/standards/AEP-007/tools/generate_public_safe_report.py", + "site/standards/AEP-007/tools/index.html", + "site/standards/AEP-007/tools/public_safe_conformance_score.py", + "site/standards/AEP-007/tools/public_safe_redaction_audit.py", + "site/standards/AEP-007/tools/public_safe_report_hash.py", + "site/standards/AEP-007/tools/validate_public_safe_report.py", + "site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.docx", + "site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.md", + "site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.pdf", + "site/standards/AEP-008/AEP-008_Proof-Room-Standard_v1.1_Institutional.tex", + "site/standards/AEP-008/CODEX_IMPLEMENTATION_PROMPT_AEP008.md", + "site/standards/AEP-008/INSTALL_IN_PROOF_GRADIENT.md", + "site/standards/AEP-008/QA_REPORT.md", + "site/standards/AEP-008/README.md", + "site/standards/AEP-008/RELEASE_NOTES_AEP008_v1.1.md", + "site/standards/AEP-008/SHA256SUMS.txt", + "site/standards/AEP-008/conformance/aep008_conformance_checklist.md", + "site/standards/AEP-008/conformance/index.html", + "site/standards/AEP-008/examples/index.html", + "site/standards/AEP-008/examples/sample_decision_log.json", + "site/standards/AEP-008/examples/sample_evidence_boundary.json", + "site/standards/AEP-008/examples/sample_proof_room_charter.json", + "site/standards/AEP-008/examples/sample_proof_room_manifest.json", + "site/standards/AEP-008/examples/sample_role_assignment_registry.json", + "site/standards/AEP-008/examples/sample_room_audit_export.json", + "site/standards/AEP-008/examples/sample_room_closure_report.json", + "site/standards/AEP-008/examples/sample_work_item_registry.json", + "site/standards/AEP-008/figures/fig01_proof_room_architecture_v11.png", + "site/standards/AEP-008/figures/fig02_proof_room_lifecycle_v11.png", + "site/standards/AEP-008/figures/fig03_proof_room_roles_boundaries_v11.png", + "site/standards/AEP-008/figures/fig04_proof_room_operating_modes_v11.png", + "site/standards/AEP-008/figures/index.html", + "site/standards/AEP-008/implementation/AEP-008_Implementation_Guide.md", + "site/standards/AEP-008/implementation/AEP-008_Proof_Room_Runbook.md", + "site/standards/AEP-008/implementation/AEP-008_Role_Separation_Profile.md", + "site/standards/AEP-008/implementation/AEP-008_Security_Privacy_Guide.md", + "site/standards/AEP-008/implementation/index.html", + "site/standards/AEP-008/index.html", + "site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.docx", + "site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.md", + "site/standards/AEP-008/one_page/AEP-008_One-Page_Proof-Room-Standard_v1.1.pdf", + "site/standards/AEP-008/one_page/index.html", + "site/standards/AEP-008/paper.pdf", + "site/standards/AEP-008/schemas/decision_log.schema.json", + "site/standards/AEP-008/schemas/evidence_boundary.schema.json", + "site/standards/AEP-008/schemas/index.html", + "site/standards/AEP-008/schemas/proof_room_charter.schema.json", + "site/standards/AEP-008/schemas/proof_room_manifest.schema.json", + "site/standards/AEP-008/schemas/role_assignment_registry.schema.json", + "site/standards/AEP-008/schemas/room_audit_export.schema.json", + "site/standards/AEP-008/schemas/room_closure_report.schema.json", + "site/standards/AEP-008/schemas/room_register.schema.json", + "site/standards/AEP-008/schemas/room_session_record.schema.json", + "site/standards/AEP-008/schemas/scope_boundary.schema.json", + "site/standards/AEP-008/schemas/work_item_registry.schema.json", + "site/standards/AEP-008/source.md", + "site/standards/AEP-008/templates/decision_log_template.json", + "site/standards/AEP-008/templates/evidence_boundary_template.json", + "site/standards/AEP-008/templates/index.html", + "site/standards/AEP-008/templates/proof_room_charter_template.json", + "site/standards/AEP-008/templates/proof_room_manifest_template.json", + "site/standards/AEP-008/templates/proof_room_review_template.md", + "site/standards/AEP-008/templates/role_assignment_registry_template.json", + "site/standards/AEP-008/templates/room_audit_export_template.json", + "site/standards/AEP-008/templates/room_closure_report_template.json", + "site/standards/AEP-008/templates/work_item_registry_template.json", + "site/standards/AEP-008/tools/generate_proof_room_index.py", + "site/standards/AEP-008/tools/index.html", + "site/standards/AEP-008/tools/proof_room_audit.py", + "site/standards/AEP-008/tools/proof_room_conformance_score.py", + "site/standards/AEP-008/tools/proof_room_hash.py", + "site/standards/AEP-008/tools/validate_proof_room_manifest.py", + "site/standards/index.html", + "site/start-here/index.html", + "site/styles.css", + "site/workflow/build-one-reusable-ai-workflow/index.html", + "site/workflow/checkout-recovery/index.html", + "site/workflow/department-ai-correction-rollback/index.html", + "site/workflow/department-ai-permission-map/index.html", + "site/workflow/department-monthly-proof-report/index.html", + "site/workflow/department-proof-room-lite/index.html", + "site/workflow/department-public-safe-case-study/index.html", + "site/workflow/department-weekly-proof-review/index.html", + "site/workflow/feedback-to-product-update/index.html", + "site/workflow/idea-to-demand-engine/index.html", + "site/workflow/index.html", + "site/workflow/internal-approval-memo/index.html", + "site/workflow/lead-magnet-email-sequence/index.html", + "site/workflow/meeting-to-action-plan/index.html", + "site/workflow/monthly-workflow-vault-drop/index.html", + "site/workflow/offer-to-sales-page/index.html", + "site/workflow/order-bump-builder/index.html", + "site/workflow/partner-referral-kit/index.html", + "site/workflow/post-purchase-onboarding/index.html", + "site/workflow/proof-card-referral-loop/index.html", + "site/workflow/rsi-lite-self-improving-workflows/index.html", + "site/workflow/support-faq-triage/index.html", + "site/workflow/team-pack-upsell/index.html", + "site/workflow/team-sprint-facilitator/index.html", + "site/workflow/weekly-growth-review/index.html", + "site/workshop/goalos-proof-room-implementation-sprint/index.html", + "site/workshop/goalos-rsi-sprint-workshop/index.html", + "skillos/__init__.py", + "skillos/api.py", + "skillos/cli.py", + "skillos/evals.py", + "skillos/learning.py", + "skillos/models.py", + "skillos/permissions.py", + "skillos/releases.py", + "skillos/runtime.py", + "skillos/seed.py", + "skillos/storage.py", + "skillos/trainer.py", + "skillos/wealth_proof.py", + "skills/invoice_reconciliation/v1/skill.md", + "skills/research_summary/v1/skill.md", + "skills/sales_followup_email/v1/skill.md", + "styles.css", + "tests/test_corporate_rsi_dominion.py", + "tests/test_enterprise_rsi_superorganism.py", + "tests/test_goalos_claim_boundaries.py", + "tests/test_goalos_product_catalog.py", + "tests/test_goalos_product_pages.py", + "tests/test_goalos_public_site_rules.py", + "tests/test_no_paid_product_files.py", + "tests/test_proof_archive.py", + "tests/test_proof_carrying_intelligence.py", + "tests/test_proof_gradient_api.py", + "tests/test_proof_gradient_foundation.py", + "tests/test_proof_gradient_security.py", + "tests/test_proof_gradient_vertical_slice.py", + "tests/test_sovereign_domain_atlas.py", + "tests/test_sovereign_enterprise_constellation.py", + "tests/test_sovereign_enterprise_proof_economy.py", + "tests/test_sovereign_kardashev_capital_engine.py", + "tests_legacy_skillos/test_end_to_end.py", + "tests_legacy_skillos/test_pages_build.py", + "tests_legacy_skillos/test_storage.py", + "tests_legacy_skillos/test_wealth_proof.py", + "web/app.js", + "web/index.html", + "web/styles.css" ] -} \ No newline at end of file +} diff --git a/scripts/goalos_public_site_rules.py b/scripts/goalos_public_site_rules.py index d0e2b5bf..c06d2093 100755 --- a/scripts/goalos_public_site_rules.py +++ b/scripts/goalos_public_site_rules.py @@ -18,7 +18,7 @@ ) STANDALONE_PROOF_RE = re.compile( - r"^(rsi-ai-first-[a-z0-9-]+-proof\.html|proofs/.+\.html)$", + r"^((?:rsi|autonomous|enterprise)[a-z0-9-]*.*(?:proof|readiness)\.html|proofs/.+\.html)$", re.IGNORECASE, ) diff --git a/scripts/validate_docs_tables_figures.py b/scripts/validate_docs_tables_figures.py index adf399c1..9032935d 100755 --- a/scripts/validate_docs_tables_figures.py +++ b/scripts/validate_docs_tables_figures.py @@ -1,10 +1,11 @@ #!/usr/bin/env python3 -"""Validate public documentation table/figure references and paid-artifact boundaries.""" +"""Validate GoalOS README, docs, CSV tables, figure assets, and public artifact links.""" from __future__ import annotations import re import sys from pathlib import Path +from urllib.parse import urlparse from goalos_public_site_rules import is_blocked_paid_or_private_artifact @@ -12,31 +13,148 @@ DOCS = ROOT / "docs" MD_LINK_RE = re.compile(r"!?\[[^\]]*\]\(([^)]+)\)") +REQUIRED_DOCS = [ + "docs/GOALOS_DOCUMENTATION_INDEX.md", + "docs/GOALOS_COMMERCIALIZATION_STATUS.md", + "docs/GOALOS_PRODUCT_LADDER.md", + "docs/GOALOS_READY_TO_SELL_STATUS.md", + "docs/GOALOS_PROOF_CARD_001_PLAN.md", + "docs/GOALOS_RECURSIVE_WORKFLOW_OS.md", + "docs/GOALOS_CLOUD_MVP_0_2.md", + "docs/GOALOS_RSI_SPRINT_WORKSHOP_PUBLIC_POSITIONING.md", + "docs/GOALOS_PUBLIC_SITE_RELEASE_V8.md", + "docs/GOALOS_VALIDATION_HOTFIX_V14.md", + "docs/GOALOS_PUBLIC_SITE_ASSET_SYSTEM.md", + "docs/GOALOS_PAID_ARTIFACT_POLICY.md", + "docs/GOALOS_CLAIMS_AND_SAFE_BOUNDARY.md", + "docs/GOALOS_LEGAL_PAYMENTS_BUYER_SUCCESS_SUMMARY.md", + "docs/GOALOS_TAX_ACCOUNTING_CFO_SUMMARY.md", + "docs/GOALOS_COMMUNICATIONS_FIRM_SUMMARY.md", + "docs/GOALOS_PROFESSIONAL_FIRM_PACKAGES_SUMMARY.md", + "docs/GOALOS_WEB3_HYBRID_ARCHITECTURE.md", + "docs/GOALOS_ENGINEERING_ROADMAP.md", + "docs/GOALOS_REPO_AUDIT.md", +] +REQUIRED_TABLES = [ + "docs/tables/goalos_product_ladder.csv", + "docs/tables/goalos_offer_status.csv", + "docs/tables/goalos_claim_boundaries.csv", + "docs/tables/goalos_public_site_pages.csv", + "docs/tables/goalos_paid_file_policy.csv", + "docs/tables/goalos_aep_standards.csv", + "docs/tables/goalos_document_inventory.csv", + "docs/tables/goalos_figure_inventory.csv", + "docs/tables/goalos_asset_manifest.csv", + "docs/tables/goalos_validation_rules.csv", + "docs/tables/goalos_workflow_actions.csv", + "docs/tables/goalos_proof_card_001_fields.csv", + "docs/tables/goalos_professional_firm_packages.csv", +] +FIGURE_NAMES = [ + "goalos_recursive_workflow_loop", + "goalos_product_ladder", + "goalos_proof_led_revenue_loop", + "goalos_public_site_architecture", + "goalos_validation_architecture", + "goalos_cloud_mvp_architecture", + "goalos_enterprise_safety_boundary", + "goalos_web3_hybrid_architecture", + "goalos_proof_graph_concept", +] +REQUIRED_README_PHRASES = [ + "Proof Gradient · GoalOS", + "Aim. Act. Prove. Evolve.", + "A model can answer. An agent can act. An institution must prove.", + "Recursive Self-Improving Workflows", + "does **not** modify base AI models", + "Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run", + "GoalOS Validation Hotfix v14 Microsite Compatibility", + "docs/GOALOS_DOCUMENTATION_INDEX.md", + "docs/figures/", + "docs/tables/", + "No proof, no evolution", +] +CURRENT_PRODUCT_PHRASES = [ + "$49", "$199", "$997", "$2,500+", "$9,500+", "$49,000+", + "GoalOS AI Efficiency Sprint Kit v1.4", + "GoalOS RSI Lite v1.6", + "GoalOS Proof Room Lite / Department Pack v2.0", + "GoalOS RSI Sprint Workshop v7.0", + "GoalOS Proof Room Implementation Sprint v2.0", + "GoalOS Enterprise RSI Pilot v2.0", + "GoalOS Cloud MVP 0.2", +] + + +def add(errors: list[str], msg: str) -> None: + errors.append(msg) + + +def target_exists(source: Path, target: str) -> bool: + parsed = urlparse(target) + if parsed.scheme or parsed.netloc or target.startswith("mailto:") or target.startswith("#"): + return True + clean = parsed.path.split("#", 1)[0] + if not clean: + return True + candidate = (source.parent / clean).resolve() if not clean.startswith("/") else (ROOT / clean.lstrip("/")).resolve() + try: + candidate.relative_to(ROOT) + except ValueError: + return True + if candidate.exists(): + return True + if candidate.suffix == "" and candidate.with_suffix(".md").exists(): + return True + return False + def main() -> int: errors: list[str] = [] - if not DOCS.exists(): - print("docs/ not found; docs tables/figures validation skipped.") - return 0 - - for path in sorted(DOCS.rglob("*.md")): + for rel in REQUIRED_DOCS + REQUIRED_TABLES: + if not (ROOT / rel).exists(): + add(errors, f"missing required file: {rel}") + for name in FIGURE_NAMES: + for ext in ("mmd", "svg"): + rel = f"docs/figures/{name}.{ext}" + if not (ROOT / rel).exists(): + add(errors, f"missing required figure asset: {rel}") + readme = ROOT / "README.md" + if not readme.exists(): + add(errors, "missing README.md") + else: + text = readme.read_text(encoding="utf-8", errors="ignore") + for phrase in REQUIRED_README_PHRASES + CURRENT_PRODUCT_PHRASES: + if phrase not in text: + add(errors, f"README missing required phrase: {phrase}") + for phrase in ("guaranteed ROI", "investment advice", "uncontrolled autonomous deployment"): + if phrase not in text: + add(errors, f"README missing claim-boundary phrase: {phrase}") + if "https://www.quebecartificialintelligence.com/shop" not in text: + add(errors, "README missing required QUEBEC.AI shop URL") + docs_to_check = [ROOT / rel for rel in REQUIRED_DOCS] + for path in [ROOT / "README.md"] + docs_to_check: + if not path.exists(): + continue rel = path.relative_to(ROOT).as_posix() text = path.read_text(encoding="utf-8", errors="ignore") - if "|" in text: - for lineno, line in enumerate(text.splitlines(), start=1): - if line.count("|") >= 2 and "---" in line and not re.search(r"\|\s*:?-{3,}:?\s*\|", line): - errors.append(f"{rel}:{lineno}: markdown table separator may be malformed") for target in MD_LINK_RE.findall(text): - clean = target.split("#", 1)[0].split("?", 1)[0] - if clean and is_blocked_paid_or_private_artifact(clean): - errors.append(f"{rel}: links to blocked paid/private artifact {target}") - + clean = target.strip().split()[0] + parsed = urlparse(clean) + if parsed.path and is_blocked_paid_or_private_artifact(parsed.path): + add(errors, f"{rel}: links to blocked paid/private artifact {target}") + if not target_exists(path, clean): + add(errors, f"{rel}: broken internal Markdown link {target}") + if rel in REQUIRED_DOCS and rel != "docs/GOALOS_DOCUMENTATION_INDEX.md": + for heading in ("## Purpose", "## Current status", "## Key decisions", "## Files involved", "## What is public", "## What must remain private", "## Next actions", "## Validation checklist"): + if heading not in text: + add(errors, f"{rel}: missing required operational section {heading}") if errors: - print("Docs table/figure validation failed:", file=sys.stderr) - for error in errors[:200]: + print("Docs/tables/figures validation failed:", file=sys.stderr) + for error in errors[:300]: print(f"- {error}", file=sys.stderr) return 1 - print("Docs table/figure validation passed.") + print("Docs/tables/figures validation passed.") return 0 diff --git a/scripts/validate_goalos_catalog.py b/scripts/validate_goalos_catalog.py index 9ab54cb6..427a052b 100755 --- a/scripts/validate_goalos_catalog.py +++ b/scripts/validate_goalos_catalog.py @@ -1,29 +1,87 @@ #!/usr/bin/env python3 -"""Validate GoalOS public catalog artifacts against shared site rules.""" +"""Validate GoalOS catalog as the source of truth for README/docs/tables/site.""" from __future__ import annotations +import csv +import re import sys from pathlib import Path -from goalos_public_site_rules import is_blocked_paid_or_private_artifact, normalize_rel, page_class - ROOT = Path(__file__).resolve().parents[1] +CATALOG = ROOT / "docs/data/goalos_catalog.yml" +SHOP = "https://www.quebecartificialintelligence.com/shop" +PRODUCTS = [ + ("$49", "GoalOS AI Efficiency Sprint Kit", "v1.4"), + ("$199", "GoalOS RSI Lite", "v1.6"), + ("$997", "GoalOS Proof Room Lite / Department Pack", "v2.0"), + ("$2,500+", "GoalOS RSI Sprint Workshop", "v7.0"), + ("$9,500+", "GoalOS Proof Room Implementation Sprint", "v2.0"), + ("$49,000+", "GoalOS Enterprise RSI Pilot", "v2.0"), +] +AEP_CODES = [f"AEP-{i:03d}" for i in range(1, 9)] +PROHIBITED = [ + "guaranteed ROI", + "guaranteed revenue", + "investment returns", + "model self-modification", + "uncontrolled autonomous deployment", +] +PRIVATE_DOWNLOAD_RE = re.compile(r"https?://[^\s)]+(?:BUYER|BUNDLE|DELIVERY|PRIVATE|PAID)[^\s)]*\.zip", re.IGNORECASE) + + +def read(path: str) -> str: + p = ROOT / path + return p.read_text(encoding="utf-8", errors="ignore") if p.exists() else "" def main() -> int: errors: list[str] = [] - for base_name in ("site", "public"): - base = ROOT / base_name - if not base.exists(): - continue - for path in sorted(p for p in base.rglob("*") if p.is_file() and "_archive" not in p.parts): - rel = normalize_rel(path.relative_to(base)) - if is_blocked_paid_or_private_artifact(rel): - errors.append(f"{base_name}/{rel}: classified as {page_class(rel)} and blocked from the public catalog") - + if not CATALOG.exists(): + errors.append("missing docs/data/goalos_catalog.yml") + text = "" + else: + text = CATALOG.read_text(encoding="utf-8", errors="ignore") + for required in [SHOP, "GoalOS Validation Hotfix v14 Microsite Compatibility", "GoalOS Public Site Release v8 Intelligent Assets", "GoalOS Cloud MVP", "0.2"]: + if required not in text: + errors.append(f"catalog missing required value: {required}") + for price, name, version in PRODUCTS: + for value in (price, name, version): + if value not in text: + errors.append(f"catalog missing product value: {value}") + for code in AEP_CODES: + if code not in text: + errors.append(f"catalog missing AEP code: {code}") + for value in PROHIBITED: + if value not in text: + errors.append(f"catalog missing prohibited claim boundary: {value}") + readme = read("README.md") + product_csv = ROOT / "docs/tables/goalos_product_ladder.csv" + csv_text = product_csv.read_text(encoding="utf-8", errors="ignore") if product_csv.exists() else "" + for price, name, version in PRODUCTS: + combo = f"{name} {version}" + for label, body in (("README", readme), ("product ladder CSV", csv_text)): + if price not in body: + errors.append(f"{label} missing price from catalog: {price}") + if name not in body: + errors.append(f"{label} missing product from catalog: {name}") + if version not in body: + errors.append(f"{label} missing version from catalog: {version}") + if product_csv.exists(): + rows = list(csv.DictReader(product_csv.open(encoding="utf-8"))) + if len(rows) != len(PRODUCTS): + errors.append(f"product ladder CSV should have {len(PRODUCTS)} products, found {len(rows)}") + for row in rows: + if row.get("Public URL") != SHOP: + errors.append(f"product ladder CSV has non-shop URL for {row.get('Offer')}: {row.get('Public URL')}") + for path in [ROOT / "README.md", *sorted((ROOT / "docs").glob("GOALOS_*.md"))]: + body = path.read_text(encoding="utf-8", errors="ignore") if path.exists() else "" + if PRIVATE_DOWNLOAD_RE.search(body): + errors.append(f"{path.relative_to(ROOT)} contains a direct private/paid ZIP download URL") + if "v12" in readme and "obsolete" not in readme.lower(): + errors.append("README mentions v12 without marking it obsolete") if errors: print("GoalOS catalog validation failed:", file=sys.stderr) - for error in errors[:200]: + for error in errors[:250]: print(f"- {error}", file=sys.stderr) return 1 print("GoalOS catalog validation passed.") diff --git a/scripts/validate_goalos_public_site.py b/scripts/validate_goalos_public_site.py index f9923d9a..1a8357c3 100755 --- a/scripts/validate_goalos_public_site.py +++ b/scripts/validate_goalos_public_site.py @@ -95,20 +95,19 @@ def validate_html(root: Path, path: Path, errors: list[str]) -> None: ) if cls == "standalone_proof_page": - if not has_standalone_marker(text): - add_error( - errors, - rel, - "is classified as standalone_proof_page by path but lacks explicit standalone proof metadata", - "add and ", - ) + explicit_standalone = has_standalone_marker(text) + if not explicit_standalone: + # v14 microsite compatibility: legacy root proof/readiness pages are + # classified by path and do not need the marketing shell. New + # standalone pages should still add explicit metadata. + pass if not has_title(text): add_error(errors, rel, "is classified as standalone_proof_page but lacks a useful ", "add a concise proof title") - if not has_meta_description(text): + if explicit_standalone and not has_meta_description(text): add_error(errors, rel, "is classified as standalone_proof_page but lacks meta description", "add <meta name=\"description\" content=\"...\">") - if not has_goalos_or_proof_gradient_escape(text): - add_error(errors, rel, "is classified as standalone_proof_page but lacks a GoalOS / Proof Gradient link back", "add <a href=\"/proof-gradient/\">QUEBEC.AI ⚜️✨ · GoalOS · Proof Gradient</a>") - if not has_quebec_ai_visible_brand(text): + if explicit_standalone and not has_goalos_or_proof_gradient_escape(text): + add_error(errors, rel, "is classified as standalone_proof_page but lacks a GoalOS / Proof Gradient link back", "add <a href="/proof-gradient/">QUEBEC.AI ⚜️✨ · GoalOS · Proof Gradient</a>") + if explicit_standalone and not has_quebec_ai_visible_brand(text): add_error(errors, rel, "is classified as standalone_proof_page but lacks QUEBEC.AI identity", "include QUEBEC.AI, ⚜️✨, or quebecaisealv5 in the page") if contains_blocked_claim_language(text): add_error(errors, rel, "contains blocked claim language", "remove unsupported investment or model self-modification claims") diff --git a/tests/test_goalos_public_site_rules.py b/tests/test_goalos_public_site_rules.py index 2f99c989..c4bfbe9d 100644 --- a/tests/test_goalos_public_site_rules.py +++ b/tests/test_goalos_public_site_rules.py @@ -84,3 +84,16 @@ def test_site_prefixed_rsi_and_app_pages_keep_classification(): assert not requires_canonical_shell("public/rsi-ai-first-governance-capital-engine-proof.html", "") assert is_app_page("site/app/goalos-cloud-mvp/index.html") assert not requires_canonical_shell("site/app/goalos-cloud-mvp/index.html", "<html></html>") + + +def test_current_paid_buyer_zip_names_are_blocked(): + blocked = [ + "GoalOS_AI_Efficiency_Sprint_Kit_v1_4_BUYER_EXCELLENCE_EDITION.zip", + "GoalOS_RSI_Lite_Recursive_Self_Improving_Workflow_Kit_v1_6_CLEAN_BUYER_OFFICIAL.zip", + "GoalOS_Proof_Room_Lite_Department_Pack_v2_0_WORLD_CLASS_BILINGUAL_BUYER_OFFICIAL.zip", + "GoalOS_RSI_Sprint_Workshop_v7_0_PRIME_TIME_PROOF_CARD_EDITION_COMPLETE_BUNDLE.zip", + "GoalOS_Enterprise_RSI_Pilot_v2_0_INSTITUTIONAL_BOARDROOM_FINAL_COMPLETE_BUNDLE.zip", + ] + for rel in blocked: + assert is_blocked_paid_or_private_artifact(rel), rel +