diff --git a/.github/workflows/aep003-proofpacket-conformance-ci.yml b/.github/workflows/aep003-proofpacket-conformance-ci.yml index 645b2dfa..09a6e8bf 100644 --- a/.github/workflows/aep003-proofpacket-conformance-ci.yml +++ b/.github/workflows/aep003-proofpacket-conformance-ci.yml @@ -22,7 +22,7 @@ jobs: run: | set -euo pipefail if [ -d docs/standards/AEP-003/examples ]; then - for f in docs/standards/AEP-003/examples/sample_proof_packet_*.json; do + for f in docs/standards/AEP-003/examples/sample_proof_packet_[0-9][0-9]_*.json; do [ -f "$f" ] || continue python docs/standards/AEP-003/tools/validate_proof_packet.py "$f" done diff --git a/.github/workflows/build-goalos-cloud-mvp-v0-2.yml b/.github/workflows/build-goalos-cloud-mvp-v0-2.yml index 6a3ec112..d88b7b7a 100644 --- a/.github/workflows/build-goalos-cloud-mvp-v0-2.yml +++ b/.github/workflows/build-goalos-cloud-mvp-v0-2.yml @@ -4,197 +4,46 @@ on: workflow_dispatch: permissions: - contents: write + contents: read pages: write id-token: write concurrency: - group: build-goalos-cloud-mvp-v02 + group: goalos-pages cancel-in-progress: false jobs: - build-goalos-mvp-v02: - name: Build GoalOS Cloud MVP 0.2 + mvp-test-and-deploy: runs-on: ubuntu-latest - + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} steps: - - name: Check out repository + - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Generate GoalOS Cloud MVP v0.2 files - id: generate - shell: bash + - name: Detect site root + id: root run: | - set -euo pipefail - WEB_ROOT="site" - if [ ! -d "$WEB_ROOT" ] && [ -d "public" ]; then WEB_ROOT="public"; fi - mkdir -p "$WEB_ROOT" - echo "web_root=$WEB_ROOT" >> "$GITHUB_OUTPUT" - cat > "$RUNNER_TEMP/generate_goalos_cloud_mvp_v02.py" <<'PY' - - from pathlib import Path - import re, json, hashlib - - WEB_ROOT = Path("site") - if not WEB_ROOT.exists() and Path("public").exists(): - WEB_ROOT = Path("public") - WEB_ROOT.mkdir(parents=True, exist_ok=True) - (WEB_ROOT / ".nojekyll").write_text("", encoding="utf-8") - - APP = WEB_ROOT / "app" / "goalos-cloud-mvp" - ASSETS = APP / "assets" - TESTS = APP / "tests" - SCHEMAS = APP / "schemas" - DOCS = APP / "docs" - for d in [ASSETS, TESTS, SCHEMAS, DOCS]: - d.mkdir(parents=True, exist_ok=True) - - (ASSETS / "enterprise-core.mjs").write_text('export const DATA_CLASSES = ["public", "internal", "confidential", "restricted"];\n\nexport const DEMO_CASES = [\n { id: "case_refund_001", dataClass: "internal", type: "refund", title: "Refund / access issue", input: "I bought the digital kit but cannot access the files. Can I get a refund?", expected: ["digital product terms", "technical access exception", "human review"] },\n { id: "case_refund_002", dataClass: "internal", type: "refund", title: "Changed mind after download", input: "I downloaded the product but changed my mind. Can you refund me?", expected: ["final sale boundary", "no legal advice", "human review"] },\n { id: "case_access_003", dataClass: "internal", type: "access", title: "Missing file", input: "The ZIP opens but one file seems missing.", expected: ["access support", "replacement path"] },\n { id: "case_claims_004", dataClass: "public", type: "claims", title: "ROI guarantee question", input: "Will this guarantee I save 10 hours per week or make more revenue?", expected: ["no ROI guarantee", "safe claim boundary"] },\n { id: "case_fr_005", dataClass: "internal", type: "onboarding", title: "French beginner", input: "Je suis débutant. Quelle est la première étape pour utiliser RSI Lite?", expected: ["French guidance", "first step"] },\n { id: "case_security_006", dataClass: "confidential", type: "security", title: "Confidential upload blocked", input: "Here is an internal customer file with private details. Can I paste it into a public model?", expected: ["block external provider", "escalation"] }\n];\n\nexport function createInitialState() {\n const workflow = createWorkflowV1();\n return {\n organization: { id: "org_demo", name: "GoalOS Demo Enterprise", region: "CA", plan: "enterprise-pilot" },\n workspace: { id: "ws_demo", name: "Customer Support Proof Room", organizationId: "org_demo" },\n users: [\n { id: "user_owner", name: "Owner", role: "Owner" },\n { id: "user_reviewer", name: "Reviewer", role: "Reviewer" },\n { id: "user_runner", name: "Runner", role: "Runner" }\n ],\n policies: [defaultPolicy()],\n modelProviders: [\n { id: "provider_local", name: "GoalOS Local Demo Model", classesAllowed: ["public", "internal"], enabled: true },\n { id: "provider_restricted", name: "Restricted Internal Model Placeholder", classesAllowed: ["public", "internal", "confidential"], enabled: true }\n ],\n memoryItems: [\n { id: "mem_terms", type: "product_terms", status: "approved", scope: "workspace", title: "Digital product terms", content: "Digital product with instant access. Sales are final once delivered except where required by law or for duplicate charges / technical access failures.", approvedBy: "user_owner" },\n { id: "mem_boundary", type: "claim_boundary", status: "approved", scope: "workspace", title: "No guaranteed results", content: "No guaranteed income, ROI, productivity, compliance, safety, or business results. Human review required.", approvedBy: "user_owner" },\n { id: "mem_voice", type: "brand_voice", status: "approved", scope: "workspace", title: "Support voice", content: "Calm, clear, direct, practical, no hype.", approvedBy: "user_owner" }\n ],\n workflows: [workflow],\n activeWorkflowVersionId: workflow.versions[0].id,\n runs: [],\n evaluations: [],\n proofRecords: [],\n benchmarkRuns: [],\n improvementProposals: [],\n approvals: [],\n deployments: [],\n rollbackEvents: [],\n auditLogs: [audit("system", "state_initialized", "GoalOS Cloud MVP v0.2 initialized.")]\n };\n}\n\nexport function defaultPolicy() {\n return {\n id: "policy_default",\n name: "Default enterprise-safe pilot policy",\n noModelSelfModification: true,\n humanApprovalRequiredFor: ["workflow_logic_change", "external_output", "confidential_data", "public_proof", "model_provider_change"],\n providerRestrictions: {\n public: ["provider_local", "provider_restricted"],\n internal: ["provider_local", "provider_restricted"],\n confidential: ["provider_restricted"],\n restricted: []\n },\n externalOutputRequiresReview: true,\n publicProofRequiresRedaction: true,\n noUnsupportedClaims: true,\n noHiddenMemoryUpdates: true,\n noUnapprovedToolCalls: true\n };\n}\n\nexport function audit(actor, action, detail, target = null) {\n return { id: "audit_" + cryptoId(), time: now(), actor, action, target, detail };\n}\n\nexport function createWorkflowV1() {\n return {\n id: "wf_support_reply",\n name: "Customer Support Reply Workflow",\n owner: "user_owner",\n riskLevel: "medium",\n productionVersionId: "wfv_1_0_0",\n versions: [{\n id: "wfv_1_0_0",\n version: "1.0.0",\n status: "production-demo",\n author: "GoalOS",\n timestamp: now(),\n changeSummary: "Initial support reply workflow.",\n reasonForChange: "Baseline workflow.",\n riskLevel: "medium",\n approvalStatus: "approved-demo",\n benchmarkScore: null,\n rollbackOption: null,\n definition: {\n goal: "Draft helpful customer support replies for digital product buyers.",\n context: [\n "Buyer may be non-technical.",\n "Products are digital educational products.",\n "Support is limited to access issues, duplicate charges, missing files, or corrupted files."\n ],\n rules: [\n "Be calm, clear, and helpful.",\n "Do not guarantee income, ROI, productivity, compliance, safety, or business results.",\n "Do not provide legal, financial, medical, employment, security, tax, or regulatory advice.",\n "If uncertain, mark the answer for human review."\n ],\n memoryRefs: ["mem_terms", "mem_boundary", "mem_voice"],\n inputs: [{ key: "customer_message", type: "text", required: true }],\n steps: [\n "Classify the buyer issue.",\n "Draft a short answer.",\n "Add one next step.",\n "Add support boundary when relevant."\n ],\n outputFormat: "support_reply",\n checks: [\n "No ROI or income guarantee.",\n "No legal/compliance claim.",\n "Tone is calm and useful.",\n "Uncertainty is marked."\n ],\n proofRequirements: ["claims_made", "claims_avoided", "checks_performed", "review_status", "next_improvement"],\n humanReview: { requiredWhen: ["refund", "billing", "legal", "privacy", "confidential_data"] },\n modelSettings: { providerId: "provider_local", model: "goalos-local-demo-model" },\n toolsAllowed: []\n }\n }]\n };\n}\n\nexport function latestVersion(workflow) {\n return workflow.versions[0];\n}\n\nexport function findActiveVersion(state) {\n for (const w of state.workflows) {\n const v = w.versions.find(x => x.id === state.activeWorkflowVersionId);\n if (v) return { workflow: w, version: v };\n }\n return { workflow: state.workflows[0], version: latestVersion(state.workflows[0]) };\n}\n\nexport function policyDecision(state, caseData, version) {\n const policy = state.policies[0];\n const providerId = version.definition.modelSettings.providerId;\n const allowedProviders = policy.providerRestrictions[caseData.dataClass] || [];\n const allowed = allowedProviders.includes(providerId);\n const reasons = [];\n if (!allowed) reasons.push(`Provider ${providerId} is not allowed for ${caseData.dataClass} data.`);\n if (caseData.dataClass === "confidential" || caseData.dataClass === "restricted") reasons.push("Human review required for sensitive data.");\n if (["refund", "billing", "security"].includes(caseData.type)) reasons.push("Human review required by workflow policy.");\n return {\n allowed,\n blocked: !allowed,\n humanReviewRequired: reasons.length > 0,\n reasons\n };\n}\n\nfunction memoryText(state, version) {\n return version.definition.memoryRefs.map(id => state.memoryItems.find(m => m.id === id)).filter(Boolean).map(m => m.content).join("\\n");\n}\n\nfunction hasRefundPolicyRule(version) {\n const def = version.definition;\n return [...def.rules, ...def.steps, ...def.checks].join(" ").toLowerCase().includes("refund") &&\n [...def.rules, ...def.steps, ...def.checks].join(" ").toLowerCase().includes("policy");\n}\n\nexport function executeWorkflow(state, caseData, actor = "user_runner") {\n const { workflow, version } = findActiveVersion(state);\n const policy = policyDecision(state, caseData, version);\n const run = {\n id: "run_" + cryptoId(),\n organizationId: state.organization.id,\n workspaceId: state.workspace.id,\n workflowId: workflow.id,\n workflowName: workflow.name,\n workflowVersionId: version.id,\n workflowVersion: version.version,\n actor,\n providerId: version.definition.modelSettings.providerId,\n model: version.definition.modelSettings.model,\n input: { caseId: caseData.id, title: caseData.title, dataClass: caseData.dataClass, type: caseData.type, summary: caseData.input.slice(0, 160) },\n status: policy.blocked ? "blocked_by_policy" : "completed",\n policyDecision: policy,\n output: "",\n reasoningSummary: "",\n warnings: [],\n assumptions: ["Demo input is treated as sanitized unless marked confidential."],\n uncertainty: [],\n modelMetadata: { provider: version.definition.modelSettings.providerId, model: version.definition.modelSettings.model, latencyMs: 140, costUsd: 0 },\n createdAt: now()\n };\n\n if (policy.blocked) {\n run.output = "This input is blocked by policy for the selected model provider. Use an approved internal provider or sanitized data.";\n run.warnings.push("Policy blocked execution.");\n run.reasoningSummary = "Provider/data-class policy prevented execution.";\n return run;\n }\n\n const refundAware = hasRefundPolicyRule(version);\n const memory = memoryText(state, version);\n if (caseData.type === "refund" && refundAware) {\n run.output = `Thanks for reaching out. I can help check the access or refund-related issue.\\n\\nBecause this is a digital educational product with instant access, sales are generally final once delivered, except where required by law or for duplicate charges / technical access failures.\\n\\nNext step: please send the order email and a screenshot or description of the access problem so support can check whether this is a technical access issue.\\n\\nHuman review required: refund/access cases should be reviewed before a final decision is sent.`;\n run.reasoningSummary = "The issue was classified as refund/access. The workflow used approved digital product terms and added human review.";\n run.uncertainty.push("Final refund/access decision requires human review.");\n } else if (caseData.type === "refund") {\n run.output = "Thanks for reaching out. Please send your order email and we will review the situation. We will do our best to help.";\n run.reasoningSummary = "The workflow recognized a support request but did not apply a specific refund/access policy step.";\n run.warnings.push("Refund/access policy boundary missing.");\n } else if (caseData.type === "claims") {\n run.output = "GoalOS is an educational workflow product. It can help you structure repeated AI work, but it does not guarantee income, ROI, savings, productivity, compliance, safety, or business results. The best next step is to use it on one repeated task and review the result.";\n run.reasoningSummary = "The workflow avoided unsupported ROI and productivity claims.";\n } else if (caseData.type === "onboarding" && /je suis|étape|débutant/i.test(caseData.input)) {\n run.output = "Bonjour — commencez par une seule tâche IA répétée. Ouvrez le guide Start Here, créez le flux v1.0, exécutez-le, notez-le, puis améliorez-le. La revue humaine reste requise avant toute utilisation importante.";\n run.reasoningSummary = "The buyer asked in French, so the output used French beginner guidance.";\n } else if (caseData.type === "security") {\n run.output = "Do not paste private or confidential customer data into an unapproved public AI tool. Use sanitized examples or an approved internal model/provider. Escalate to the workspace owner before proceeding.";\n run.reasoningSummary = "The case was security-sensitive and received a data-boundary response.";\n run.uncertainty.push("Security-sensitive issue requires review.");\n } else {\n run.output = "Thanks for reaching out. Please describe the access issue and include your order email. If a file is missing or corrupted, support can help with access or replacement.";\n run.reasoningSummary = "The workflow created a simple access-support response.";\n }\n run.memoryUsed = version.definition.memoryRefs;\n run.memoryInfluenceSummary = memory.slice(0, 240);\n return run;\n}\n\nexport function evaluateRun(state, run) {\n const caseData = DEMO_CASES.find(c => c.id === run.input.caseId);\n const { version } = state.workflows.flatMap(w => w.versions.map(v => ({ workflow: w, version: v }))).find(x => x.version.id === run.workflowVersionId) || findActiveVersion(state);\n const text = (run.output || "").toLowerCase();\n let subScores = { accuracy: 8, completeness: 8, clarity: 8, brandFit: 8, policy: 8, proofReadiness: 8 };\n const issues = [];\n const recommendedFixes = [];\n if (run.status === "blocked_by_policy") {\n subScores = { accuracy: 6, completeness: 7, clarity: 8, brandFit: 8, policy: 10, proofReadiness: 8 };\n issues.push("Execution blocked by policy.");\n }\n if (/guarantee.*(income|roi|save|productivity)|guaranteed/i.test(run.output)) {\n subScores.policy = 1;\n issues.push("Unsupported guarantee detected.");\n recommendedFixes.push("Remove unsupported guarantee language.");\n }\n if (caseData?.type === "refund") {\n if (!text.includes("digital educational product") || !text.includes("technical access")) {\n subScores.policy = 2;\n subScores.completeness = Math.max(0, subScores.completeness - 2);\n issues.push("Refund/access policy boundary missing or incomplete.");\n recommendedFixes.push("Add approved digital-product terms and technical-access exception language.");\n }\n if (!text.includes("human review")) {\n subScores.policy = Math.max(0, subScores.policy - 1);\n issues.push("Human review flag missing for refund/access issue.");\n recommendedFixes.push("Add human review flag for refund/access cases.");\n }\n }\n if (caseData?.type === "onboarding" && /je suis|étape|débutant/i.test(caseData.input) && !/bonjour|étape|revue humaine/i.test(run.output)) {\n subScores.clarity -= 3;\n issues.push("French buyer did not receive French-friendly guidance.");\n recommendedFixes.push("Add bilingual handling for French buyer questions.");\n }\n Object.keys(subScores).forEach(k => subScores[k] = Math.max(0, Math.min(10, subScores[k])));\n const overallScore = Math.round(Object.values(subScores).reduce((a,b)=>a+b,0) / Object.keys(subScores).length * 10) / 10;\n return {\n id: "eval_" + run.id,\n runId: run.id,\n workflowVersionId: run.workflowVersionId,\n workflowVersion: run.workflowVersion,\n overallScore,\n subScores,\n pass: overallScore >= 7.5 && !(caseData?.type === "refund" && subScores.policy < 7),\n severity: overallScore >= 8 ? "low" : overallScore >= 6.5 ? "medium" : "high",\n issues,\n recommendedFixes,\n confidence: 0.87,\n humanReviewNeeded: run.policyDecision.humanReviewRequired || issues.some(i => /refund|policy|blocked/i.test(i)),\n explanation: issues.length ? "Issues found; revise or review before external use." : "Evaluation passed demo threshold.",\n createdAt: now()\n };\n}\n\nexport function createProofRecord(state, run, evaluation) {\n return {\n id: "proof_" + run.id,\n organizationId: state.organization.id,\n workspaceId: state.workspace.id,\n workflowName: run.workflowName,\n workflowVersion: run.workflowVersion,\n inputSummary: run.input.summary,\n outputSummary: run.output.slice(0, 260) + (run.output.length > 260 ? "..." : ""),\n modelUsed: run.model,\n providerId: run.providerId,\n time: run.createdAt,\n user: run.actor,\n checksPerformed: Object.entries(evaluation.subScores).map(([k,v]) => `${k}: ${v}/10`),\n claimsMade: detectClaims(run.output),\n claimsAvoided: ["No ROI guarantee", "No productivity guarantee", "No compliance certification", "No autonomous sending claim", "No model self-modification claim"],\n evidenceUsed: ["Workflow definition", "Demo input", "Evaluation scorecard", "Memory retrieval log"],\n uncertaintyFlagged: run.uncertainty,\n reviewer: evaluation.humanReviewNeeded ? "human-review-required" : "not-required-for-demo",\n approvalStatus: evaluation.pass && !evaluation.humanReviewNeeded ? "approved-demo" : "needs-review",\n finalDecision: evaluation.pass ? "keep" : "revise",\n nextImprovementRecommendation: evaluation.recommendedFixes.join(" ") || "Monitor repeated runs.",\n publicSafe: true,\n createdAt: now()\n };\n}\n\nfunction detectClaims(output) {\n const claims = [];\n const t = output.toLowerCase();\n if (t.includes("digital educational product")) claims.push("Digital product terms explained.");\n if (t.includes("human review")) claims.push("Human review requirement stated.");\n if (t.includes("does not guarantee")) claims.push("No guaranteed results boundary stated.");\n if (t.includes("do not paste")) claims.push("Sensitive-data boundary stated.");\n return claims;\n}\n\nexport function runBenchmark(state, versionId = state.activeWorkflowVersionId) {\n const found = findVersionById(state, versionId);\n if (!found) throw new Error("version not found");\n const runs = [], evaluations = [], proofs = [];\n for (const c of DEMO_CASES) {\n const stateWithVersion = { ...state, activeWorkflowVersionId: versionId };\n const run = executeWorkflow(stateWithVersion, c);\n const evaluation = evaluateRun(stateWithVersion, run);\n const proof = createProofRecord(stateWithVersion, run, evaluation);\n runs.push(run); evaluations.push(evaluation); proofs.push(proof);\n }\n const avgScore = round1(evaluations.reduce((a,e)=>a+e.overallScore,0) / evaluations.length);\n const passRate = Math.round(evaluations.filter(e=>e.pass).length / evaluations.length * 100);\n const refund = DEMO_CASES.filter(c=>c.type==="refund").length;\n const refundPass = evaluations.filter((e,i)=>DEMO_CASES[i].type==="refund" && e.subScores.policy >= 7).length;\n const refundPolicyCompliance = refund ? Math.round(refundPass/refund*100) : 100;\n return {\n id: "bench_" + cryptoId(),\n benchmarkSuiteId: "suite_support_reply",\n workflowVersionId: versionId,\n workflowVersion: found.version.version,\n avgScore,\n passRate,\n refundPolicyCompliance,\n caseCount: DEMO_CASES.length,\n runs, evaluations, proofRecords: proofs,\n createdAt: now()\n };\n}\n\nexport function detectFailurePattern(benchmark) {\n if (benchmark.refundPolicyCompliance < 90) {\n return {\n pattern: "refund_policy_failure",\n severity: "high",\n problem: `${100 - benchmark.refundPolicyCompliance}% of refund/access benchmark cases failed the policy check.`,\n evidence: { avgScore: benchmark.avgScore, passRate: benchmark.passRate, refundPolicyCompliance: benchmark.refundPolicyCompliance },\n diagnosis: "Workflow lacks a dedicated refund/access policy classification step before drafting.",\n recommendedChange: "Add policy classification, approved digital-product terms, and human-review flag for refund/access issues."\n };\n }\n if (benchmark.passRate < 80) {\n return {\n pattern: "general_quality_failure",\n severity: "medium",\n problem: `Only ${benchmark.passRate}% of benchmark cases passed.`,\n evidence: { avgScore: benchmark.avgScore, passRate: benchmark.passRate },\n diagnosis: "Workflow rules/checks are too generic.",\n recommendedChange: "Add task-specific checks and clearer output requirements."\n };\n }\n return {\n pattern: "stable",\n severity: "low",\n problem: "No major repeated failure pattern detected.",\n evidence: { avgScore: benchmark.avgScore, passRate: benchmark.passRate, refundPolicyCompliance: benchmark.refundPolicyCompliance },\n diagnosis: "Workflow is stable in current benchmark.",\n recommendedChange: "Monitor more runs."\n };\n}\n\nexport function proposeImprovement(state, benchmark) {\n const found = findVersionById(state, benchmark.workflowVersionId);\n const pattern = detectFailurePattern(benchmark);\n const proposedDefinition = JSON.parse(JSON.stringify(found.version.definition));\n if (pattern.pattern === "refund_policy_failure") {\n proposedDefinition.rules.push("If the issue involves refund, cancellation, billing, access failure, or policy uncertainty, use approved digital-product terms and flag for human review before final decision.");\n proposedDefinition.steps = [\n "Classify the buyer issue.",\n "If refund/access/billing/policy issue, classify policy sensitivity before drafting.",\n "Draft a short answer using approved policy boundaries.",\n "Add one next step.",\n "Add support boundary and human-review flag when relevant."\n ];\n proposedDefinition.checks.push("Refund/access policy boundary is present when relevant.");\n proposedDefinition.checks.push("Human review flag is present for refund/access or policy uncertainty.");\n }\n const proposedVersion = {\n id: "wfv_1_1_0_draft_" + cryptoId(),\n version: "1.1.0-draft",\n status: "draft",\n author: "Recursive Improvement Engine",\n timestamp: now(),\n changeSummary: pattern.recommendedChange,\n reasonForChange: pattern.problem,\n riskLevel: pattern.severity,\n approvalStatus: "pending",\n benchmarkScore: null,\n rollbackOption: found.version.id,\n definition: proposedDefinition\n };\n const tempState = JSON.parse(JSON.stringify(state));\n tempState.workflows[0].versions.unshift(proposedVersion);\n tempState.activeWorkflowVersionId = proposedVersion.id;\n const proposedBenchmark = runBenchmark(tempState, proposedVersion.id);\n return {\n id: "imp_" + cryptoId(),\n workflowId: found.workflow.id,\n fromVersionId: found.version.id,\n proposedVersion,\n problemDetected: pattern.problem,\n evidence: pattern.evidence,\n diagnosis: pattern.diagnosis,\n proposedChange: pattern.recommendedChange,\n expectedBenefit: "Improve refund/access policy compliance and reduce unsafe support replies.",\n potentialRisk: "Slightly longer replies and higher human-review load.",\n diff: [\n { field: "rules", action: "add", value: proposedDefinition.rules[proposedDefinition.rules.length - 1] },\n { field: "steps", action: "replace", value: "Add policy classification before drafting." },\n { field: "checks", action: "add", value: "Refund/access boundary + human review flag." }\n ],\n testResults: { avgScore: proposedBenchmark.avgScore, passRate: proposedBenchmark.passRate, refundPolicyCompliance: proposedBenchmark.refundPolicyCompliance },\n benchmarkComparison: {\n current: { version: found.version.version, avgScore: benchmark.avgScore, passRate: benchmark.passRate, refundPolicyCompliance: benchmark.refundPolicyCompliance },\n proposed: { version: proposedVersion.version, avgScore: proposedBenchmark.avgScore, passRate: proposedBenchmark.passRate, refundPolicyCompliance: proposedBenchmark.refundPolicyCompliance }\n },\n rollbackPlan: `Restore workflow version ${found.version.version} if quality drops.`,\n approvalRequirement: "Human reviewer approval required before deployment.",\n deploymentRecommendation: "Approve canary after review.",\n status: "pending-approval",\n createdAt: now()\n };\n}\n\nexport function approveImprovement(state, proposal, reviewer = "user_reviewer") {\n const workflow = state.workflows.find(w => w.id === proposal.workflowId);\n const approvedVersion = JSON.parse(JSON.stringify(proposal.proposedVersion));\n approvedVersion.id = "wfv_1_1_0";\n approvedVersion.version = "1.1.0";\n approvedVersion.status = "approved-canary";\n approvedVersion.approvalStatus = "approved";\n approvedVersion.timestamp = now();\n workflow.versions.unshift(approvedVersion);\n workflow.productionVersionId = approvedVersion.id;\n state.activeWorkflowVersionId = approvedVersion.id;\n proposal.status = "approved";\n const approval = {\n id: "approval_" + cryptoId(),\n proposalId: proposal.id,\n reviewer,\n decision: "approved-canary",\n comments: "Approved after benchmark comparison. Human review remains required for refund/access outputs.",\n rollbackTargetVersionId: proposal.fromVersionId,\n createdAt: now()\n };\n const deployment = {\n id: "dep_" + cryptoId(),\n workflowId: workflow.id,\n workflowVersionId: approvedVersion.id,\n environment: "canary-demo",\n status: "deployed",\n deployedBy: reviewer,\n rollbackTargetVersionId: proposal.fromVersionId,\n monitoringRule: "Monitor refund-policy compliance and pass rate.",\n createdAt: now()\n };\n return { approval, deployment, approvedVersion };\n}\n\nexport function rollback(state, targetVersionId = "wfv_1_0_0", actor = "user_reviewer") {\n const workflow = state.workflows[0];\n const target = workflow.versions.find(v => v.id === targetVersionId);\n if (!target) throw new Error("rollback target not found");\n workflow.productionVersionId = targetVersionId;\n state.activeWorkflowVersionId = targetVersionId;\n const event = {\n id: "rb_" + cryptoId(),\n workflowId: workflow.id,\n toVersionId: targetVersionId,\n reason: "Manual rollback target selected in demo.",\n triggeredBy: actor,\n status: "complete",\n createdAt: now()\n };\n state.rollbackEvents.unshift(event);\n return event;\n}\n\nexport function buildProofGraph(state) {\n const nodes = [];\n const edges = [];\n for (const workflow of state.workflows) {\n nodes.push({ id: workflow.id, type: "workflow", label: workflow.name });\n for (const version of workflow.versions) {\n nodes.push({ id: version.id, type: "workflow_version", label: version.version });\n edges.push({ from: workflow.id, to: version.id, type: "has_version" });\n }\n }\n for (const run of state.runs) {\n nodes.push({ id: run.id, type: "run", label: run.input.title || run.id });\n edges.push({ from: run.workflowVersionId, to: run.id, type: "produced_run" });\n }\n for (const evaluation of state.evaluations) {\n nodes.push({ id: evaluation.id, type: "evaluation", label: String(evaluation.overallScore) });\n edges.push({ from: evaluation.runId, to: evaluation.id, type: "evaluated_by" });\n }\n for (const proof of state.proofRecords) {\n nodes.push({ id: proof.id, type: "proof", label: proof.finalDecision });\n edges.push({ from: proof.id.replace("proof_", ""), to: proof.id, type: "produced_proof" });\n }\n for (const proposal of state.improvementProposals) {\n nodes.push({ id: proposal.id, type: "improvement_proposal", label: proposal.status });\n edges.push({ from: proposal.fromVersionId, to: proposal.id, type: "proposed_from" });\n }\n for (const approval of state.approvals) {\n nodes.push({ id: approval.id, type: "approval", label: approval.decision });\n edges.push({ from: approval.proposalId, to: approval.id, type: "approved_by" });\n }\n return { nodes, edges, createdAt: now() };\n}\n\nexport function createPublicSafeProofCard(state) {\n const before = state.benchmarkRuns.find(b => b.workflowVersion === "1.0.0");\n const after = state.benchmarkRuns.find(b => b.workflowVersion === "1.1.0");\n return {\n title: "GoalOS Public-Safe Proof Card 001",\n workflowFamily: "Customer Support Reply Workflow",\n summary: "A repeated support workflow was run, scored, proven, diagnosed, improved, approved, versioned, and re-run.",\n before: before ? { version: before.workflowVersion, avgScore: before.avgScore, passRate: before.passRate, refundPolicyCompliance: before.refundPolicyCompliance } : null,\n after: after ? { version: after.workflowVersion, avgScore: after.avgScore, passRate: after.passRate, refundPolicyCompliance: after.refundPolicyCompliance } : null,\n claimsAvoided: ["No ROI guarantee", "No productivity guarantee", "No compliance certification", "No autonomous sending claim", "No model self-modification claim"],\n publicSafe: true,\n note: "Private customer details, exact messages, and internal policies removed. Human review remains required.",\n createdAt: now()\n };\n}\n\nexport function findVersionById(state, id) {\n for (const workflow of state.workflows) {\n const version = workflow.versions.find(v => v.id === id);\n if (version) return { workflow, version };\n }\n return null;\n}\n\nfunction cryptoId() {\n return Math.random().toString(16).slice(2, 10) + Date.now().toString(16).slice(-5);\n}\nfunction now() {\n return new Date().toISOString();\n}\nfunction round1(n) {\n return Math.round(n * 10) / 10;\n}\n', encoding="utf-8") - (ASSETS / "app.js").write_text('import {\n DEMO_CASES,\n createInitialState,\n executeWorkflow,\n evaluateRun,\n createProofRecord,\n runBenchmark,\n proposeImprovement,\n approveImprovement,\n rollback,\n buildProofGraph,\n createPublicSafeProofCard,\n findVersionById,\n audit\n} from "./enterprise-core.mjs";\n\nconst KEY = "goalos_cloud_mvp_v0_2_state";\nlet state = load();\n\nfunction load(){ try { return JSON.parse(localStorage.getItem(KEY)) || createInitialState(); } catch { return createInitialState(); } }\nfunction save(){ localStorage.setItem(KEY, JSON.stringify(state)); }\nfunction log(action, detail, target=null){ state.auditLogs.unshift(audit("demo-user", action, detail, target)); state.auditLogs = state.auditLogs.slice(0,160); save(); }\nfunction el(id){ return document.getElementById(id); }\nfunction pretty(x){ return JSON.stringify(x, null, 2); }\nfunction active(){ return findVersionById(state, state.activeWorkflowVersionId); }\nfunction activeCase(){ return DEMO_CASES.find(c => c.id === el("caseSelect")?.value) || DEMO_CASES[0]; }\n\nfunction tab(name){\n document.querySelectorAll("[data-tab]").forEach(b => b.classList.toggle("active", b.dataset.tab === name));\n document.querySelectorAll("[data-panel]").forEach(p => p.hidden = p.dataset.panel !== name);\n}\nfunction render(){\n renderMetrics(); renderGovernance(); renderStudio(); renderRun(); renderEval(); renderProof(); renderImprove(); renderVersions(); renderGraph(); renderAdmin();\n}\nfunction renderMetrics(){\n const latestBench = state.benchmarkRuns[0];\n const graph = buildProofGraph(state);\n el("metrics").innerHTML = [\n ["Versions", state.workflows[0].versions.length],\n ["Runs", state.runs.length],\n ["Proof", state.proofRecords.length],\n ["Proposals", state.improvementProposals.length],\n ["Graph nodes", graph.nodes.length],\n ["Latest pass", latestBench ? latestBench.passRate + "%" : "—"]\n ].map(([a,b]) => `
${b}${a}
`).join("");\n}\nfunction renderGovernance(){\n el("orgJson").textContent = pretty({ organization: state.organization, workspace: state.workspace, users: state.users });\n el("policyJson").textContent = pretty(state.policies[0]);\n el("memoryJson").textContent = pretty(state.memoryItems);\n el("modelJson").textContent = pretty(state.modelProviders);\n}\nfunction renderStudio(){\n const found = active();\n el("versionSelect").innerHTML = state.workflows[0].versions.map(v => ``).join("");\n el("workflowSummary").innerHTML = `

${state.workflows[0].name}

Active: ${found.version.version} · Status: ${found.version.status} · Risk: ${found.version.riskLevel}

${found.version.definition.goal}

`;\n el("workflowJson").value = pretty(found.version);\n}\nfunction renderRun(){\n el("caseSelect").innerHTML = DEMO_CASES.map(c => ``).join("");\n const latest = state.runs[0];\n el("latestRun").textContent = latest ? pretty(latest) : "No run yet.";\n}\nfunction renderEval(){\n const latest = state.evaluations[0];\n el("latestEval").textContent = latest ? pretty(latest) : "No evaluation yet.";\n}\nfunction renderProof(){\n el("proofRows").innerHTML = state.proofRecords.map(p => `${p.createdAt.slice(0,19).replace("T"," ")}${p.workflowVersion}${p.inputSummary}${p.approvalStatus}${p.finalDecision}`).join("") || `No proof records.`;\n el("latestProof").textContent = state.proofRecords[0] ? pretty(state.proofRecords[0]) : "No proof yet.";\n}\nfunction renderImprove(){\n el("latestBenchmark").textContent = state.benchmarkRuns[0] ? pretty(summaryBenchmark(state.benchmarkRuns[0])) : "No benchmark yet.";\n el("latestProposal").textContent = state.improvementProposals[0] ? pretty(state.improvementProposals[0]) : "No proposal yet.";\n const canApprove = state.improvementProposals[0]?.status === "pending-approval";\n el("approveBtn").disabled = !canApprove;\n}\nfunction renderVersions(){\n el("versionsRows").innerHTML = state.workflows[0].versions.map(v => `${v.version}${v.status}${v.approvalStatus}${v.rollbackOption || "—"}${v.changeSummary}`).join("");\n const b10 = state.benchmarkRuns.find(b => b.workflowVersion === "1.0.0");\n const b11 = state.benchmarkRuns.find(b => b.workflowVersion === "1.1.0");\n el("versionCompare").textContent = pretty({ v1_0: b10 ? summaryBenchmark(b10) : null, v1_1: b11 ? summaryBenchmark(b11) : null, rollbackTarget: "wfv_1_0_0" });\n}\nfunction renderGraph(){\n const graph = buildProofGraph(state);\n el("graphJson").textContent = pretty(graph);\n el("graphSummary").innerHTML = `

${graph.nodes.length} nodes · ${graph.edges.length} edges

workflow → version → run → evaluation → proof → proposal → approval

`;\n}\nfunction renderAdmin(){\n el("auditLog").innerHTML = state.auditLogs.map(a => `
  • ${a.time.slice(0,19).replace("T"," ")} — ${a.action}: ${a.detail}
  • `).join("");\n el("stateExport").value = pretty(state);\n}\nfunction summaryBenchmark(b){ return { version: b.workflowVersion, avgScore: b.avgScore, passRate: b.passRate, refundPolicyCompliance: b.refundPolicyCompliance, caseCount: b.caseCount, createdAt: b.createdAt }; }\n\nfunction runCase(){\n const run = executeWorkflow(state, activeCase());\n const ev = evaluateRun(state, run);\n const proof = createProofRecord(state, run, ev);\n state.runs.unshift(run); state.evaluations.unshift(ev); state.proofRecords.unshift(proof);\n log("workflow_run", `${run.workflowVersion} ${run.input.caseId} score ${ev.overallScore}`, run.id);\n save(); render(); tab("run");\n}\nfunction benchmark(){\n const b = runBenchmark(state, state.activeWorkflowVersionId);\n state.benchmarkRuns.unshift(b);\n state.runs.unshift(...b.runs.reverse()); state.evaluations.unshift(...b.evaluations.reverse()); state.proofRecords.unshift(...b.proofRecords.reverse());\n log("benchmark_run", `${b.workflowVersion}: pass ${b.passRate}%, refund policy ${b.refundPolicyCompliance}%`, b.id);\n save(); render(); tab("improve");\n}\nfunction proposal(){\n let b = state.benchmarkRuns.find(x => x.workflowVersionId === state.activeWorkflowVersionId);\n if (!b){ b = runBenchmark(state, state.activeWorkflowVersionId); state.benchmarkRuns.unshift(b); }\n const p = proposeImprovement(state, b);\n state.improvementProposals.unshift(p);\n log("improvement_proposal", p.problemDetected, p.id);\n save(); render(); tab("improve");\n}\nfunction approve(){\n const p = state.improvementProposals[0];\n if (!p || p.status !== "pending-approval") return;\n const res = approveImprovement(state, p);\n state.approvals.unshift(res.approval); state.deployments.unshift(res.deployment);\n const b = runBenchmark(state, res.approvedVersion.id);\n state.benchmarkRuns.unshift(b);\n state.runs.unshift(...b.runs.reverse()); state.evaluations.unshift(...b.evaluations.reverse()); state.proofRecords.unshift(...b.proofRecords.reverse());\n log("proposal_approved", `Approved ${res.approvedVersion.version} with rollback target ${res.approval.rollbackTargetVersionId}`, res.approval.id);\n save(); render(); tab("versions");\n}\nfunction doRollback(){\n const ev = rollback(state);\n log("rollback", "Rollback target selected: wfv_1_0_0", ev.id);\n save(); render(); tab("versions");\n}\nfunction download(filename, text, type="application/json"){\n const blob = new Blob([text], { type });\n const a = document.createElement("a"); a.href = URL.createObjectURL(blob); a.download = filename; a.click(); URL.revokeObjectURL(a.href);\n}\nfunction exportGraph(){ download("goalos_proof_graph.json", pretty(buildProofGraph(state))); log("export_graph", "Proof Graph exported."); }\nfunction proofCard(){ download("goalos_public_safe_proof_card_001.json", pretty(createPublicSafeProofCard(state))); log("export_public_safe_proof_card", "Public-safe proof card exported."); }\nfunction report(){\n const b10 = state.benchmarkRuns.find(b => b.workflowVersion === "1.0.0");\n const b11 = state.benchmarkRuns.find(b => b.workflowVersion === "1.1.0");\n const txt = `GoalOS Cloud MVP 0.2 Executive Proof Room Report\n\nLoop:\nRun → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run\n\nWorkflow family:\nCustomer Support Reply Workflow\n\nv1.0:\n${b10 ? `${b10.passRate}% pass rate, ${b10.refundPolicyCompliance}% refund-policy compliance, average score ${b10.avgScore}` : "not run"}\n\nv1.1:\n${b11 ? `${b11.passRate}% pass rate, ${b11.refundPolicyCompliance}% refund-policy compliance, average score ${b11.avgScore}` : "not approved/run"}\n\nProof records:\n${state.proofRecords.length}\n\nSafe boundary:\nGoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback.\n\nClaims avoided:\nNo ROI guarantee. No productivity guarantee. No compliance certification. No autonomous sending claim. No model self-modification claim.\n`;\n download("goalos_cloud_mvp_executive_report.txt", txt, "text/plain"); log("export_report", "Executive report exported.");\n}\nfunction exportState(){ download("goalos_cloud_mvp_state.json", pretty(state)); }\nfunction reset(){ if(!confirm("Reset demo state?")) return; state = createInitialState(); save(); render(); log("reset", "State reset."); }\n\ndocument.addEventListener("DOMContentLoaded", () => {\n document.querySelectorAll("[data-tab]").forEach(btn => btn.addEventListener("click", () => tab(btn.dataset.tab)));\n el("versionSelect").addEventListener("change", e => { state.activeWorkflowVersionId = e.target.value; save(); render(); });\n el("runBtn").addEventListener("click", runCase);\n el("benchmarkBtn").addEventListener("click", benchmark);\n el("proposalBtn").addEventListener("click", proposal);\n el("approveBtn").addEventListener("click", approve);\n el("rollbackBtn").addEventListener("click", doRollback);\n el("proofCardBtn").addEventListener("click", proofCard);\n el("reportBtn").addEventListener("click", report);\n el("graphBtn").addEventListener("click", exportGraph);\n el("stateBtn").addEventListener("click", exportState);\n el("resetBtn").addEventListener("click", reset);\n tab("governance"); render();\n});\n', encoding="utf-8") - (ASSETS / "styles.css").write_text('*{box-sizing:border-box}body{margin:0;background:radial-gradient(circle at 14% -8%,rgba(143,179,255,.22),transparent 34rem),radial-gradient(circle at 90% 0%,rgba(255,215,106,.13),transparent 30rem),linear-gradient(180deg,#05070d,#080b13 55%,#05070d);color:#f7f8ff;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}.topbar{position:sticky;top:0;z-index:10;display:flex;justify-content:space-between;gap:16px;align-items:center;padding:14px min(26px,4vw);background:rgba(5,7,13,.86);border-bottom:1px solid rgba(255,255,255,.16);backdrop-filter:blur(16px)}.brand{text-decoration:none;font-weight:950;letter-spacing:-.03em}.brand span{display:inline-grid;place-items:center;width:32px;height:32px;margin-right:8px;border:1px solid rgba(255,215,106,.6);border-radius:9px;color:#ffd76a}nav{display:flex;gap:8px;flex-wrap:wrap}nav a{font-size:13px;text-decoration:none;color:#b8c0da;border:1px solid rgba(255,255,255,.13);border-radius:999px;padding:8px 10px}main{width:min(1260px,calc(100% - 34px));margin:0 auto;padding:56px 0 86px}.hero{padding:26px 0 34px}.eyebrow{color:#ffd76a;text-transform:uppercase;letter-spacing:.22em;font-weight:950;font-size:12px}h1{font-size:clamp(46px,8vw,102px);line-height:.86;letter-spacing:-.08em;margin:16px 0 24px;max-width:1120px}h2{font-size:clamp(30px,4vw,52px);line-height:.96;letter-spacing:-.055em;margin:0 0 12px}h3{margin:0 0 10px}.lead{font-size:clamp(19px,2vw,23px);color:#b8c0da;line-height:1.55;max-width:940px}.loop{display:inline-flex;border:1px solid rgba(255,215,106,.45);border-radius:999px;color:#ffd76a;background:rgba(255,215,106,.08);padding:10px 14px;font-weight:900;margin:12px 0}.boundary{color:#d7def6;max-width:960px}.metrics{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin:16px 0 24px}.metric{border:1px solid rgba(255,255,255,.16);border-radius:18px;padding:16px;background:rgba(255,255,255,.06)}.metric strong{display:block;font-size:32px;color:#ffd76a}.metric span{color:#b8c0da}.tabs{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}.tabs button,.buttons button,.panelHead button{cursor:pointer;border:1px solid rgba(255,215,106,.52);border-radius:999px;padding:11px 14px;background:rgba(255,255,255,.055);color:#f7f8ff;font-weight:900}.tabs button.active,.buttons button:hover,.panelHead button:hover{background:#ffd76a;color:#05070d}.buttons{display:flex;gap:8px;flex-wrap:wrap}.danger{border-color:rgba(255,80,80,.6)!important}.panel{border:1px solid rgba(255,255,255,.16);border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.045));box-shadow:0 28px 78px rgba(0,0,0,.34);padding:24px;margin:22px 0}.panelHead{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:16px}.panelHead p,.panel p{color:#b8c0da;line-height:1.45}.grid2{display:grid;grid-template-columns:1fr 1fr;gap:16px}.callout{border:1px solid rgba(255,215,106,.32);border-radius:20px;padding:16px;background:rgba(255,215,106,.07);margin:14px 0;color:#d7def6}label{display:block;color:#ffd76a;font-weight:900;margin:14px 0 8px}select,textarea{width:100%;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:#080b13;color:#f7f8ff;padding:14px;font:inherit}textarea{min-height:260px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:13px}pre{white-space:pre-wrap;overflow:auto;max-height:520px;background:#080b13;border:1px solid rgba(255,255,255,.14);border-radius:16px;padding:16px;color:#dbe7ff}table{width:100%;border-collapse:separate;border-spacing:0 8px}td,th{padding:12px;background:rgba(255,255,255,.055);border-top:1px solid rgba(255,255,255,.13);border-bottom:1px solid rgba(255,255,255,.13);color:#b8c0da;text-align:left;vertical-align:top}th{color:#f7f8ff}td:first-child,th:first-child{border-left:1px solid rgba(255,255,255,.13);border-radius:12px 0 0 12px}td:last-child,th:last-child{border-right:1px solid rgba(255,255,255,.13);border-radius:0 12px 12px 0}.audit{display:grid;gap:8px;color:#b8c0da}.final p{font-size:18px}footer{padding:30px;text-align:center;color:#b8c0da;border-top:1px solid rgba(255,255,255,.16)}@media(max-width:980px){.metrics,.grid2{grid-template-columns:1fr}.panelHead{display:block}nav{display:none}}', encoding="utf-8") - (TESTS / "enterprise-core.test.mjs").write_text('import assert from "node:assert/strict";\nimport {\n createInitialState,\n DEMO_CASES,\n executeWorkflow,\n evaluateRun,\n createProofRecord,\n runBenchmark,\n proposeImprovement,\n approveImprovement,\n rollback,\n buildProofGraph,\n createPublicSafeProofCard,\n policyDecision\n} from "../assets/enterprise-core.mjs";\n\nconst state = createInitialState();\nconst b10 = runBenchmark(state);\nassert.equal(b10.workflowVersion, "1.0.0");\nassert.ok(b10.refundPolicyCompliance < 90, "v1.0 should reveal refund-policy weakness");\n\nconst proposal = proposeImprovement(state, b10);\nassert.equal(proposal.status, "pending-approval");\nassert.ok(proposal.proposedVersion.definition.rules.join(" ").toLowerCase().includes("refund"));\n\nstate.improvementProposals.unshift(proposal);\nconst result = approveImprovement(state, proposal);\nstate.approvals.unshift(result.approval);\nstate.deployments.unshift(result.deployment);\nassert.equal(result.approvedVersion.version, "1.1.0");\nassert.equal(result.approval.rollbackTargetVersionId, "wfv_1_0_0");\n\nconst b11 = runBenchmark(state, result.approvedVersion.id);\nassert.ok(b11.refundPolicyCompliance > b10.refundPolicyCompliance, "v1.1 should improve refund policy compliance");\nassert.ok(b11.passRate >= b10.passRate, "v1.1 should not regress pass rate in demo");\n\nconst confidential = DEMO_CASES.find(c => c.dataClass === "confidential");\nconst policy = policyDecision(state, confidential, result.approvedVersion);\nassert.equal(policy.allowed, false, "external/local provider should be blocked for confidential data");\n\nconst run = executeWorkflow(state, DEMO_CASES[0]);\nconst ev = evaluateRun(state, run);\nconst proof = createProofRecord(state, run, ev);\nstate.runs.unshift(run); state.evaluations.unshift(ev); state.proofRecords.unshift(proof);\nconst graph = buildProofGraph(state);\nassert.ok(graph.nodes.length > 0);\nassert.ok(graph.edges.length > 0);\n\nconst rb = rollback(state);\nassert.equal(rb.status, "complete");\nassert.equal(state.activeWorkflowVersionId, "wfv_1_0_0");\n\nconst card = createPublicSafeProofCard(state);\nassert.equal(card.publicSafe, true);\nassert.ok(card.claimsAvoided.includes("No model self-modification claim"));\n\nconsole.log("GoalOS Cloud MVP v0.2 tests passed", {\n v10RefundPolicyCompliance: b10.refundPolicyCompliance,\n v11RefundPolicyCompliance: b11.refundPolicyCompliance,\n graphNodes: graph.nodes.length,\n graphEdges: graph.edges.length\n});\n', encoding="utf-8") - (APP / "index.html").write_text('GoalOS Cloud MVP 0.2 — Enterprise Recursive Workflow OS\n
    G GoalOS Cloud MVP 0.2
    \n
    \n

    Enterprise Recursive Workflow OS · software proof

    Run. Score. Prove. Improve. Approve. Version. Monitor. Re-run.

    A working public MVP proving recursive workflow improvement on one enterprise workflow family: Customer Support Reply Workflow.

    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback.

    \n
    \n
    \n\n

    Governance + model gateway

    Tenant, roles, policy, memory, model-provider restrictions, and safe execution boundaries.

    Organization

    Policy

    Memory

    Model providers

    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

    Enterprise acceptance test

    v1.0 runs → evaluations detect refund-policy failure → Recursive Improvement Engine proposes v1.1 → human approval deploys v1.1 → benchmark improves → rollback target remains available → Proof Room exports public-safe proof.

    \n
    ', encoding="utf-8") - (APP / "README.md").write_text('# GoalOS Cloud MVP 0.2\n\nThis is the stronger public software proof for GoalOS Recursive Workflow OS.\n\nIt demonstrates:\n\n`Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run`\n\n## Included modules\n\n- Governance / organization / roles\n- Policy engine\n- Controlled memory\n- Model gateway restrictions\n- Workflow Studio\n- Execution Engine\n- Evaluation Engine\n- Proof Room\n- Recursive Improvement Engine\n- Human approval gate\n- Versioning and rollback\n- Proof Graph export\n- Public-safe proof card export\n- Executive report export\n- Audit log\n- Browser-local persistence\n- Node unit tests\n\n## Safe boundary\n\nGoalOS does not modify AI models.\n\nIt improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback.\n\n## What this is\n\nA static public MVP hosted on GitHub Pages. It proves the software loop and gives a production-grade skeleton for future backend/SaaS work.\n\n## What this is not\n\nIt is not the full enterprise SaaS backend yet.\nIt does not upload paid buyer ZIPs.\nIt does not include private delivery materials.\n', encoding="utf-8") - (SCHEMAS / "workflow.schema.json").write_text(json.dumps({'$schema': 'https://json-schema.org/draft/2020-12/schema', '$id': 'https://montrealai.github.io/proof-gradient/app/goalos-cloud-mvp/schemas/workflow.schema.json', 'title': 'GoalOS Workflow Version', 'type': 'object', 'required': ['id', 'version', 'status', 'definition'], 'properties': {'id': {'type': 'string'}, 'version': {'type': 'string'}, 'status': {'type': 'string'}, 'definition': {'type': 'object', 'required': ['goal', 'context', 'rules', 'steps', 'checks', 'proofRequirements'], 'properties': {'goal': {'type': 'string'}, 'context': {'type': 'array', 'items': {'type': 'string'}}, 'rules': {'type': 'array', 'items': {'type': 'string'}}, 'memoryRefs': {'type': 'array', 'items': {'type': 'string'}}, 'steps': {'type': 'array', 'items': {'type': 'string'}}, 'checks': {'type': 'array', 'items': {'type': 'string'}}, 'proofRequirements': {'type': 'array', 'items': {'type': 'string'}}}}}}, indent=2), encoding="utf-8") - (SCHEMAS / "proof-record.schema.json").write_text(json.dumps({'$schema': 'https://json-schema.org/draft/2020-12/schema', 'title': 'GoalOS Proof Record', 'type': 'object', 'required': ['id', 'workflowName', 'workflowVersion', 'inputSummary', 'outputSummary', 'checksPerformed', 'claimsAvoided', 'approvalStatus'], 'properties': {'id': {'type': 'string'}, 'workflowName': {'type': 'string'}, 'workflowVersion': {'type': 'string'}, 'inputSummary': {'type': 'string'}, 'outputSummary': {'type': 'string'}, 'checksPerformed': {'type': 'array', 'items': {'type': 'string'}}, 'claimsAvoided': {'type': 'array', 'items': {'type': 'string'}}, 'approvalStatus': {'type': 'string'}}}, indent=2), encoding="utf-8") - (APP / "openapi.json").write_text(json.dumps({'openapi': '3.1.0', 'info': {'title': 'GoalOS Cloud MVP API Blueprint', 'version': '0.2.0'}, 'paths': {'/workflows': {'get': {'summary': 'List workflows'}}, '/workflows/{id}/versions': {'post': {'summary': 'Create workflow version'}}, '/runs': {'post': {'summary': 'Run workflow'}}, '/runs/{id}/proof': {'get': {'summary': 'Get proof record'}}, '/benchmarks/run': {'post': {'summary': 'Run benchmark suite'}}, '/improvement-proposals': {'post': {'summary': 'Generate improvement proposal'}}, '/improvement-proposals/{id}/approve': {'post': {'summary': 'Approve improvement proposal'}}, '/workflow-versions/{id}/rollback': {'post': {'summary': 'Rollback to workflow version'}}}}, indent=2), encoding="utf-8") - - (DOCS / "STATE_OF_THE_ART_ENTERPRISE_GATES.md").write_text("""# GoalOS Cloud MVP 0.2 — Enterprise SOTA Gates - - This MVP is intentionally narrow but maps to the enterprise software bar. - - ## Proved in this MVP - - - workflow-native core - - proof-native run records - - evaluation engine - - recursive improvement proposal - - human approval gate - - versioning and rollback target - - policy engine and data-class restrictions - - controlled memory - - model gateway placeholder - - proof graph export - - audit log - - OpenAPI blueprint - - schemas - - tests - - ## Not yet full SaaS - - - production backend - - SSO / SAML / OIDC - - real model-provider secrets - - database persistence - - tenant-isolated API server - - SCIM - - SOC 2 controls - - enterprise integrations - - ## Safe boundary - - GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback. - """, encoding="utf-8") - - # public info page - product = WEB_ROOT / "products" / "goalos-cloud-mvp" - product.mkdir(parents=True, exist_ok=True) - product_html = """GoalOS Cloud MVP 0.2

    GoalOS Cloud MVP 0.2

    Enterprise recursive workflow proof, running in software.

    A public MVP that proves Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run on one workflow family.

    Open the MVPShop / Apply

    Safe boundary

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback.

    """ - (product / "index.html").write_text(product_html, encoding="utf-8") - - # homepage insert - home = WEB_ROOT / "index.html" - block = """ -
    -

    GoalOS Cloud MVP 0.2

    -

    Enterprise recursive workflow proof, running in software.

    -

    A public MVP proving: Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run.

    -
    - Open GoalOS Cloud MVP - Read about the MVP -
    -
    - """ - if home.exists(): - text = home.read_text(encoding="utf-8", errors="ignore") - text = re.sub(r".*?", block, text, flags=re.S) - if "GOALOS-CLOUD-MVP-V02:START" not in text: - if "" in text: - text = text.replace("", block + "\n", 1) - elif "" in text: - text = text.replace("", block + "\n", 1) - else: - text += block - home.write_text(text, encoding="utf-8") - else: - home.write_text(product_html, encoding="utf-8") - - # sitemap - sitemap = WEB_ROOT / "sitemap.xml" - urls = ["https://montrealai.github.io/proof-gradient/app/goalos-cloud-mvp/", "https://montrealai.github.io/proof-gradient/products/goalos-cloud-mvp/"] - if sitemap.exists(): - text = sitemap.read_text(encoding="utf-8", errors="ignore") - if "" in text: - for url in urls: - if url not in text: - text = text.replace("", f" {url}\n") - sitemap.write_text(text, encoding="utf-8") - else: - sitemap.write_text('\n\n' + ''.join(f' {u}\n' for u in urls) + '\n', encoding="utf-8") - - # manifest - manifest=[] - for p in sorted(APP.rglob("*")): - if p.is_file(): - manifest.append({"path":p.relative_to(APP).as_posix(),"bytes":p.stat().st_size,"sha256":hashlib.sha256(p.read_bytes()).hexdigest()}) - (APP/"site-manifest.json").write_text(json.dumps(manifest, indent=2)+"\n", encoding="utf-8") - print("Generated GoalOS Cloud MVP v0.2 at", APP) - - PY - python3 "$RUNNER_TEMP/generate_goalos_cloud_mvp_v02.py" - - - name: Run GoalOS Cloud MVP v0.2 unit tests - shell: bash + if [ -d site ]; then echo "root=site" >> "$GITHUB_OUTPUT"; elif [ -d public ]; then echo "root=public" >> "$GITHUB_OUTPUT"; else echo "No site/ or public/ root found"; exit 1; fi + - name: Refuse repository deletions run: | - set -euo pipefail - WEB_ROOT="${{ steps.generate.outputs.web_root }}" - node "$WEB_ROOT/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs" - - - name: Safety check — refuse deletions - shell: bash - run: | - set -euo pipefail - deleted="$(git diff --name-status | awk '$1 ~ /^D/ {print}')" - if [ -n "$deleted" ]; then - echo "Refusing to continue because deletions were detected:" - echo "$deleted" - exit 1 - fi - - - name: Commit GoalOS Cloud MVP v0.2 - shell: bash + if git diff --name-only --diff-filter=D --exit-code HEAD -- .; then echo "No deletions detected."; else echo "Deletion detected; refusing deploy."; exit 1; fi + - name: Run GoalOS Cloud MVP 0.2 unit test + run: node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs + - name: Validate schemas and OpenAPI are present run: | - set -euo pipefail - WEB_ROOT="${{ steps.generate.outputs.web_root }}" - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add "$WEB_ROOT" - if git diff --cached --quiet; then - echo "No GoalOS Cloud MVP changes to commit." - else - git commit -m "Build GoalOS Cloud MVP 0.2 [skip ci]" - git push - fi - - - name: Configure GitHub Pages - uses: actions/configure-pages@v5 - + test -f site/app/goalos-cloud-mvp/openapi.json + test -f site/app/goalos-cloud-mvp/schemas/workflow.schema.json + test -f site/app/goalos-cloud-mvp/schemas/proof-record.schema.json + python -m json.tool site/app/goalos-cloud-mvp/openapi.json >/dev/null + python -m json.tool site/app/goalos-cloud-mvp/schemas/workflow.schema.json >/dev/null + python -m json.tool site/app/goalos-cloud-mvp/schemas/proof-record.schema.json >/dev/null + - name: Run paid artifact guard + run: python scripts/check_no_paid_artifacts.py - name: Upload GitHub Pages artifact uses: actions/upload-pages-artifact@v3 with: - path: ${{ steps.generate.outputs.web_root }} - + path: ${{ steps.root.outputs.root }} - name: Deploy GitHub Pages + id: deployment uses: actions/deploy-pages@v4 diff --git a/.github/workflows/refresh-complete-goalos-public-site.yml b/.github/workflows/refresh-complete-goalos-public-site.yml new file mode 100644 index 00000000..b9796c69 --- /dev/null +++ b/.github/workflows/refresh-complete-goalos-public-site.yml @@ -0,0 +1,49 @@ +name: Refresh Complete GoalOS Public Site + +on: + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: goalos-pages + cancel-in-progress: false + +jobs: + validate-and-deploy: + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Detect site root + id: root + run: | + if [ -d site ]; then echo "root=site" >> "$GITHUB_OUTPUT"; elif [ -d public ]; then echo "root=public" >> "$GITHUB_OUTPUT"; else echo "No site/ or public/ root found"; exit 1; fi + - name: Refuse repository deletions + run: | + if git diff --name-only --diff-filter=D --exit-code HEAD -- .; then echo "No deletions detected."; else echo "Deletion detected; refusing deploy."; exit 1; fi + - name: Run GoalOS Cloud MVP test + run: node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs + - name: Validate canonical site shell and links + run: python scripts/validate_goalos_site_v2.py + - name: Run paid artifact guard + run: python scripts/check_no_paid_artifacts.py + - name: Produce deployment manifest summary + run: | + test -f site/goalos-site-manifest-v2.json + test -f site/goalos-site-repair-v2-report.json + python -m json.tool site/goalos-site-manifest-v2.json >/dev/null + python -m json.tool site/goalos-site-repair-v2-report.json >/dev/null + - name: Upload GitHub Pages artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ${{ steps.root.outputs.root }} + - name: Deploy GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/repair-goalos-canonical-shell-v2.yml b/.github/workflows/repair-goalos-canonical-shell-v2.yml index 6e14dbfc..6b94b2ba 100644 --- a/.github/workflows/repair-goalos-canonical-shell-v2.yml +++ b/.github/workflows/repair-goalos-canonical-shell-v2.yml @@ -4,487 +4,40 @@ on: workflow_dispatch: permissions: - contents: write + contents: read pages: write id-token: write concurrency: - group: repair-goalos-canonical-shell-v2 + group: goalos-pages cancel-in-progress: false jobs: - repair: - name: Remove duplicate navbars and refresh one canonical site + validate-and-deploy: runs-on: ubuntu-latest - + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} steps: - - name: Check out repository + - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Repair site shell and refresh canonical pages - id: build - shell: bash - run: | - set -euo pipefail - - WEB_ROOT="site" - if [ ! -d "$WEB_ROOT" ] && [ -d "public" ]; then WEB_ROOT="public"; fi - mkdir -p "$WEB_ROOT" - touch "$WEB_ROOT/.nojekyll" - echo "web_root=$WEB_ROOT" >> "$GITHUB_OUTPUT" - - cat > "$RUNNER_TEMP/goalos_unified_site_repair_v2.py" <<'PY' - from pathlib import Path - from html import escape - import re, json, hashlib, datetime, shutil - - WEB_ROOT = Path("site") - if not WEB_ROOT.exists() and Path("public").exists(): - WEB_ROOT = Path("public") - WEB_ROOT.mkdir(parents=True, exist_ok=True) - - BASE = "/proof-gradient" - SHOP = "https://www.quebecartificialintelligence.com/shop" - GITHUB = "https://github.com/MontrealAI/proof-gradient" - NOW = datetime.datetime.utcnow().replace(microsecond=0).isoformat() + "Z" - - assets = WEB_ROOT / "assets" - assets.mkdir(parents=True, exist_ok=True) - - archive = WEB_ROOT / "_archive" / ("before_unified_shell_v2_" + NOW[:10]) - archive.mkdir(parents=True, exist_ok=True) - - report = { - "generated_at": NOW, - "web_root": str(WEB_ROOT), - "mode": "unified_shell_v2_hard_repair", - "backups_created": [], - "pages_rewritten": [], - "html_files_repaired": [], - "nav_headers_removed": 0, - "footers_removed": 0, - "old_markers_removed": 0, - "old_assets_removed": 0, - "duplicate_home_blocks_removed": 0, - "validation": {}, - "paid_material_policy": "No buyer ZIPs, paid workshop materials, or private delivery assets are uploaded." - } - - PRODUCTS = [ - {"slug":"goalos-ai-efficiency-sprint-kit","price":"$49","title":"GoalOS AI Efficiency Sprint Kit","fr":"Trousse GoalOS Sprint d’efficacité IA","promise":"Build one reusable AI workflow.","type":"Self-serve digital product","bullets":["60-minute first win","offline builder","copy-paste prompts","editable templates","proof note"]}, - {"slug":"goalos-rsi-lite","price":"$199","title":"GoalOS RSI Lite","fr":"GoalOS RSI Lite","promise":"Build one self-improving AI workflow.","type":"Premium self-serve system","bullets":["Run","Score","Diagnose","Improve","Version","Prove","Re-run"]}, - {"slug":"goalos-proof-room-lite","price":"$997","title":"GoalOS Proof Room Lite / Department Pack","fr":"GoalOS Proof Room Lite / Pack Département","promise":"Set up a lightweight department Proof Room.","type":"Premium department pack","bullets":["owners","permissions","proof notes","weekly reviews","executive reports","rollback","public-safe proof"]}, - {"slug":"goalos-rsi-sprint-workshop","price":"$2,500+","title":"GoalOS RSI Sprint Workshop","fr":"Atelier GoalOS RSI Sprint","promise":"Build the first self-improving workflow live.","type":"Private workshop","bullets":["workflow v1.0","first run","scorecard","diagnosis","workflow v1.1","proof note"]}, - {"slug":"goalos-proof-room-implementation-sprint","price":"$9,500+","title":"GoalOS Proof Room Implementation Sprint","fr":"Sprint de mise en œuvre GoalOS Proof Room","promise":"Department RSI in 30 days.","type":"Done-with-you implementation","bullets":["3 workflows","permission map","proof review","monthly report","rollback procedure","case study"]}, - {"slug":"goalos-enterprise-rsi-pilot","price":"$49,000+","title":"GoalOS Enterprise RSI Pilot","fr":"GoalOS Enterprise RSI Pilot","promise":"Pilot the Recursive Workflow OS.","type":"Enterprise pilot","bullets":["90-day pilot","workflow family","benchmark","proof records","v1.1 proposal","architecture blueprint"]}, - ] - - STANDARDS = [ - ("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"), - ] - - WORKFLOWS = [ - ("build-one-reusable-ai-workflow", "Build one reusable AI workflow", "Customer question → clear reply."), - ("rsi-lite-self-improving-workflows", "Recursive Self-Improving Workflows", "Run, score, diagnose, improve, version, prove, and re-run."), - ("department-proof-room-lite", "Department Proof Room Lite", "Set up owners, permissions, proof notes, reviews, reports, and rollback."), - ("department-ai-permission-map", "AI Permission Map", "Green / Yellow / Red boundaries for department AI use."), - ("department-public-safe-case-study", "Public-safe case study", "Turn internal proof into safe external evidence."), - ] - - def href(path): - if path.startswith("http"): - return path - return BASE + path - - def backup_file(path): - if not path.exists() or not path.is_file() or "_archive" in path.parts: - return - rel = path.relative_to(WEB_ROOT) - dest = archive / rel - dest.parent.mkdir(parents=True, exist_ok=True) - if not dest.exists(): - shutil.copy2(path, dest) - report["backups_created"].append(dest.relative_to(WEB_ROOT).as_posix()) - - def card(item): - return f""" - {escape(item['price'])} -

    {escape(item['title'])}

    -

    {escape(item['fr'])}

    -

    {escape(item['promise'])}

    -
    """ - - def bullets(items): - return "" - - CSS = r""" - :root{--bg:#05070d;--panel:rgba(255,255,255,.078);--panel2:rgba(255,255,255,.045);--line:rgba(255,255,255,.16);--text:#f7f8ff;--muted:#b8c0da;--gold:#ffd76a;--green:#7ce0a3;--radius:26px;--shadow:0 28px 78px rgba(0,0,0,.36)} - *{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:radial-gradient(circle at 14% -8%,rgba(143,179,255,.22),transparent 34rem),radial-gradient(circle at 90% 0%,rgba(255,215,106,.13),transparent 30rem),linear-gradient(180deg,#05070d,#080b13 55%,#05070d);color:var(--text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}a{color:inherit}.goalos-shell{position:sticky;top:0;z-index:99999;backdrop-filter:blur(18px);background:rgba(5,7,13,.92);border-bottom:1px solid var(--line)}.goalos-nav{width:min(1240px,calc(100% - 28px));margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:13px 0}.goalos-brand{display:flex;align-items:center;gap:10px;text-decoration:none;font-weight:950;letter-spacing:-.035em}.goalos-mark{width:34px;height:34px;border-radius:10px;border:1px solid rgba(255,215,106,.65);display:grid;place-items:center;color:var(--gold);font-weight:950;background:rgba(255,215,106,.08)}.goalos-links{display:flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:flex-end}.goalos-links a{font-size:13px;text-decoration:none;padding:9px 11px;border:1px solid transparent;border-radius:999px;color:var(--muted);font-weight:850}.goalos-links a:hover{color:var(--text);border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.06)}.goalos-links a.shop{color:#05070d;background:var(--gold);border-color:var(--gold)}.goalos-wrap{width:min(1240px,calc(100% - 36px));margin:0 auto;padding:68px 0 94px}.hero{padding:42px 0}.eyebrow{color:var(--gold);text-transform:uppercase;letter-spacing:.22em;font-weight:950;font-size:12px;margin-bottom:18px}.goalos-wrap h1{font-size:clamp(50px,8vw,114px);line-height:.86;letter-spacing:-.085em;margin:0 0 24px;max-width:1130px}.goalos-wrap h2{font-size:clamp(34px,5.4vw,66px);line-height:.92;letter-spacing:-.065em;margin:0 0 18px}.goalos-wrap h3{font-size:24px;letter-spacing:-.04em;margin:0 0 10px}.lead{font-size:clamp(19px,2vw,24px);line-height:1.55;color:var(--muted);max-width:960px;margin:0 0 24px}.fr{color:#d7def6}.actions{display:flex;flex-wrap:wrap;gap:12px;margin:28px 0}.btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 17px;border:1px solid rgba(255,215,106,.52);border-radius:999px;text-decoration:none;font-weight:900;background:rgba(255,255,255,.055);color:var(--text)}.btn.primary{background:var(--gold);color:#05070d;border-color:var(--gold)}.section{margin:62px 0}.panel,.card{border:1px solid var(--line);background:linear-gradient(180deg,var(--panel),var(--panel2));border-radius:var(--radius);box-shadow:var(--shadow)}.panel{padding:30px}.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.grid.two{grid-template-columns:repeat(2,1fr)}.card{padding:22px;text-decoration:none;display:flex;flex-direction:column;min-height:188px}.card:hover{transform:translateY(-2px);border-color:rgba(255,215,106,.5)}.card p{color:var(--muted);line-height:1.45;margin:0 0 12px}.price{font-size:44px;font-weight:950;letter-spacing:-.06em;color:var(--gold);margin:4px 0 12px}.badge{display:inline-flex;align-self:flex-start;margin-bottom:13px;font-size:12px;color:var(--gold);border:1px solid rgba(255,215,106,.45);border-radius:999px;padding:6px 9px;font-weight:900}.list{display:grid;gap:10px;margin:18px 0 0;padding:0;list-style:none}.list li{padding-left:26px;position:relative;color:var(--muted);line-height:1.42}.list li:before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:950}.law{font-size:clamp(26px,3.6vw,46px);line-height:1.1;letter-spacing:-.05em;margin:0;color:var(--text)}.loop{display:inline-flex;border:1px solid rgba(255,215,106,.45);border-radius:999px;color:var(--gold);background:rgba(255,215,106,.08);padding:10px 14px;font-weight:900;margin:12px 0}.steps{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin-top:24px}.steps div{border:1px solid var(--line);border-radius:20px;padding:16px;background:rgba(255,255,255,.045)}.steps strong{display:block;color:var(--gold);font-size:13px;margin-bottom:8px}.steps span{color:var(--muted);font-size:14px;line-height:1.35}.table{width:100%;border-collapse:separate;border-spacing:0 8px}.table td,.table th{padding:14px;background:rgba(255,255,255,.055);border-top:1px solid var(--line);border-bottom:1px solid var(--line);text-align:left;color:var(--muted);vertical-align:top}.table th{color:var(--text)}.table td:first-child,.table th:first-child{border-left:1px solid var(--line);border-radius:14px 0 0 14px}.table td:last-child,.table th:last-child{border-right:1px solid var(--line);border-radius:0 14px 14px 0}.search input{width:100%;padding:16px 18px;border-radius:18px;border:1px solid var(--line);background:#080b13;color:var(--text);font-size:17px;outline:none}.goalos-footer{border-top:1px solid var(--line);padding:34px 0;color:var(--muted);font-size:13px;background:rgba(5,7,13,.74)}.goalos-footer-inner{width:min(1240px,calc(100% - 36px));margin:0 auto;display:flex;gap:18px;justify-content:space-between;flex-wrap:wrap}.goalos-footer a{color:var(--muted);text-decoration:none;margin-right:14px}@media(max-width:980px){.grid,.grid.two,.steps{grid-template-columns:1fr}.goalos-links{display:none}.goalos-wrap{padding-top:42px}} - """ - (assets / "goalos-site-v2.css").write_text(CSS, encoding="utf-8") - - JS = r"""(function(){function r(f){document.readyState!=="loading"?f():document.addEventListener("DOMContentLoaded",f)}r(function(){var input=document.querySelector("[data-site-search]");if(!input)return;var cards=[].slice.call(document.querySelectorAll("[data-site-card]"));input.addEventListener("input",function(){var q=input.value.toLowerCase().trim();cards.forEach(function(c){c.style.display=!q||c.textContent.toLowerCase().indexOf(q)!==-1?"":"none"})})})})();""" - (assets / "goalos-site-v2.js").write_text(JS, encoding="utf-8") - - OG = """GOALOS · PROOF GRADIENTOne canonical website.Recursive Workflow OS.Proof Rooms.No duplicate navbars · no paid ZIPs · public proof only""" - (assets / "goalos-unified-og.svg").write_text(OG, encoding="utf-8") - - NAV = f""" -
    - -
    - """ - - FOOTER = f""" - - """ - - def base_page(title, desc, body): - return f""" - - - - - {escape(title)} - - - - - - - - -
    - {body} -
    - - """ - - def write_page(rel, title, desc, body): - out = WEB_ROOT / rel / "index.html" if rel else WEB_ROOT / "index.html" - out.parent.mkdir(parents=True, exist_ok=True) - backup_file(out) - out.write_text(base_page(title, desc, body), encoding="utf-8") - report["pages_rewritten"].append(out.relative_to(WEB_ROOT).as_posix()) - - home = f""" -
    -
    GoalOS · Proof Gradient
    -

    A model can answer. An agent can act. An institution must prove.

    -

    GoalOS turns repeated AI work into owned, scored, versioned, approved, monitored, and recursively improving workflows.

    -
    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run
    -
    Open GoalOS Cloud MVPView ladderShop / Apply
    -
    -
    -
    Latest software proof
    -

    GoalOS Cloud MVP 0.2 proves recursive workflow improvement running in software.

    -

    One workflow family. One Proof Room. One improvement proposal. One approval gate. One rollback target. One public-safe proof card.

    -
    Open the MVPRead about it
    -
    -
    -
    Commercial ladder
    -

    From reusable workflow to Enterprise RSI.

    -
    {''.join(card(p) for p in PRODUCTS)}
    -
    -
    -

    Safe boundary

    -

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, memory, evidence standards, versions, approvals, monitoring, and rollback.

    -
    - """ - write_page("", "GoalOS · Proof Gradient", "GoalOS Recursive Workflow OS and public Proof Gradient site.", home) - - write_page("products", "GoalOS Products", "GoalOS product and service ladder.", f"""
    Products / Produits

    Choose your GoalOS path.

    Start with one reusable AI workflow, upgrade to self-improving workflows, then install Proof Rooms and Enterprise RSI.

    Shop / ApplyCompare pricing
    {''.join(card(p) for p in PRODUCTS)}
    """) - - pricing_rows = "".join(f"{escape(p['price'])}{escape(p['title'])}
    {escape(p['fr'])}{escape(p['promise'])}{escape(p['type'])}" for p in PRODUCTS) - write_page("pricing", "GoalOS Pricing", "GoalOS pricing ladder.", f"""
    Pricing / Tarifs

    Clear ladder. Clear outcomes.

    $49 → $199 → $997 → $2,500+ → $9,500+ → $49,000+.

    Shop / Apply
    {pricing_rows}
    PriceOfferOutcomeType
    """) - - write_page("services", "GoalOS Services", "GoalOS workshops, implementation, and enterprise pilots.", f"""
    Services

    From live workshop to Enterprise RSI Pilot.

    Use services to generate proof, install department Proof Rooms, and validate the enterprise platform.

    Apply / Buy
    {''.join(card(p) for p in PRODUCTS[3:])}
    """) - - write_page("start-here", "Start Here · GoalOS", "Choose your GoalOS path.", f"""
    Start Here / Départ

    Start with the outcome you need.

    Reusable workflow, self-improving workflow, department Proof Room, live RSI workshop, implementation sprint, or enterprise pilot.

    {''.join(card(p) for p in PRODUCTS)}
    """) - - for p in PRODUCTS: - write_page(f"products/{p['slug']}", p["title"], p["promise"], f"""
    {escape(p['price'])} · {escape(p['type'])}

    {escape(p['title'])}

    {escape(p['fr'])}

    {escape(p['promise'])}

    Shop / ApplyCompare
    {escape(p['price'])}

    What it includes

    {bullets(p['bullets'])}

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    """) - - write_page("products/goalos-cloud-mvp", "GoalOS Cloud MVP 0.2", "Enterprise recursive workflow proof running in software.", f"""
    GoalOS Cloud MVP 0.2

    Enterprise recursive workflow proof, running in software.

    A public MVP proving: Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run.

    Open the MVPEnterprise RSI Pilot

    What it proves

    1Workflow Studio
    2Evaluation Engine
    3Proof Room
    4Improvement Proposal
    5Approval Gate
    6Rollback Target
    """) - - write_page("implementation/goalos-proof-room-implementation-sprint", "Department RSI in 30 Days", "GoalOS Proof Room Implementation Sprint.", f"""
    Department RSI

    Department RSI in 30 days.

    Deploy Recursive Self-Improving Workflows in one department.

    Apply / Buy

    In 30 days, set up the first version of a lightweight Proof Room for three repeated department AI workflows.

    """) - - write_page("workshop/goalos-rsi-sprint-workshop", "GoalOS RSI Sprint Workshop", "Build your first self-improving AI workflow live.", f"""
    GoalOS RSI Sprint Workshop

    Build your first self-improving AI workflow live.

    In one live session, build workflow v1.0, run it, score it, diagnose what failed, improve it to v1.1, save a proof note, and leave with a 30-day next-run plan.

    Apply / Buy
    """) - - write_page("workshop/goalos-proof-room-implementation-sprint", "GoalOS Proof Room Implementation Sprint", "Department RSI in 30 Days.", f"""
    Department RSI

    Department RSI in 30 days.

    Deploy Recursive Self-Improving Workflows in one department.

    Apply / Buy
    """) - - enterprise_body = f"""
    Enterprise RSI

    Enterprise RSI without model self-modification.

    Pilot the Recursive Workflow Operating System for one enterprise workflow family.

    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run
    Apply / Buy

    Formal platform name

    GoalOS Recursive Workflow OS

    """ - write_page("enterprise/goalos-enterprise-rsi-pilot", "GoalOS Enterprise RSI Pilot", "Enterprise RSI without model self-modification.", enterprise_body) - write_page("platform/goalos-recursive-workflow-os", "GoalOS Recursive Workflow OS", "Enterprise Recursive Workflow OS platform direction.", enterprise_body) - - standards_cards = "".join(f'AEP

    {escape(code)}

    {escape(title)}

    ' for code,title in STANDARDS) - write_page("standards", "AEP Standards", "Proof Gradient standards.", f"""
    AEP Standards

    The public trust layer.

    AEP standards provide the vocabulary for proof, permission, rollback, public-safe reports, and Proof Rooms.

    {standards_cards}
    """) - - for code,title in STANDARDS: - if not (WEB_ROOT / "standards" / code / "index.html").exists(): - write_page(f"standards/{code}", f"{code} — {title}", title, f"""
    AEP Standard

    {escape(code)} — {escape(title)}

    Public trust layer for GoalOS and Proof Gradient.

    All standards
    """) - - workflow_cards = "".join(f'Example

    {escape(title)}

    {escape(desc)}

    ' for slug,title,desc in WORKFLOWS) - write_page("examples", "GoalOS Examples", "Practical GoalOS workflow examples.", f"""
    Examples

    Practical GoalOS examples.

    Examples that teach reusable workflows, RSI Lite, Proof Room Lite, and Department RSI.

    {workflow_cards}
    """) - for slug,title,desc in WORKFLOWS: - if not (WEB_ROOT / "workflow" / slug / "index.html").exists(): - write_page(f"workflow/{slug}", title, desc, f"""
    GoalOS Example

    {escape(title)}

    {escape(desc)}

    All examplesShop / Apply

    GoalOS structure

    Context → Rules → Memory → Workflow → Checks → Proof.

    """) - - command_cards = ''.join(card(p) for p in PRODUCTS) + f'MVP

    GoalOS Cloud MVP 0.2

    Enterprise recursive workflow proof running in software.

    ' - write_page("command-center", "GoalOS Command Center", "Unified GoalOS command center.", f"""
    Command Center

    One site. One command center.

    Search the unified GoalOS / Proof Gradient website.

    {command_cards}
    """) - - urls = ["/", "/start-here/", "/products/", "/pricing/", "/services/", "/examples/", "/standards/", "/command-center/", "/site-map/", "/products/goalos-cloud-mvp/", "/app/goalos-cloud-mvp/", "/implementation/goalos-proof-room-implementation-sprint/", "/workshop/goalos-rsi-sprint-workshop/", "/workshop/goalos-proof-room-implementation-sprint/", "/enterprise/goalos-enterprise-rsi-pilot/", "/platform/goalos-recursive-workflow-os/"] + [f"/products/{p['slug']}/" for p in PRODUCTS] + [f"/standards/{code}/" for code,_ in STANDARDS] + [f"/workflow/{slug}/" for slug,_,_ in WORKFLOWS] - rows = "".join(f"{escape(u)}{href(u)}" for u in sorted(set(urls))) - write_page("site-map", "GoalOS Site Map", "Unified GoalOS site map.", f"""
    Site Map

    Unified site map.

    {rows}
    PathURL
    """) - - # 404 page - backup_file(WEB_ROOT / "404.html") - (WEB_ROOT / "404.html").write_text(base_page("404 · GoalOS", "Page not found.", f"""
    404

    Page not found.

    Use the Command Center to find the right GoalOS page.

    Open Command CenterHome
    """), encoding="utf-8") - - # Hard repair all HTML files. - MARKER_PATTERNS = [ - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - r".*?", - ] - - OLD_ASSET_PATTERNS = [ - r']+data-goalos-[^>]+>\s*', - r']+data-goalos-[^>]+>\s*', - r']+goalos-(?:complete|product|unified|site-v2|ladder)[^>]+\.css[^>]*>\s*', - r']+goalos-(?:complete|product|unified|site-v2|ladder)[^>]+\.js[^>]*>\s*', - ] - - SHELL_TEXT_RE = re.compile(r"(GoalOS|Proof Gradient|Products|Pricing|Services|Standards|Shop|Command Center|Department RSI|Cloud MVP)", re.I) - - def remove_shell_headers_after_body(text): - body = re.search(r"]*>", text, flags=re.I) - if not body: - return text, 0 - start = body.end() - # Only inspect the pre-content prefix. This avoids deleting content headers later in the document. - main_candidates = [m.start() for m in re.finditer(r"]+>", " ", block) - if SHELL_TEXT_RE.search(stripped): - removed += 1 - return "\n" - return block - - # Remove nav-like headers, navs, and div topbars before actual content. - pattern = re.compile(r"<(?:header|nav)\b[\s\S]*?|]*class=[\"'][^\"']*(?:topbar|shell|nav|navbar|site-header)[^\"']*[\"'])[\s\S]*?", re.I) - new_prefix = pattern.sub(repl, prefix) - return text[:start] + new_prefix + text[prefix_end:], removed - - def remove_footers(text): - removed = 0 - def repl(match): - nonlocal removed - block = match.group(0) - if SHELL_TEXT_RE.search(re.sub(r"<[^>]+>", " ", block)): - removed += 1 - return "\n" - return block - text = re.sub(r"", repl, text, flags=re.I) - return text, removed - - CANONICAL_CSS = f'' - CANONICAL_JS = f'' - - def repair_html(path): - if "_archive" in path.parts: - return - text = path.read_text(encoding="utf-8", errors="ignore") - if "" in text: - text = text.replace("", f" {CANONICAL_CSS}\n {CANONICAL_JS}\n", 1) - - # Insert exactly one canonical nav after . - if "]*>)", r"\1\n" + NAV + "\n", text, count=1, flags=re.I) - else: - text = NAV + "\n" + text - - # Insert exactly one canonical footer before . - if "" in text: - text = text.replace("", FOOTER + "\n", 1) - else: - text += "\n" + FOOTER - - if text != original: - path.write_text(text, encoding="utf-8") - report["html_files_repaired"].append(path.relative_to(WEB_ROOT).as_posix()) - - for html in sorted(WEB_ROOT.rglob("*.html")): - if "_archive" in html.parts or ".git" in html.parts: - continue - repair_html(html) - - # Sitemap / robots. - sitemap = '\n\n' - for u in sorted(set(urls)): - sitemap += f" https://montrealai.github.io{BASE}{u}{NOW[:10]}\n" - sitemap += "\n" - (WEB_ROOT / "sitemap.xml").write_text(sitemap, encoding="utf-8") - (WEB_ROOT / "robots.txt").write_text(f"User-agent: *\nAllow: /\nSitemap: https://montrealai.github.io{BASE}/sitemap.xml\n", encoding="utf-8") - - # Validations. - errors = [] - for html in sorted(WEB_ROOT.rglob("*.html")): - if "_archive" in html.parts or ".git" in html.parts: - continue - text = html.read_text(encoding="utf-8", errors="ignore") - shell_count = text.count("GOALOS-CANONICAL-SHELL:START") - footer_count = text.count("GOALOS-CANONICAL-FOOTER:START") - if shell_count != 1: - errors.append(f"{html.relative_to(WEB_ROOT)} has {shell_count} canonical shells") - if footer_count != 1: - errors.append(f"{html.relative_to(WEB_ROOT)} has {footer_count} canonical footers") - old_found = [] - for marker in ["GOALOS-COMPLETE-NAV", "GOALOS-PRODUCT-LADDER-NAV", "GOALOS-UNIFIED-SHELL", "GOALOS-CLOUD-MVP:START", "GOALOS-CLOUD-MVP-V02:START"]: - if marker in text: - old_found.append(marker) - if old_found: - errors.append(f"{html.relative_to(WEB_ROOT)} still has old markers {old_found}") - - # Internal absolute link check. - missing = [] - for html in WEB_ROOT.rglob("*.html"): - if "_archive" in html.parts: - continue - text = html.read_text(encoding="utf-8", errors="ignore") - for m in re.finditer(r'href=["\'](/proof-gradient/[^"#?\']*)["\']', text): - target = m.group(1)[len(BASE):] or "/" - fs = WEB_ROOT / target.lstrip("/") - if target.endswith("/"): - fs = fs / "index.html" - if not fs.exists(): - missing.append((html.relative_to(WEB_ROOT).as_posix(), m.group(1))) - if missing: - errors.append("Missing internal links:\n" + "\n".join(f"{s} -> {u}" for s,u in missing[:80])) - - report["validation"] = { - "canonical_shell_errors": errors, - "html_count": len([p for p in WEB_ROOT.rglob("*.html") if "_archive" not in p.parts]), - } - if errors: - (WEB_ROOT / "goalos-site-repair-v2-errors.json").write_text(json.dumps(errors, indent=2), encoding="utf-8") - raise SystemExit("Unified site validation failed:\n" + "\n".join(errors[:40])) - - # Manifest. - manifest = [] - for p in sorted(WEB_ROOT.rglob("*")): - if p.is_file() and ".git" not in p.parts: - manifest.append({"path": p.relative_to(WEB_ROOT).as_posix(), "bytes": p.stat().st_size, "sha256": hashlib.sha256(p.read_bytes()).hexdigest()}) - (WEB_ROOT / "goalos-site-manifest-v2.json").write_text(json.dumps({"generated_at": NOW, "files": manifest}, indent=2) + "\n", encoding="utf-8") - (WEB_ROOT / "goalos-site-repair-v2-report.json").write_text(json.dumps(report, indent=2) + "\n", encoding="utf-8") - - print("GoalOS unified site repair v2 complete.") - print("Web root:", WEB_ROOT) - print("Pages rewritten:", len(report["pages_rewritten"])) - print("HTML files repaired:", len(report["html_files_repaired"])) - print("Nav headers removed:", report["nav_headers_removed"]) - print("Footers removed:", report["footers_removed"]) - print("Old markers removed:", report["old_markers_removed"]) - print("Old assets removed:", report["old_assets_removed"]) - print("Validation: passed") - PY - - python3 "$RUNNER_TEMP/goalos_unified_site_repair_v2.py" - - - name: Safety check — refuse deletions - shell: bash + - name: Detect site root + id: root run: | - set -euo pipefail - deleted="$(git diff --name-status | awk '$1 ~ /^D/ {print}')" - if [ -n "$deleted" ]; then - echo "Refusing to continue because deletions were detected:" - echo "$deleted" - exit 1 - fi - - - name: Commit canonical site repair - shell: bash + if [ -d site ]; then echo "root=site" >> "$GITHUB_OUTPUT"; elif [ -d public ]; then echo "root=public" >> "$GITHUB_OUTPUT"; else echo "No site/ or public/ root found"; exit 1; fi + - name: Refuse repository deletions run: | - set -euo pipefail - WEB_ROOT="${{ steps.build.outputs.web_root }}" - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add "$WEB_ROOT" - if git diff --cached --quiet; then - echo "No website changes to commit." - else - git commit -m "Repair GoalOS canonical site shell v2 [skip ci]" - git push - fi - - - name: Configure GitHub Pages - uses: actions/configure-pages@v5 - + if git diff --name-only --diff-filter=D --exit-code HEAD -- .; then echo "No deletions detected."; else echo "Deletion detected; refusing deploy."; exit 1; fi + - name: Run GoalOS Cloud MVP test + run: node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs + - name: Validate canonical shell + run: python scripts/validate_goalos_site_v2.py + - name: Run paid artifact guard + run: python scripts/check_no_paid_artifacts.py - name: Upload GitHub Pages artifact uses: actions/upload-pages-artifact@v3 with: - path: ${{ steps.build.outputs.web_root }} - + path: ${{ steps.root.outputs.root }} - name: Deploy GitHub Pages + id: deployment uses: actions/deploy-pages@v4 diff --git a/README.md b/README.md index 74440f11..e57cd4af 100644 --- a/README.md +++ b/README.md @@ -1,46 +1,107 @@ -# Proof Gradient - -**Aim. Act. Prove. Evolve.** - -Proof Gradient is the Agent Evolution Protocol. - -GoalOS gives the network **Direction**. -PlanOS gives it **Strategy**. -SkillOS gives it **Capability**. -The Proof Gradient gives it **Evolution**. - -## Four systems - -| System | Promise | -|---|---| -| Artifact Vault | Stores reusable intelligence. | -| Run Fabric | Executes agents at scale. | -| Proof Ledger | Records what happened. | -| Selection Gate | Promotes only what proved itself. | - -## Production foundation - -This repository now contains the first production platform foundation: - -- production database layer -- Artifact Vault service -- Run Fabric service -- Proof Ledger storage -- Selection Gate rollout router -- API -- CLI -- static UI -- tenancy and RBAC helpers -- tool permissions -- provider abstraction -- eval execution -- observability endpoint -- security review -- Docker Compose -- production tests +# Proof Gradient / GoalOS + +**A model can answer. An agent can act. An institution must prove.** + +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. + +**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, instructions, prompts, memory, scorecards, proof records, evaluations, evidence standards, operating procedures, approvals, versions, monitoring, and rollback. + +Core loop: + +> Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run + +## Public software proof + +GoalOS Cloud MVP 0.2 is a public static software proof in `site/app/goalos-cloud-mvp/`. + +It runs in the browser, uses `localStorage`, requires no secrets, and demonstrates: + +- 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. + +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. + +Run the MVP test: + +```bash +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +``` + +## Public website + +The GitHub Pages site root is `site/`. The public site uses one canonical shell: + +- `site/assets/goalos-site-v2.css` +- `site/assets/goalos-site-v2.js` + +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. + +## Product / offer ladder + +Paid products are sold on QUEBEC.AI and are **not** stored in this repository. All checkout / apply buttons point to: + + + +Current ladder: + +| 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. | + +Future platform: **GoalOS Recursive Workflow OS**. Future moat: **Proof Graph**. + +## Public standards and proof layer + +The AEP standards are the public trust layer. They provide the vocabulary for proof, permission, rollback, public-safe reports, and Proof Rooms. + +- 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 + +Existing standards content, schemas, examples, conformance materials, and documentation are preserved. ## Claim boundary -It does **not** claim real revenue, real profit, guaranteed ROI, investment advice, actual deployed superintelligence, real-world energy capture, or Kardashev Type II achievement. +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. + +## Validation + +Recommended public-site checks: + +```bash +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +python scripts/validate_goalos_site_v2.py +python scripts/check_no_paid_artifacts.py +pytest +``` + +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. + +## Repository foundation -It is a proof-bounded production foundation. +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. diff --git a/docs/GOALOS_CLOUD_MVP_0_2.md b/docs/GOALOS_CLOUD_MVP_0_2.md new file mode 100644 index 00000000..17ced5dc --- /dev/null +++ b/docs/GOALOS_CLOUD_MVP_0_2.md @@ -0,0 +1,49 @@ +# 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. diff --git a/docs/GOALOS_COMMERCIALIZATION_STATUS.md b/docs/GOALOS_COMMERCIALIZATION_STATUS.md new file mode 100644 index 00000000..6fa149f7 --- /dev/null +++ b/docs/GOALOS_COMMERCIALIZATION_STATUS.md @@ -0,0 +1,36 @@ +# 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. diff --git a/docs/GOALOS_PUBLIC_SITE_REPAIR.md b/docs/GOALOS_PUBLIC_SITE_REPAIR.md new file mode 100644 index 00000000..ddc285b4 --- /dev/null +++ b/docs/GOALOS_PUBLIC_SITE_REPAIR.md @@ -0,0 +1,36 @@ +# GoalOS Public Site Repair v2 + +Date: 2026-06-07 + +## Purpose + +The public site had accumulated multiple historical navigation systems and site shells, which caused stacked top bars and the appearance of several websites rendering at once. The repair establishes one canonical public shell across `site/`. + +## Canonical shell + +- CSS: `site/assets/goalos-site-v2.css` +- JS: `site/assets/goalos-site-v2.js` +- Nav marker: `GOALOS-CANONICAL-SHELL` +- Footer marker: `GOALOS-CANONICAL-FOOTER` + +Canonical navigation: + +GoalOS · Proof Gradient · Start · Products · Pricing · Services · Cloud MVP · Department RSI · Examples · Standards · Shop + +Canonical footer: + +GoalOS · Recursive Workflow OS · Proof Rooms · Enterprise RSI · Site Map · Pricing · GitHub · Shop + +## Backup + +Public HTML files were backed up before canonicalization under: + +`site/_archive/before_unified_shell_v2_2026-06-07/` + +## Validation + +Validation is implemented in `scripts/validate_goalos_site_v2.py` and checks that every public HTML page outside `site/_archive/` has exactly one canonical nav marker, exactly one canonical footer marker, no old GoalOS shell markers, no duplicate Cloud MVP homepage marker, and no broken internal `/proof-gradient/...` links. + +## Security guard + +`scripts/check_no_paid_artifacts.py` blocks paid or private delivery artifacts from the public `site/` tree. All checkout / apply buttons point to . diff --git a/docs/GOALOS_REPO_AUDIT.md b/docs/GOALOS_REPO_AUDIT.md new file mode 100644 index 00000000..f1337bc8 --- /dev/null +++ b/docs/GOALOS_REPO_AUDIT.md @@ -0,0 +1,71 @@ +# GoalOS / Proof Gradient Repository Audit + +Date: 2026-06-07 +Branch: `feature/goalos-public-site-mvp-unification` + +## Current site root + +- 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. + +## Pages and structure found before repair + +- 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. + +## Duplicate shell / navigation issue summary + +- 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. + +## Paid or private artifact scan + +- 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 `site/`, with explicit public documentation/action-kit whitelisting only. + +## Files changed + +- 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. +- Follow-up repair restored `proof-gradient-site.css` / `proof-gradient-site.js` on current public pages that still use `pg-*` markup or `data-pg-search`, and made `scripts/validate_goalos_site_v2.py` enforce that compatibility requirement. +- Follow-up repair updated the GoalOS product page generator so CI regeneration emits the canonical shell directly and no longer reintroduces stale PG shell/footer fragments. +- Follow-up repair narrowed the AEP-003 ProofPacket CI glob to validate numbered ProofPacket examples while leaving the separate bundle example to chain/bundle tooling. + +## Files preserved + +- 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. + +## Files backed up + +- All 206 pre-repair public HTML files were backed up under `site/_archive/before_unified_shell_v2_2026-06-07/` before canonicalization. + +## Tests run + +- `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. +- AEP-003 numbered ProofPacket validation plus packet-chain verification — passed. +- Product page builder freshness check — passed after rerunning `python scripts/build_goalos_product_pages.py` and confirming the output diff did not change. + +## Known limitations + +- 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. diff --git a/scripts/build_goalos_product_pages.py b/scripts/build_goalos_product_pages.py index d9ea29e2..51188dfd 100755 --- a/scripts/build_goalos_product_pages.py +++ b/scripts/build_goalos_product_pages.py @@ -101,6 +101,12 @@ def write(path: Path, content: str) -> None: path.write_text(content, encoding="utf-8") def page(title: str, main: str, css_prefix: str = "../") -> str: + """Render generated product pages with the canonical GoalOS shell. + + The product pages still load goalos-products.* for their generated product + components, but the surrounding public site shell is the same v2 shell used + by the rest of site/ so CI regeneration cannot reintroduce stacked navbars. + """ return f""" @@ -108,27 +114,42 @@ def page(title: str, main: str, css_prefix: str = "../") -> str: {e(title)} + + Skip to content -
    - QUEBEC.AI / MONTREAL.AI -
    +
    + + +

    Free AI Efficiency Score

    Measure whether AI is a chat box or a reusable work system.

    Static quiz. No backend. No data collection. No external analytics.

    Questionnaire statique. Aucun backend. Aucune collecte de données. Aucune analytique externe.

    +
    Question 1
    Do you paste the same context into AI more than once per week?
    Question 2
    Do you have saved AI instructions for recurring work?
    Question 3
    Do you have a reusable context pack?
    Question 4
    Do you have rules the AI must always follow?
    Question 5
    Do you have memory / notes the AI can reuse?
    Question 6
    Do you have a repeatable workflow?
    Question 7
    Do you check outputs before using them?
    Question 8
    Do you save evidence of what worked?
    Question 9
    Do you have a rollback / correction plan?
    Question 10
    Do you improve the workflow weekly?
    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/app/goalos-cloud-mvp/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/app/goalos-cloud-mvp/index.html new file mode 100644 index 00000000..04d0f6f4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/app/goalos-cloud-mvp/index.html @@ -0,0 +1,59 @@ +GoalOS Cloud MVP 0.2 — Enterprise Recursive Workflow OS + + + +
    + +
    + + + + +
    +

    Enterprise Recursive Workflow OS · software proof

    Run. Score. Prove. Improve. Approve. Version. Monitor. Re-run.

    A working public MVP proving recursive workflow improvement on one enterprise workflow family: Customer Support Reply Workflow.

    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback.

    +
    +
    + +

    Governance + model gateway

    Tenant, roles, policy, memory, model-provider restrictions, and safe execution boundaries.

    Organization

    Policy

    Memory

    Model providers

    + + + + + + + + + + + + + + + + + +

    Enterprise acceptance test

    v1.0 runs → evaluations detect refund-policy failure → Recursive Improvement Engine proposes v1.1 → human approval deploys v1.1 → benchmark improves → rollback target remains available → Proof Room exports public-safe proof.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/autonomous-market-readiness.html b/site/_archive/before_unified_shell_v2_2026-06-07/autonomous-market-readiness.html new file mode 100644 index 00000000..0aa5a038 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/autonomous-market-readiness.html @@ -0,0 +1,139 @@ + + + + +SkillOS Autonomous Market Readiness + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous Market-Readiness Proof

    +

    100% autonomous GitHub Actions proof. No human review. No emails sent. No customers contacted. No private data. No API keys.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_MARKET_READINESS_PROOF
    +

    This is a reference workflow proof of autonomous readiness, not audited customer ROI or live customer market proof.

    +
    +
    +
    +
    +45.8 ptsquality gain
    +
    86.9%edit-time reduction
    +
    86.8%cost reduction
    +
    0.0%SkillOS hallucination rate
    +
    +
    +

    Before / after on holdout examples

    + + + + + + + +
    MetricBaselineSkillOS
    Quality score49.295
    Accepted rate0.0%100.0%
    Edit minutes/job6.090.8
    Cost/job$7.6$1.0
    Hallucination rate15.0%0.0%
    +
    +
    +

    Learned skill rules

    +
    • Put the agreed next step in the first three lines.
    • +
    • Include the buyer's main pain in the recap.
    • +
    • Never add commitments, approvals, budgets, or launch dates not present in the call notes.
    • +
    • Replace generic filler with a concise, specific recap.
    • +
    • End with a clear confirmation question tied to the next step.
    • +
    • Keep the draft under 140 words unless the user asks for more detail.
    +
    +
    +

    Proof gates

    +
    • ✅ no human review required
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ train examples at least 20
    • +
    • ✅ holdout examples at least 50
    • +
    • ✅ learned rules created
    • +
    • ✅ quality gain at least 20 points
    • +
    • ✅ accepted rate lift at least 50 points
    • +
    • ✅ edit time reduction at least 50 percent
    • +
    • ✅ cost reduction at least 50 percent
    • +
    • ✅ hallucination rate after skillos is zero
    +
    +
    +Boundary: This proof is fully autonomous and reproducible. It does not use real customer data and does not claim audited customer ROI, investment value, or guaranteed outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/command-center/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/command-center/index.html new file mode 100644 index 00000000..654bee97 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/command-center/index.html @@ -0,0 +1,76 @@ + + + + + + GoalOS Command Center + + + + + + + + + +
    + +
    + + +
    +
    Command Center

    One site. One command center.

    Search the unified GoalOS / Proof Gradient website.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/docs/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/docs/index.html new file mode 100644 index 00000000..ff8bdb97 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/docs/index.html @@ -0,0 +1,82 @@ + + + + + + Proof Gradient Documentation + + + + + + + + +
    + +
    + + + + + + + + +
    +

    ← Proof Gradient

    +

    Proof Gradient Documentation

    +

    This public documentation index preserves existing site links and points visitors to the active proof and standards pages.

    +
    +

    Public standards

    + +
    +
    +

    Public proofs

    + +
    +
    +

    GoalOS

    + +
    +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/enterprise-ops-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/enterprise-ops-proof.html new file mode 100644 index 00000000..b507bfd9 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/enterprise-ops-proof.html @@ -0,0 +1,144 @@ + + + + +SkillOS Enterprise Ops Market Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Enterprise Ops Market Proof

    +

    100% autonomous GitHub Actions proof for procurement invoice reconciliation and payment-risk triage.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_ENTERPRISE_OPS_MARKET_PROOF
    +

    No human review. No emails. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +75.0 ptsdecision accuracy gain
    +
    100.0%critical-risk recall
    +
    0.0%false approval rate
    +
    $5,977,753.86synthetic risk reduced
    +
    +
    +

    Before / after on holdout cases

    + + + + + + + + +
    MetricBaselineSkillOS
    Decision accuracy25.0%100.0%
    Critical-risk recall19.5%100.0%
    False approval rate66.1%0.0%
    Minutes per case9.52.2
    Cost per case$11.88$2.75
    Synthetic dollars at risk left unblocked$5,977,753.86$0
    +
    +
    +

    Learned SkillOS rules

    +
    • Require a three-way match: purchase order, invoice, and receipt.
    • +
    • Block duplicate invoice IDs for the same vendor or repeated invoice patterns.
    • +
    • Escalate vendor identity mismatch or bank-account changes.
    • +
    • Hold invoices with amount, tax, currency, terms, or delivery mismatches.
    • +
    • Escalate missing receipts before payment approval.
    • +
    • Approve clean invoices and preserve early-payment discount opportunities.
    • +
    • Never approve a payable when a critical risk signal is present.
    +
    +
    +

    Proof gates

    +
    • ✅ no human review required
    • +
    • ✅ not an email workflow
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ enterprise ops workflow
    • +
    • ✅ train cases at least 100
    • +
    • ✅ holdout cases at least 300
    • +
    • ✅ learned rules created
    • +
    • ✅ decision accuracy gain at least 25 points
    • +
    • ✅ critical risk recall at least 99 percent
    • +
    • ✅ false approval rate zero
    • +
    • ✅ review time reduction at least 70 percent
    • +
    • ✅ cost reduction at least 70 percent
    • +
    • ✅ synthetic dollars at risk reduced positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style data. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html new file mode 100644 index 00000000..29574a0e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/enterprise/goalos-enterprise-rsi-pilot/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Enterprise RSI Pilot + + + + + + + + + +
    + +
    + + +
    +
    Enterprise RSI

    Enterprise RSI without model self-modification.

    Pilot the Recursive Workflow Operating System for one enterprise workflow family.

    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run

    Formal platform name

    GoalOS Recursive Workflow OS

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/build-one-reusable-ai-workflow/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/build-one-reusable-ai-workflow/index.html new file mode 100644 index 00000000..10545118 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/build-one-reusable-ai-workflow/index.html @@ -0,0 +1,206 @@ + + + + + + Build One Reusable AI Workflow — GoalOS + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint
    +

    Build one reusable AI workflow.

    +

    Most people use AI like a chat box. They ask the same kind of question again and again. GoalOS turns one repeated AI task into a reusable work system with context, rules, memory, workflow, checks, and proof.

    + + + +
    +

    The example

    +
    Turn messy customer questions into clear, consistent, public-safe replies.
    +

    This is the perfect first workflow because almost every founder, consultant, creator, or small team has to answer the same questions repeatedly.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: AI as a chat box

    +

    A customer asks, “Why is this worth $49?” You open ChatGPT, explain your product again, ask for a reply, edit heavily, then start over next time.

    +

    Result: repeated work, inconsistent answers, easy to overpromise.

    +
    +
    +

    After: AI as a work system

    +

    You paste the question into your reusable GoalOS workflow. It already knows your offer, tone, rules, limits, checks, and proof format.

    +

    Result: clear reply, short version, next step, proof note, claim boundary.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what you sell, who it is for, what the buyer gets, and how you want to sound.

    +
    2. Rules

    Tell the AI what it must always do and what it must never claim: no guaranteed income, no legal advice, no fake certainty.

    +
    3. Memory

    Save reusable phrases, product facts, examples, objections, and explanations so you do not start from zero again.

    +
    4. Workflow

    The AI follows the same steps every time: understand concern → answer clearly → give example → add next step.

    +
    5. Checks

    The AI checks the reply before you use it: clear, specific, safe, not hypey, and aligned with your offer.

    +
    6. Proof

    The AI produces a short proof note: what was answered, what was claimed, what was avoided, and whether it is public-safe.

    +
    +
    + +
    +

    Copy-paste example

    +

    Customer message:

    +
    I don’t understand how this is worth $49. Isn’t it just a bunch of templates?
    +

    Reusable workflow output:

    +
    That’s a fair question.
    +
    +If it were only a folder of templates, it would not be worth $49.
    +
    +The value is that the kit helps you turn one repeated AI task into a reusable work system.
    +
    +For example, instead of asking AI from scratch every time you need to answer a customer, write a proposal, summarize a meeting, or create a weekly update, you build one reusable workflow with:
    +
    +context
    +rules
    +memory
    +steps
    +checks
    +proof
    +
    +After that, you are not starting from zero every time.
    +
    +You have a system you can reuse, improve, and share.
    +
    +The goal is simple: stop repeating the same AI task manually.
    +

    Proof note:

    +
    Customer concern:
    +The buyer questioned whether the product is worth $49.
    +
    +Answer given:
    +Explained that the product is not just templates; it helps create one reusable AI workflow.
    +
    +Claims made:
    +The kit helps the buyer structure one repeated AI task into a reusable system.
    +
    +Claims avoided:
    +No income guarantee.
    +No ROI guarantee.
    +No legal, financial, medical, or compliance claim.
    +No promise of perfect accuracy.
    +
    +Public-safe:
    +Yes.
    +
    + +
    +

    What the buyer gets

    +
    + Clear reply + Short social version + Next step + Proof note + Claim boundary + Reusable workflow +
    +
    +

    Not another prompt

    A prompt is something you ask once. A workflow is a system you can run again.

    +

    Not hype

    The workflow avoids income guarantees, fake certainty, and risky claims.

    +

    Actual leverage

    One messy repeated task becomes an asset you can reuse, share, improve, and trust.

    +
    +
    + +
    +

    The one-sentence promise

    +
    Stop asking AI from scratch. Build one reusable AI workflow in under one hour.
    + +
    + +
    + This is an educational workflow example. It does not provide legal, financial, medical, tax, employment, security, or regulatory advice. It does not guarantee income, savings, compliance, safety, accuracy, or business results. Users are responsible for reviewing outputs and applying professional judgment. +
    +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/checkout-recovery/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/checkout-recovery/index.html new file mode 100644 index 00000000..a2a6f178 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/checkout-recovery/index.html @@ -0,0 +1,290 @@ + + + + + + Checkout Recovery — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Checkout Loop · Example 13
    +

    Turn almost-buyers into clear decisions.

    +

    This reusable AI workflow turns an abandoned checkout signal into a calm, permission-aware recovery sequence that clarifies the offer, answers objections, explains terms, and leaves a proof note.

    + + + +
    +

    The simple idea

    +
    Recover confusion, not just carts.
    +

    Some buyers do not need pressure. They need clarity: what is inside, who it is for, what is not promised, and what the digital product terms mean.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: abandoned checkout

    +

    Someone clicks checkout, hesitates, and leaves. You do not know whether the issue was price, confusion, technical concern, or terms.

    +

    Result: lost demand and no learning.

    +
    +
    +

    After: recovery workflow

    +

    The workflow creates a calm sequence that clarifies the offer, answers common concerns, and reminds people of the terms without fake urgency.

    +

    Result: clearer buyer decisions with less manual follow-up.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, checkout signal, likely objections, and product terms.

    +
    2. Rules

    Tell the AI to avoid fake urgency, guilt language, income claims, ROI claims, and fake testimonials.

    +
    3. Memory

    Save the product contents, who it is for, who it is not for, and standard final-sale wording.

    +
    4. Workflow

    The AI creates clarifying email, objection email, terms email, FAQ, and proof note.

    +
    5. Checks

    The AI checks consent, unsubscribe needs, claim boundaries, and whether the copy is calm and honest.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before sending.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough checkout recovery notes:

    +
    Rough checkout recovery notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Signal: visitor clicked checkout but did not complete purchase
    +Possible reasons:
    +- they are unsure what is inside the kit
    +- they think it may be just prompts
    +- they wonder if it is technical
    +- they worry there are no refunds
    +- they got distracted
    +Goal: create a simple, permission-aware checkout recovery sequence that clarifies the offer without pressure
    +Rules:
    +- only send if the person gave permission / platform allows checkout recovery
    +- include unsubscribe where required
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no fake testimonial
    +- no “you forgot” guilt language
    +- be calm and helpful
    +Terms:
    +digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Checkout Recovery Email 1 — Clarify the offer
    +Subject: Still considering the GoalOS kit?
    +
    +Hi,
    +
    +You were looking at the GoalOS AI Efficiency Sprint Kit.
    +
    +Simple reminder:
    +
    +This is a $49 digital kit that helps you build one reusable AI workflow in under one hour.
    +
    +It is for people who keep asking AI from scratch for the same kind of task.
    +
    +Inside the kit:
    +- Start Here guide
    +- 60-minute sprint checklist
    +- AI task picker
    +- Context template
    +- Rules template
    +- Memory template
    +- Workflow template
    +- Checks template
    +- Proof page template
    +- Copy-paste prompts
    +- Examples
    +
    +It is not a magic income system.
    +It is not legal, financial, medical, or compliance advice.
    +
    +It is a practical workflow kit.
    +
    +Checkout Recovery Email 2 — Answer the objection
    +Subject: Is this just prompts?
    +
    +Fair question.
    +
    +No — the point is not to collect more prompts.
    +
    +A prompt helps once.
    +
    +A reusable workflow helps repeatedly.
    +
    +The GoalOS method is:
    +
    +context
    +rules
    +memory
    +workflow
    +checks
    +proof
    +
    +The goal is to build one reusable AI work system you can run again.
    +
    +Checkout Recovery Email 3 — Terms clarity
    +Subject: Before you buy
    +
    +A quick clarity note before checkout:
    +
    +The GoalOS AI Efficiency Sprint Kit is a digital educational product.
    +
    +Access is delivered instantly.
    +
    +All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Buy only if you want a self-serve kit that helps you build one reusable AI workflow.
    +
    +Not for:
    +- guaranteed income
    +- guaranteed ROI
    +- legal/financial/medical advice
    +- fully autonomous AI acting without review
    +
    +Checkout FAQ:
    +Q: Do I need to be technical?
    +A: No. Pick one repeated task and follow the 60-minute checklist.
    +
    +Q: What should I use it for first?
    +A: Customer replies, meeting notes, weekly updates, sales-page sections, email sequences, or support FAQ.
    +
    +Q: What if my download does not work?
    +A: Contact support with your order email. Access issues and corrupted/missing files can be reviewed.
    +
    +Q: Can I get a refund because I changed my mind?
    +A: This is a digital product with instant access. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +

    Proof note:

    +
    Proof note:
    +Source: rough checkout recovery notes.
    +Outputs created: checkout recovery email sequence and FAQ.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no fake testimonial, no pressure language, no guarantee of results.
    +Consent boundary: send only where the person opted in or the checkout platform legally supports recovery messages; include unsubscribe/identity where required.
    +Review needed: human should confirm email consent, platform settings, unsubscribe link, checkout terms, and final product contents before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Recovery email 1 + Objection email + Terms email + Checkout FAQ + Claim boundary + Consent reminder + Proof note +
    +
    +

    Built for checkout clarity

    Recover buyers who left because the product was not clear enough.

    +

    No pressure tactics

    The workflow avoids fake urgency, fake scarcity, and guilt language.

    +

    Lower support risk

    The recovery sequence explains digital product terms before purchase.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste checkout notes. Get a calm recovery sequence and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, advertising, endorsement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Send checkout recovery messages only where you have proper permission or platform/legal basis, and include unsubscribe/identity where required. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-correction-rollback/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-correction-rollback/index.html new file mode 100644 index 00000000..fe9d6835 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-correction-rollback/index.html @@ -0,0 +1,312 @@ + + + + + + Department AI Correction / Rollback — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 22
    +

    Turn AI mistakes into corrections.

    +

    This reusable AI workflow turns an AI workflow issue into a clear correction / rollback record: what happened, how serious it was, what changed, who reviews it, and what proof was recorded.

    + + + +
    +

    The simple idea

    +
    The serious question is not “will AI make mistakes?” It is “how do we correct them?”
    +

    Proof Room Lite becomes much more credible when a department has a simple way to catch, correct, restrict, revise, and record AI workflow issues.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: mistakes become confusion

    +

    An AI draft is wrong or unclear. Someone fixes it quietly. The workflow keeps the same weak rule. The same issue can happen again.

    +

    Result: hidden risk, no learning, no proof.

    +
    +
    +

    After: correction loop

    +

    The issue is classified, the draft is rolled back, the rule is updated, the checker is improved, and a rollback receipt is recorded.

    +

    Result: mistakes become workflow improvements.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what happened, which workflow was involved, whether anything was sent, and who owns the workflow.

    +
    2. Rules

    Tell the AI not to blame people, certify compliance, guarantee safety, or publish private details.

    +
    3. Memory

    Save severity levels, rollback wording, and the standard “needs human review” policy language.

    +
    4. Workflow

    The AI creates issue summary, severity, immediate action, rollback decision, rule update, checker update, manager note, and proof note.

    +
    5. Checks

    The AI checks whether external correction is needed, whether the workflow should be restricted, and whether the rule was updated.

    +
    6. Proof

    The AI records what was rolled back, what changed, what was claimed, and what still needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department AI Correction / Rollback notes:

    +
    Rough Department AI Correction / Rollback notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Department: Customer Success / Operations
    +Room: Customer Success AI Workflow Room
    +
    +Incident:
    +A draft support reply generated by the Support FAQ workflow gave unclear policy guidance about a refund / access issue.
    +The reply was not sent externally because human review caught it.
    +The issue suggests the workflow needs better rules for policy uncertainty.
    +
    +Goal:
    +Create a correction / rollback workflow that records what happened, severity, immediate action, correction message if needed, workflow update, manager note, rollback receipt, and proof note.
    +
    +Need output:
    +- issue summary
    +- severity level
    +- immediate action
    +- correction / rollback decision
    +- workflow rule update
    +- checker update
    +- manager note
    +- rollback receipt
    +- proof note
    +
    +Rules:
    +- no legal/compliance certification
    +- no guarantee of safety
    +- do not blame a person
    +- do not claim the system is now perfect
    +- do not publish private customer details
    +- do not send external correction unless actually needed and approved
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    AI Correction / Rollback Record:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Workflow:
    +Support FAQ replies
    +
    +Issue:
    +A draft support reply gave unclear policy guidance about a refund / access issue.
    +
    +Status:
    +Caught during human review.
    +Not sent externally.
    +
    +Severity:
    +Level 2 — internal correction required.
    +
    +Why Level 2:
    +- The issue affected a draft workflow output.
    +- It was caught before external sending.
    +- No customer received the unclear answer.
    +- The workflow rule needs revision.
    +
    +Immediate action:
    +1. Do not use the draft reply.
    +2. Mark the run as “needs correction.”
    +3. Update the support workflow rules.
    +4. Add a stronger policy-uncertainty check.
    +5. Re-test the workflow on three internal examples.
    +
    +Correction / rollback decision:
    +Rollback required:
    +Yes — rollback the draft output.
    +
    +External correction required:
    +No — the message was not sent externally.
    +
    +Workflow status:
    +Active / restricted until rule update is tested.
    +
    +Workflow rule update:
    +Add this rule:
    +
    +If a support question involves refund terms, billing, legal, privacy, safety, or policy uncertainty:
    +- do not provide a final answer
    +- mark the issue as “needs human review”
    +- use the approved support policy wording
    +- escalate to the room owner if unclear
    +
    +Checker update:
    +Before any support reply is sent externally, confirm:
    +- the issue category is correct
    +- refund/access terms match the published policy
    +- uncertain policy items are marked
    +- no legal or compliance advice is given
    +- no private customer data appears in public examples
    +
    +Manager note:
    +Subject: Support FAQ workflow correction
    +
    +We caught an unclear AI-drafted support reply during human review.
    +
    +The reply was not sent externally.
    +
    +Decision:
    +We rolled back the draft and restricted the workflow until the rule update is tested.
    +
    +Change:
    +Support questions involving refunds, billing, legal, privacy, safety, or policy uncertainty will now be escalated for human review instead of answered directly by the workflow.
    +
    +Claim boundary:
    +This correction does not claim the workflow is risk-free or compliant. It records the issue found, the rollback decision, and the rule update.
    +
    +Rollback Receipt:
    +Rollback ID:
    +RB-SUPPORT-FAQ-001
    +
    +Rolled back:
    +Unclear draft support reply.
    +
    +Reason:
    +Policy uncertainty.
    +
    +External impact:
    +None identified; draft was not sent.
    +
    +Action taken:
    +Draft discarded, workflow rule updated, checker updated, re-test required.
    +
    +Status:
    +Rollback complete / verification pending.
    +
    +Next verification:
    +Run three internal support examples and confirm uncertainty is correctly escalated.
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department AI Correction / Rollback notes.
    +Outputs created: issue summary, severity level, immediate action, rollback decision, workflow rule update, checker update, manager note, rollback receipt.
    +Claims made: the Department Pack can help record and manage correction/rollback for department AI workflows.
    +Claims avoided: no legal/compliance certification, no guarantee of safety, no claim that the workflow is now perfect, no blame assignment, no private customer details.
    +Review needed: department should confirm incident facts, policy wording, owner approval, and whether any external correction is required before sharing.
    +Public-safe: yes, if private customer, employee, policy, and operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Issue summary + Severity level + Immediate action + Rollback decision + Rule update + Checker update + Manager note + Rollback receipt + Proof note +
    +
    +

    Built for real adoption

    AI adoption becomes more credible when mistakes have a correction path.

    +

    Lightweight rollback

    Use simple rollback receipts instead of hiding errors or overbuilding governance.

    +

    Proof Room ready

    Every issue becomes evidence for improving rules, checks, and workflow boundaries.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste an AI workflow issue. Get a correction plan, rollback receipt, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review incident facts, internal policies, customer impact, data boundaries, and approval responsibilities before acting. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-permission-map/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-permission-map/index.html new file mode 100644 index 00000000..3355c3da --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-ai-permission-map/index.html @@ -0,0 +1,347 @@ + + + + + + Department AI Permission Map — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 21
    +

    Turn AI tool risk into simple rules.

    +

    This reusable AI workflow turns department AI confusion into a simple permission map: what can be used, what needs review, what is blocked, who decides, and what proof note must be recorded.

    + + + +
    +

    The simple idea

    +
    A department needs a simple answer: what can we use, with what data, and who checks it?
    +

    A Green / Yellow / Red permission map is easy for non-technical teams to understand and serious enough for managers to use.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: everyone guesses

    +

    People use AI tools differently. Some paste notes, some paste support questions, some paste feedback, and no one knows what is safe or allowed.

    +

    Result: unclear risk, inconsistent practice, no proof of review.

    +
    +
    +

    After: permission map

    +

    The department has clear Green / Yellow / Red boundaries, task-level rules, escalation rules, and proof notes.

    +

    Result: simpler AI adoption with clearer boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the department, tools, repeated tasks, data types, and current confusion.

    +
    2. Rules

    Tell the AI not to certify compliance, guarantee safety, or approve sensitive data use.

    +
    3. Memory

    Save the Green / Yellow / Red framework and escalation language.

    +
    4. Workflow

    The AI creates the data boundary, task-level permission map, escalation rules, manager announcement, team quick policy, and proof note.

    +
    5. Checks

    The AI checks whether each task has a clear permission, blocked data list, human review rule, and owner.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs internal review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department AI Permission Map notes:

    +
    Rough Department AI Permission Map notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Department: Customer Success / Operations
    +Goal: make department AI use safer and easier to manage without heavy enterprise software
    +
    +Current situation:
    +- people use ChatGPT / Claude / Gemini differently
    +- some people paste meeting notes
    +- some people paste customer support questions
    +- some people summarize feedback
    +- nobody knows what data is okay to use
    +- nobody knows when human review is required
    +- no one records proof that rules were followed
    +
    +Need output:
    +- Green / Yellow / Red data boundary
    +- simple tool permission map
    +- task-by-task AI use rules
    +- manager announcement
    +- team quick policy
    +- escalation rules
    +- proof note
    +
    +Rules:
    +- no legal/compliance certification
    +- no guarantee of safety
    +- no autonomous sending without human review
    +- no private customer data in public examples
    +- no secrets, credentials, payment data, or regulated personal data in public AI tools
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Department AI Permission Map:
    +Department:
    +Customer Success / Operations
    +
    +Simple rule:
    +If the data would be risky in a public screenshot, do not paste it into a public AI tool.
    +
    +Green — generally allowed:
    +- public product information
    +- public website copy
    +- anonymized examples
    +- generic support questions
    +- internal process descriptions with no private data
    +- draft outlines and templates
    +
    +Use:
    +Allowed for drafting, summarizing, brainstorming, and template creation.
    +
    +Human review:
    +Still required before sending anything externally.
    +
    +Yellow — allowed only with care / review:
    +- internal meeting notes
    +- internal strategy notes
    +- customer feedback summaries after removing names and identifiers
    +- account notes with sensitive details removed
    +- operational reports without private customer details
    +
    +Use:
    +Allowed only after removing private details and marking uncertain items.
    +
    +Human review:
    +Required before sharing, sending, or storing as official output.
    +
    +Red — do not paste:
    +- passwords
    +- API keys
    +- credentials
    +- payment information
    +- private customer records
    +- health, legal, financial, or employment-sensitive information
    +- contracts or confidential legal documents
    +- unreleased security issues
    +- private screenshots
    +- exact customer messages with names, emails, or account details
    +
    +Use:
    +Not allowed in public AI tools.
    +
    +Task-by-task permission map:
    +1. Support FAQ replies
    +Permission:
    +Draft only.
    +
    +Allowed inputs:
    +generic question, public policy, anonymized context.
    +
    +Not allowed:
    +private customer records, payment issues, legal claims.
    +
    +Required check:
    +human review before sending.
    +
    +2. Meeting notes to action plan
    +Permission:
    +Internal draft.
    +
    +Allowed inputs:
    +internal notes with sensitive details removed.
    +
    +Not allowed:
    +private client data, confidential deals, HR issues.
    +
    +Required check:
    +owner/deadline confirmation.
    +
    +3. Product feedback summary
    +Permission:
    +Anonymized summary.
    +
    +Allowed inputs:
    +summarized themes.
    +
    +Not allowed:
    +customer names, emails, private screenshots, exact quotes without permission.
    +
    +Required check:
    +privacy review before public use.
    +
    +4. Monthly Proof Room report
    +Permission:
    +Internal report.
    +
    +Allowed inputs:
    +workflow counts, issues, decisions, owner names if internal.
    +
    +Not allowed:
    +private customer details or sensitive operational details in public version.
    +
    +Required check:
    +manager review before sharing.
    +
    +Escalation rules:
    +Escalate to the room owner if:
    +- someone wants to use Red data
    +- a workflow touches legal, financial, health, employment, security, or regulated data
    +- an output may be sent externally
    +- a customer complaint involves billing, legal, privacy, or safety concerns
    +- the team is unsure which category applies
    +
    +Manager announcement:
    +Subject: New AI use map for our department
    +
    +We are setting up a simple AI Permission Map for department workflows.
    +
    +The goal is to make repeated AI work easier to manage and safer to review.
    +
    +The map has three categories:
    +Green: generally allowed
    +Yellow: allowed with care and review
    +Red: do not paste into public AI tools
    +
    +For now, AI outputs are drafts only. Human review is required before anything is sent externally.
    +
    +We will use the map inside our Proof Room Lite process and update it as we learn.
    +
    +Team quick policy:
    +Before using AI, ask:
    +1. What task am I doing?
    +2. What data am I pasting?
    +3. Is the data Green, Yellow, or Red?
    +4. Who reviews the output?
    +5. What proof note should be recorded?
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department AI Permission Map notes.
    +Outputs created: Green / Yellow / Red data boundary, task-by-task permission map, escalation rules, manager announcement, team quick policy.
    +Claims made: the Department Pack can help a department create a simple AI permission map for repeated workflows.
    +Claims avoided: no legal/compliance certification, no guarantee of safety, no autonomous sending claim, no claim that all risks are eliminated.
    +Review needed: department should confirm internal policy, data classes, approved tools, privacy rules, and escalation owner before use.
    +Public-safe: yes, if private customer, employee, contract, security, and operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Green / Yellow / Red boundary + Tool permission map + Task rules + Escalation rules + Manager announcement + Team quick policy + Proof note +
    +
    +

    Built for managers

    Give teams simple rules they can actually follow.

    +

    Non-technical

    No complex governance platform required: Green, Yellow, Red, owner, review, proof.

    +

    Proof Room ready

    Every workflow gets a boundary, review rule, escalation path, and proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste department AI tool notes. Get a simple permission map and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review internal policies, data boundaries, approved tools, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-monthly-proof-report/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-monthly-proof-report/index.html new file mode 100644 index 00000000..2e2a9b37 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-monthly-proof-report/index.html @@ -0,0 +1,305 @@ + + + + + + Department Monthly Proof Report — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 20
    +

    Turn 30 days of AI work into a proof report.

    +

    This reusable AI workflow turns a month of Proof Room Lite notes into an executive report: what ran, what changed, what needs revision, what should happen next, and what can be shared safely.

    + + + +
    +

    The simple idea

    +
    Leadership does not need AI hype. It needs proof of what happened.
    +

    A monthly Proof Room report turns scattered AI experiments into a clear executive summary: workflows, owners, issues, decisions, next actions, and claim boundaries.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: no executive visibility

    +

    The department tries AI workflows, but leadership only hears anecdotes. Nobody sees what ran, what broke, or what changed.

    +

    Result: AI adoption feels vague and hard to trust.

    +
    +
    +

    After: monthly proof report

    +

    The department summarizes workflows, run counts, issues, revisions, decisions, and next-month priorities in one proof-ready report.

    +

    Result: leadership sees evidence, not hype.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the room name, reporting period, workflows, weekly reviews, issues, and decisions.

    +
    2. Rules

    Tell the AI not to claim ROI, productivity, compliance, or autonomous readiness.

    +
    3. Memory

    Save the monthly report structure: executive summary, status table, decisions, next plan, public-safe summary, proof note.

    +
    4. Workflow

    The AI creates the monthly report, leadership email, workflow status table, next-month plan, and proof note.

    +
    5. Checks

    The AI checks whether metrics are grounded, owners are clear, private data is removed, and claim boundaries are explicit.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before sharing.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough monthly Proof Room Lite report notes:

    +
    Rough monthly Proof Room Lite report notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Room: Customer Success AI Workflow Room
    +Reporting period: first 30 days
    +
    +Weekly review summary:
    +Week 1:
    +- Inventoried repeated tasks
    +- Chose support FAQ replies, meeting notes to action plan, and product feedback summary
    +
    +Week 2:
    +- Support FAQ workflow ran 18 times
    +- Meeting notes workflow ran 9 times
    +- Product feedback workflow ran 5 times
    +- Support workflow needed tone and policy-rule revisions
    +
    +Week 3:
    +- Support FAQ workflow ran 22 times
    +- Meeting notes workflow ran 11 times
    +- Product feedback workflow ran 6 times
    +- Meeting notes workflow needed stronger owner/deadline checks
    +
    +Week 4:
    +- Support FAQ workflow ran 25 times
    +- Meeting notes workflow ran 12 times
    +- Product feedback workflow ran 8 times
    +- Product feedback workflow produced recurring themes for product updates
    +
    +Goal:
    +Create a monthly executive proof report, leadership summary, workflow status table, decision list, next-month plan, public-safe summary, and proof note.
    +
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no compliance certification
    +- no claim that AI outputs are safe without human review
    +- do not reveal private customer details
    +- mark uncertain metrics clearly
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Monthly Proof Room Lite Report:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Reporting period:
    +First 30 days
    +
    +Executive summary:
    +The department tested three repeated AI-assisted workflows for 30 days:
    +
    +1. Support FAQ replies
    +2. Meeting notes to action plan
    +3. Product feedback summary
    +
    +The most useful pattern was not “automate everything.”
    +
    +The useful pattern was:
    +choose a repeated task
    +assign an owner
    +add rules
    +add checks
    +run it
    +record issues
    +revise weekly
    +
    +Workflow status table:
    +1. Support FAQ replies
    +Status: Active / revised
    +Runs recorded: 65
    +Main issue found: tone and policy clarity
    +Decision: keep with revised rules and human review
    +
    +2. Meeting notes to action plan
    +Status: Active / needs stronger checks
    +Runs recorded: 32
    +Main issue found: missing owners and unclear deadlines
    +Decision: keep with mandatory owner/deadline checks
    +
    +3. Product feedback summary
    +Status: Keep
    +Runs recorded: 19
    +Main issue found: none serious
    +Decision: continue and use themes for product updates
    +
    +Decisions:
    +Keep:
    +- product feedback summary
    +
    +Revise:
    +- support FAQ replies
    +- meeting notes to action plan
    +
    +Stop:
    +- no workflow stopped this month
    +
    +Next-month plan:
    +1. Add stronger policy uncertainty rule to support replies.
    +2. Add owner/deadline checks to meeting notes workflow.
    +3. Turn product feedback summary into one monthly product-update memo.
    +4. Add one new workflow only after the three current workflows are stable.
    +
    +Leadership update email:
    +Subject: 30-day Proof Room Lite summary
    +
    +We completed the first 30 days of the Customer Success AI Workflow Room.
    +
    +We tested three repeated workflows:
    +- support FAQ replies
    +- meeting notes to action plan
    +- product feedback summary
    +
    +The room helped us see what should be kept, what should be revised, and where human review is still required.
    +
    +Important boundary:
    +This report does not claim productivity gains, ROI, compliance, or autonomous readiness. It summarizes observed workflow use, issues, revisions, and next actions.
    +
    +Next month:
    +We will strengthen checks on support and meeting workflows, continue product feedback summaries, and avoid adding more workflows until the current three are stable.
    +
    +Public-safe summary:
    +Over 30 days, a department used Proof Room Lite to organize three repeated AI-assisted workflows, assign owners, track issues, revise rules, and produce a monthly evidence-based update.
    +

    Proof note:

    +
    Proof note:
    +Source: 30 days of summarized Proof Room Lite notes.
    +Outputs created: monthly executive proof report, workflow status table, decision list, next-month plan, leadership update email, public-safe summary.
    +Claims made: Proof Room Lite can help a department organize repeated AI workflows, owners, checks, issues, revisions, and proof summaries.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance certification, no autonomous-readiness claim, no private customer details.
    +Review needed: department should confirm run counts, issue summaries, owners, private data boundaries, and internal policy before sharing.
    +Public-safe: yes, if customer/private details and sensitive operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Executive summary + Workflow status table + Keep / revise / stop decisions + Next-month plan + Leadership email + Public-safe summary + Claim boundary + Proof note +
    +
    +

    Built for leadership

    Turn a month of AI activity into a report managers can understand.

    +

    Evidence over hype

    The workflow summarizes observed runs, issues, and revisions without unsupported ROI claims.

    +

    Monthly operating rhythm

    Every month ends with decisions, next actions, and a proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste 30 days of proof notes. Get an executive proof report.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review internal policies, data boundaries, metrics, workflow owners, and human-review responsibilities before sharing. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-proof-room-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-proof-room-lite/index.html new file mode 100644 index 00000000..1e2525ed --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-proof-room-lite/index.html @@ -0,0 +1,322 @@ + + + + + + Department Proof Room Lite — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 18
    +

    Turn department AI chaos into a Proof Room.

    +

    This reusable AI workflow turns scattered department AI use into a lightweight Proof Room: task inventory, workflow priorities, charter, role assignments, 30-day rollout, dashboard fields, manager update, and proof note.

    + + + +
    +

    The simple idea

    +
    A department does not need random AI use. It needs a room for proof.
    +

    Proof Room Lite helps a department pick a few repeated AI workflows, assign owners, add checks, and track what is working without becoming a heavy enterprise project.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: scattered AI use

    +

    Everyone uses AI differently. Workflows are not documented. Outputs are not consistently checked. Nobody knows what should continue, change, or stop.

    +

    Result: useful experiments, but no department system.

    +
    +
    +

    After: Proof Room Lite

    +

    The department chooses three repeated workflows, assigns owners, sets rules, adds checks, records proof notes, and reviews progress after 30 days.

    +

    Result: a lightweight operating room for department AI adoption.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the department, team size, repeated tasks, problems, and desired rollout.

    +
    2. Rules

    Tell the AI to avoid ROI, productivity, compliance, or safety guarantees.

    +
    3. Memory

    Save the Proof Room Lite structure: inventory, charter, roles, workflows, checks, proof dashboard.

    +
    4. Workflow

    The AI creates task inventory, priorities, charter, role assignments, rollout plan, dashboard fields, and manager update.

    +
    5. Checks

    The AI checks whether owners, boundaries, review responsibilities, and proof fields are clear.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what must be reviewed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department Pack / Proof Room Lite notes:

    +
    Rough Department Pack / Proof Room Lite notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Price idea: $499 to $999 self-serve digital department kit
    +Buyer: department lead, operations lead, innovation lead, AI champion, or small-business manager
    +Goal: organize a department's repeated AI work without hiring consultants
    +Department: customer success / operations
    +Team size: 8 to 25 people
    +Problem:
    +- people use AI differently
    +- repeated tasks are not documented
    +- no shared rules
    +- no proof that outputs were checked
    +- no clear owner for each workflow
    +- no rollback / correction process
    +Need output:
    +- department AI task inventory
    +- top 3 workflow priorities
    +- Proof Room Lite charter
    +- role assignments
    +- 30-day rollout plan
    +- proof dashboard fields
    +- manager update email
    +- proof note
    +Rules:
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no legal/compliance certification
    +- no claim that AI outputs are safe without human review
    +- no private customer data in public examples
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Department AI Task Inventory:
    +Department: Customer Success / Operations
    +
    +Repeated tasks found:
    +1. Weekly customer status update
    +2. Meeting notes to action plan
    +3. Support FAQ replies
    +4. Renewal-risk summary
    +5. Internal handoff notes
    +6. Product feedback summary
    +7. Monthly operations report
    +
    +Top 3 workflow priorities:
    +1. Support FAQ replies
    +Why: repeated weekly, high volume, clear support boundary needed.
    +
    +2. Meeting notes to action plan
    +Why: repeated across the department, easy to standardize.
    +
    +3. Product feedback summary
    +Why: helps turn repeated customer questions into product updates.
    +
    +Proof Room Lite Charter:
    +Room name:
    +Customer Success AI Workflow Room
    +
    +Mission:
    +Turn three repeated department AI tasks into reusable workflows with context, rules, checks, owners, and proof notes.
    +
    +In scope:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Out of scope:
    +- legal advice
    +- financial advice
    +- employment decisions
    +- regulated customer decisions
    +- autonomous sending without human review
    +
    +Room rules:
    +- one workflow owner per workflow
    +- no private customer data in public examples
    +- every workflow must have checks
    +- every output must be reviewed before use
    +- every workflow must leave a proof note
    +
    +Role assignments:
    +Room Owner:
    +Department lead
    +
    +Workflow Owners:
    +Support lead, operations lead, product feedback lead
    +
    +Checker:
    +Person responsible for reviewing outputs before use
    +
    +Proof Keeper:
    +Person responsible for proof notes and weekly room summary
    +
    +30-Day Rollout Plan:
    +Week 1:
    +Inventory repeated AI tasks and choose top 3.
    +
    +Week 2:
    +Build support FAQ workflow and test internally.
    +
    +Week 3:
    +Build meeting notes workflow and product feedback workflow.
    +
    +Week 4:
    +Review proof notes, improve templates, decide what to keep, revise, or stop.
    +
    +Proof Dashboard Fields:
    +- workflow name
    +- owner
    +- last run date
    +- input type
    +- output created
    +- checks completed
    +- issues found
    +- correction needed
    +- proof note link
    +- status: draft / active / needs revision / stopped
    +
    +Manager Update Email:
    +Subject: Proof Room Lite rollout plan
    +
    +We are setting up a lightweight GoalOS Proof Room for three repeated AI-assisted department workflows.
    +
    +The goal is not to automate everything.
    +
    +The goal is to make repeated AI work more consistent, reviewable, and easier to improve.
    +
    +First workflows:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Each workflow will have:
    +- owner
    +- context
    +- rules
    +- checks
    +- proof note
    +- review status
    +
    +We will run this for 30 days and review what should continue, change, or stop.
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department Pack / Proof Room Lite notes.
    +Outputs created: task inventory, top 3 priorities, Proof Room Lite charter, role assignments, 30-day rollout plan, proof dashboard fields, manager update email.
    +Claims made: the Department Pack can help organize repeated department AI work into reusable workflows with owners, checks, and proof notes.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance certification, no claim that AI output is safe without review.
    +Review needed: department should confirm internal policy, data boundaries, workflow owners, and review responsibilities before use.
    +Public-safe: yes, if department/private/customer details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + AI task inventory + Top 3 priorities + Proof Room Lite charter + Role assignments + 30-day rollout + Proof dashboard fields + Manager update email + Proof note +
    +
    +

    Built for departments

    Move from one team workflow to a lightweight department adoption system.

    +

    Self-serve governance

    Use owners, checks, proof notes, and dashboard fields instead of heavy consulting.

    +

    Proof Room Lite

    Small enough to start, structured enough to be taken seriously.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste department notes. Get a Proof Room Lite rollout and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies, data boundaries, workflow owners, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-public-safe-case-study/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-public-safe-case-study/index.html new file mode 100644 index 00000000..fb0c6e8a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-public-safe-case-study/index.html @@ -0,0 +1,331 @@ + + + + + + Department Public-Safe Case Study — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 23
    +

    Turn internal AI proof into a safe case study.

    +

    This reusable AI workflow turns a department Proof Room Lite report into a public-safe case study: claim matrix, redaction checklist, approval checklist, LinkedIn post, and proof note.

    + + + +
    +

    The simple idea

    +
    Share proof without leaking private data.
    +

    A department should be able to explain what it learned from AI adoption without exposing customers, employees, screenshots, internal policies, or unsupported results.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: proof stays private or gets overhyped

    +

    The department has useful evidence, but either keeps everything hidden or publishes vague AI hype with risky claims.

    +

    Result: missed trust-building opportunity or public claim risk.

    +
    +
    +

    After: public-safe case study

    +

    The workflow creates a safe version with approved claims, redactions, boundaries, and proof notes.

    +

    Result: shareable credibility without leaking private details.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what happened in the Proof Room Lite and what source evidence exists.

    +
    2. Rules

    Tell the AI not to reveal private details, invent testimonials, imply ROI, or claim compliance/safety.

    +
    3. Memory

    Save the public-safe structure: case study, claim matrix, redaction checklist, approval checklist, proof note.

    +
    4. Workflow

    The AI creates the case study, allowed/not-allowed claims, redaction checklist, approval checklist, social post, and proof note.

    +
    5. Checks

    The AI checks whether every public claim is supported and whether private details are removed.

    +
    6. Proof

    The AI records what was published, what was withheld, what was claimed, and what was avoided.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department Public-Safe Case Study notes:

    +
    Rough Department Public-Safe Case Study notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Room: Customer Success AI Workflow Room
    +Source evidence: monthly Proof Room Lite report
    +
    +What happened internally:
    +- department created a Proof Room Lite for repeated AI-assisted workflows
    +- workflows included support FAQ replies, meeting notes to action plan, and product feedback summary
    +- owners were assigned
    +- rules and checks were added
    +- weekly proof reviews were run
    +- one unclear support draft was caught before external sending and rolled back
    +- monthly leadership report was created
    +
    +Goal:
    +Create a public-safe case study that can be shared on a website or LinkedIn without leaking private customer, employee, policy, metric, or operational details.
    +
    +Need output:
    +- public-safe case study
    +- public claim matrix
    +- redaction checklist
    +- what can be said / what cannot be said
    +- approval checklist
    +- LinkedIn post
    +- proof note
    +
    +Rules:
    +- no private customer details
    +- no employee names
    +- no screenshots
    +- no exact internal metrics unless approved
    +- no fake testimonial
    +- no invented quote
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no compliance certification
    +- no claim that the department is AI-safe or autonomous
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Public-Safe Case Study:
    +Title:
    +How one department turned repeated AI work into a Proof Room Lite
    +
    +Summary:
    +A department used GoalOS Proof Room Lite to organize three repeated AI-assisted workflows.
    +
    +The goal was not to automate everything.
    +
    +The goal was to make repeated AI work more structured, reviewable, and easier to improve.
    +
    +Before:
    +- people used AI differently
    +- repeated tasks were not documented
    +- review rules were unclear
    +- AI outputs did not consistently leave proof notes
    +
    +What changed:
    +The department created a lightweight Proof Room with:
    +- workflow owners
    +- task boundaries
    +- human-review rules
    +- checks
    +- weekly proof reviews
    +- correction / rollback process
    +- monthly proof report
    +
    +Workflows covered:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Important lesson:
    +The most useful change was not “more AI.”
    +
    +The useful change was a reviewable operating rhythm:
    +run the workflow
    +check the output
    +record the proof note
    +revise what fails
    +keep what works
    +
    +Claim boundary:
    +This case study does not claim guaranteed productivity, ROI, legal compliance, safety, or autonomous readiness.
    +
    +Public Claim Matrix:
    +Allowed public claims:
    +- A department used Proof Room Lite to organize repeated AI-assisted workflows.
    +- The department assigned owners to workflows.
    +- The department added human-review checks.
    +- The department used proof notes and weekly reviews.
    +- An unclear AI draft was caught before external sending and corrected.
    +- A monthly proof report was created.
    +
    +Not allowed public claims:
    +- The department achieved guaranteed productivity gains.
    +- The department achieved ROI.
    +- The department is compliant.
    +- The workflows are safe.
    +- AI can send outputs without human review.
    +- Customers benefited in a measured way unless evidence and permission exist.
    +- Any specific customer, employee, company, or metric unless approved.
    +
    +Redaction Checklist:
    +Remove before publishing:
    +- customer names
    +- employee names
    +- email addresses
    +- account details
    +- exact support messages
    +- screenshots
    +- internal policy text
    +- sensitive operational details
    +- unapproved metrics
    +- security or privacy details
    +- exact quotes without permission
    +
    +Approval Checklist:
    +Before publishing, confirm:
    +- public case study was reviewed by the room owner
    +- private data was removed
    +- claims match evidence
    +- no ROI or productivity guarantee is implied
    +- no testimonial is invented
    +- no exact quote is used without permission
    +- public-safe version is approved
    +
    +LinkedIn Post:
    +Most AI adoption stories sound like hype.
    +
    +Here is the more useful version:
    +
    +A department does not need to “automate everything.”
    +
    +It needs to know:
    +what workflows exist
    +who owns them
    +what data is allowed
    +what must be checked
    +what failed
    +what was corrected
    +what proof was recorded
    +
    +That is the idea behind Proof Room Lite.
    +
    +Not AI chaos.
    +Not blind trust.
    +
    +A lightweight room for repeated AI work.
    +

    Proof note:

    +
    Proof note:
    +Source: monthly Proof Room Lite report and summarized department workflow evidence.
    +Outputs created: public-safe case study, public claim matrix, redaction checklist, approval checklist, LinkedIn post.
    +Claims made: Proof Room Lite can help describe department AI workflow organization in a public-safe way.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance certification, no safety guarantee, no private details, no fake testimonial.
    +Review needed: department should confirm redaction, approval, public claim boundary, and permission before publishing.
    +Public-safe: yes, if the redaction checklist is completed and approval is recorded.
    +
    + +
    +

    What the buyer gets

    +
    + Public-safe case study + Claim matrix + Redaction checklist + Approval checklist + LinkedIn post + Claim boundary + Proof note +
    +
    +

    Built for trust

    Turn internal proof into a clear public story without overclaiming.

    +

    Privacy-aware

    Use redaction and approval steps before anything public is shared.

    +

    Demand-generating

    Public-safe case studies create credibility without fake testimonials or private screenshots.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste monthly proof notes. Get a public-safe case study and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, advertising, endorsement, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Do not publish private data, exact quotes, testimonials, screenshots, or identifiable details without appropriate review and permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-weekly-proof-review/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-weekly-proof-review/index.html new file mode 100644 index 00000000..a18fbc3e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/department-weekly-proof-review/index.html @@ -0,0 +1,297 @@ + + + + + + Department Weekly Proof Review — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 19
    +

    Turn proof notes into decisions.

    +

    This reusable AI workflow turns a department Proof Room Lite dashboard into a weekly review: what to keep, what to revise, what to stop, what to report, and what to prove.

    + + + +
    +

    The simple idea

    +
    A department does not need more AI experiments. It needs a weekly proof review.
    +

    Proof Room Lite becomes valuable when the department regularly reviews evidence and decides what to keep, revise, stop, or monitor.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: AI experiments drift

    +

    People try AI workflows, but no one reviews what happened. Problems repeat, useful patterns are missed, and nobody decides what should change.

    +

    Result: experiments without governance.

    +
    +
    +

    After: weekly proof review

    +

    The department reviews workflow evidence, issues, owners, and proof notes once per week, then decides what to keep, revise, or stop.

    +

    Result: lightweight governance without heavy consulting.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI which workflows ran this week, who owns them, what issues appeared, and what needs review.

    +
    2. Rules

    Tell the AI not to claim productivity, ROI, compliance, or autonomous readiness.

    +
    3. Memory

    Save the decision language: keep, revise, stop, monitor, escalate.

    +
    4. Workflow

    The AI creates a weekly summary, decisions, next actions, dashboard update, manager update, and proof note.

    +
    5. Checks

    The AI checks whether decisions are tied to evidence, owners are named, and uncertain items are marked.

    +
    6. Proof

    The AI records what was decided, what was claimed, what was avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough weekly Proof Room Lite review notes:

    +
    Rough weekly Proof Room Lite review notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead or operations manager
    +Room: Customer Success AI Workflow Room
    +Workflows this week:
    +1. Support FAQ replies
    +   Owner: Support Lead
    +   Runs: 18
    +   Issues: 3 replies needed tone edits; 1 policy answer was unclear
    +   Status: active but needs revised rules
    +
    +2. Meeting notes to action plan
    +   Owner: Operations Lead
    +   Runs: 9
    +   Issues: 2 missing owners; 1 unclear deadline
    +   Status: active but needs stronger checks
    +
    +3. Product feedback summary
    +   Owner: Product Feedback Lead
    +   Runs: 5
    +   Issues: none serious; useful themes found
    +   Status: keep
    +
    +Goal:
    +Create a weekly proof review summary, keep/revise/stop decisions, next actions, manager update, proof dashboard update, and proof note.
    +
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no compliance certification
    +- do not publish private customer details
    +- do not claim AI output is safe without human review
    +- mark uncertain items clearly
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Weekly Proof Room Review:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Review period:
    +This week
    +
    +Overall summary:
    +The department ran three AI-assisted workflows this week. All three produced usable internal outputs, but two need improved checks before wider use.
    +
    +Workflow Decisions:
    +
    +1. Support FAQ replies
    +Decision:
    +Revise
    +
    +Reason:
    +The workflow was used 18 times, but tone and policy clarity issues appeared.
    +
    +Action:
    +Update the rules template:
    +- use calmer tone
    +- avoid unsupported policy answers
    +- mark uncertain policy items for human review
    +
    +Owner:
    +Support Lead
    +
    +2. Meeting notes to action plan
    +Decision:
    +Revise
    +
    +Reason:
    +The workflow helped structure notes, but some outputs missed owners and deadlines.
    +
    +Action:
    +Add mandatory checks:
    +- every action item needs owner
    +- every deadline must be confirmed
    +- unclear dates must be marked as “needs confirmation”
    +
    +Owner:
    +Operations Lead
    +
    +3. Product feedback summary
    +Decision:
    +Keep
    +
    +Reason:
    +The workflow produced useful themes and had no serious issues this week.
    +
    +Action:
    +Continue for one more week and compare recurring themes.
    +
    +Owner:
    +Product Feedback Lead
    +
    +Proof Dashboard Update:
    +- Support FAQ replies: active / needs revised rules
    +- Meeting notes to action plan: active / needs stronger checks
    +- Product feedback summary: active / keep
    +
    +Manager Update:
    +Subject: Weekly Proof Room Lite review
    +
    +This week we reviewed three department AI workflows.
    +
    +Decisions:
    +- Support FAQ replies: revise rules
    +- Meeting notes to action plan: strengthen checks
    +- Product feedback summary: keep
    +
    +Main lesson:
    +The workflows are useful, but proof notes are showing where rules and checks need to improve.
    +
    +Next week:
    +We will update the support and meeting workflows, then review whether issue count goes down.
    +
    +Claim boundary:
    +This review does not claim productivity gains, ROI, compliance, or autonomous readiness. It only summarizes this week’s workflow evidence and next actions.
    +

    Proof note:

    +
    Proof note:
    +Source: weekly Proof Room Lite dashboard notes.
    +Outputs created: weekly review summary, keep/revise/stop decisions, next actions, manager update, dashboard update, claim boundary.
    +Claims made: the weekly review helps a department decide what to keep, revise, or continue monitoring.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance certification, no autonomous-readiness claim, no private customer details.
    +Review needed: department should confirm issue counts, owners, private data boundaries, and internal policy before sharing.
    +Public-safe: yes, if customer/private details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Weekly review summary + Keep / revise / stop decisions + Next actions + Owner list + Dashboard update + Manager update email + Claim boundary + Proof note +
    +
    +

    Built for departments

    Move from random AI use to a weekly evidence review habit.

    +

    Lightweight governance

    Use decisions, owners, checks, and proof notes instead of heavy enterprise software.

    +

    Continuous improvement

    Each week, the room learns what to keep, revise, stop, or monitor.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste weekly proof notes. Get decisions, next actions, and a manager update.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies, data boundaries, workflow owners, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/feedback-to-product-update/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/feedback-to-product-update/index.html new file mode 100644 index 00000000..dd3668ba --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/feedback-to-product-update/index.html @@ -0,0 +1,268 @@ + + + + + + Feedback to Product Update — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 8
    +

    Turn feedback into product updates.

    +

    This reusable AI workflow turns repeated buyer questions and support patterns into product improvements, changelogs, buyer update emails, social posts, and proof notes — without inventing testimonials or exposing private messages.

    + + + +
    +

    The simple idea

    +
    Every repeated question is product intelligence.
    +

    If buyers keep asking the same thing, that is not just support. It is a signal for the next checklist, explainer, example, FAQ, or product update.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: feedback gets lost

    +

    Support questions pile up. Useful patterns stay in your inbox. Product updates happen randomly.

    +

    Result: more confusion, more repeated support, slower improvement.

    +
    +
    +

    After: feedback becomes updates

    +

    The workflow summarizes patterns, proposes product updates, drafts a changelog, writes a buyer email, and creates a proof note.

    +

    Result: the product improves without turning into custom service.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, recent support questions, buyer confusion, and update goal.

    +
    2. Rules

    Tell the AI not to invent testimonials, results, buyer names, or private quotes.

    +
    3. Memory

    Save your product promise, support boundaries, and standard changelog format.

    +
    4. Workflow

    The AI extracts themes, proposes updates, writes a changelog, drafts a buyer email, creates a social post, and records proof.

    +
    5. Checks

    The AI checks that updates are real, feedback is anonymized, and no buyer claim is invented.

    +
    6. Proof

    The AI records what was updated, what was claimed, what was avoided, and what needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough feedback notes:

    +
    Rough feedback notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Recent buyer/support feedback:
    +- People ask which task to choose first.
    +- Some buyers are confused by “proof note.”
    +- Some people want examples for consultants.
    +- Some people ask whether this is just prompts.
    +- Some people want a simpler one-page checklist.
    +Goal: turn feedback into product improvements and a public update.
    +Important: do not invent testimonials, do not claim buyers achieved results unless verified, do not reveal private buyer messages.
    +Needed output: feedback themes, product update plan, new template idea, changelog, buyer update email, social post, proof note.
    +

    Reusable workflow output:

    +
    Feedback Themes:
    +1. Buyers need help choosing their first task.
    +2. “Proof note” needs a simpler explanation.
    +3. Consultants want a dedicated example.
    +4. Some buyers still confuse the kit with a prompt pack.
    +5. A one-page checklist would reduce friction.
    +
    +Product Update Plan:
    +Update 1:
    +Add a “Pick Your First Workflow” one-page checklist.
    +
    +Update 2:
    +Add a plain-language “What is a proof note?” page.
    +
    +Update 3:
    +Add a consultant example:
    +Client call notes → proposal outline → follow-up email → proof note.
    +
    +Update 4:
    +Add a comparison table:
    +Prompt pack vs. reusable workflow.
    +
    +Changelog:
    +GoalOS AI Efficiency Sprint Kit — Update
    +
    +New:
    +- Pick Your First Workflow checklist
    +- What Is A Proof Note? explainer
    +- Consultant workflow example
    +- Prompt pack vs. reusable workflow comparison
    +
    +Improved:
    +- Clearer onboarding language
    +- Simpler first-task selection
    +- Better explanation of proof notes
    +
    +Buyer Update Email:
    +Subject: New GoalOS kit update: easier first workflow
    +
    +Hi,
    +
    +We improved the GoalOS AI Efficiency Sprint Kit based on repeated buyer questions.
    +
    +The new update makes it easier to start.
    +
    +Added:
    +- Pick Your First Workflow checklist
    +- What Is A Proof Note? explainer
    +- Consultant workflow example
    +- Prompt pack vs. reusable workflow comparison
    +
    +The goal is simple:
    +help you build your first reusable AI workflow with less confusion.
    +
    +Social Post:
    +Every repeated buyer question is product intelligence.
    +
    +If people keep asking:
    +“What should I do first?”
    +“Is this just prompts?”
    +“What is a proof note?”
    +
    +That is not a support problem only.
    +
    +It is a product improvement signal.
    +
    +The GoalOS method:
    +feedback
    +→ pattern
    +→ product update
    +→ changelog
    +→ buyer email
    +→ proof note
    +
    +That is how digital products get better without becoming high-support services.
    +

    Proof note:

    +
    Proof note:
    +Source: summarized buyer/support feedback.
    +Outputs created: feedback themes, product update plan, changelog, buyer update email, social post.
    +Claims made: the product was updated based on repeated question themes.
    +Claims avoided: no fake testimonial, no invented buyer result, no private buyer message, no income guarantee, no ROI guarantee.
    +Privacy boundary: do not publish names, emails, screenshots, private support messages, or exact buyer quotes unless explicitly permitted.
    +Review needed: human should confirm the updates actually exist before sending the changelog.
    +Public-safe: yes, if feedback is summarized and anonymized.
    +
    + +
    +

    What the buyer gets

    +
    + Feedback themes + Product update plan + New template idea + Changelog + Buyer update email + Social post + Proof note +
    +
    +

    Compounding product

    Repeated questions become reusable assets instead of one-off replies.

    +

    Lower support over time

    Every pattern can become a better checklist, FAQ, example, or onboarding step.

    +

    Public-safe updates

    The workflow summarizes feedback without leaking buyer names, emails, or private messages.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste buyer feedback. Get product updates, changelog, buyer email, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Do not publish private buyer messages, names, emails, or testimonials without appropriate permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/idea-to-demand-engine/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/idea-to-demand-engine/index.html new file mode 100644 index 00000000..e91d7d52 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/idea-to-demand-engine/index.html @@ -0,0 +1,258 @@ + + + + + + Idea to Demand Engine — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 3
    +

    Turn one idea into demand.

    +

    This reusable AI workflow turns a rough product idea into a clean hook, LinkedIn post, X post, email, sales-page section, and proof note — without fake claims, fake testimonials, or risky guarantees.

    + + + +
    +

    The simple idea

    +
    Stop starting from a blank page every time you need demand.
    +

    A reusable demand workflow helps you turn one product message into useful content you can review, publish, reuse, and improve.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: random content

    +

    You have a product idea. You ask AI for a post. It sounds generic. You edit. Then tomorrow, you start over again.

    +

    Result: inconsistent message, weak offer, risky hype, no repeatable system.

    +
    +
    +

    After: reusable demand engine

    +

    You paste one rough idea into the same workflow. It produces a hook, post, email, page section, and proof note every time.

    +

    Result: one idea becomes a reusable content system.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the product is, who it is for, price, promise, and what buyers actually get.

    +
    2. Rules

    Tell the AI what to avoid: fake urgency, fake testimonials, guaranteed income, guaranteed ROI, or exaggerated claims.

    +
    3. Memory

    Save your core message: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates a hook, long post, short post, email, sales-page section, and proof note.

    +
    5. Checks

    The AI checks whether the content is clear, specific, useful, honest, and safe to publish.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough product idea:

    +
    Rough idea:
    +People keep using AI like a chat box.
    +We want to sell a $49 kit that helps them build one reusable AI workflow.
    +Need a LinkedIn post, an X post, an email, and a sales-page section.
    +Avoid hype, income guarantees, fake urgency, and fake testimonials.
    +Make it practical.
    +

    Reusable workflow output:

    +
    Core Hook:
    +Stop asking AI from scratch.
    +
    +LinkedIn Post:
    +Most people do not have an AI problem.
    +They have a workflow problem.
    +
    +They open ChatGPT.
    +They ask for help.
    +They edit.
    +They close the tab.
    +Then next week, they ask the same kind of question again.
    +
    +That is not leverage.
    +
    +The better move:
    +turn one repeated task into a reusable AI workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +One task becomes a system you can run again.
    +
    +That is what GoalOS AI Efficiency Sprint is built to help you do.
    +
    +X Post:
    +Most people use AI like a chat box.
    +
    +The upgrade:
    +build one reusable workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +Stop asking AI from scratch.
    +
    +Email:
    +Subject: Stop asking AI from scratch
    +
    +Most people use AI one chat at a time.
    +
    +The problem is not access.
    +The problem is repetition.
    +
    +If you answer the same customer questions, summarize the same meetings, write the same updates, or create the same kind of content every week, you do not need more random prompts.
    +
    +You need one reusable workflow.
    +
    +The GoalOS AI Efficiency Sprint Kit helps you build one in under one hour.
    +
    +Sales Page Section:
    +Build one reusable AI workflow.
    +
    +Pick one task you repeat.
    +Add context.
    +Add rules.
    +Add memory.
    +Add workflow steps.
    +Add checks.
    +Leave proof.
    +
    +You are not buying “a bunch of files.”
    +You are building your first reusable AI work system.
    +

    Proof note:

    +
    Proof note:
    +Source: rough internal product idea.
    +Outputs created: hook, LinkedIn post, X post, email, sales-page section.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake testimonial, no legal/compliance claim, no guarantee of results.
    +Review needed: human should confirm final wording, links, pricing, and platform rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Hook + LinkedIn post + X post + Email + Sales-page section + Proof note + Claim boundary +
    +
    +

    Useful for selling digital kits

    Turn one product message into multiple assets for your sales funnel.

    +

    Lower-risk copy

    The workflow avoids fake guarantees, fake reviews, and unsupported claims.

    +

    Reusable engine

    Run it again for every product, feature, example, launch, or update.

    +
    +
    + +
    +

    Digital product sales rule

    +

    For a low-friction digital product business, use clear terms before checkout: instant digital access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste one rough product idea. Get demand content and a proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/index.html new file mode 100644 index 00000000..6807bc11 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Examples + + + + + + + + + +
    + +
    + + +
    +
    Examples

    Practical GoalOS examples.

    Examples that teach reusable workflows, RSI Lite, Proof Room Lite, and Department RSI.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/internal-approval-memo/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/internal-approval-memo/index.html new file mode 100644 index 00000000..6a72f59a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/internal-approval-memo/index.html @@ -0,0 +1,291 @@ + + + + + + Internal Approval Memo — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · B2B Loop · Example 16
    +

    Turn interest into approval.

    +

    This reusable AI workflow turns one interested employee, consultant, teacher, or team lead into an internal champion with a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + + + +
    +

    The simple idea

    +
    A team buyer often needs approval before buying.
    +

    Instead of making an interested person explain everything from scratch, give them a reusable workflow that creates the approval memo for them.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: internal friction

    +

    Someone wants the Team Pack but must explain it to a manager, budget owner, or procurement person. They hesitate or never ask.

    +

    Result: interest disappears before purchase.

    +
    +
    +

    After: approval workflow

    +

    The workflow creates a clear internal memo, procurement email, rollout plan, manager FAQ, and proof note.

    +

    Result: easier team purchase without manual sales calls.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, buyer role, approval audience, team use case, and contents.

    +
    2. Rules

    Tell the AI not to promise ROI, productivity, compliance, or automatic approval.

    +
    3. Memory

    Save the standard explanation: ChatGPT is the tool; GoalOS helps the team build reusable workflows around repeated work.

    +
    4. Workflow

    The AI creates the manager memo, procurement email, rollout plan, manager FAQ, and proof note.

    +
    5. Checks

    The AI checks whether the memo is clear, calm, specific, and not overpromising.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs internal review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough internal approval notes:

    +
    Rough internal approval notes:
    +Product: GoalOS AI Efficiency Sprint Team Pack
    +Price: $199
    +Buyer: employee, consultant, team lead, teacher, or manager who wants approval to buy the Team Pack
    +Audience: manager, budget owner, procurement person, or team lead
    +Goal: make it easy to request approval without hype
    +Use case: run a 60-minute team session to turn one repeated AI task into a reusable workflow
    +Team Pack includes:
    +- individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +Rules:
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no legal/compliance claims
    +- no fake urgency
    +- no fake testimonials
    +- no claim that approval is automatic
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Internal Approval Memo:
    +Subject: Request to purchase GoalOS AI Efficiency Sprint Team Pack
    +
    +I would like approval to purchase the GoalOS AI Efficiency Sprint Team Pack.
    +
    +Purpose:
    +Use the kit to run a 60-minute internal session where we turn one repeated AI task into a reusable workflow.
    +
    +Why this may help:
    +Our team often repeats the same AI-assisted tasks from scratch. The Team Pack gives us a simple structure for turning one repeated task into a reusable workflow with:
    +
    +- context
    +- rules
    +- memory
    +- workflow steps
    +- checks
    +- proof note
    +
    +Proposed first use case:
    +Turn our recurring meeting notes or customer replies into a reusable workflow.
    +
    +What is included:
    +- individual sprint kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +
    +Cost:
    +$199 one-time digital product.
    +
    +Important boundaries:
    +This is a self-serve digital product.
    +It does not guarantee productivity, ROI, income, legal compliance, or perfect accuracy.
    +Outputs still require human review.
    +
    +Suggested next step:
    +Approve purchase and run one 60-minute pilot session with one repeated task.
    +
    +Procurement / Purchase Email:
    +Hi,
    +
    +We would like to purchase the GoalOS AI Efficiency Sprint Team Pack.
    +
    +Product:
    +GoalOS AI Efficiency Sprint Team Pack
    +
    +Price:
    +$199
    +
    +Purpose:
    +Internal team AI workflow training / reusable workflow development.
    +
    +Please confirm the preferred purchase method.
    +
    +Thanks.
    +
    +Mini Rollout Plan:
    +1. Choose one repeated team task.
    +2. Invite 3–6 people involved in that task.
    +3. Run the 60-minute sprint.
    +4. Build one reusable workflow.
    +5. Add checks.
    +6. Create a proof note.
    +7. Decide whether to repeat with another task.
    +
    +Manager FAQ:
    +Q: Is this software?
    +A: It is a digital workflow kit, not enterprise software.
    +
    +Q: Does it guarantee productivity?
    +A: No. It provides a structured method and templates. Results depend on use and review.
    +
    +Q: Does it replace policy or compliance review?
    +A: No. It is not legal, financial, medical, employment, security, or compliance advice.
    +
    +Q: Why not just use ChatGPT?
    +A: ChatGPT is the tool. The kit helps the team build a reusable workflow around repeated work instead of starting from scratch every time.
    +
    +Q: Is this a subscription?
    +A: No. The Team Pack is a one-time digital kit.
    +

    Proof note:

    +
    Proof note:
    +Source: rough internal approval notes.
    +Outputs created: internal approval memo, procurement email, rollout plan, manager FAQ.
    +Claims made: the Team Pack provides materials to run a team sprint and build one reusable workflow.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance claim, no legal advice, no automatic approval claim.
    +Review needed: human should confirm internal purchasing rules, exact product contents, budget authority, and digital product terms before sending.
    +Public-safe: yes, if internal company details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Manager memo + Procurement email + Rollout plan + Manager FAQ + Claim boundary + Proof note +
    +
    +

    Built for B2B demand

    Help internal champions explain the Team Pack to decision-makers.

    +

    No inflated claims

    The workflow avoids ROI, productivity, and compliance promises.

    +

    Low-touch selling

    Buyers can self-serve the approval request instead of booking a call.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste approval notes. Get a manager memo and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal purchase rules and product terms before sending. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/lead-magnet-email-sequence/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/lead-magnet-email-sequence/index.html new file mode 100644 index 00000000..81a4aa4e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/lead-magnet-email-sequence/index.html @@ -0,0 +1,292 @@ + + + + + + Lead Magnet to Email Sequence — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 5
    +

    Turn a free worksheet into a sales sequence.

    +

    This reusable AI workflow turns one free lead magnet into a simple opt-in email sequence that teaches the buyer, explains the offer, sets expectations, and creates a proof note.

    + + + +
    +

    The simple idea

    +
    A free download is not the funnel. The follow-up is the funnel.
    +

    If someone asks for a free worksheet, use a reusable workflow to create a clear, honest email sequence that helps them understand the problem and decide whether the paid kit is right for them.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: freebie with no follow-up

    +

    People download the worksheet, but they do not understand the product, the use case, or why the kit exists.

    +

    Result: missed demand, weak trust, random follow-up.

    +
    +
    +

    After: reusable email workflow

    +

    You paste the lead magnet notes into the workflow. It creates a clean opt-in sequence with education, examples, offer, terms, and proof.

    +

    Result: automated demand without fake claims or spam.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the free worksheet, paid product, price, audience, and desired next step.

    +
    2. Rules

    Tell the AI to use opt-in language, avoid spammy pressure, avoid fake urgency, and avoid income claims.

    +
    3. Memory

    Save the core message: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates delivery email, education email, example email, objection email, offer email, and terms email.

    +
    5. Checks

    The AI checks for clear consent language, unsubscribe reminder, honest claims, and buyer-fit clarity.

    +
    6. Proof

    The AI records what the sequence claims, what it avoids, and what must be reviewed before sending.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough funnel notes:

    +
    Rough funnel notes:
    +Free lead magnet: AI Efficiency Audit Worksheet
    +Paid product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Promise: build one reusable AI workflow in under one hour
    +Audience: founders, consultants, creators, operators, small teams
    +Goal: people download the free worksheet, understand the problem, then buy the kit
    +Rules: send only to people who opted in, include unsubscribe, avoid income claims, avoid fake urgency, avoid fake testimonials, clearly say digital product sales are final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Email 1 — Deliver the free worksheet
    +Subject: Your AI Efficiency Audit
    +
    +Thanks for requesting the AI Efficiency Audit.
    +
    +Use it to find one repeated AI task worth turning into a reusable workflow.
    +
    +Look for a task you do every week:
    +- answering customer questions
    +- summarizing meetings
    +- writing updates
    +- creating sales copy
    +- preparing reports
    +
    +The goal is simple:
    +stop asking AI from scratch.
    +
    +Email 2 — Explain the problem
    +Subject: The real AI bottleneck
    +
    +Most people do not have an AI access problem.
    +
    +They have a workflow problem.
    +
    +They open AI.
    +Ask for help.
    +Edit the answer.
    +Close the tab.
    +Then repeat the same kind of task again next week.
    +
    +That is not leverage.
    +
    +A reusable workflow gives the AI:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof
    +
    +Email 3 — Show the example
    +Subject: One example
    +
    +Take customer questions.
    +
    +Instead of asking AI from scratch every time, you build one workflow that knows:
    +your product
    +your tone
    +your rules
    +your claims
    +your limits
    +your proof note format
    +
    +Now every answer is clearer and easier to review.
    +
    +Email 4 — Answer the objection
    +Subject: Is this just templates?
    +
    +Fair question.
    +
    +A template is useful once.
    +A workflow is something you can run again.
    +
    +The GoalOS kit helps you build the workflow:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof
    +
    +That is the difference.
    +
    +Email 5 — Present the offer
    +Subject: Build your first reusable AI workflow
    +
    +The GoalOS AI Efficiency Sprint Kit is a $49 digital kit.
    +
    +It helps you pick one repeated AI task and turn it into a reusable workflow in under one hour.
    +
    +You get:
    +- Start Here guide
    +- 60-minute checklist
    +- context template
    +- rules template
    +- memory template
    +- workflow template
    +- checks template
    +- proof page template
    +- copy-paste prompts
    +- examples
    +
    +Email 6 — Final clarity before checkout
    +Subject: Before you buy
    +
    +This is for you if you want to stop repeating the same AI task manually.
    +
    +It is not for you if you expect guaranteed income, guaranteed ROI, legal advice, financial advice, medical advice, or a fully autonomous agent acting without your review.
    +
    +This is a digital educational workflow product.
    +Access is delivered instantly.
    +All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +

    Proof note:

    +
    Proof note:
    +Source: rough funnel notes.
    +Output created: six-email opt-in sequence.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake testimonial, no legal/compliance promise.
    +Compliance reminders: send only to people who opted in; include unsubscribe; confirm final wording and checkout terms before publishing.
    +Review needed: human should verify email platform settings, consent source, unsubscribe link, product links, and final terms.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Lead magnet delivery + Education email + Example email + Objection email + Offer email + Terms email + Proof note +
    +
    +

    Built for automated selling

    The workflow turns one free worksheet into structured follow-up.

    +

    Lower support burden

    The sequence explains who the product is for, who it is not for, and what is not promised.

    +

    Safer demand

    The proof note keeps track of claims avoided: no fake urgency, fake reviews, income guarantee, or ROI promise.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste lead magnet notes. Get a clean opt-in sales sequence and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Send commercial emails only where you have proper permission and include required unsubscribe / identification information. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/meeting-to-action-plan/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/meeting-to-action-plan/index.html new file mode 100644 index 00000000..79739cf6 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/meeting-to-action-plan/index.html @@ -0,0 +1,225 @@ + + + + + + Meeting Notes to Action Plan — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 2
    +

    Turn meeting notes into action.

    +

    Most meetings create notes. Good workflows create action. This reusable AI workflow turns messy meeting notes into decisions, owners, deadlines, a follow-up email, and a proof note.

    + + + +
    +

    The simple idea

    +
    Stop letting meetings disappear into notes.
    +

    Build a reusable workflow that turns every meeting into a clear action plan people can actually use.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: notes that sit somewhere

    +

    You leave the call with a messy transcript, scattered ideas, unclear owners, and no proof of what was decided.

    +

    Result: forgotten tasks, repeated conversations, unclear accountability.

    +
    +
    +

    After: a reusable meeting workflow

    +

    You paste the notes into the same workflow every time. It produces a summary, decisions, owners, deadlines, follow-up email, and proof note.

    +

    Result: talk becomes action.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what kind of meeting it is, who the audience is, and what format you want.

    +
    2. Rules

    Tell the AI not to invent owners, deadlines, or decisions. If something is unclear, it must mark it as “needs confirmation.”

    +
    3. Memory

    Save your usual team roles, project names, tone, and follow-up style.

    +
    4. Workflow

    The AI follows the same sequence: summarize → extract decisions → assign actions → draft follow-up → create proof note.

    +
    5. Checks

    The AI checks for missing owners, risky claims, unclear deadlines, and invented facts.

    +
    6. Proof

    The AI records what was produced, what needs review, and what was not claimed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Messy meeting notes:

    +
    Marketing call notes:
    +- We talked about launching the $49 kit.
    +- Need better page example.
    +- Someone should make the product page simpler.
    +- Need proof / claim boundary.
    +- Maybe post on LinkedIn.
    +- Not sure who owns what.
    +- Need by Friday if possible.
    +

    Reusable workflow output:

    +
    Meeting Summary:
    +We decided to improve the $49 GoalOS AI Efficiency Sprint page by adding a simple example that makes the product easier to understand.
    +
    +Decisions:
    +1. Use “build one reusable AI workflow” as the main promise.
    +2. Use a practical example instead of abstract protocol language.
    +3. Add a claim boundary to avoid risky guarantees.
    +
    +Action Plan:
    +1. Create a clearer product-page section.
    +   Owner: Marketing
    +   Due: Friday
    +
    +2. Draft one LinkedIn post explaining the example.
    +   Owner: Founder
    +   Due: Thursday
    +
    +3. Add a proof note to the page.
    +   Owner: Product
    +   Due: Friday
    +
    +Follow-up Email:
    +Subject: Action items from today’s GoalOS launch call
    +
    +Hi team,
    +
    +Here is the simple action plan from today’s call:
    +
    +- Marketing will simplify the $49 kit page by Friday.
    +- Founder will draft one LinkedIn post by Thursday.
    +- Product will add a proof note and claim boundary by Friday.
    +
    +The main message is:
    +“Stop asking AI from scratch. Build one reusable AI workflow in under one hour.”
    +
    +Thanks.
    +

    Proof note:

    +
    Proof note:
    +Source: messy internal meeting notes.
    +Output created: summary, decisions, action plan, follow-up email.
    +Claims made: the workflow helps organize meeting notes into reusable action outputs.
    +Claims avoided: no productivity guarantee, no revenue guarantee, no legal/compliance promise.
    +Review needed: human should confirm owners and deadlines before sending.
    +Public-safe: yes, if private names/client details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Meeting summary + Decisions + Action items + Owners + Deadlines + Follow-up email + Proof note +
    +
    +

    Useful immediately

    Almost every team has messy notes. This turns them into structured work.

    +

    Low-risk

    The workflow marks uncertainty instead of inventing facts, owners, or deadlines.

    +

    Easy to repeat

    Run it after every call, client meeting, planning session, or team check-in.

    +
    +
    + +
    +

    The one-sentence promise

    +
    Paste messy meeting notes. Get an action plan, follow-up email, and proof note.
    + +
    + +
    +

    Digital product terms

    +

    GoalOS kits are digital educational workflow products. To keep the product simple, automated, and low-friction, sales should be clearly presented as final once access is delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/monthly-workflow-vault-drop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/monthly-workflow-vault-drop/index.html new file mode 100644 index 00000000..4f372279 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/monthly-workflow-vault-drop/index.html @@ -0,0 +1,279 @@ + + + + + + Monthly Workflow Vault Drop — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Workflow Vault · Example 10
    +

    Turn demand into monthly workflow drops.

    +

    This reusable AI workflow turns buyer requests into a monthly Workflow Vault drop: new templates, announcement email, upgrade section, changelog, social post, and proof note.

    + + + +
    +

    The simple idea

    +
    The kit teaches the method. The Vault compounds the examples.
    +

    A recurring library lets buyers keep getting useful workflow examples without turning you into a custom consultant.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: one-time sale only

    +

    A buyer gets the $49 kit. If they want more examples, they email you, ask for support, or disappear.

    +

    Result: one-time revenue or manual service pressure.

    +
    +
    +

    After: recurring Vault drop

    +

    Repeated buyer requests become monthly template drops with clear boundaries: examples, not custom implementation.

    +

    Result: recurring value without unlimited support.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the subscription idea, audience, pricing, buyer requests, and monthly theme.

    +
    2. Rules

    Tell the AI not to promise custom work, guaranteed income, guaranteed ROI, or fake scarcity.

    +
    3. Memory

    Save your standard Vault format: theme, new workflows, proof templates, email, changelog, proof note.

    +
    4. Workflow

    The AI creates the monthly drop, announcement email, upgrade section, social post, changelog, and proof note.

    +
    5. Checks

    The AI checks whether the drop is concrete, reusable, correctly scoped, and not overpromising.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what must be reviewed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough subscription notes:

    +
    Rough subscription notes:
    +Product: GoalOS Workflow Vault
    +Price idea: $29/month individual or $99/month team
    +Purpose: recurring template library for people who already understand the $49 kit
    +Buyer requests:
    +- more workflows for consultants
    +- more workflows for creators
    +- more workflows for small teams
    +- more proof-page examples
    +- monthly updates instead of custom support
    +Goal: create one monthly Vault drop with new templates, announcement email, upgrade section, social post, changelog, and proof note.
    +Important:
    +- no income guarantee
    +- no ROI guarantee
    +- no fake scarcity
    +- no fake testimonials
    +- no promise of custom work
    +- subscription can be cancelled before future billing
    +- delivered digital content is final except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Monthly Vault Drop:
    +GoalOS Workflow Vault — Monthly Drop 001
    +
    +Theme:
    +Turn repeated business communication into reusable AI workflows.
    +
    +New workflows included:
    +1. Consultant discovery call → proposal outline → follow-up email → proof note
    +2. Creator content idea → content calendar → post pack → proof note
    +3. Small-team weekly update → summary → blockers → next actions → proof note
    +
    +New proof templates:
    +- Proof page for client-facing work
    +- Proof note for meeting follow-up
    +- Claim boundary for public posts
    +
    +Announcement Email:
    +Subject: New Workflow Vault drop: 3 reusable workflows
    +
    +This month’s GoalOS Workflow Vault drop is focused on repeated business communication.
    +
    +New workflows:
    +- consultant discovery call workflow
    +- creator content calendar workflow
    +- weekly team update workflow
    +
    +Each workflow includes:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof note
    +
    +The goal is not more random prompts.
    +
    +The goal is to build reusable AI work systems.
    +
    +Upgrade Section:
    +Already using the $49 GoalOS AI Efficiency Sprint Kit?
    +
    +The Workflow Vault gives you new reusable workflow examples every month.
    +
    +Use it if you want more examples, more templates, and more proof-page patterns without waiting for custom support.
    +
    +Social Post:
    +The one-time AI kit teaches the method.
    +
    +The Workflow Vault keeps adding examples.
    +
    +That is the ladder:
    +
    +$49 kit
    +→ learn the system
    +→ build one workflow
    +→ join the Vault
    +→ get new workflow drops monthly
    +
    +Not custom consulting.
    +Not prompt spam.
    +
    +Reusable work systems.
    +
    +Changelog:
    +GoalOS Workflow Vault — Drop 001
    +
    +Added:
    +- Consultant discovery call workflow
    +- Creator content calendar workflow
    +- Weekly team update workflow
    +- 3 proof-note examples
    +- 3 claim-boundary examples
    +
    +Not included:
    +- custom implementation
    +- personal workflow review
    +- guaranteed business results
    +

    Proof note:

    +
    Proof note:
    +Source: rough subscription / vault notes.
    +Outputs created: monthly drop outline, announcement email, upgrade section, social post, changelog.
    +Claims made: the Workflow Vault provides recurring workflow examples and templates.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake scarcity, no fake testimonial, no custom-service promise.
    +Subscription boundary: buyers should be told how billing works, how to cancel future billing, and what happens to already-delivered digital content.
    +Review needed: human should confirm price, billing platform, cancellation settings, delivered assets, and final terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Monthly drop outline + New workflow templates + Proof templates + Announcement email + Upgrade section + Social post + Changelog + Proof note +
    +
    +

    Built for recurring revenue

    Turn repeated requests into a monthly template library.

    +

    Low support boundary

    The Vault provides examples and templates, not custom implementation.

    +

    Compounding value

    Every month adds more reusable workflows, proof notes, and claim-boundary examples.

    +
    +
    + +
    +

    Digital product and subscription terms

    +

    Suggested low-friction wording: digital product, instant access, delivered content is final once accessed except where required by law or for duplicate charges / technical access failures. For subscriptions, buyers can cancel future billing according to the terms shown at checkout.

    +
    + +
    +

    The one-sentence promise

    +
    Paste buyer requests. Get a monthly Vault drop and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Buyers should review subscription terms, cancellation rules, and delivered digital content policies before purchase. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/offer-to-sales-page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/offer-to-sales-page/index.html new file mode 100644 index 00000000..b55b2916 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/offer-to-sales-page/index.html @@ -0,0 +1,241 @@ + + + + + + Offer to Sales Page — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 4
    +

    Turn rough offer notes into a sales page.

    +

    This reusable AI workflow turns rough product notes into a clear buyer-ready sales page section with what buyers get, who it is for, who it is not for, FAQ, digital product terms, and proof note.

    + + + +
    +

    The simple idea

    +
    Make the offer clear before checkout.
    +

    For a low-friction digital product business, clarity is the support system. Clear pages reduce confusion, reduce support, and reduce avoidable disputes.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: vague offer

    +

    You have a product idea and a price, but the page does not clearly explain what buyers get, who it is for, or what is not promised.

    +

    Result: confused buyers, support questions, avoidable friction.

    +
    +
    +

    After: buyer-ready page

    +

    You paste rough notes into the workflow. It creates the page sections, FAQ, terms language, and proof note.

    +

    Result: clear offer, clearer expectations, easier automated checkout.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, buyer, promise, contents, and checkout destination.

    +
    2. Rules

    Tell the AI to avoid income guarantees, fake urgency, fake testimonials, and legal/compliance promises.

    +
    3. Memory

    Save your exact product language: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates the hero, benefit list, contents list, FAQ, terms, call to action, and proof note.

    +
    5. Checks

    The AI checks whether the offer is clear, specific, honest, and not overpromising.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what still needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough offer notes:

    +
    Rough offer notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Promise: build one reusable AI workflow in under one hour
    +Buyer: founders, consultants, creators, operators, and small teams
    +Includes: templates, checklist, copy-paste prompts, examples, proof page
    +Important: no income claims, no ROI guarantee, no legal/compliance guarantee
    +Policy: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +Goal: make the offer clear enough that buyers know exactly what they are getting before checkout.
    +

    Reusable workflow output:

    +
    Hero Section:
    +Stop asking AI from scratch.
    +
    +Build one reusable AI workflow in under one hour.
    +
    +GoalOS AI Efficiency Sprint Kit helps you turn one repeated AI task into a reusable work system with context, rules, memory, workflow, checks, and proof.
    +
    +Price:
    +$49 digital kit
    +
    +What you get:
    +- Start Here guide
    +- 60-minute sprint checklist
    +- AI task picker
    +- Context pack template
    +- Rules template
    +- Memory template
    +- Workflow template
    +- Checks / eval template
    +- Proof page template
    +- Copy-paste prompts
    +- Before / after examples
    +
    +Best for:
    +- founders
    +- consultants
    +- creators
    +- operators
    +- small teams
    +- professionals who use AI repeatedly but keep starting from zero
    +
    +Not for:
    +- people expecting guaranteed income
    +- people expecting legal, financial, medical, tax, or compliance advice
    +- people who want a fully autonomous agent to act without review
    +
    +FAQ:
    +Is this just a prompt pack?
    +No. A prompt is something you ask once. This kit helps you build a reusable workflow you can run again.
    +
    +Will this make me money?
    +No income or ROI is guaranteed. The kit is designed to help structure repeated AI work into a reusable system.
    +
    +Do I need to be technical?
    +No. Pick one repeated task and follow the 60-minute checklist.
    +
    +Digital Product Terms:
    +This is a digital educational workflow product. Because access is delivered instantly, all sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Call to Action:
    +Get the kit and build your first reusable AI workflow.
    +

    Proof note:

    +
    Proof note:
    +Source: rough product offer notes.
    +Output created: sales-page hero, buyer list, contents list, FAQ, terms language, call to action.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no legal/compliance promise, no perfect-accuracy claim.
    +Review needed: human should confirm final terms, checkout settings, product contents, and applicable consumer rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Hero section + Benefits + What’s inside + FAQ + Terms language + Call to action + Proof note +
    +
    +

    Built for digital kits

    Turn rough product notes into a page that can support automated checkout.

    +

    Less friction

    Clear “who it is for / not for” language helps filter bad-fit buyers before purchase.

    +

    Safer claims

    The proof note shows which claims were made and which were avoided.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste rough offer notes. Get a buyer-ready product page and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/order-bump-builder/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/order-bump-builder/index.html new file mode 100644 index 00000000..1e1ff711 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/order-bump-builder/index.html @@ -0,0 +1,256 @@ + + + + + + Order Bump Builder — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Checkout Loop · Example 14
    +

    Turn one sale into a larger cart.

    +

    This reusable AI workflow turns a main product and add-on idea into a clear optional order bump: name, checkout copy, microcopy, confirmation text, FAQ, claims-to-avoid list, and proof note.

    + + + +
    +

    The simple idea

    +
    Add more value at checkout without pressure.
    +

    An order bump should be optional, clearly priced, easy to decline, and directly useful to the person already buying.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: one product only

    +

    Someone buys the $49 kit. If they want more examples, they must figure that out later or contact you.

    +

    Result: lower cart value and more “do you have more examples?” questions.

    +
    +
    +

    After: clear optional add-on

    +

    The checkout offers a $29 Proof Page Template Pack that is optional, useful, and clearly explained.

    +

    Result: higher potential order value without fake urgency or confusion.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the main product, price, add-on, price, and what the add-on includes.

    +
    2. Rules

    Tell the AI to avoid fake urgency, fake scarcity, forced continuity, and claims that the add-on is required.

    +
    3. Memory

    Save your digital product terms and standard “optional add-on” language.

    +
    4. Workflow

    The AI creates order bump name, checkout copy, microcopy, confirmation text, FAQ, and proof note.

    +
    5. Checks

    The AI checks whether the add-on is optional, clearly priced, useful, and easy to decline.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs review before checkout.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough order bump notes:

    +
    Rough order bump notes:
    +Main product: GoalOS AI Efficiency Sprint Kit
    +Main price: $49
    +Possible add-on: Proof Page Template Pack
    +Add-on price: $29
    +Goal: make a simple checkout add-on that is useful, clear, and not pushy
    +Buyer situation: they are already buying the kit and may want more proof-page examples
    +What add-on includes:
    +- 10 proof-page templates
    +- 10 claim-boundary examples
    +- 10 public-safe proof-card examples
    +- 5 before/after examples
    +- copy-paste proof-note prompts
    +Rules:
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no forced continuity
    +- no pre-checked checkbox
    +- make it easy to say no
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Order Bump Name:
    +Proof Page Template Pack
    +
    +Short Checkout Copy:
    +Add the Proof Page Template Pack for $29.
    +
    +Get extra examples that make your first proof page easier to finish:
    +
    +- 10 proof-page templates
    +- 10 claim-boundary examples
    +- 10 public-safe proof-card examples
    +- 5 before/after examples
    +- copy-paste proof-note prompts
    +
    +Best if:
    +You want more examples before building your first proof page.
    +
    +Skip if:
    +You only want the basic kit today.
    +
    +Microcopy Under Checkbox:
    +Optional add-on. You can continue with only the $49 kit.
    +
    +Confirmation Text:
    +You added the Proof Page Template Pack.
    +
    +You will receive:
    +- GoalOS AI Efficiency Sprint Kit
    +- Proof Page Template Pack
    +
    +Both are digital educational products delivered instantly.
    +
    +FAQ:
    +Q: Do I need this add-on?
    +A: No. The main kit includes a proof page template. The add-on simply gives you more examples.
    +
    +Q: Is this a subscription?
    +A: No. This is a one-time digital add-on.
    +
    +Q: Can I buy the main kit without it?
    +A: Yes. The add-on is optional.
    +
    +Q: Can I get a refund if I change my mind?
    +A: Digital products are delivered instantly. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Claims To Avoid:
    +- “This will increase your income.”
    +- “Guaranteed ROI.”
    +- “Only available today” unless actually true and properly explained.
    +- “You need this to use the kit.”
    +- “No refunds ever under any circumstances.”
    +- Pre-checking the add-on box without clear consent.
    +

    Proof note:

    +
    Proof note:
    +Source: rough order bump notes.
    +Outputs created: order bump name, checkout copy, microcopy, confirmation text, FAQ, claims-to-avoid list.
    +Claims made: the add-on gives extra proof-page templates and examples.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no forced continuity, no claim that the add-on is required.
    +Checkout boundary: add-on should be optional, clearly priced, not pre-checked, and easy to decline.
    +Review needed: human should confirm checkout platform settings, add-on files, price, tax settings, and final digital product terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Order bump name + Checkout copy + Microcopy + Confirmation text + FAQ + Claims to avoid + Proof note +
    +
    +

    Built for higher cart value

    Offer a useful add-on to people already buying.

    +

    No dark patterns

    The workflow avoids fake urgency, pre-checked boxes, and unclear continuity.

    +

    Lower support risk

    The FAQ explains what is included, whether it is required, and what the terms are.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste add-on notes. Get clear checkout copy and proof.
    + +
    + + + +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/partner-referral-kit/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/partner-referral-kit/index.html new file mode 100644 index 00000000..bb6089fa --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/partner-referral-kit/index.html @@ -0,0 +1,280 @@ + + + + + + Partner Referral Kit — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Partner Loop · Example 11
    +

    Turn partners into distribution.

    +

    This reusable AI workflow turns partner interest into a safe referral promo kit: one-liner, disclosure line, social post, email blurb, FAQ, claims-to-avoid list, tracking link placeholder, and proof note.

    + + + +
    +

    The simple idea

    +
    Make it easy for the right people to share the product clearly.
    +

    A partner kit lets creators, newsletter writers, consultants, and communities explain the product without making fake claims, hiding incentives, or creating refund confusion.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: messy partner sharing

    +

    A partner wants to share your kit, but they write their own hype, forget disclosure, overpromise results, or ask you to rewrite everything manually.

    +

    Result: trust risk, support burden, inconsistent messaging.

    +
    +
    +

    After: partner promo kit

    +

    You give them clean copy, a clear disclosure line, a claims-to-avoid list, FAQ, and tracking-link placeholder.

    +

    Result: scalable distribution with clearer boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, partner type, offer, tracking link, and terms.

    +
    2. Rules

    Tell the AI to disclose commissions, avoid fake testimonials, and avoid income or ROI claims.

    +
    3. Memory

    Save your core explanation: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates partner one-liner, disclosure, posts, email blurb, FAQ, claims-to-avoid list, and proof note.

    +
    5. Checks

    The AI checks whether the promo is clear, honest, disclosure-aware, and not overstated.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough partner notes:

    +
    Rough partner notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Potential partner: AI newsletter writer, creator, consultant, or community owner
    +Goal: give them a simple referral / affiliate promo kit they can use to explain the product clearly
    +Need:
    +- partner one-liner
    +- disclosure line
    +- short post
    +- email blurb
    +- FAQ
    +- claims to avoid
    +- tracking link placeholder
    +- proof note
    +Important:
    +- disclose if the partner earns commission or receives anything of value
    +- no fake testimonials
    +- no income guarantee
    +- no ROI guarantee
    +- no fake scarcity
    +- no hidden relationship
    +- do not imply the partner personally used the product unless they actually did
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Partner One-Liner:
    +GoalOS AI Efficiency Sprint Kit helps people stop asking AI from scratch by building one reusable AI workflow with context, rules, memory, workflow, checks, and proof.
    +
    +Required Disclosure Line:
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +Short Social Post:
    +Most people use AI like a chat box.
    +
    +They ask.
    +They edit.
    +They close the tab.
    +Then they ask the same kind of thing again next week.
    +
    +The better move:
    +build one reusable AI workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +GoalOS AI Efficiency Sprint Kit is a $49 digital kit designed to help you build one reusable workflow in under one hour.
    +
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +Email Blurb:
    +Subject: A simple kit for people repeating the same AI task
    +
    +If you use AI every week but keep starting from zero, this may help.
    +
    +GoalOS AI Efficiency Sprint Kit is a $49 digital kit that walks you through building one reusable AI workflow.
    +
    +Examples:
    +- customer replies
    +- meeting notes
    +- sales page sections
    +- email sequences
    +- support FAQ
    +
    +It is not a magic income system.
    +It is not legal, financial, or compliance advice.
    +It is a practical workflow kit.
    +
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +FAQ For Partners:
    +
    +Q: Can I say this guarantees results?
    +A: No. Do not claim guaranteed income, guaranteed ROI, guaranteed savings, compliance, or perfect accuracy.
    +
    +Q: Can I say I used it?
    +A: Only if you actually used it.
    +
    +Q: Can I offer a refund?
    +A: Do not promise refunds. Use the published product terms: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +
    +Q: Can I use my own words?
    +A: Yes, but keep the claim boundary: reusable AI workflow, not guaranteed business results.
    +
    +Claims To Avoid:
    +- “This will make you money.”
    +- “Guaranteed ROI.”
    +- “Fully automated income.”
    +- “Legally compliant AI system.”
    +- “I used this and got results” unless true and permission-safe.
    +- “No refunds ever under any circumstances.”
    +
    +Tracking Link Placeholder:
    +Use your approved partner link here:
    +[PARTNER_LINK]
    +

    Proof note:

    +
    Proof note:
    +Source: rough partner / referral notes.
    +Outputs created: partner one-liner, disclosure line, social post, email blurb, FAQ, claims-to-avoid list, tracking link placeholder.
    +Claims made: the kit helps people build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake testimonial, no hidden incentive, no false use claim, no refund promise beyond published terms.
    +Disclosure boundary: partner must disclose commission or anything of value in a clear, hard-to-miss way near the recommendation.
    +Review needed: human should confirm partner terms, platform rules, tracking link, disclosure language, and final legal requirements before launch.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Partner one-liner + Disclosure line + Social post + Email blurb + Partner FAQ + Claims to avoid + Tracking link placeholder + Proof note +
    +
    +

    Built for distribution

    Give partners clear language they can use without needing custom help from you.

    +

    Disclosure-aware

    The workflow reminds partners to disclose commissions or anything of value.

    +

    Lower trust risk

    The claims-to-avoid list keeps the offer away from fake testimonials and income promises.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste partner notes. Get a referral promo kit and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, advertising, endorsement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Partners should disclose material connections and review platform/legal requirements before publishing. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/post-purchase-onboarding/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/post-purchase-onboarding/index.html new file mode 100644 index 00000000..5a9f4308 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/post-purchase-onboarding/index.html @@ -0,0 +1,282 @@ + + + + + + Post-Purchase Onboarding — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 6
    +

    Turn a purchase into activation.

    +

    This reusable AI workflow turns a digital-product purchase into clear delivery, simple onboarding, first-use guidance, support boundaries, an upsell, and a proof note.

    + + + +
    +

    The simple idea

    +
    The sale is not the finish line. The buyer still needs activation.
    +

    A low-support digital product needs clear delivery, clear first steps, clear terms, clear support boundaries, and a clean next offer.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: buyer confusion

    +

    The buyer pays, downloads files, and wonders: “Where do I start? What should I do first? Do I get support?”

    +

    Result: more support, more confusion, more preventable disputes.

    +
    +
    +

    After: automated activation

    +

    The buyer receives clear emails: download, start here, 60-minute plan, common mistake, Team Pack option, support boundary.

    +

    Result: lower friction after purchase.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the buyer purchased, price, delivery method, support level, and next offer.

    +
    2. Rules

    Tell the AI to be clear, friendly, honest, and not promise personal support or guaranteed results.

    +
    3. Memory

    Save your standard terms, support boundary, and “first 60 minutes” method.

    +
    4. Workflow

    The AI creates delivery, onboarding, first-use, mistake-prevention, upsell, and support-boundary emails.

    +
    5. Checks

    The AI checks for missing download instructions, unclear support promises, risky claims, and missing terms.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what still needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough post-purchase notes:

    +
    Rough post-purchase notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Buyer just paid and gets instant access
    +Goal: help them use the kit quickly without asking support questions
    +Need: thank-you email, download instructions, 60-minute plan, first task suggestion, no-refund reminder, support boundary, upsell to $199 Team Pack
    +Rules: be friendly, clear, not pushy, no income guarantees, no ROI guarantees, no fake urgency
    +Policy: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Email 1 — Instant delivery
    +Subject: Your GoalOS AI Efficiency Sprint Kit
    +
    +Thank you for your purchase.
    +
    +Your kit is ready.
    +
    +Start here:
    +1. Download the files.
    +2. Open START_HERE.pdf.
    +3. Pick one repeated AI task.
    +4. Follow the 60-minute sprint checklist.
    +
    +Best first tasks:
    +- answer customer questions
    +- summarize meeting notes
    +- write weekly updates
    +- create product content
    +- prepare a sales-page section
    +
    +Important:
    +This is a digital educational workflow product. Access is delivered instantly. All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Email 2 — Your 60-minute plan
    +Subject: Do this first
    +
    +Here is the simplest way to use the kit today.
    +
    +Minute 0–10:
    +Pick one repeated AI task.
    +
    +Minute 10–20:
    +Fill the context template.
    +
    +Minute 20–30:
    +Fill the rules and memory templates.
    +
    +Minute 30–45:
    +Build the workflow steps.
    +
    +Minute 45–55:
    +Add checks.
    +
    +Minute 55–60:
    +Create the proof note.
    +
    +By the end, you should have one reusable AI workflow you can run again.
    +
    +Email 3 — Avoid the common mistake
    +Subject: Do not start with ten workflows
    +
    +The biggest mistake is trying to systematize everything at once.
    +
    +Start with one task.
    +
    +One customer reply.
    +One meeting summary.
    +One sales-page section.
    +One email sequence.
    +
    +The goal is not to organize your entire business today.
    +
    +The goal is to build one reusable workflow and understand the method.
    +
    +Email 4 — Team Pack upsell
    +Subject: Want to use this with your team?
    +
    +If you want to roll this out with a team, the Team Pack gives you:
    +
    +- team workshop agenda
    +- manager guide
    +- team workflow inventory
    +- role assignment sheet
    +- team proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +
    +Use the individual kit first.
    +Upgrade only if you want to run the sprint with other people.
    +
    +Email 5 — Support boundary
    +Subject: Quick support note
    +
    +To keep the kit simple and affordable, support is limited to access issues.
    +
    +We can help if:
    +- your download link does not work
    +- you were charged twice
    +- the file is missing or corrupted
    +
    +We cannot review every workflow personally at the $49 level.
    +
    +The kit is designed to be self-serve.
    +

    Proof note:

    +
    Proof note:
    +Source: rough post-purchase notes.
    +Outputs created: delivery email, 60-minute plan, mistake-prevention email, Team Pack upsell, support boundary email.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no done-for-you support promise, no legal/compliance claim.
    +Review needed: human should confirm download link, checkout platform settings, support inbox, final product contents, and applicable consumer rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Delivery email + 60-minute plan + Mistake-prevention email + Team Pack upsell + Support boundary + Terms reminder + Proof note +
    +
    +

    Built for automation

    Delivery and onboarding happen without manual hand-holding.

    +

    Lower support load

    The workflow explains where to start and what support is included.

    +

    Natural upsell

    The Team Pack appears as the next step only after the buyer understands the individual kit.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste purchase notes. Get delivery, onboarding, upsell, support boundary, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/proof-card-referral-loop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/proof-card-referral-loop/index.html new file mode 100644 index 00000000..18d669a5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/proof-card-referral-loop/index.html @@ -0,0 +1,252 @@ + + + + + + Proof Card Referral Loop — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 9
    +

    Turn real usage into shareable proof.

    +

    This reusable AI workflow turns a real buyer usage note into a public-safe proof card, social post, referral ask, permission request, and proof note — without fake testimonials, private screenshots, or inflated claims.

    + + + +
    +

    The simple idea

    +
    Real usage can create demand — if you keep it public-safe.
    +

    The goal is not to invent testimonials. The goal is to turn real, permission-aware usage into simple proof people can understand and share.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: proof stays private

    +

    A buyer says the kit helped them build a workflow. The message stays in your inbox, or worse, gets turned into risky marketing without permission.

    +

    Result: missed demand or unnecessary trust risk.

    +
    +
    +

    After: public-safe proof loop

    +

    The workflow creates an anonymized proof card, social post, referral ask, permission request, and proof note.

    +

    Result: shareable demand without fake claims.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the buyer used, what task they worked on, and what can or cannot be public.

    +
    2. Rules

    Tell the AI not to invent quotes, names, screenshots, results, income claims, or testimonials.

    +
    3. Memory

    Save your standard claim boundary and permission-request language.

    +
    4. Workflow

    The AI creates a proof card, social post, referral ask, permission request, and proof note.

    +
    5. Checks

    The AI checks that the output is anonymized, truthful, and not overstated.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs permission before publishing.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough proof-card notes:

    +
    Rough proof-card notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Buyer message summary: “I used the kit to turn my meeting notes task into a reusable workflow.”
    +Important: do not publish the buyer’s name, email, company, screenshot, or exact quote without permission.
    +Goal: create a public-safe proof card, social post, referral request, and proof note.
    +Rules:
    +- no fake testimonial
    +- no invented result
    +- no income claim
    +- no ROI claim
    +- no private buyer details
    +- ask permission before using any identifiable quote
    +- summarize the pattern safely if permission is not confirmed
    +Offer: If this helped, share the example or send the kit to one person who repeats the same AI task weekly.
    +Terms: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +

    Reusable workflow output:

    +
    Public-Safe Proof Card:
    +Before:
    +Meeting notes were messy and hard to turn into action.
    +
    +Workflow built:
    +Meeting notes → decisions → owners → deadlines → follow-up email → proof note.
    +
    +Public-safe result:
    +One repeated meeting-notes task was turned into a reusable AI workflow.
    +
    +Claim boundary:
    +This does not claim guaranteed productivity, income, ROI, legal compliance, or universal results.
    +
    +Share Post:
    +Someone used the GoalOS AI Efficiency Sprint method to turn a repeated meeting-notes task into a reusable AI workflow.
    +
    +The pattern:
    +
    +messy notes
    +→ summary
    +→ decisions
    +→ owners
    +→ deadlines
    +→ follow-up email
    +→ proof note
    +
    +That is the point.
    +
    +Not “prompt harder.”
    +
    +Build a workflow you can run again.
    +
    +Referral Ask:
    +If this helped you, send the GoalOS AI Efficiency Sprint Kit to one person who keeps asking AI from scratch for the same task every week.
    +
    +Best fit:
    +- customer replies
    +- meeting notes
    +- weekly updates
    +- sales-page sections
    +- support FAQ
    +- email sequences
    +
    +Permission Request:
    +Hi,
    +
    +Glad the kit helped you build a reusable workflow.
    +
    +May we share a short, public-safe summary of your use case?
    +
    +We would not include your name, company, email, private files, screenshots, or exact words unless you explicitly approve them.
    +
    +Example summary:
    +“A buyer used the GoalOS sprint to turn meeting notes into a reusable action-plan workflow.”
    +
    +Thanks.
    +

    Proof note:

    +
    Proof note:
    +Source: summarized buyer usage message.
    +Outputs created: public-safe proof card, social post, referral ask, permission request.
    +Claims made: a buyer used the method to turn one repeated task into a reusable workflow.
    +Claims avoided: no fake testimonial, no invented quote, no income guarantee, no ROI claim, no private buyer details.
    +Permission boundary: do not use identifiable buyer details or exact quotes without explicit permission.
    +Review needed: human should confirm permission status before publishing any identifiable testimonial or quote.
    +Public-safe: yes, if anonymized and no private details are included.
    +
    + +
    +

    What the buyer gets

    +
    + Public-safe proof card + Social post + Referral ask + Permission request + Claim boundary + Proof note +
    +
    +

    Built for ethical virality

    Turn real usage into a shareable story without faking testimonials.

    +

    Permission-aware

    Ask before using names, quotes, companies, screenshots, or private details.

    +

    Demand loop

    Each real use case can become a proof card and referral ask.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste a real usage note. Get a public-safe proof card and referral loop.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Do not publish private buyer messages, names, emails, screenshots, testimonials, or exact quotes without appropriate permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/support-faq-triage/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/support-faq-triage/index.html new file mode 100644 index 00000000..0531d7bb --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/support-faq-triage/index.html @@ -0,0 +1,260 @@ + + + + + + Support FAQ Triage — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 7
    +

    Turn support questions into self-serve answers.

    +

    This reusable AI workflow turns repeated support questions into a help center FAQ, policy-aware canned replies, escalation rules, and a proof note — so a digital product can stay simple and low-management.

    + + + +
    +

    The simple idea

    +
    If the same question appears twice, turn it into a reusable answer.
    +

    A low-friction digital product needs clear support boundaries: help with access problems, duplicate charges, and broken files — without turning a $49 self-serve kit into unlimited consulting.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: manual support loop

    +

    Buyers ask the same questions. You answer from scratch. You repeat the refund policy. You explain where to start. You manually triage every issue.

    +

    Result: management burden, inconsistent replies, more friction.

    +
    +
    +

    After: support workflow

    +

    The workflow turns repeated questions into FAQ entries, canned replies, escalation rules, and proof notes.

    +

    Result: self-serve support with clear boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, support boundaries, common questions, and digital product terms.

    +
    2. Rules

    Tell the AI to be helpful but firm, never invent legal rules, and escalate duplicate charges or access failures.

    +
    3. Memory

    Save standard wording for “how to start,” “access issue,” “duplicate charge,” and “self-serve support.”

    +
    4. Workflow

    The AI creates triage rules, FAQ answers, canned replies, escalation rules, and proof note.

    +
    5. Checks

    The AI checks whether the reply is clear, respectful, policy-aware, and not overpromising support.

    +
    6. Proof

    The AI records what was answered, what was claimed, what was avoided, and what needs escalation.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough support notes:

    +
    Rough support notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Support goal: low management, self-serve, clear boundaries
    +Common questions:
    +- Where is my download?
    +- What file do I open first?
    +- Can I get a refund?
    +- I was charged twice.
    +- The file will not open.
    +- Can you review my workflow?
    +- Do I need to be technical?
    +Policy:
    +Digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +Support included:
    +Access issues, duplicate charges, missing/corrupted files.
    +Support not included:
    +Personal workflow review, consulting, custom implementation, legal/financial/compliance advice.
    +Tone:
    +Helpful, calm, firm, clear, non-defensive.
    +

    Reusable workflow output:

    +
    Support Triage Rules:
    +1. If the buyer cannot access the download, ask for order email and resend access.
    +2. If the buyer was charged twice, escalate for billing review.
    +3. If the file is missing or corrupted, send a replacement link.
    +4. If the buyer asks how to start, send the 60-minute plan.
    +5. If the buyer asks for a refund, explain the digital product terms politely and check whether the case is a duplicate charge, technical access failure, or legal exception.
    +6. If the buyer asks for personal review, explain that the $49 kit is self-serve and suggest the Team Pack or workshop if available.
    +7. If the message contains legal, financial, medical, employment, security, or compliance questions, do not answer as advice. Tell them to consult a qualified professional.
    +
    +Help Center FAQ:
    +
    +Q: Where do I start?
    +A: Open START_HERE.pdf, then follow the 60-minute sprint checklist.
    +
    +Q: What is the first task I should choose?
    +A: Pick one task you repeat often: customer replies, meeting summaries, weekly updates, product content, sales-page sections, or support replies.
    +
    +Q: Can I get a refund?
    +A: This is a digital educational product with instant access. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures. If you believe one of those applies, reply with your order email and a short description of the issue.
    +
    +Q: I was charged twice. What should I do?
    +A: Reply with your order email and screenshots of both charges. We will review the duplicate charge.
    +
    +Q: My file will not open. What should I do?
    +A: Reply with your order email, device type, and the file name that is not opening. We will help with access or send a replacement file.
    +
    +Q: Can you review my workflow personally?
    +A: The $49 kit is self-serve and does not include personal workflow review. If you want team help, look for the Team Pack or workshop option.
    +
    +Canned Reply — Refund Request:
    +Hi,
    +
    +Thanks for reaching out.
    +
    +The GoalOS AI Efficiency Sprint Kit is a digital educational product with instant access. As stated before checkout, sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +If you are having an access issue, duplicate charge, missing file, or corrupted file, reply with your order email and a screenshot or short description, and we will review it.
    +
    +If you are asking for help using the kit, please start with START_HERE.pdf and the 60-minute sprint checklist.
    +
    +Thank you.
    +
    +Canned Reply — How To Start:
    +Hi,
    +
    +Start with START_HERE.pdf.
    +
    +Then follow this order:
    +
    +1. Pick one repeated AI task.
    +2. Fill the Context template.
    +3. Fill the Rules template.
    +4. Fill the Memory template.
    +5. Build the Workflow steps.
    +6. Add Checks.
    +7. Create the Proof note.
    +
    +Do not start with ten workflows. Start with one.
    +

    Proof note:

    +
    Proof note:
    +Source: rough support notes.
    +Outputs created: triage rules, help center FAQ, refund-request reply, how-to-start reply.
    +Claims made: support covers access issues, duplicate charges, missing/corrupted files; the kit is self-serve.
    +Claims avoided: no promise of personal consulting, no legal/compliance advice, no guarantee of results, no refusal of legally required remedies.
    +Escalation needed: duplicate charges, technical access failures, legal exceptions, threats, chargebacks, or regulated advice requests.
    +Review needed: human should confirm exact checkout terms, support email, legal requirements, and platform policies before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Triage rules + Help center FAQ + Refund-request reply + Access-issue reply + Support boundary + Escalation rules + Proof note +
    +
    +

    Built for low management

    Turn repeated support questions into self-serve answers.

    +

    Clear boundaries

    Support access problems without promising unlimited personal help.

    +

    Policy-aware

    Escalate duplicate charges, technical failures, legal exceptions, and regulated advice requests.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste support notes. Get FAQ, replies, escalation rules, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-pack-upsell/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-pack-upsell/index.html new file mode 100644 index 00000000..6656333c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-pack-upsell/index.html @@ -0,0 +1,288 @@ + + + + + + Team Pack Upsell — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Upgrade Loop · Example 15
    +

    Turn one buyer into a team rollout.

    +

    This reusable AI workflow turns an individual kit purchase into a clear Team Pack upgrade: upsell copy, best-fit guidance, decline copy, post-purchase email, FAQ, claims-to-avoid list, and proof note.

    + + + +
    +

    The simple idea

    +
    One buyer can become a team rollout.
    +

    The individual kit helps one person. The Team Pack helps that person bring the workflow method to coworkers, clients, students, or a small team.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: solo buyer only

    +

    Someone buys the $49 kit and likes the method, but there is no clear next step for using it with other people.

    +

    Result: lower lifetime value and missed team adoption.

    +
    +
    +

    After: optional Team Pack upgrade

    +

    The buyer sees a clear, optional Team Pack with workshop agenda, manager guide, role sheet, rollout checklist, and team templates.

    +

    Result: higher value without pressure.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the individual product, Team Pack product, prices, buyer situation, and contents.

    +
    2. Rules

    Tell the AI to avoid fake urgency, forced upgrades, income claims, ROI claims, and “required” language.

    +
    3. Memory

    Save your standard upgrade language: optional, self-serve, team materials, clear decline option.

    +
    4. Workflow

    The AI creates upsell copy, best-if / skip-if sections, buttons, email, FAQ, claims-to-avoid, and proof note.

    +
    5. Checks

    The AI checks whether the offer is optional, clearly priced, easy to decline, and not overpromising.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before checkout.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Team Pack upsell notes:

    +
    Rough Team Pack upsell notes:
    +Main product: GoalOS AI Efficiency Sprint Kit
    +Main price: $49
    +Upsell product: GoalOS AI Efficiency Sprint Team Pack
    +Upsell price: $199
    +Buyer situation: they bought or are buying the individual kit and may want to use the method with coworkers, clients, students, or a small team
    +Goal: create a clear Team Pack upgrade page / post-purchase upsell that is useful and not pushy
    +Team Pack includes:
    +- everything in the individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory sheet
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +Rules:
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no claim that the Team Pack is required
    +- no forced continuity
    +- make it easy to decline
    +- clear digital product terms
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Team Pack Upsell Headline:
    +Want to run the sprint with a team?
    +
    +Subheadline:
    +The individual kit helps one person build one reusable AI workflow.
    +
    +The Team Pack helps a group run the same sprint together.
    +
    +Upgrade Copy:
    +If you want to use GoalOS with coworkers, clients, students, or a small team, the Team Pack gives you the extra materials to make the sprint easier to run with other people.
    +
    +You get:
    +- everything in the individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory sheet
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +
    +Best if:
    +- you want to run a team AI workflow session
    +- you manage a small team
    +- you teach or advise others
    +- you want shared templates instead of everyone working alone
    +
    +Skip if:
    +- you only want to build one personal workflow today
    +- you do not need team materials
    +- you are not ready to involve other people
    +
    +Button Copy:
    +Yes, upgrade to the Team Pack
    +
    +Decline Copy:
    +No thanks, continue with the individual kit.
    +
    +Post-Purchase Email:
    +Subject: Want to run this with a team?
    +
    +You now have the GoalOS AI Efficiency Sprint Kit.
    +
    +If you want to bring the method to a team, the Team Pack adds:
    +
    +- team workshop agenda
    +- manager guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +
    +Use the individual kit first if you are starting alone.
    +
    +Upgrade only if you want to run the sprint with other people.
    +
    +FAQ:
    +Q: Do I need the Team Pack to use the individual kit?
    +A: No. The individual kit is enough to build one reusable workflow.
    +
    +Q: Is the Team Pack a subscription?
    +A: No. It is a one-time digital team kit.
    +
    +Q: Does the Team Pack include live consulting?
    +A: No. It is a self-serve digital product.
    +
    +Q: Can I get a refund if I change my mind?
    +A: Digital products are delivered instantly. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Claims To Avoid:
    +- “This will make your team more profitable.”
    +- “Guaranteed productivity.”
    +- “Guaranteed ROI.”
    +- “You need this to use GoalOS.”
    +- “Only available today” unless actually true and clearly explained.
    +- “No refunds ever under any circumstances.”
    +

    Proof note:

    +
    Proof note:
    +Source: rough Team Pack upsell notes.
    +Outputs created: upsell headline, upgrade copy, best-if / skip-if sections, button copy, decline copy, post-purchase email, FAQ, claims-to-avoid list.
    +Claims made: the Team Pack provides additional materials for running the sprint with a team.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no forced continuity, no claim that the Team Pack is required.
    +Checkout boundary: upgrade should be optional, clearly priced, not pre-selected, and easy to decline.
    +Review needed: human should confirm product contents, price, checkout flow, tax settings, and digital product terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Upsell headline + Upgrade copy + Best-if / skip-if + Button copy + Decline copy + Post-purchase email + FAQ + Proof note +
    +
    +

    Built for LTV

    Give individual buyers a clear team-level next step.

    +

    No pressure

    The workflow makes the upgrade optional, clearly priced, and easy to decline.

    +

    Team adoption

    The Team Pack moves from one person using AI better to a group running the same method.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste Team Pack notes. Get optional upgrade copy and proof.
    + +
    + + + +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-sprint-facilitator/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-sprint-facilitator/index.html new file mode 100644 index 00000000..ef0ddab4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/team-sprint-facilitator/index.html @@ -0,0 +1,294 @@ + + + + + + Team Sprint Facilitator — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Team Sprint · Example 17
    +

    Turn a team meeting into a workflow.

    +

    This reusable AI workflow turns a Team Pack purchase into a self-run 60-minute team sprint: facilitator agenda, role assignments, room rules, workflow draft, checks, follow-up email, and proof note.

    + + + +
    +

    The simple idea

    +
    A team does not need another AI lecture. It needs one reusable workflow.
    +

    The Team Pack becomes much easier to understand when people see the exact 60-minute session it helps them run.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: team AI chaos

    +

    Everyone uses AI differently. Repeated tasks are handled from scratch. Nobody knows what context, rules, checks, or proof should be used.

    +

    Result: inconsistent AI work and no reusable team process.

    +
    +
    +

    After: one team workflow

    +

    The team picks one repeated task and leaves with a shared workflow, role assignments, checks, and proof note.

    +

    Result: one reusable team asset without live consulting.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the team size, task, session goal, and desired output.

    +
    2. Rules

    Tell the AI not to promise ROI, productivity, compliance, or final AI output without review.

    +
    3. Memory

    Save the standard sprint structure: task, context, rules, workflow, checks, proof.

    +
    4. Workflow

    The AI creates the agenda, roles, script, workflow draft, checks, follow-up email, and proof note.

    +
    5. Checks

    The AI checks whether the session is clear, time-boxed, non-technical, and realistic.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough team sprint notes:

    +
    Rough team sprint notes:
    +Product: GoalOS AI Efficiency Sprint Team Pack
    +Goal: help a team run a self-serve 60-minute session without live consulting
    +Team size: 3 to 6 people
    +First task: weekly client status update
    +Need output:
    +- facilitator agenda
    +- role assignments
    +- room rules
    +- 60-minute script
    +- reusable workflow draft
    +- checks list
    +- follow-up email
    +- proof note
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no legal/compliance claim
    +- no promise that AI output can be used without review
    +- keep it simple for non-technical teams
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Team Sprint Agenda:
    +Goal:
    +Turn one repeated team task into one reusable AI workflow.
    +
    +Task selected:
    +Weekly client status update.
    +
    +Roles:
    +1. Facilitator — keeps the session moving.
    +2. Task Owner — explains how the task is done today.
    +3. Context Keeper — captures reusable context.
    +4. Rules Keeper — captures must-do / never-do rules.
    +5. Checker — defines what must be reviewed before use.
    +6. Proof Keeper — writes the proof note.
    +
    +60-Minute Sprint Script:
    +Minute 0–5:
    +Pick the repeated task and agree on the output.
    +
    +Minute 5–15:
    +Describe the current messy process.
    +
    +Minute 15–25:
    +Write the context the AI needs every time.
    +
    +Minute 25–35:
    +Write the rules:
    +- what the AI must always do
    +- what the AI must never do
    +- what must be reviewed by a human
    +
    +Minute 35–45:
    +Build the workflow steps.
    +
    +Minute 45–55:
    +Add checks.
    +
    +Minute 55–60:
    +Create the proof note and choose the next owner.
    +
    +Room Rules:
    +- Start with one task only.
    +- Do not solve every workflow today.
    +- Do not use private client data in public examples.
    +- Do not treat AI output as final without review.
    +- Record what was claimed and what was not claimed.
    +
    +Reusable Workflow Draft:
    +Workflow name:
    +Weekly Client Status Update
    +
    +Input:
    +meeting notes, current project status, blockers, next actions
    +
    +Steps:
    +1. Summarize the week.
    +2. List completed work.
    +3. List blockers.
    +4. List next actions.
    +5. Draft the client update.
    +6. Mark uncertain items for human review.
    +7. Create proof note.
    +
    +Checks:
    +- Are client names correct?
    +- Are deadlines confirmed?
    +- Are claims supported?
    +- Are uncertain items marked?
    +- Is private information removed if shared publicly?
    +
    +Follow-up Email:
    +Subject: Team sprint output — weekly client status workflow
    +
    +Thanks for joining the GoalOS team sprint.
    +
    +We built one reusable workflow:
    +Weekly Client Status Update
    +
    +Next owner:
    +Task Owner
    +
    +Before using it:
    +- test it on one internal example
    +- check names and dates
    +- review uncertain items
    +- keep private client details out of public examples
    +
    +Next step:
    +Run the workflow once this week and record what worked.
    +

    Proof note:

    +
    Proof note:
    +Source: rough team sprint notes.
    +Outputs created: facilitator agenda, role assignments, room rules, 60-minute script, reusable workflow draft, checks list, follow-up email.
    +Claims made: the Team Pack can help a team run a self-serve sprint to build one reusable AI workflow.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance claim, no claim that AI output is final without review.
    +Review needed: team should confirm roles, task scope, privacy boundaries, and internal policies before using outputs.
    +Public-safe: yes, if client/private details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Facilitator agenda + Role assignments + Room rules + 60-minute script + Workflow draft + Checks list + Follow-up email + Proof note +
    +
    +

    Built for self-serve teams

    The Team Pack becomes easier to use without live facilitation.

    +

    Non-technical

    The team only needs to pick one repeated task and follow the agenda.

    +

    Proof-ready

    The output includes checks and a proof note, not just a brainstorm.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste team sprint notes. Get a 60-minute team workflow session and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies and private data boundaries before using team outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/examples/weekly-growth-review/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/examples/weekly-growth-review/index.html new file mode 100644 index 00000000..c48b2901 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/examples/weekly-growth-review/index.html @@ -0,0 +1,251 @@ + + + + + + Weekly Growth Review — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Weekly Growth Review · Example 12
    +

    Turn weekly numbers into next actions.

    +

    This reusable AI workflow turns simple weekly numbers into a growth summary, bottleneck, next experiment, content idea, product fix, support fix, and proof note.

    + + + +
    +

    The simple idea

    +
    Do not guess what to fix. Pick one next experiment from the numbers.
    +

    An autonomous money machine needs a weekly review loop: look at traffic, leads, sales, support, and objections, then choose one small improvement.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: random optimization

    +

    You look at sales, get nervous, rewrite everything, post randomly, and chase ten ideas at once.

    +

    Result: noise, overreaction, no clean learning.

    +
    +
    +

    After: weekly growth workflow

    +

    You paste a few numbers into the same workflow. It identifies the bottleneck and chooses one experiment for next week.

    +

    Result: calmer iteration and cleaner proof.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what product you sell and what numbers you track: visits, leads, shop visits, checkout starts, purchases, objections, and support questions.

    +
    2. Rules

    Tell the AI not to promise revenue, not to infer causation from weak data, and not to recommend ten changes at once.

    +
    3. Memory

    Save your funnel: homepage → workflow example → shop → checkout → delivery → onboarding → support.

    +
    4. Workflow

    The AI summarizes the week, finds the bottleneck, chooses one experiment, drafts one content idea, suggests one product fix, and writes a proof note.

    +
    5. Checks

    The AI checks that the experiment is small, measurable, safe, and not based on exaggerated claims.

    +
    6. Proof

    The AI records what was observed, what was decided, what was not claimed, and what to review next week.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough weekly numbers:

    +
    Rough weekly numbers:
    +Website visits: 1,200
    +Workflow example page visits: 430
    +Shop visits: 95
    +Checkout starts: 18
    +Purchases: 4
    +Email subscribers: 62
    +Top support question: “Where do I start?”
    +Top objection: “Is this just templates?”
    +Most visited example: Meeting notes → action plan
    +Goal: choose one improvement for next week
    +Important:
    +- no guaranteed revenue claim
    +- no fake urgency
    +- no fake testimonials
    +- no pretending the data proves causation
    +- do not overreact to one week of small numbers
    +- create one practical experiment, one content idea, one product fix, and a proof note
    +

    Reusable workflow output:

    +
    Weekly Growth Summary:
    +The site generated interest, but the main drop-off appears between example-page visits and shop visits.
    +
    +Observed numbers:
    +- 1,200 website visits
    +- 430 workflow example visits
    +- 95 shop visits
    +- 18 checkout starts
    +- 4 purchases
    +- 62 email subscribers
    +
    +Main bottleneck:
    +People are engaging with examples, but not enough visitors are moving from examples to the shop.
    +
    +Likely friction:
    +1. The product value may still feel abstract.
    +2. The “where do I start?” question appears after purchase and before purchase.
    +3. The “is this just templates?” objection remains important.
    +
    +Next Best Experiment:
    +Add a stronger call-to-action under the Meeting Notes example:
    +
    +“Want this workflow as a fill-in-the-blank kit? Get the GoalOS AI Efficiency Sprint Kit.”
    +
    +Experiment Goal:
    +Increase clicks from example pages to the shop.
    +
    +Do not claim:
    +This will increase sales.
    +This will improve conversion.
    +This proves the funnel works.
    +
    +Content Idea:
    +Post:
    +“The most visited GoalOS example this week was meeting notes → action plan.
    +That tells us something simple:
    +people do not want abstract AI.
    +They want their messy work turned into clear next steps.”
    +
    +Product Fix:
    +Add a “Where do I start?” mini-card to the Start Here page and the product page.
    +
    +Support Fix:
    +Create one FAQ entry:
    +“Which workflow should I build first?”
    +
    +Proof Note:
    +This week’s review used aggregate site and shop numbers.
    +The chosen experiment is based on observed drop-off and repeated questions.
    +No revenue increase is promised.
    +No causal claim is made.
    +Next review should compare example-to-shop clicks before and after the CTA change.
    +

    Proof note:

    +
    Proof note:
    +Source: rough weekly metrics and support-objection notes.
    +Outputs created: weekly summary, bottleneck, next experiment, content idea, product fix, support fix, proof note.
    +Claims made: the review identified an observed drop-off and selected one experiment for next week.
    +Claims avoided: no guaranteed sales increase, no revenue guarantee, no ROI claim, no causation claim from small data, no fake testimonial.
    +Review needed: human should confirm numbers, tracking links, checkout data, and final experiment before publishing or acting.
    +Public-safe: yes if aggregate numbers are used and no private customer data is included.
    +
    + +
    +

    What the buyer gets

    +
    + Weekly summary + Bottleneck + One experiment + Content idea + Product fix + Support fix + Proof note +
    +
    +

    Built for calm iteration

    Pick one next move instead of changing everything at once.

    +

    Lower-risk growth

    The workflow avoids guaranteed revenue claims and weak-data overconfidence.

    +

    Compounding system

    Every week creates one experiment, one learning, and one proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste weekly numbers. Get one next experiment and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, investment, or regulatory advice. No income, revenue, ROI, savings, compliance, safety, accuracy, or business-results guarantee. Review your own numbers and use judgment before acting. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/goalos/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/goalos/index.html new file mode 100644 index 00000000..574178a2 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/goalos/index.html @@ -0,0 +1,89 @@ + + + + + + GoalOS — Efficient intelligence made provable + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + +
    +

    GoalOS proof infrastructure

    +

    LLMs made intelligence accessible.
    The next wave makes intelligence efficient.
    GoalOS makes efficient intelligence provable.

    +

    Les LLMs ont rendu l’intelligence accessible.
    La prochaine vague rend l’intelligence efficace.
    GoalOS rend l’intelligence efficace prouvable.

    +

    You already have the model. GoalOS gives you the machine around it.

    +

    Vous avez déjà le modèle. GoalOS vous donne la machine autour du modèle.

    +

    GoalOS turns repeated AI work into reusable, checked, provable systems.

    +

    GoalOS transforme le travail IA répété en systèmes réutilisables, vérifiés et prouvables.

    + +
    +

    The machine around the model

    GoalOS

    Context

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Rules

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Memory

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Workflow

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Checks

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Proof

    A reusable layer around AI work so output can be checked, improved, and reused.

    +
    GoalOS

    Weekly improvement

    A reusable layer around AI work so output can be checked, improved, and reused.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-checkout-recovery-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-checkout-recovery-example.html new file mode 100644 index 00000000..99500969 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-checkout-recovery-example.html @@ -0,0 +1,248 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-demand-engine-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-demand-engine-example.html new file mode 100644 index 00000000..ece01742 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-demand-engine-example.html @@ -0,0 +1,118 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-correction-rollback-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-correction-rollback-example.html new file mode 100644 index 00000000..7519f605 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-correction-rollback-example.html @@ -0,0 +1,365 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 18

    +

    Turn department AI chaos into a Proof Room.

    +

    Paste department AI notes. Get a task inventory, Proof Room Lite charter, role assignments, 30-day rollout, dashboard fields, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 19

    +

    Turn proof notes into decisions.

    +

    Paste weekly Proof Room notes. Get keep/revise/stop decisions, next actions, dashboard update, manager email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 20

    +

    Turn 30 days of AI work into a proof report.

    +

    Paste monthly Proof Room notes. Get an executive report, workflow status table, leadership email, next-month plan, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 21

    +

    Turn AI tool risk into simple rules.

    +

    Paste department AI tool notes. Get a Green / Yellow / Red permission map, task rules, escalation rules, manager announcement, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-permission-map-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-permission-map-example.html new file mode 100644 index 00000000..64640491 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-ai-permission-map-example.html @@ -0,0 +1,352 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 18

    +

    Turn department AI chaos into a Proof Room.

    +

    Paste department AI notes. Get a task inventory, Proof Room Lite charter, role assignments, 30-day rollout, dashboard fields, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 19

    +

    Turn proof notes into decisions.

    +

    Paste weekly Proof Room notes. Get keep/revise/stop decisions, next actions, dashboard update, manager email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 20

    +

    Turn 30 days of AI work into a proof report.

    +

    Paste monthly Proof Room notes. Get an executive report, workflow status table, leadership email, next-month plan, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-monthly-proof-report-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-monthly-proof-report-example.html new file mode 100644 index 00000000..de2ff2f9 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-monthly-proof-report-example.html @@ -0,0 +1,339 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 18

    +

    Turn department AI chaos into a Proof Room.

    +

    Paste department AI notes. Get a task inventory, Proof Room Lite charter, role assignments, 30-day rollout, dashboard fields, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 19

    +

    Turn proof notes into decisions.

    +

    Paste weekly Proof Room notes. Get keep/revise/stop decisions, next actions, dashboard update, manager email, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-proof-room-lite-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-proof-room-lite-example.html new file mode 100644 index 00000000..15c82ea0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-proof-room-lite-example.html @@ -0,0 +1,313 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-public-safe-case-study-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-public-safe-case-study-example.html new file mode 100644 index 00000000..fcd4f7b4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-public-safe-case-study-example.html @@ -0,0 +1,378 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 18

    +

    Turn department AI chaos into a Proof Room.

    +

    Paste department AI notes. Get a task inventory, Proof Room Lite charter, role assignments, 30-day rollout, dashboard fields, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 19

    +

    Turn proof notes into decisions.

    +

    Paste weekly Proof Room notes. Get keep/revise/stop decisions, next actions, dashboard update, manager email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 20

    +

    Turn 30 days of AI work into a proof report.

    +

    Paste monthly Proof Room notes. Get an executive report, workflow status table, leadership email, next-month plan, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 21

    +

    Turn AI tool risk into simple rules.

    +

    Paste department AI tool notes. Get a Green / Yellow / Red permission map, task rules, escalation rules, manager announcement, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 22

    +

    Turn AI mistakes into corrections.

    +

    Paste an AI workflow issue. Get severity, immediate action, rule update, checker update, rollback receipt, manager note, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-weekly-proof-review-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-weekly-proof-review-example.html new file mode 100644 index 00000000..2a8d11f3 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-department-weekly-proof-review-example.html @@ -0,0 +1,326 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · Team Sprint · Example 17

    +

    Turn a team meeting into a workflow.

    +

    Paste team sprint notes. Get a 60-minute agenda, roles, room rules, workflow draft, checks, follow-up email, and proof note.

    + +
    + + + + +
    +

    GoalOS · Proof Room Lite · Example 18

    +

    Turn department AI chaos into a Proof Room.

    +

    Paste department AI notes. Get a task inventory, Proof Room Lite charter, role assignments, 30-day rollout, dashboard fields, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-feedback-to-product-update-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-feedback-to-product-update-example.html new file mode 100644 index 00000000..c74c6563 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-feedback-to-product-update-example.html @@ -0,0 +1,183 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-internal-approval-memo-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-internal-approval-memo-example.html new file mode 100644 index 00000000..5fbddc52 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-internal-approval-memo-example.html @@ -0,0 +1,287 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-lead-magnet-email-sequence-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-lead-magnet-email-sequence-example.html new file mode 100644 index 00000000..db1a97cb --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-lead-magnet-email-sequence-example.html @@ -0,0 +1,144 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-meeting-workflow-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-meeting-workflow-example.html new file mode 100644 index 00000000..c2711c42 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-meeting-workflow-example.html @@ -0,0 +1,105 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-monthly-workflow-vault-drop-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-monthly-workflow-vault-drop-example.html new file mode 100644 index 00000000..0dc9568e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-monthly-workflow-vault-drop-example.html @@ -0,0 +1,209 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-offer-to-sales-page-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-offer-to-sales-page-example.html new file mode 100644 index 00000000..2d0a204d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-offer-to-sales-page-example.html @@ -0,0 +1,131 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-order-bump-builder-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-order-bump-builder-example.html new file mode 100644 index 00000000..43509cdc --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-order-bump-builder-example.html @@ -0,0 +1,261 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-partner-referral-kit-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-partner-referral-kit-example.html new file mode 100644 index 00000000..5dde6d34 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-partner-referral-kit-example.html @@ -0,0 +1,222 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-post-purchase-onboarding-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-post-purchase-onboarding-example.html new file mode 100644 index 00000000..7567aea5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-post-purchase-onboarding-example.html @@ -0,0 +1,157 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-proof-card-referral-loop-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-proof-card-referral-loop-example.html new file mode 100644 index 00000000..f40ef79c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-proof-card-referral-loop-example.html @@ -0,0 +1,196 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-reusable-workflow-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-reusable-workflow-example.html new file mode 100644 index 00000000..c866ad69 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-reusable-workflow-example.html @@ -0,0 +1,92 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-support-faq-triage-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-support-faq-triage-example.html new file mode 100644 index 00000000..e1c25761 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-support-faq-triage-example.html @@ -0,0 +1,170 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-pack-upsell-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-pack-upsell-example.html new file mode 100644 index 00000000..35115357 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-pack-upsell-example.html @@ -0,0 +1,274 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-sprint-facilitator-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-sprint-facilitator-example.html new file mode 100644 index 00000000..bef364a8 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-team-sprint-facilitator-example.html @@ -0,0 +1,300 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Weekly Growth Review · Example 12

    +

    Turn weekly numbers into next actions.

    +

    Paste traffic, leads, sales, checkout, and support notes. Get one next experiment, one content idea, one product fix, and a proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 13

    +

    Turn almost-buyers into clear decisions.

    +

    Paste checkout recovery notes. Get clarifying emails, objection handling, FAQ, terms language, and proof note.

    + +
    + + + + +
    +

    GoalOS · Checkout Loop · Example 14

    +

    Turn one sale into a larger cart.

    +

    Paste add-on notes. Get optional order bump copy, microcopy, FAQ, terms language, claims-to-avoid list, and proof note.

    + +
    + + + + +
    +

    GoalOS · Upgrade Loop · Example 15

    +

    Turn one buyer into a team rollout.

    +

    Paste Team Pack notes. Get optional upgrade copy, best-if / skip-if sections, post-purchase email, FAQ, and proof note.

    + +
    + + + + +
    +

    GoalOS · B2B Loop · Example 16

    +

    Turn interest into approval.

    +

    Paste internal approval notes. Get a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/home-before-weekly-growth-review-example.html b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-weekly-growth-review-example.html new file mode 100644 index 00000000..6a2847db --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/home-before-weekly-growth-review-example.html @@ -0,0 +1,235 @@ + + +Proof Gradient + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Agent Evolution Protocol
    +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network direction. PlanOS gives it strategy. SkillOS gives it capability. Proof Gradient gives it evolution: every meaningful machine-work run should leave evidence, proof, permission, recovery, and public-safe reporting.

    + +

    Operating Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    The Four Systems

    Artifact Vault

    Stores reusable intelligence: goals, plans, skills, tools, policies, evals, contexts, and proof-ready artifacts.

    Run Fabric

    Executes bounded machine work and emits traces, events, and proof.

    Proof Ledger

    Records what happened: dockets, packets, evals, risk, cost, receipts, gates, and reports.

    Selection Gate

    Promotes only what proved itself, canaries what needs monitoring, and rolls back what fails.

    +

    Foundational AEP Stack

    A complete governance stack for machine work: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    +

    Proof Archive

    Existing proof pages and evidence links remain preserved. The refreshed home page brings the standards stack forward while keeping the archive accessible.

    rsi-ai-first-blockchain-capital-machine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-ai-first-governance-capital-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    index.html

    Existing proof / evidence page preserved from the current site.

    011-the-proof-loop.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.json

    Existing proof / evidence page preserved from the current site.

    rsi-proof-forge-meta-coordination-proof.md

    Existing proof / evidence page preserved from the current site.

    enterprise-ops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cloudops-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-cyberdefense-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-silicon-verification-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-metamaterials-discovery-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-corporate-os-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-unit-economics-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-marketplace-flywheel-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-revenue-experiment-factory-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capital-to-capability-engine-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-adversarial-multi-agent-market-command-center-proof.html

    Existing proof / evidence page preserved from the current site.

    rsi-capability-command-center-v17-proof.html

    Existing proof / evidence page preserved from the current site.

    standards

    Existing proof / evidence page preserved from the current site.

    AEP-001

    Existing proof / evidence page preserved from the current site.

    AEP-002

    Existing proof / evidence page preserved from the current site.

    AEP-003

    Existing proof / evidence page preserved from the current site.

    +

    Canonical Line

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + + + +
    +

    GoalOS · AI Efficiency Sprint

    +

    Stop asking AI from scratch.

    +

    See the simplest example: turn messy customer questions into a reusable AI workflow that creates a clear reply, short version, next step, proof note, and claim boundary.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 2

    +

    Turn meeting notes into action.

    +

    The next reusable workflow example: paste messy notes and get decisions, owners, deadlines, a follow-up email, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 3

    +

    Turn one idea into demand.

    +

    Paste one rough product idea. Get a hook, LinkedIn post, X post, email, sales-page section, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 4

    +

    Turn rough offer notes into a sales page.

    +

    Paste rough product notes. Get a buyer-ready page section, FAQ, digital product terms, call to action, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 5

    +

    Turn a free worksheet into a sales sequence.

    +

    Paste lead magnet notes. Get a clean opt-in email sequence that teaches, explains, sells, sets terms, and leaves proof.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 6

    +

    Turn a purchase into activation.

    +

    Paste post-purchase notes. Get delivery, onboarding, upsell, support boundary, terms reminder, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 7

    +

    Turn support questions into self-serve answers.

    +

    Paste support notes. Get FAQ answers, canned replies, escalation rules, support boundaries, and a proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 8

    +

    Turn feedback into product updates.

    +

    Paste buyer feedback. Get themes, product updates, changelog, buyer email, social post, and proof note.

    + +
    + + + + +
    +

    GoalOS · AI Efficiency Sprint · Example 9

    +

    Turn real usage into shareable proof.

    +

    Paste a usage note. Get a public-safe proof card, social post, referral ask, permission request, and proof note.

    + +
    + + + + +
    +

    GoalOS · Workflow Vault · Example 10

    +

    Turn demand into monthly workflow drops.

    +

    Paste buyer requests. Get a monthly Vault drop, announcement email, upgrade section, social post, changelog, and proof note.

    + +
    + + + + +
    +

    GoalOS · Partner Loop · Example 11

    +

    Turn partners into distribution.

    +

    Paste partner notes. Get a referral promo kit, disclosure line, swipe copy, FAQ, claims-to-avoid list, and proof note.

    + +
    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html new file mode 100644 index 00000000..53851528 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/implementation/goalos-proof-room-implementation-sprint/index.html @@ -0,0 +1,46 @@ + + + + + + Department RSI in 30 Days + + + + + + + + + +
    + +
    + + +
    +
    Department RSI

    Department RSI in 30 days.

    Deploy Recursive Self-Improving Workflows in one department.

    In 30 days, set up the first version of a lightweight Proof Room for three repeated department AI workflows.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/index.html new file mode 100644 index 00000000..b7b67c14 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/index.html @@ -0,0 +1,99 @@ + + + + + + GoalOS · Proof Gradient + + + + + + + + + +
    + +
    + + +
    + +
    +
    GoalOS · Proof Gradient
    +

    A model can answer. An agent can act. An institution must prove.

    +

    GoalOS turns repeated AI work into owned, scored, versioned, approved, monitored, and recursively improving workflows.

    +
    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run
    + +
    +
    +
    Latest software proof
    +

    GoalOS Cloud MVP 0.2 proves recursive workflow improvement running in software.

    +

    One workflow family. One Proof Room. One improvement proposal. One approval gate. One rollback target. One public-safe proof card.

    + +
    +
    +
    Commercial ladder
    +

    From reusable workflow to Enterprise RSI.

    + +
    +
    +

    Safe boundary

    +

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof records, memory, evidence standards, versions, approvals, monitoring, and rollback.

    +
    + +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/launch/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/launch/index.html new file mode 100644 index 00000000..7a3383d0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/launch/index.html @@ -0,0 +1,89 @@ + + + + + + Launch · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Launch / Lancement
    +

    Package. Publish. Sell. Measure. Improve.

    +

    The public site should guide visitors from proof to product, then from product to examples, and from examples to the right kit.

    +
    +
    + +
    +
    +

    Low-friction terms

    +

    This is a digital educational product with instant access. All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/legacy-command-center.html b/site/_archive/before_unified_shell_v2_2026-06-07/legacy-command-center.html new file mode 100644 index 00000000..f41d6b93 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/legacy-command-center.html @@ -0,0 +1,388 @@ + + + + + + Proof Gradient + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    +

    GoalOS Product Ladder

    +

    GoalOS Product Ladder
    Échelle de produits GoalOS

    +

    AI access is not leverage.
    GoalOS turns AI work into reusable, checked, provable capability.

    +

    L’accès à l’IA n’est pas le levier.
    GoalOS transforme le travail IA en capacité réutilisable, vérifiée et prouvable.

    + +

    Paid digital products are delivered through Squarespace + Stripe. GitHub hosts public proof, standards, and product information only.

    +
    + +
    +
    +
    +
    Flagship autonomous RSI proof
    +

    AI-First Blockchain Capital Machine

    +

    A large autonomous specialist-agent protocol organization recursively improves blockchain capital coordination across capital, blockspace, validator security, MEV control, liquidity, bridges, oracles, governance, settlement, validation, risk courts, and reinvestment.

    +

    Public benchmark only: not live protocol revenue, token advice, investment advice, achieved superintelligence, or Kardashev Type II civilization.

    +

    Open proof page Run on GitHub

    +
    +
    +
    262,144
    agents
    +
    8,192
    roles
    +
    99.907%
    holdout capture
    +
    $8.41B
    over no-RSI
    +
    +
    +
    + +
    +
    +
    +
    Flagship autonomous RSI governance proof
    +

    AI-First Governance Capital Engine

    +

    A large specialist-agent governance lattice recursively improves how AI-first institutions coordinate evidence, decision rights, incentives, capital, compute, energy, policy, execution, audit, risk courts, and reinvestment into compounding institutional capability.

    +

    Public benchmark only: not live revenue, legal advice, investment advice, achieved superintelligence, or Kardashev Type II civilization.

    +

    Open proof page Run on GitHub

    +
    +
    +
    524,288
    virtual specialists
    +
    16,384
    governance roles
    +
    99.938%
    holdout capture
    +
    $3.97T
    over no-RSI
    +
    +
    +
    + +
    Proof Gradient · Agent Evolution Protocol
    + +

    Aim.
    Act.
    Prove.
    Evolve.

    +

    GoalOS gives the network Direction. PlanOS gives it Strategy. SkillOS gives it Capability. The Proof Gradient gives it Evolution.

    + +

    The Four Systems

    +
    +
    + Artifact Vault +

    Stores reusable intelligence.

    +

    Stores immutable, versioned, scoped, auditable, rollbackable artifacts.

    +
    + +
    + Run Fabric +

    Executes agents at scale.

    +

    Resolves artifacts, executes stateless runs, records traces, and emits proof.

    +
    + +
    + Proof Ledger +

    Records what happened.

    +

    Append-only evidence for runs, evals, scores, policy decisions, feedback, costs, latency, and credit assignment.

    +
    + +
    + Selection Gate +

    Promotes only what proved itself.

    +

    Evaluates, approves, canaries, monitors, promotes, pauses, and rolls back upgrades.

    +
    +
    + +
    +

    Latest Proof

    +
    + Proof #11 — The Proof Loop +

    Aim → Act → Prove → Evolve. The simplest sovereign protocol for compounding agent intelligence.

    +

    Open Proof #11 →

    +
    +
    + + + +
    + New autonomous RSI meta-proof +

    Proof Forge Meta-Coordination

    +

    SkillOS now tests the proof system itself: a large specialist-agent proof market recursively improves how hypotheses become verified receipts, public reports, executive webpages, and reusable future proof machinery.

    +
    +
    4,194,304virtual specialist agents
    +
    256verifier courts
    +
    99.10%holdout value capture
    +
    $6.74Tbenchmark value captured
    +
    + View proof + JSON receipt + Report +
    + +
    +

    100% autonomous proof

    +

    Market-Readiness Proof

    +

    Runs entirely in GitHub Actions with no human review, no emails sent, no customers contacted, no private data, no API keys, and a deterministic holdout benchmark.

    +

    + View autonomous proof + Run on GitHub +

    +
    +
    +

    Autonomous enterprise proof

    +

    Enterprise Ops Market Proof

    +

    A 100% autonomous GitHub Actions proof for invoice reconciliation and payment-risk triage. No human review, no emails, no customers, no private data, no API keys.

    +

    + View enterprise proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI CloudOps Market Proof

    +

    A 100% autonomous GitHub Actions proof for cloud reliability incident triage and cost remediation. No human review, no emails, no invoices, no customers, no private data, no API keys.

    +

    + View RSI proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Cyber Defense Market Proof

    +

    A 100% autonomous GitHub Actions proof for defensive SOC alert triage and incident containment planning. No human review, no emails, no invoices, no CloudOps reuse, no customers, no private data, no API keys.

    +

    + View cyber defense proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Silicon Verification Market Proof

    +

    A 100% autonomous GitHub Actions proof for semiconductor RTL verification, bug triage, assertion selection, and fix-plan recommendation. No human review, no emails, no invoices, no CloudOps or cyber reuse, no customers, no private data, no API keys.

    +

    + View silicon verification proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Metamaterials Discovery Market Proof

    +

    A 100% autonomous GitHub Actions proof for scientific/engineering discovery: lightweight metamaterial design, validation-gated RSI, and holdout frontier improvement. No human review, no customers, no private data, no API keys.

    +

    + View discovery proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Corporate Operating System Market Proof

    +

    A 100% autonomous GitHub Actions proof for corporate operating-system diagnosis and board-ready operating-plan generation. No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View corporate RSI proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Unit Economics Profit Engine

    +

    A 100% autonomous GitHub Actions proof for scalable AI workflow marketplace profit capture: pricing, routing, margin, retention, SLA risk, marketplace supply, private skill registries, and value capture. No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View profit engine proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Marketplace Flywheel

    +

    A 100% autonomous GitHub Actions proof for scalable AI-work marketplace liquidity, skill supply, pricing, routing, quality, and compounding business value. No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View marketplace flywheel proof + Run on GitHub +

    +
    +
    +

    Recursive self-improvement

    +

    Autonomous RSI Revenue Experiment Factory

    +

    A 100% autonomous GitHub Actions proof for causal revenue experiments, guardrails, portfolio allocation, and scalable growth-plan selection. No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View experiment factory proof + Run on GitHub +

    +
    +
    +

    Capital-to-capability RSI

    +

    Autonomous RSI Capital-to-Capability Engine

    +

    A 100% autonomous GitHub Actions proof that coordinates a 256-agent specialist organization across capital allocation, compute, energy, data, trust, product, distribution, talent, risk, validation, and reinvestment to test capital-to-capability compounding. No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View capital-to-capability proof + Run on GitHub +

    +
    +
    +

    Adversarial capital-to-capability RSI

    +

    Autonomous RSI Capital-to-Capability Command Center

    +

    A 100% autonomous GitHub Actions proof coordinating a 320-agent specialist organization across 32 roles to test capital, compute, energy, data, trust, talent, product, distribution, validation, risk control, and reinvestment as a compounding business-capability engine. Includes adversarial traps, ablations, pre-registered gates, proof receipts, and safe Kardashev-scale framing.

    +

    + View capability proof + Run on GitHub +

    +
    +
    +

    Adversarial large-scale agentic coordination

    +

    Autonomous RSI Adversarial Multi-Agent Market Command Center

    +

    A 100% autonomous GitHub Actions proof that coordinates a 160-agent specialist collective across 20 business roles, tests adversarial market-capture traps, compares single-agent, uncoordinated-pool, static-coordination, and coordinated-RSI systems, then releases only validation-gated coordination protocols.

    +

    No human review, no customers, no private data, no API keys, and no reuse of previous proof domains.

    +

    + View adversarial multi-agent proof + Run on GitHub +

    +
    + + +
    +
    Protocol Standard
    +

    AEP-001 — GoalOS Proof-of-Evolution Constitution

    +

    + Commit → Execute → Prove → Evolve. The canonical standard for Proof-Carrying Intelligence: + Artifact Vault, Run Fabric, Proof Ledger, and Selection Gate. +

    + Read AEP-001 Constitution → +
    + + +
    +

    Capital-to-capability RSI

    +

    Autonomous RSI Capital-to-Capability Command Center

    +

    A 100% autonomous GitHub Actions proof coordinating a 512-agent specialist organization across 64 roles to test capital, compute, energy, data, trust, talent, product, distribution, validation, risk control, and reinvestment as a compounding productive-capability engine. Includes adversarial traps, ablations, pre-registered gates, proof receipts, and a safe Kardashev-scale boundary.

    +

    + View v17 proof + Run on GitHub +

    +
    + + +
    +

    Proof Gradient · Foundational AEP Stack

    +

    Machine work should leave proof.

    +

    Browse the complete AEP standards stack: protocol, docket, packet, gate, permission, recovery, public proof, and proof room.

    + +
    + + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/platform/goalos-recursive-workflow-os/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/platform/goalos-recursive-workflow-os/index.html new file mode 100644 index 00000000..2940d987 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/platform/goalos-recursive-workflow-os/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Recursive Workflow OS + + + + + + + + + +
    + +
    + + +
    +
    Enterprise RSI

    Enterprise RSI without model self-modification.

    Pilot the Recursive Workflow Operating System for one enterprise workflow family.

    Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run

    Formal platform name

    GoalOS Recursive Workflow OS

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/pricing/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/pricing/index.html new file mode 100644 index 00000000..f67b28b5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/pricing/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Pricing + + + + + + + + + +
    + +
    + + +
    +
    Pricing / Tarifs

    Clear ladder. Clear outcomes.

    $49 → $199 → $997 → $2,500+ → $9,500+ → $49,000+.

    PriceOfferOutcomeType
    $49GoalOS AI Efficiency Sprint Kit
    Trousse GoalOS Sprint d’efficacité IA
    Build one reusable AI workflow.Self-serve digital product
    $199GoalOS RSI Lite
    GoalOS RSI Lite
    Build one self-improving AI workflow.Premium self-serve system
    $997GoalOS Proof Room Lite / Department Pack
    GoalOS Proof Room Lite / Pack Département
    Set up a lightweight department Proof Room.Premium department pack
    $2,500+GoalOS RSI Sprint Workshop
    Atelier GoalOS RSI Sprint
    Build the first self-improving workflow live.Private workshop
    $9,500+GoalOS Proof Room Implementation Sprint
    Sprint de mise en œuvre GoalOS Proof Room
    Department RSI in 30 days.Done-with-you implementation
    $49,000+GoalOS Enterprise RSI Pilot
    GoalOS Enterprise RSI Pilot
    Pilot the Recursive Workflow OS.Enterprise pilot
    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/production.html b/site/_archive/before_unified_shell_v2_2026-06-07/production.html new file mode 100644 index 00000000..6698ebca --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/production.html @@ -0,0 +1,150 @@ + + + + + + Proof Gradient · Production Platform + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Production Platform
    + +

    Production
    Platform.

    +

    A real platform foundation for artifact versioning, runs, traces, evals, selection, rollout, rollback, API, CLI, tenancy, permissions, and observability.

    + +

    The Four Systems

    +
    +
    + Artifact Vault +

    Stores reusable intelligence.

    +

    Stores immutable, versioned, scoped, auditable, rollbackable artifacts.

    +
    + +
    + Run Fabric +

    Executes agents at scale.

    +

    Resolves artifacts, executes stateless runs, records traces, and emits proof.

    +
    + +
    + Proof Ledger +

    Records what happened.

    +

    Append-only evidence for runs, evals, scores, policy decisions, feedback, costs, latency, and credit assignment.

    +
    + +
    + Selection Gate +

    Promotes only what proved itself.

    +

    Evaluates, approves, canaries, monitors, promotes, pauses, and rolls back upgrades.

    +
    +
    +

    Operating Law

    +
    No proof, no evolution.
    +No eval, no propagation.
    +No rollback, no release.
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/ai-efficiency-sprint/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/ai-efficiency-sprint/index.html new file mode 100644 index 00000000..2bb6988e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/ai-efficiency-sprint/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS AI Efficiency Sprint + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 1

    GoalOS AI Efficiency Sprint

    GoalOS AI Efficiency Sprint

    $49

    Turn one repeated AI task into a cheaper, reusable, provable work system in under one hour.

    Transformer une tâche IA répétée en système de travail moins coûteux, réutilisable et prouvable en moins d’une heure.

    +

    Who it is for / Pour qui

    Individuals

    Individus

    The Sprint is a compact self-service system for turning one recurring prompt-heavy task into a reusable GoalOS workflow: Context, Rules, Memory, Workflow, Checks, and Proof.

    Delivery / Livraison

    Paid bilingual digital download delivered through Squarespace after Stripe checkout.

    Téléchargement numérique bilingue payant livré par Squarespace après paiement Stripe.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Context pack template
    • Reusable operating rules
    • Memory and notes structure
    • Workflow map
    • Output checks
    • Proof log for weekly improvement
    +

    Sprint components

    • Context.
    • Rules.
    • Memory.
    • Workflow.
    • Checks.
    • Proof.
    +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/department-proof-room-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/department-proof-room-lite/index.html new file mode 100644 index 00000000..8dd33ca0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/department-proof-room-lite/index.html @@ -0,0 +1,78 @@ + + + + + + GoalOS Department Pack / Proof Room Lite · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Department
    +

    GoalOS Department Pack / Proof Room Lite

    +

    Turn scattered department AI use into a lightweight proof room.

    + +
    +
    +
    Price
    +
    $499–$999
    +
    • Task inventory
    • Proof Room Lite charter
    • AI permission map
    • Weekly proof review
    • Monthly proof report
    • Correction / rollback templates
    +
    +
    +
    +

    Best for

    Department buyers who want a self-serve, low-friction implementation path.

    +

    Boundary

    No income guarantee. No ROI guarantee. No compliance certification. Human review required.

    +
    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html new file mode 100644 index 00000000..47a61665 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/enterprise-proof-room-agent-control-plane/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS Proof Room / Agent Control Plane + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 5

    GoalOS Proof Room / Agent Control Plane

    GoalOS Proof Room / Agent Control Plane

    Enterprise

    Govern AI-agent adoption by turning agent work into reusable, checked, auditable, and rollbackable institutional capability.

    Gouverner l’adoption des agents IA en transformant leur travail en capacité institutionnelle réutilisable, vérifiée, auditable et rollbackable.

    +

    Who it is for / Pour qui

    Enterprises and regulated institutions

    Entreprises et institutions réglementées

    The Enterprise Proof Room / Agent Control Plane frames agent adoption as governed, auditable capability rather than uncontrolled automation.

    Delivery / Livraison

    Enterprise discovery, Proof Room pilot, Agent Control Plane architecture, and governed rollout design.

    Découverte entreprise, pilote Proof Room, architecture Agent Control Plane et design de déploiement gouverné.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Enterprise discovery
    • Proof Room pilot design
    • Agent Control Plane architecture
    • Evidence and rollback model
    • Governed rollout design
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html new file mode 100644 index 00000000..a901ac2d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-ai-efficiency-sprint-kit/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS AI Efficiency Sprint Kit + + + + + + + + + +
    + +
    + + +
    +
    $49 · Self-serve digital product

    GoalOS AI Efficiency Sprint Kit

    Trousse GoalOS Sprint d’efficacité IA

    Build one reusable AI workflow.

    $49

    What it includes

    • 60-minute first win
    • offline builder
    • copy-paste prompts
    • editable templates
    • proof note

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-cloud-mvp/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-cloud-mvp/index.html new file mode 100644 index 00000000..20bd035a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-cloud-mvp/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Cloud MVP 0.2 + + + + + + + + + +
    + +
    + + +
    +
    GoalOS Cloud MVP 0.2

    Enterprise recursive workflow proof, running in software.

    A public MVP proving: Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run.

    What it proves

    1Workflow Studio
    2Evaluation Engine
    3Proof Room
    4Improvement Proposal
    5Approval Gate
    6Rollback Target
    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-pilot/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-pilot/index.html new file mode 100644 index 00000000..86b72e85 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-pilot/index.html @@ -0,0 +1,41 @@ + + +GoalOS Recursive AI Operating System — Enterprise Pilot · Proof Gradient + + + + + + +
    + +
    + + + + + +
    $49,000+ · Future enterprise pilot

    GoalOS Recursive AI Operating System — Enterprise Pilot

    GoalOS Recursive AI Operating System — Pilote entreprise

    Pilot the enterprise operating layer for recursive AI workflows.

    Piloter la couche opérationnelle entreprise pour les flux IA récursifs.

    $49,000+

    Outcome

    Explore Workflow Studio, Execution Engine, Evaluation Engine, Proof Room, Recursive Improvement Engine, governance, model gateway, memory, audit, and rollback architecture.

    • Workflow Studio
    • Execution Engine
    • Evaluation Engine
    • Proof Room
    • Recursive Improvement Engine
    • Governance
    • Model Gateway
    • Audit logs
    • Benchmarking
    • Rollback controls

    Safe boundary / Limite claire

    GoalOS does not modify AI models. It improves workflows around AI through instructions, checks, scorecards, proof notes, versions, approvals, and human review.

    GoalOS ne modifie pas les modèles IA. Il améliore les flux autour de l’IA grâce aux instructions, vérifications, grilles de score, notes de preuve, versions, approbations et revue humaine.

    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html new file mode 100644 index 00000000..78c82838 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-enterprise-rsi-pilot/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Enterprise RSI Pilot + + + + + + + + + +
    + +
    + + +
    +
    $49,000+ · Enterprise pilot

    GoalOS Enterprise RSI Pilot

    GoalOS Enterprise RSI Pilot

    Pilot the Recursive Workflow OS.

    $49,000+

    What it includes

    • 90-day pilot
    • workflow family
    • benchmark
    • proof records
    • v1.1 proposal
    • architecture blueprint

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html new file mode 100644 index 00000000..34ebff98 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-implementation-sprint/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Proof Room Implementation Sprint + + + + + + + + + +
    + +
    + + +
    +
    $9,500+ · Done-with-you implementation

    GoalOS Proof Room Implementation Sprint

    Sprint de mise en œuvre GoalOS Proof Room

    Department RSI in 30 days.

    $9,500+

    What it includes

    • 3 workflows
    • permission map
    • proof review
    • monthly report
    • rollback procedure
    • case study

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-lite/index.html new file mode 100644 index 00000000..0493dfda --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-proof-room-lite/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Proof Room Lite / Department Pack + + + + + + + + + +
    + +
    + + +
    +
    $997 · Premium department pack

    GoalOS Proof Room Lite / Department Pack

    GoalOS Proof Room Lite / Pack Département

    Set up a lightweight department Proof Room.

    $997

    What it includes

    • owners
    • permissions
    • proof notes
    • weekly reviews
    • executive reports
    • rollback
    • public-safe proof

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-lite/index.html new file mode 100644 index 00000000..d906d3ff --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-lite/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS RSI Lite + + + + + + + + + +
    + +
    + + +
    +
    $199 · Premium self-serve system

    GoalOS RSI Lite

    GoalOS RSI Lite

    Build one self-improving AI workflow.

    $199

    What it includes

    • Run
    • Score
    • Diagnose
    • Improve
    • Version
    • Prove
    • Re-run

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-sprint-workshop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-sprint-workshop/index.html new file mode 100644 index 00000000..795a8fc9 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/goalos-rsi-sprint-workshop/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS RSI Sprint Workshop + + + + + + + + + +
    + +
    + + +
    +
    $2,500+ · Private workshop

    GoalOS RSI Sprint Workshop

    Atelier GoalOS RSI Sprint

    Build the first self-improving workflow live.

    $2,500+

    What it includes

    • workflow v1.0
    • first run
    • scorecard
    • diagnosis
    • workflow v1.1
    • proof note

    Boundary

    No guaranteed ROI, income, compliance certification, safety guarantee, legal advice, or uncontrolled autonomous deployment. Human review required.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/index.html new file mode 100644 index 00000000..60e1ed88 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/index.html @@ -0,0 +1,76 @@ + + + + + + GoalOS Products + + + + + + + + + +
    + +
    + + +
    +
    Products / Produits

    Choose your GoalOS path.

    Start with one reusable AI workflow, upgrade to self-improving workflows, then install Proof Rooms and Enterprise RSI.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html new file mode 100644 index 00000000..ffcef4a2 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/nation-state-ai-leverage-proof-infrastructure/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS Nation-State AI Leverage & Proof Infrastructure + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 6

    GoalOS Nation-State AI Leverage & Proof Infrastructure

    GoalOS Nation-State AI Leverage & Proof Infrastructure

    Nation-State

    Turn national AI access into trusted, efficient, reusable, and provable capability.

    Transformer l’accès national à l’IA en capacité fiable, efficace, réutilisable et prouvable.

    +

    Who it is for / Pour qui

    Governments and public institutions

    Gouvernements et institutions publiques

    The Nation-State layer helps public institutions reason about efficient, reusable, evidence-governed AI capability without claiming endorsement or readiness.

    Delivery / Livraison

    Nation-state discovery, Proof Room portfolio design, public-sector adoption architecture, and evidence-governance roadmap.

    Découverte Nation-State, design de portefeuille Proof Room, architecture d’adoption secteur public et feuille de route gouvernance-preuve.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Nation-state discovery
    • Proof Room portfolio design
    • Public-sector adoption architecture
    • Evidence-governance roadmap
    • Briefing materials
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/proof-page-template-pack/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/proof-page-template-pack/index.html new file mode 100644 index 00000000..7db397ea --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/proof-page-template-pack/index.html @@ -0,0 +1,78 @@ + + + + + + Proof Page Template Pack · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Order bump
    +

    Proof Page Template Pack

    +

    Extra proof-page examples and claim-boundary templates.

    + +
    +
    +
    Price
    +
    $29
    +
    • 10 proof-page templates
    • 10 claim-boundary examples
    • Public-safe proof cards
    • Proof-note prompts
    +
    +
    +
    +

    Best for

    Order bump buyers who want a self-serve, low-friction implementation path.

    +

    Boundary

    No income guarantee. No ROI guarantee. No compliance certification. Human review required.

    +
    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/sme-ai-adoption-sprint/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/sme-ai-adoption-sprint/index.html new file mode 100644 index 00000000..395fea1f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/sme-ai-adoption-sprint/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS SME AI Adoption Sprint + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 4

    GoalOS SME AI Adoption Sprint

    GoalOS SME AI Adoption Sprint

    From $15,000

    Turn one repeated SME business task into a reusable, checked, and provable AI work system — then leave with a 90-day adoption roadmap.

    Transformer une tâche d’affaires répétée de PME en système de travail IA réutilisable, vérifié et prouvable — puis repartir avec une feuille de route d’adoption de 90 jours.

    +

    Who it is for / Pour qui

    Small and medium-sized businesses

    PME

    The SME Adoption Sprint is a scoped premium engagement for small and medium-sized businesses that need an adoption roadmap grounded in one concrete workflow.

    Delivery / Livraison

    Premium bilingual SME adoption engagement after discovery and scoping.

    Engagement bilingue premium d’adoption IA pour PME après découverte et cadrage.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Discovery and scoping
    • One SME workflow converted into a proof-ready AI work system
    • Risk and evidence notes
    • 90-day adoption roadmap
    • Executive summary
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-country-ai-operating-system/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-country-ai-operating-system/index.html new file mode 100644 index 00000000..ee41365f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-country-ai-operating-system/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS Sovereign Country AI Operating System + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 8

    GoalOS Sovereign Country AI Operating System

    GoalOS Sovereign Country AI Operating System

    Sovereign Country

    Turn national AI access into a sovereign country operating system for trusted, efficient, reusable, and provable AI capability.

    Transformer l’accès national à l’IA en système d’exploitation souverain pour une capacité IA fiable, efficace, réutilisable et prouvable.

    +

    Who it is for / Pour qui

    Countries and national AI strategies

    Pays et stratégies nationales d’IA

    The Sovereign Country AI Operating System frames country-scale AI adoption as an operating-system architecture for proof, governance, rollout, rollback, and trust.

    Delivery / Livraison

    Country-scale AI operating-system architecture for sovereign AI adoption, proof, governance, rollout, rollback, and public trust.

    Architecture de système d’exploitation IA à l’échelle d’un pays pour adoption IA souveraine, preuve, gouvernance, déploiement, rollback et confiance publique.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Country-scale AI operating-system architecture
    • Proof and governance design
    • Rollout and rollback architecture
    • Public trust model
    • Strategy briefing
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-empire-ai-operating-system/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-empire-ai-operating-system/index.html new file mode 100644 index 00000000..68a4408c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-empire-ai-operating-system/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS Sovereign Empire AI Operating System + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 9

    GoalOS Sovereign Empire AI Operating System

    GoalOS Sovereign Empire AI Operating System

    Sovereign Empire

    Turn multi-country AI access into trusted, efficient, reusable, and provable sovereign capability.

    Transformer l’accès IA multi-pays en capacité souveraine fiable, efficace, réutilisable et prouvable.

    +

    Who it is for / Pour qui

    Multi-country, multi-jurisdiction, allied sovereign networks

    Réseaux souverains alliés, multi-pays et multi-juridictions

    The Sovereign Empire AI Operating System describes a voluntary proof-governed network model for allied sovereign institutions and jurisdictions.

    Delivery / Livraison

    Multi-country, consent-based, proof-governed AI operating-system architecture for allied sovereign institutions.

    Architecture de système d’exploitation IA multi-pays, fondée sur le consentement et gouvernée par la preuve pour institutions souveraines alliées.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Consent-based multi-country architecture
    • Proof-governed capability network design
    • Allied institutional coordination model
    • Evidence and public trust framework
    • Non-domination boundary design
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    +

    Non-domination boundary / Limite de non-domination

    Sovereign Empire means a voluntary, consent-based, proof-governed capability network across sovereign institutions and allied jurisdictions. It does not mean territorial control, domination, coercion, colonial authority, or sovereignty transfer.

    Empire souverain signifie un réseau volontaire, fondé sur le consentement et gouverné par la preuve entre institutions souveraines et juridictions alliées. Cela ne signifie pas contrôle territorial, domination, coercition, autorité coloniale ni transfert de souveraineté.

    + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-nation-state/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-nation-state/index.html new file mode 100644 index 00000000..d1399b03 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/sovereign-nation-state/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS Sovereign Nation-State AI Leverage & Proof Infrastructure + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 7

    GoalOS Sovereign Nation-State AI Leverage & Proof Infrastructure

    GoalOS Sovereign Nation-State AI Leverage & Proof Infrastructure

    Sovereign

    Turn national AI access into trusted, efficient, reusable, and provable sovereign capability.

    Transformer l’accès national à l’IA en capacité souveraine fiable, efficace, réutilisable et prouvable.

    +

    Who it is for / Pour qui

    Sovereign public institutions

    Institutions publiques souveraines

    The Sovereign Nation-State layer focuses on proof rooms, evidence dockets, selection gates, rollout, rollback, and public trust design.

    Delivery / Livraison

    Sovereign AI discovery, national control-plane architecture, public-sector Proof Rooms, Evidence Dockets, Selection Gates, rollout, rollback, and public trust design.

    Découverte IA souveraine, architecture nationale de contrôle, Proof Rooms secteur public, Evidence Dockets, Selection Gates, déploiement, rollback et design de confiance publique.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Sovereign AI discovery
    • National control-plane architecture
    • Public-sector Proof Room design
    • Evidence Dockets and Selection Gates
    • Rollout, rollback, and public trust design
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/team-pack/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/team-pack/index.html new file mode 100644 index 00000000..0c9fca4f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/team-pack/index.html @@ -0,0 +1,78 @@ + + + + + + GoalOS AI Efficiency Sprint Team Pack · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Team / Workshop
    +

    GoalOS AI Efficiency Sprint Team Pack

    +

    Run the sprint with coworkers, clients, students, or a small team.

    + +
    +
    +
    Price
    +
    $199
    +
    • Team workshop agenda
    • Manager facilitation guide
    • Role assignment sheet
    • Rollout checklist
    • Team scoring rubric
    +
    +
    +
    +

    Best for

    Team / Workshop buyers who want a self-serve, low-friction implementation path.

    +

    Boundary

    No income guarantee. No ROI guarantee. No compliance certification. Human review required.

    +
    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/workflow-vault/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/workflow-vault/index.html new file mode 100644 index 00000000..20daeb3c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/workflow-vault/index.html @@ -0,0 +1,78 @@ + + + + + + GoalOS Workflow Vault · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Recurring
    +

    GoalOS Workflow Vault

    +

    Monthly reusable workflow drops, proof cards, and claim-boundary examples.

    + +
    +
    +
    Price
    +
    $29–$99/mo
    +
    • New workflow drops
    • New proof-note examples
    • Department templates
    • Public-safe proof cards
    +
    +
    +
    +

    Best for

    Recurring buyers who want a self-serve, low-friction implementation path.

    +

    Boundary

    No income guarantee. No ROI guarantee. No compliance certification. Human review required.

    +
    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/products/workshop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/products/workshop/index.html new file mode 100644 index 00000000..2f77e99d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/products/workshop/index.html @@ -0,0 +1,79 @@ + + + + + + GoalOS AI Efficiency Workshop + + + + + + + + +
    + +
    + + + + + + + + + + + + +
    + + + +

    GoalOS product 3

    GoalOS AI Efficiency Workshop

    Atelier GoalOS AI Efficiency

    $2,500

    Turn one repeated organizational AI task into a reusable, checked, and provable work system in one live workshop.

    Transformer une tâche IA répétée de l’organisation en système de travail réutilisable, vérifié et prouvable en un atelier en direct.

    +

    Who it is for / Pour qui

    Organizations

    Organisations

    The Workshop is a live bilingual engagement for organizations that want facilitated conversion of one repeated AI task into a checked proof-ready workflow.

    Delivery / Livraison

    Live bilingual workshop with scheduling after purchase or inquiry.

    Atelier bilingue en direct avec planification après achat ou demande.

    Squarespace hosts the public sales or inquiry page. Stripe processes payment through Squarespace where applicable. GitHub does not host paid buyer packages.

    Squarespace héberge la page publique de vente ou de demande. Stripe traite le paiement via Squarespace lorsque applicable. GitHub n’héberge pas les forfaits payants destinés aux acheteurs.

    +

    What the buyer or client receives

    • Live bilingual workshop
    • One repeated organizational workflow mapped
    • Reusable context and rules
    • Checks and proof artifacts
    • Implementation next steps
    + +

    Proof standard

    This public page points to AEP-001 — GoalOS Proof-of-Evolution Constitution as the current proof standard for GoalOS proof claims.

    Cette page publique renvoie à AEP-001 — GoalOS Proof-of-Evolution Constitution comme standard actuel de preuve pour les revendications de preuve GoalOS.

    +

    Claim boundary / Limite des revendications

    +

    Independent initiative by QUEBEC.AI / MONTREAL.AI. Not affiliated with, sponsored by, or endorsed by the Government of Canada unless a formal agreement is separately executed. This page does not provide legal, financial, procurement, medical, compliance, national-security, or investment advice. No ROI, certification, production deployment, AGI, ASI, sovereign outcome, or public-sector adoption result is guaranteed.

    +

    Initiative indépendante de QUEBEC.AI / MONTREAL.AI. Non affiliée, commanditée ni approuvée par le gouvernement du Canada sauf accord formel séparé. Cette page ne fournit pas de conseils juridiques, financiers, d’approvisionnement, médicaux, de conformité, de sécurité nationale ni d’investissement. Aucun ROI, certification, déploiement en production, AGI, ASI, résultat souverain ni résultat d’adoption du secteur public n’est garanti.

    +
    + + +
    +
    +

    Commit → Execute → Prove → Evolve

    +

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proof-room-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/proof-room-lite/index.html new file mode 100644 index 00000000..39410b28 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proof-room-lite/index.html @@ -0,0 +1,41 @@ + + +Proof Room Lite · GoalOS + + + + + + +
    + +
    + + + + + +
    Proof Room Lite

    Set up a lightweight department Proof Room.

    Owners. Permissions. Checks. Proof notes. Weekly reviews. Monthly reports. Corrections. Rollback receipts. Public-safe proof.

    A department does not need AI chaos. It needs a room for proof.

    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/001-sovereign-swarm.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/001-sovereign-swarm.html new file mode 100644 index 00000000..56231396 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/001-sovereign-swarm.html @@ -0,0 +1,130 @@ + + + + + + Proof #1 — Sovereign Swarm + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #1 — Sovereign Swarm

    +

    A deterministic large multi-agent coordination lattice.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 96,
    +  "verdict": "large_multi_agent_coordination_proven_deterministically"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 96,
    +  "verdict": "large_multi_agent_coordination_proven_deterministically"
    +}
    +

    Checksum

    +
    79821d78a9ffecaa522b7c8ca524e4c1021cb061322fb8fc194843273c660f83
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/002-evolution-tournament.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/002-evolution-tournament.html new file mode 100644 index 00000000..a778b22e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/002-evolution-tournament.html @@ -0,0 +1,132 @@ + + + + + + Proof #2 — Evolution Tournament + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #2 — Evolution Tournament

    +

    Candidates compete against baselines; only proven artifacts earn canary.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 144,
    +  "case_count": 72,
    +  "verdict": "candidate_artifacts_beat_baselines_without_safety_regression"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 144,
    +  "case_count": 72,
    +  "verdict": "candidate_artifacts_beat_baselines_without_safety_regression"
    +}
    +

    Checksum

    +
    94078167ec8eb8e5789caa3972a492b739865e51feeb5da5ae611e0052c1a7f0
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/003-recursive-evolution-ladder.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/003-recursive-evolution-ladder.html new file mode 100644 index 00000000..d63952d4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/003-recursive-evolution-ladder.html @@ -0,0 +1,132 @@ + + + + + + Proof #3 — Recursive Evolution Ladder + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #3 — Recursive Evolution Ladder

    +

    Selected artifacts become the next baseline; unsafe evolution is rejected and rolled back.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 240,
    +  "generation_count": 5,
    +  "verdict": "recursive_evolution_proven_with_selection_rejection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 240,
    +  "generation_count": 5,
    +  "verdict": "recursive_evolution_proven_with_selection_rejection_and_rollback"
    +}
    +

    Checksum

    +
    14f95b60ea5a76069ba251814950c217f3554f0079e7003638b824ec75a0d87a
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/004-corporate-rsi-dominion.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/004-corporate-rsi-dominion.html new file mode 100644 index 00000000..64fefd7a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/004-corporate-rsi-dominion.html @@ -0,0 +1,132 @@ + + + + + + Proof #4 — Corporate RSI Dominion + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #4 — Corporate RSI Dominion

    +

    Corporate-domain RSI for the AI-first enterprise era.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 512,
    +  "eval_case_count": 6144,
    +  "verdict": "corporate_rsi_value_compounding_proven_deterministically_with_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 512,
    +  "eval_case_count": 6144,
    +  "verdict": "corporate_rsi_value_compounding_proven_deterministically_with_selection_and_rollback"
    +}
    +

    Checksum

    +
    9d33244317489ab4e375954bcd49704566afe134a5c66833f8637cf008e6826d
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/005-enterprise-rsi-superorganism.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/005-enterprise-rsi-superorganism.html new file mode 100644 index 00000000..eb89fde7 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/005-enterprise-rsi-superorganism.html @@ -0,0 +1,132 @@ + + + + + + Proof #5 — Enterprise RSI Superorganism + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #5 — Enterprise RSI Superorganism

    +

    An AI-first corporate operating system that recursively improves enterprise artifacts.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 2048,
    +  "eval_case_count": 49152,
    +  "verdict": "enterprise_rsi_superorganism_proven_deterministically_with_meta_rsi_capital_allocation_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 2048,
    +  "eval_case_count": 49152,
    +  "verdict": "enterprise_rsi_superorganism_proven_deterministically_with_meta_rsi_capital_allocation_selection_and_rollback"
    +}
    +

    Checksum

    +
    bba9286673c5f3e368f39b985aadb3349a0c9773c0f34b942a1a990fc57a2fcb
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/006-sovereign-enterprise-constellation.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/006-sovereign-enterprise-constellation.html new file mode 100644 index 00000000..3c04816c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/006-sovereign-enterprise-constellation.html @@ -0,0 +1,132 @@ + + + + + + Proof #6 — Sovereign Enterprise Constellation + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #6 — Sovereign Enterprise Constellation

    +

    A network of sovereign enterprises recursively improving through federation and proof markets.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 9216,
    +  "eval_case_count": 491520,
    +  "verdict": "sovereign_enterprise_constellation_proven_deterministically_with_federated_rsi_proof_markets_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 9216,
    +  "eval_case_count": 491520,
    +  "verdict": "sovereign_enterprise_constellation_proven_deterministically_with_federated_rsi_proof_markets_selection_and_rollback"
    +}
    +

    Checksum

    +
    263a165059b7c771556edfb97e036c57379ecd31ef2d24e7c13404c997c8cbde
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html new file mode 100644 index 00000000..dacb918a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/007-sovereign-enterprise-proof-economy.html @@ -0,0 +1,132 @@ + + + + + + Proof #7 — Sovereign Enterprise Proof Economy + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #7 — Sovereign Enterprise Proof Economy

    +

    A proof market where sovereign enterprises price, route, adopt, reject, and compound reusable intelligence.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 65536,
    +  "eval_case_count": 2097152,
    +  "verdict": "sovereign_enterprise_proof_economy_proven_deterministically_with_pricing_reputation_federated_adoption_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 65536,
    +  "eval_case_count": 2097152,
    +  "verdict": "sovereign_enterprise_proof_economy_proven_deterministically_with_pricing_reputation_federated_adoption_selection_and_rollback"
    +}
    +

    Checksum

    +
    8eae96e64dba97eec3da7e9e3e9f44e37e8eabfc046b4c8ee3d7c791f8df1498
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/008-sovereign-domain-atlas.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/008-sovereign-domain-atlas.html new file mode 100644 index 00000000..2fd08bd7 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/008-sovereign-domain-atlas.html @@ -0,0 +1,132 @@ + + + + + + Proof #8 — Sovereign Domain Atlas + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #8 — Sovereign Domain Atlas

    +

    An institutional RSI atlas across sovereign domains.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 262144,
    +  "eval_case_count": 16777216,
    +  "verdict": "sovereign_domain_atlas_proven_deterministically_with_institutional_graphs_domain_routing_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 262144,
    +  "eval_case_count": 16777216,
    +  "verdict": "sovereign_domain_atlas_proven_deterministically_with_institutional_graphs_domain_routing_selection_and_rollback"
    +}
    +

    Checksum

    +
    2ebe8a9368c057b0c46fb823eedef49e5e60662a2438b3eae63245e976609e5a
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html new file mode 100644 index 00000000..b04f67c8 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/009-sovereign-kardashev-capital-engine.html @@ -0,0 +1,132 @@ + + + + + + Proof #9 — Sovereign Kardashev Capital Engine + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #9 — Sovereign Kardashev Capital Engine

    +

    A capital–compute–energy RSI engine for sovereign domains, framed as a Kardashev scenario lab.

    +

    passed

    + +

    Summary

    +
    {
    +  "agent_count": 1048576,
    +  "eval_case_count": 134217728,
    +  "verdict": "sovereign_kardashev_capital_engine_proven_deterministically_with_goals_plans_skills_capital_compute_energy_routing_selection_and_rollback"
    +}
    + +

    Evidence

    +
    {
    +  "agent_count": 1048576,
    +  "eval_case_count": 134217728,
    +  "verdict": "sovereign_kardashev_capital_engine_proven_deterministically_with_goals_plans_skills_capital_compute_energy_routing_selection_and_rollback"
    +}
    +

    Checksum

    +
    7c452039b494ddb47d9e1118f73beb011695ad1f6d383cff9fdad41bdf0cfbaf
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/010-proof-carrying-intelligence.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/010-proof-carrying-intelligence.html new file mode 100644 index 00000000..f0327966 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/010-proof-carrying-intelligence.html @@ -0,0 +1,20112 @@ + + + + + + Proof #10 — Proof-Carrying Intelligence + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #10 — Proof-Carrying Intelligence

    +

    The Agent Evolution Protocol: Commit → Execute → Prove → Evolve.

    +

    passed

    + +

    Summary

    +
    {
    +  "protocol": "Commit \u2192 Execute \u2192 Prove \u2192 Evolve",
    +  "agents": 4194304,
    +  "guilds": 256,
    +  "sovereign_domains": 2048,
    +  "rsi_cycles": 256,
    +  "eval_cases": 1073741824,
    +  "commits": 524288,
    +  "executions": 524288,
    +  "proofs": 524288,
    +  "selected_upgrades": 522246,
    +  "rejected_upgrades": 2042,
    +  "rollbacks": 2042,
    +  "meta_rsi_upgrades": 32,
    +  "goals_used": 4,
    +  "plans_used": 4,
    +  "skills_used": 8,
    +  "policies_used": 3,
    +  "evals_used": 4,
    +  "synthetic_network_index_final": 11200043.075,
    +  "synthetic_kardashev_scenario_index_final": 0.00360164,
    +  "verdict": "proof_carrying_intelligence_protocol_proven_deterministically_with_commit_execute_prove_evolve_and_evolution_gate"
    +}
    + +

    Institutional Graphs

    + +
    +

    Agent Evolution Protocol

    + + + Commit → Execute → Prove → Evolve + Anything that changes must carry Proof. Anything that propagates must pass the Evolution Gate. + + + Commit + mission becomes contract + + + + + + Execute + artifacts run statelessly + + + + + + Prove + execution carries evidence + + + + + + Evolve + upgrades pass the gate + + +
    + + +
    +

    Capital–Compute–Energy–Trust Flywheel

    + + + + + + + + + + + Capital + + + Compute + + + Energy + + + Trust + + + Proof + + Proof is the clearing layer. Evolution routes capital, compute, energy, and trust toward verified artifacts. + +
    + + +
    +

    Synthetic Network Index

    + + + + + + Cycle 1: 100461.0Cycle 16: 109059.401Cycle 32: 122314.856Cycle 48: 141067.536Cycle 64: 167296.011Cycle 80: 204001.634Cycle 96: 255770.393Cycle 112: 329696.653Cycle 128: 436923.685Cycle 144: 595254.446Cycle 160: 833652.399Cycle 176: 1200140.312Cycle 192: 1775918.934Cycle 208: 2701082.514Cycle 224: 4222364.689Cycle 240: 6783540.936Cycle 256: 11200043.075 + network index: 100461.0 → 11200043.075 + 256 RSI cycles + +
    + + +
    +

    Synthetic Kardashev Scenario Index

    + + + + + + Cycle 1: 3.59e-06Cycle 16: 5.324e-05Cycle 32: 0.00012852Cycle 48: 0.00022684Cycle 64: 0.0003482Cycle 80: 0.0004926Cycle 96: 0.00066004Cycle 112: 0.00085052Cycle 128: 0.00106404Cycle 144: 0.0013006Cycle 160: 0.0015602Cycle 176: 0.00184284Cycle 192: 0.00214852Cycle 208: 0.00247724Cycle 224: 0.002829Cycle 240: 0.0032038Cycle 256: 0.00360164 + scenario index: 3.59e-06 → 0.00360164 + 256 RSI cycles + +
    + + +
    +

    Evolution Gate Funnel

    + + + Only proof-carrying upgrades propagate + + Proposed + + 2048 + + Evaluated + + 2048 + + Canaried + + 2038 + + Promoted + + 2038 + + Rolled back + + 10 + + +
    + + +

    The Four Primitives

    +
    PrimitiveRoleExplanationSlogan
    CommitThe mission becomes explicit.A Commit turns a prompt into a contract: goal, success criteria, constraints, risk, budget, tools, evals, approvals, and rollback rules.A prompt is a wish. A Commit is a contract.
    ExecuteThe system runs active artifacts.Execution Fabric resolves goal artifacts, plan graphs, skills, tools, policies, context, approvals, and eval checks.The agent does not carry the universe. It resolves, runs, and emits proof.
    ProveEvery execution creates evidence.Proof contains trace, score, feedback, tool history, policy decisions, cost, latency, errors, and credit assignment.Without Proof, learning is mythology.
    EvolveProof can earn a governed upgrade.Evolution upgrades goals, plans, skills, policies, evals, tools, contexts, and routing rules only after eval, approval, canary, monitoring, rollback, and scope control.Only proven intelligence propagates.
    + +

    The Four Systems

    +
    SystemPromiseMeaning
    Artifact Vaultstores reusable intelligenceStores every immutable, versioned, scoped, signed, auditable, rollbackable artifact.
    Execution Fabricexecutes agents at scaleResolves artifacts, executes stateless runs, and emits proof at network scale.
    Proof Ledgerrecords what happenedAppend-only memory of commitments, executions, traces, evals, scores, feedback, upgrades, releases, and rollback events.
    Evolution Gatepromotes only what proved itselfProposes, evaluates, approves, canaries, promotes, monitors, and rolls back upgrades.
    + +

    GoalOS / Aim Artifacts Used

    +
    ArtifactClassGoalExplanationSuccess Criteria
    sovereign_kardashev_direction@2.0.0GoalOS / Aim ArtifactSovereign Kardashev DirectionFrames civilization-scale capital-compute-energy ambition as a proof-bounded scenario, not an achieved fact.proof carried, claim boundary preserved, rollback available
    proof_carrying_network_goal@1.0.0GoalOS / Aim ArtifactProof-Carrying Network GoalTurns every job into a commitment and every upgrade into proof-carrying intelligence.commit created, execution recorded, proof emitted, evolution gated
    sovereign_value_compounding_goal@1.0.0GoalOS / Aim ArtifactSovereign Value Compounding GoalModels sovereign-domain improvement through synthetic value units, not revenue or profit.synthetic index improves, no ROI claim, no real revenue claim
    network_safety_goal@1.0.0GoalOS / Aim ArtifactNetwork Safety GoalRequires every propagation to preserve sovereignty, privacy, policy, eval, canary, and rollback.no private data shared, local eval required, rollback required
    + +

    PlanOS / Strategy Artifacts Used

    +
    ArtifactClassPlanExplanationSteps
    commit_execute_prove_evolve_plan@1.0.0PlanOS / Strategy ArtifactCommit–Execute–Prove–Evolve PlanThe canonical Proof-Carrying Intelligence loop.commit → execute → prove → evolve
    capital_compute_energy_trust_plan@1.0.0PlanOS / Strategy ArtifactCapital–Compute–Energy–Trust Routing PlanRoutes synthetic capital, compute, energy, and trust toward proof-backed sovereign-domain winners.score → rank → route → canary → monitor → rollback
    evolution_gate_plan@1.0.0PlanOS / Strategy ArtifactEvolution Gate PlanPrevents unproven upgrades from propagating across the network.propose → evaluate → approve → canary → promote → monitor → rollback
    kardashev_scenario_boundary_plan@1.0.0PlanOS / Strategy ArtifactKardashev Scenario Boundary PlanEnsures civilization-scale language remains labeled as strategic scenario unless empirical evidence exists.label scenario → check proof → block overclaim → publish boundary
    + +

    SkillOS / Capability Artifacts Used

    +
    ArtifactClassSkillExplanation
    commit_contract_skill@1.0.0SkillOS / Capability ArtifactCommit Contract SkillTurns a job into an explicit contract with success criteria, constraints, risk, tools, evals, approvals, and rollback rules.
    stateless_execution_skill@1.0.0SkillOS / Capability ArtifactStateless Execution SkillExecutes resolved artifacts without forcing agents to carry the whole network.
    proof_emission_skill@1.0.0SkillOS / Capability ArtifactProof Emission SkillEmits trace, score, policy, cost, latency, tool history, and feedback events.
    credit_assignment_skill@2.0.0SkillOS / Capability ArtifactCredit Assignment SkillAssigns improvement or failure to the correct artifact: goal, plan, skill, tool, policy, eval, context, routing, or runtime.
    evolution_patch_skill@1.0.0SkillOS / Capability ArtifactEvolution Patch SkillCreates typed proof-backed upgrades that can be evaluated against baselines.
    capital_compute_energy_router_skill@1.0.0SkillOS / Capability ArtifactCapital–Compute–Energy Router SkillRoutes synthetic capital, compute, energy, and trust based on proof-backed selection.
    claim_boundary_skill@2.0.0SkillOS / Capability ArtifactClaim Boundary SkillBlocks unsupported claims about real revenue, ROI, superintelligence, energy capture, or Kardashev achievement.
    rollback_skill@1.0.0SkillOS / Capability ArtifactRollback SkillRestores the last safe baseline when an upgrade fails eval, policy, canary, or sovereignty checks.
    + +

    Policy / Guardrail Artifacts Used

    +
    ArtifactClassPolicyExplanation
    no_unproven_propagation_policy@1.0.0Policy / Guardrail ArtifactNo Unproven Propagation PolicyNo upgrade can spread without proof, evals, canary, and rollback.
    sovereign_privacy_policy@1.0.0Policy / Guardrail ArtifactSovereign Privacy PolicyOnly generalized, redacted, eval-passed artifacts can move across domains.
    kardashev_claim_boundary_policy@1.0.0Policy / Guardrail ArtifactKardashev Claim Boundary PolicyKardashev-scale language is scenario language unless supported by empirical physical-world proof.
    + +

    Eval / Judgment Artifacts Used

    +
    ArtifactClassEvalExplanation
    commit_integrity_eval@1.0.0Eval / Judgment ArtifactCommit Integrity EvalChecks that every job has a complete commit contract.
    proof_completeness_eval@1.0.0Eval / Judgment ArtifactProof Completeness EvalChecks that every execution emits trace, score, credit assignment, and policy decisions.
    evolution_gate_eval@1.0.0Eval / Judgment ArtifactEvolution Gate EvalChecks that every upgrade passes baseline comparison, canary, monitoring, and rollback readiness.
    scenario_boundary_eval@1.0.0Eval / Judgment ArtifactScenario Boundary EvalChecks that synthetic Kardashev, value, capital, compute, and energy indices are not presented as real-world results.
    + +

    Capital / Compute / Energy / Trust Routing

    +
    RouteAllocated DomainsRule
    Capital256route synthetic capital to proof-backed winners with no safety regression
    Compute384route synthetic compute to domains with positive proof deltas and low rollback risk
    Energy256route synthetic energy to capital-compute-energy flywheel winners
    Trust192route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk
    + +

    Claim-Boundary Ledger

    +
    Claim BoundaryStatus
    Vision treatmentstrategic scenario, not empirical claim
    Real revenue claimedFalse
    Guaranteed ROI claimedFalse
    Actual deployed superintelligence claimedFalse
    Kardashev Type II achieved claimedFalse
    Real-world energy capture claimedFalse
    Private data sharedFalse
    Rollback requiredTrue
    + +

    Meta-RSI Upgrade Ledger

    +
    CycleUpgradeMeaning
    8execution_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    16proof_compression_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    24credit_assignment_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    32evolution_gate_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    40rollback_predictor_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    48capital_compute_energy_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    56claim_boundary_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    64commit_schema_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    72execution_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    80proof_compression_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    88credit_assignment_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    96evolution_gate_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    104rollback_predictor_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    112capital_compute_energy_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    120claim_boundary_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    128commit_schema_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    136execution_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    144proof_compression_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    152credit_assignment_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    160evolution_gate_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    168rollback_predictor_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    176capital_compute_energy_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    184claim_boundary_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    192commit_schema_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    200execution_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    208proof_compression_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    216credit_assignment_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    224evolution_gate_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    232rollback_predictor_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    240capital_compute_energy_router_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    248claim_boundary_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    256commit_schema_upgradeThe protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery.
    + +

    Evidence

    +
    {
    +  "proof_type": "proof_carrying_intelligence",
    +  "protocol": "Commit \u2192 Execute \u2192 Prove \u2192 Evolve",
    +  "public_line": "Every agent acts once. The network learns forever.",
    +  "positioning": "The Agent Evolution Protocol for sovereign proof-carrying intelligence.",
    +  "vision_quote": "A superintelligent machine would be of such immense value, with so much wealth accruing to any company that owned one, that it could allow us to reach Kardashev Type II civilization level.",
    +  "vision_treatment": "strategic scenario, not empirical claim",
    +  "not_claiming": [
    +    "real revenue",
    +    "real profit",
    +    "guaranteed ROI",
    +    "investment advice",
    +    "actual deployed superintelligence",
    +    "Kardashev Type II achievement",
    +    "real-world energy capture",
    +    "external customer production results"
    +  ],
    +  "claim_boundary": "All network, capital, compute, energy, trust, and Kardashev values are deterministic synthetic scenario units, not dollars, not revenue, not profit, not watts, and not investment advice.",
    +  "core_doctrine": [
    +    "Anything that can improve is an Artifact.",
    +    "Anything that changes must carry Proof.",
    +    "Anything that propagates must pass the Evolution Gate."
    +  ],
    +  "protocol_primitives": [
    +    {
    +      "name": "Commit",
    +      "role": "The mission becomes explicit.",
    +      "explains": "A Commit turns a prompt into a contract: goal, success criteria, constraints, risk, budget, tools, evals, approvals, and rollback rules.",
    +      "slogan": "A prompt is a wish. A Commit is a contract."
    +    },
    +    {
    +      "name": "Execute",
    +      "role": "The system runs active artifacts.",
    +      "explains": "Execution Fabric resolves goal artifacts, plan graphs, skills, tools, policies, context, approvals, and eval checks.",
    +      "slogan": "The agent does not carry the universe. It resolves, runs, and emits proof."
    +    },
    +    {
    +      "name": "Prove",
    +      "role": "Every execution creates evidence.",
    +      "explains": "Proof contains trace, score, feedback, tool history, policy decisions, cost, latency, errors, and credit assignment.",
    +      "slogan": "Without Proof, learning is mythology."
    +    },
    +    {
    +      "name": "Evolve",
    +      "role": "Proof can earn a governed upgrade.",
    +      "explains": "Evolution upgrades goals, plans, skills, policies, evals, tools, contexts, and routing rules only after eval, approval, canary, monitoring, rollback, and scope control.",
    +      "slogan": "Only proven intelligence propagates."
    +    }
    +  ],
    +  "systems": [
    +    {
    +      "name": "Artifact Vault",
    +      "promise": "stores reusable intelligence",
    +      "meaning": "Stores every immutable, versioned, scoped, signed, auditable, rollbackable artifact."
    +    },
    +    {
    +      "name": "Execution Fabric",
    +      "promise": "executes agents at scale",
    +      "meaning": "Resolves artifacts, executes stateless runs, and emits proof at network scale."
    +    },
    +    {
    +      "name": "Proof Ledger",
    +      "promise": "records what happened",
    +      "meaning": "Append-only memory of commitments, executions, traces, evals, scores, feedback, upgrades, releases, and rollback events."
    +    },
    +    {
    +      "name": "Evolution Gate",
    +      "promise": "promotes only what proved itself",
    +      "meaning": "Proposes, evaluates, approves, canaries, promotes, monitors, and rolls back upgrades."
    +    }
    +  ],
    +  "goals_used": [
    +    {
    +      "id": "sovereign_kardashev_direction@2.0.0",
    +      "class": "GoalOS / Aim Artifact",
    +      "name": "Sovereign Kardashev Direction",
    +      "explains": "Frames civilization-scale capital-compute-energy ambition as a proof-bounded scenario, not an achieved fact.",
    +      "success_criteria": [
    +        "proof carried",
    +        "claim boundary preserved",
    +        "rollback available"
    +      ]
    +    },
    +    {
    +      "id": "proof_carrying_network_goal@1.0.0",
    +      "class": "GoalOS / Aim Artifact",
    +      "name": "Proof-Carrying Network Goal",
    +      "explains": "Turns every job into a commitment and every upgrade into proof-carrying intelligence.",
    +      "success_criteria": [
    +        "commit created",
    +        "execution recorded",
    +        "proof emitted",
    +        "evolution gated"
    +      ]
    +    },
    +    {
    +      "id": "sovereign_value_compounding_goal@1.0.0",
    +      "class": "GoalOS / Aim Artifact",
    +      "name": "Sovereign Value Compounding Goal",
    +      "explains": "Models sovereign-domain improvement through synthetic value units, not revenue or profit.",
    +      "success_criteria": [
    +        "synthetic index improves",
    +        "no ROI claim",
    +        "no real revenue claim"
    +      ]
    +    },
    +    {
    +      "id": "network_safety_goal@1.0.0",
    +      "class": "GoalOS / Aim Artifact",
    +      "name": "Network Safety Goal",
    +      "explains": "Requires every propagation to preserve sovereignty, privacy, policy, eval, canary, and rollback.",
    +      "success_criteria": [
    +        "no private data shared",
    +        "local eval required",
    +        "rollback required"
    +      ]
    +    }
    +  ],
    +  "plans_used": [
    +    {
    +      "id": "commit_execute_prove_evolve_plan@1.0.0",
    +      "class": "PlanOS / Strategy Artifact",
    +      "name": "Commit\u2013Execute\u2013Prove\u2013Evolve Plan",
    +      "explains": "The canonical Proof-Carrying Intelligence loop.",
    +      "steps": [
    +        "commit",
    +        "execute",
    +        "prove",
    +        "evolve"
    +      ]
    +    },
    +    {
    +      "id": "capital_compute_energy_trust_plan@1.0.0",
    +      "class": "PlanOS / Strategy Artifact",
    +      "name": "Capital\u2013Compute\u2013Energy\u2013Trust Routing Plan",
    +      "explains": "Routes synthetic capital, compute, energy, and trust toward proof-backed sovereign-domain winners.",
    +      "steps": [
    +        "score",
    +        "rank",
    +        "route",
    +        "canary",
    +        "monitor",
    +        "rollback"
    +      ]
    +    },
    +    {
    +      "id": "evolution_gate_plan@1.0.0",
    +      "class": "PlanOS / Strategy Artifact",
    +      "name": "Evolution Gate Plan",
    +      "explains": "Prevents unproven upgrades from propagating across the network.",
    +      "steps": [
    +        "propose",
    +        "evaluate",
    +        "approve",
    +        "canary",
    +        "promote",
    +        "monitor",
    +        "rollback"
    +      ]
    +    },
    +    {
    +      "id": "kardashev_scenario_boundary_plan@1.0.0",
    +      "class": "PlanOS / Strategy Artifact",
    +      "name": "Kardashev Scenario Boundary Plan",
    +      "explains": "Ensures civilization-scale language remains labeled as strategic scenario unless empirical evidence exists.",
    +      "steps": [
    +        "label scenario",
    +        "check proof",
    +        "block overclaim",
    +        "publish boundary"
    +      ]
    +    }
    +  ],
    +  "skills_used": [
    +    {
    +      "id": "commit_contract_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Commit Contract Skill",
    +      "explains": "Turns a job into an explicit contract with success criteria, constraints, risk, tools, evals, approvals, and rollback rules."
    +    },
    +    {
    +      "id": "stateless_execution_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Stateless Execution Skill",
    +      "explains": "Executes resolved artifacts without forcing agents to carry the whole network."
    +    },
    +    {
    +      "id": "proof_emission_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Proof Emission Skill",
    +      "explains": "Emits trace, score, policy, cost, latency, tool history, and feedback events."
    +    },
    +    {
    +      "id": "credit_assignment_skill@2.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Credit Assignment Skill",
    +      "explains": "Assigns improvement or failure to the correct artifact: goal, plan, skill, tool, policy, eval, context, routing, or runtime."
    +    },
    +    {
    +      "id": "evolution_patch_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Evolution Patch Skill",
    +      "explains": "Creates typed proof-backed upgrades that can be evaluated against baselines."
    +    },
    +    {
    +      "id": "capital_compute_energy_router_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Capital\u2013Compute\u2013Energy Router Skill",
    +      "explains": "Routes synthetic capital, compute, energy, and trust based on proof-backed selection."
    +    },
    +    {
    +      "id": "claim_boundary_skill@2.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Claim Boundary Skill",
    +      "explains": "Blocks unsupported claims about real revenue, ROI, superintelligence, energy capture, or Kardashev achievement."
    +    },
    +    {
    +      "id": "rollback_skill@1.0.0",
    +      "class": "SkillOS / Capability Artifact",
    +      "name": "Rollback Skill",
    +      "explains": "Restores the last safe baseline when an upgrade fails eval, policy, canary, or sovereignty checks."
    +    }
    +  ],
    +  "policies_used": [
    +    {
    +      "id": "no_unproven_propagation_policy@1.0.0",
    +      "class": "Policy / Guardrail Artifact",
    +      "name": "No Unproven Propagation Policy",
    +      "explains": "No upgrade can spread without proof, evals, canary, and rollback."
    +    },
    +    {
    +      "id": "sovereign_privacy_policy@1.0.0",
    +      "class": "Policy / Guardrail Artifact",
    +      "name": "Sovereign Privacy Policy",
    +      "explains": "Only generalized, redacted, eval-passed artifacts can move across domains."
    +    },
    +    {
    +      "id": "kardashev_claim_boundary_policy@1.0.0",
    +      "class": "Policy / Guardrail Artifact",
    +      "name": "Kardashev Claim Boundary Policy",
    +      "explains": "Kardashev-scale language is scenario language unless supported by empirical physical-world proof."
    +    }
    +  ],
    +  "evals_used": [
    +    {
    +      "id": "commit_integrity_eval@1.0.0",
    +      "class": "Eval / Judgment Artifact",
    +      "name": "Commit Integrity Eval",
    +      "explains": "Checks that every job has a complete commit contract."
    +    },
    +    {
    +      "id": "proof_completeness_eval@1.0.0",
    +      "class": "Eval / Judgment Artifact",
    +      "name": "Proof Completeness Eval",
    +      "explains": "Checks that every execution emits trace, score, credit assignment, and policy decisions."
    +    },
    +    {
    +      "id": "evolution_gate_eval@1.0.0",
    +      "class": "Eval / Judgment Artifact",
    +      "name": "Evolution Gate Eval",
    +      "explains": "Checks that every upgrade passes baseline comparison, canary, monitoring, and rollback readiness."
    +    },
    +    {
    +      "id": "scenario_boundary_eval@1.0.0",
    +      "class": "Eval / Judgment Artifact",
    +      "name": "Scenario Boundary Eval",
    +      "explains": "Checks that synthetic Kardashev, value, capital, compute, and energy indices are not presented as real-world results."
    +    }
    +  ],
    +  "agent_mesh": {
    +    "name": "Proof-Carrying Intelligence Maximum-Effect Agent Lattice",
    +    "coordination_name": "Maximum-Effect Sovereign Multi-Agent Orchestration Lattice",
    +    "agent_count": 4194304,
    +    "guild_count": 256,
    +    "domain_count": 2048,
    +    "handoff_count": 4194303,
    +    "agent_sample": [
    +      {
    +        "agent_id": "PG-PCI-00000001",
    +        "guild": "Direction Council",
    +        "domain": "Founder Capital",
    +        "role": "Direction Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000002",
    +        "guild": "Direction Guild",
    +        "domain": "Founder Compute",
    +        "role": "Direction Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000003",
    +        "guild": "Direction Court",
    +        "domain": "Founder Energy",
    +        "role": "Direction Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000004",
    +        "guild": "Direction Market",
    +        "domain": "Founder Security",
    +        "role": "Direction Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000005",
    +        "guild": "Strategy Council",
    +        "domain": "Founder Markets",
    +        "role": "Strategy Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000006",
    +        "guild": "Strategy Guild",
    +        "domain": "Founder Law",
    +        "role": "Strategy Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000007",
    +        "guild": "Strategy Court",
    +        "domain": "Founder Health",
    +        "role": "Strategy Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000008",
    +        "guild": "Strategy Market",
    +        "domain": "Founder Education",
    +        "role": "Strategy Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000009",
    +        "guild": "Capability Council",
    +        "domain": "Founder Logistics",
    +        "role": "Capability Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000010",
    +        "guild": "Capability Guild",
    +        "domain": "Founder Manufacturing",
    +        "role": "Capability Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000011",
    +        "guild": "Capability Court",
    +        "domain": "Founder Real Assets",
    +        "role": "Capability Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000012",
    +        "guild": "Capability Market",
    +        "domain": "Founder Media",
    +        "role": "Capability Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000013",
    +        "guild": "Tooling Council",
    +        "domain": "Founder Science",
    +        "role": "Tooling Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000014",
    +        "guild": "Tooling Guild",
    +        "domain": "Founder Governance",
    +        "role": "Tooling Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000015",
    +        "guild": "Tooling Court",
    +        "domain": "Founder Defense",
    +        "role": "Tooling Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000016",
    +        "guild": "Tooling Market",
    +        "domain": "Founder Robotics",
    +        "role": "Tooling Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000017",
    +        "guild": "Proof Council",
    +        "domain": "Founder Finance",
    +        "role": "Proof Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000018",
    +        "guild": "Proof Guild",
    +        "domain": "Founder Insurance",
    +        "role": "Proof Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000019",
    +        "guild": "Proof Court",
    +        "domain": "Founder Construction",
    +        "role": "Proof Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000020",
    +        "guild": "Proof Market",
    +        "domain": "Founder Agriculture",
    +        "role": "Proof Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000021",
    +        "guild": "Eval Council",
    +        "domain": "Founder Water",
    +        "role": "Eval Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000022",
    +        "guild": "Eval Guild",
    +        "domain": "Founder Transport",
    +        "role": "Eval Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000023",
    +        "guild": "Eval Court",
    +        "domain": "Founder Supply Chain",
    +        "role": "Eval Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000024",
    +        "guild": "Eval Market",
    +        "domain": "Founder Enterprise Ops",
    +        "role": "Eval Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000025",
    +        "guild": "Credit Council",
    +        "domain": "Founder Developer Ecosystems",
    +        "role": "Credit Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000026",
    +        "guild": "Credit Guild",
    +        "domain": "Founder Public Sector",
    +        "role": "Credit Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000027",
    +        "guild": "Credit Court",
    +        "domain": "Founder Space",
    +        "role": "Credit Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000028",
    +        "guild": "Credit Market",
    +        "domain": "Founder Climate",
    +        "role": "Credit Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000029",
    +        "guild": "Patch Council",
    +        "domain": "Founder Identity",
    +        "role": "Patch Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000030",
    +        "guild": "Patch Guild",
    +        "domain": "Founder Commerce",
    +        "role": "Patch Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000031",
    +        "guild": "Patch Court",
    +        "domain": "Founder Industrial Data",
    +        "role": "Patch Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000032",
    +        "guild": "Patch Market",
    +        "domain": "Founder Sovereign Institutions",
    +        "role": "Patch Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000033",
    +        "guild": "Selection Council",
    +        "domain": "Enterprise Capital",
    +        "role": "Selection Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000034",
    +        "guild": "Selection Guild",
    +        "domain": "Enterprise Compute",
    +        "role": "Selection Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000035",
    +        "guild": "Selection Court",
    +        "domain": "Enterprise Energy",
    +        "role": "Selection Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000036",
    +        "guild": "Selection Market",
    +        "domain": "Enterprise Security",
    +        "role": "Selection Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000037",
    +        "guild": "Rollback Council",
    +        "domain": "Enterprise Markets",
    +        "role": "Rollback Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000038",
    +        "guild": "Rollback Guild",
    +        "domain": "Enterprise Law",
    +        "role": "Rollback Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000039",
    +        "guild": "Rollback Court",
    +        "domain": "Enterprise Health",
    +        "role": "Rollback Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000040",
    +        "guild": "Rollback Market",
    +        "domain": "Enterprise Education",
    +        "role": "Rollback Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000041",
    +        "guild": "Governance Council",
    +        "domain": "Enterprise Logistics",
    +        "role": "Governance Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000042",
    +        "guild": "Governance Guild",
    +        "domain": "Enterprise Manufacturing",
    +        "role": "Governance Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000043",
    +        "guild": "Governance Court",
    +        "domain": "Enterprise Real Assets",
    +        "role": "Governance Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000044",
    +        "guild": "Governance Market",
    +        "domain": "Enterprise Media",
    +        "role": "Governance Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000045",
    +        "guild": "Capital Council",
    +        "domain": "Enterprise Science",
    +        "role": "Capital Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000046",
    +        "guild": "Capital Guild",
    +        "domain": "Enterprise Governance",
    +        "role": "Capital Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000047",
    +        "guild": "Capital Court",
    +        "domain": "Enterprise Defense",
    +        "role": "Capital Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000048",
    +        "guild": "Capital Market",
    +        "domain": "Enterprise Robotics",
    +        "role": "Capital Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000049",
    +        "guild": "Compute Council",
    +        "domain": "Enterprise Finance",
    +        "role": "Compute Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000050",
    +        "guild": "Compute Guild",
    +        "domain": "Enterprise Insurance",
    +        "role": "Compute Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000051",
    +        "guild": "Compute Court",
    +        "domain": "Enterprise Construction",
    +        "role": "Compute Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000052",
    +        "guild": "Compute Market",
    +        "domain": "Enterprise Agriculture",
    +        "role": "Compute Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000053",
    +        "guild": "Energy Council",
    +        "domain": "Enterprise Water",
    +        "role": "Energy Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000054",
    +        "guild": "Energy Guild",
    +        "domain": "Enterprise Transport",
    +        "role": "Energy Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000055",
    +        "guild": "Energy Court",
    +        "domain": "Enterprise Supply Chain",
    +        "role": "Energy Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000056",
    +        "guild": "Energy Market",
    +        "domain": "Enterprise Enterprise Ops",
    +        "role": "Energy Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000057",
    +        "guild": "Trust Council",
    +        "domain": "Enterprise Developer Ecosystems",
    +        "role": "Trust Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000058",
    +        "guild": "Trust Guild",
    +        "domain": "Enterprise Public Sector",
    +        "role": "Trust Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000059",
    +        "guild": "Trust Court",
    +        "domain": "Enterprise Space",
    +        "role": "Trust Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000060",
    +        "guild": "Trust Market",
    +        "domain": "Enterprise Climate",
    +        "role": "Trust Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000061",
    +        "guild": "Markets Council",
    +        "domain": "Enterprise Identity",
    +        "role": "Markets Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000062",
    +        "guild": "Markets Guild",
    +        "domain": "Enterprise Commerce",
    +        "role": "Markets Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000063",
    +        "guild": "Markets Court",
    +        "domain": "Enterprise Industrial Data",
    +        "role": "Markets Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000064",
    +        "guild": "Markets Market",
    +        "domain": "Enterprise Sovereign Institutions",
    +        "role": "Markets Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000065",
    +        "guild": "Reputation Council",
    +        "domain": "Capital Capital",
    +        "role": "Reputation Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000066",
    +        "guild": "Reputation Guild",
    +        "domain": "Capital Compute",
    +        "role": "Reputation Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000067",
    +        "guild": "Reputation Court",
    +        "domain": "Capital Energy",
    +        "role": "Reputation Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000068",
    +        "guild": "Reputation Market",
    +        "domain": "Capital Security",
    +        "role": "Reputation Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000069",
    +        "guild": "Liquidity Council",
    +        "domain": "Capital Markets",
    +        "role": "Liquidity Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000070",
    +        "guild": "Liquidity Guild",
    +        "domain": "Capital Law",
    +        "role": "Liquidity Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000071",
    +        "guild": "Liquidity Court",
    +        "domain": "Capital Health",
    +        "role": "Liquidity Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000072",
    +        "guild": "Liquidity Market",
    +        "domain": "Capital Education",
    +        "role": "Liquidity Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000073",
    +        "guild": "Federation Council",
    +        "domain": "Capital Logistics",
    +        "role": "Federation Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000074",
    +        "guild": "Federation Guild",
    +        "domain": "Capital Manufacturing",
    +        "role": "Federation Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000075",
    +        "guild": "Federation Court",
    +        "domain": "Capital Real Assets",
    +        "role": "Federation Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000076",
    +        "guild": "Federation Market",
    +        "domain": "Capital Media",
    +        "role": "Federation Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000077",
    +        "guild": "Redaction Council",
    +        "domain": "Capital Science",
    +        "role": "Redaction Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000078",
    +        "guild": "Redaction Guild",
    +        "domain": "Capital Governance",
    +        "role": "Redaction Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000079",
    +        "guild": "Redaction Court",
    +        "domain": "Capital Defense",
    +        "role": "Redaction Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000080",
    +        "guild": "Redaction Market",
    +        "domain": "Capital Robotics",
    +        "role": "Redaction Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000081",
    +        "guild": "Pricing Council",
    +        "domain": "Capital Finance",
    +        "role": "Pricing Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000082",
    +        "guild": "Pricing Guild",
    +        "domain": "Capital Insurance",
    +        "role": "Pricing Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000083",
    +        "guild": "Pricing Court",
    +        "domain": "Capital Construction",
    +        "role": "Pricing Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000084",
    +        "guild": "Pricing Market",
    +        "domain": "Capital Agriculture",
    +        "role": "Pricing Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000085",
    +        "guild": "Routing Council",
    +        "domain": "Capital Water",
    +        "role": "Routing Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000086",
    +        "guild": "Routing Guild",
    +        "domain": "Capital Transport",
    +        "role": "Routing Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000087",
    +        "guild": "Routing Court",
    +        "domain": "Capital Supply Chain",
    +        "role": "Routing Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000088",
    +        "guild": "Routing Market",
    +        "domain": "Capital Enterprise Ops",
    +        "role": "Routing Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000089",
    +        "guild": "Policy Council",
    +        "domain": "Capital Developer Ecosystems",
    +        "role": "Policy Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000090",
    +        "guild": "Policy Guild",
    +        "domain": "Capital Public Sector",
    +        "role": "Policy Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000091",
    +        "guild": "Policy Court",
    +        "domain": "Capital Space",
    +        "role": "Policy Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000092",
    +        "guild": "Policy Market",
    +        "domain": "Capital Climate",
    +        "role": "Policy Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000093",
    +        "guild": "Treasury Council",
    +        "domain": "Capital Identity",
    +        "role": "Treasury Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000094",
    +        "guild": "Treasury Guild",
    +        "domain": "Capital Commerce",
    +        "role": "Treasury Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000095",
    +        "guild": "Treasury Court",
    +        "domain": "Capital Industrial Data",
    +        "role": "Treasury Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000096",
    +        "guild": "Treasury Market",
    +        "domain": "Capital Sovereign Institutions",
    +        "role": "Treasury Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000097",
    +        "guild": "Risk Council",
    +        "domain": "Compute Capital",
    +        "role": "Risk Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000098",
    +        "guild": "Risk Guild",
    +        "domain": "Compute Compute",
    +        "role": "Risk Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000099",
    +        "guild": "Risk Court",
    +        "domain": "Compute Energy",
    +        "role": "Risk Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000100",
    +        "guild": "Risk Market",
    +        "domain": "Compute Security",
    +        "role": "Risk Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000101",
    +        "guild": "Security Council",
    +        "domain": "Compute Markets",
    +        "role": "Security Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000102",
    +        "guild": "Security Guild",
    +        "domain": "Compute Law",
    +        "role": "Security Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000103",
    +        "guild": "Security Court",
    +        "domain": "Compute Health",
    +        "role": "Security Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000104",
    +        "guild": "Security Market",
    +        "domain": "Compute Education",
    +        "role": "Security Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000105",
    +        "guild": "Domain Transfer Council",
    +        "domain": "Compute Logistics",
    +        "role": "Domain Transfer Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000106",
    +        "guild": "Domain Transfer Guild",
    +        "domain": "Compute Manufacturing",
    +        "role": "Domain Transfer Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000107",
    +        "guild": "Domain Transfer Court",
    +        "domain": "Compute Real Assets",
    +        "role": "Domain Transfer Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000108",
    +        "guild": "Domain Transfer Market",
    +        "domain": "Compute Media",
    +        "role": "Domain Transfer Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000109",
    +        "guild": "Meta-RSI Council",
    +        "domain": "Compute Science",
    +        "role": "Meta-RSI Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000110",
    +        "guild": "Meta-RSI Guild",
    +        "domain": "Compute Governance",
    +        "role": "Meta-RSI Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000111",
    +        "guild": "Meta-RSI Court",
    +        "domain": "Compute Defense",
    +        "role": "Meta-RSI Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000112",
    +        "guild": "Meta-RSI Market",
    +        "domain": "Compute Robotics",
    +        "role": "Meta-RSI Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000113",
    +        "guild": "Institutional Memory Council",
    +        "domain": "Compute Finance",
    +        "role": "Institutional Memory Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000114",
    +        "guild": "Institutional Memory Guild",
    +        "domain": "Compute Insurance",
    +        "role": "Institutional Memory Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000115",
    +        "guild": "Institutional Memory Court",
    +        "domain": "Compute Construction",
    +        "role": "Institutional Memory Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000116",
    +        "guild": "Institutional Memory Market",
    +        "domain": "Compute Agriculture",
    +        "role": "Institutional Memory Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000117",
    +        "guild": "Proof Compression Council",
    +        "domain": "Compute Water",
    +        "role": "Proof Compression Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000118",
    +        "guild": "Proof Compression Guild",
    +        "domain": "Compute Transport",
    +        "role": "Proof Compression Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000119",
    +        "guild": "Proof Compression Court",
    +        "domain": "Compute Supply Chain",
    +        "role": "Proof Compression Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000120",
    +        "guild": "Proof Compression Market",
    +        "domain": "Compute Enterprise Ops",
    +        "role": "Proof Compression Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000121",
    +        "guild": "Signal Intelligence Council",
    +        "domain": "Compute Developer Ecosystems",
    +        "role": "Signal Intelligence Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000122",
    +        "guild": "Signal Intelligence Guild",
    +        "domain": "Compute Public Sector",
    +        "role": "Signal Intelligence Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000123",
    +        "guild": "Signal Intelligence Court",
    +        "domain": "Compute Space",
    +        "role": "Signal Intelligence Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000124",
    +        "guild": "Signal Intelligence Market",
    +        "domain": "Compute Climate",
    +        "role": "Signal Intelligence Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000125",
    +        "guild": "Sovereign Audit Council",
    +        "domain": "Compute Identity",
    +        "role": "Sovereign Audit Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000126",
    +        "guild": "Sovereign Audit Guild",
    +        "domain": "Compute Commerce",
    +        "role": "Sovereign Audit Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000127",
    +        "guild": "Sovereign Audit Court",
    +        "domain": "Compute Industrial Data",
    +        "role": "Sovereign Audit Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000128",
    +        "guild": "Sovereign Audit Market",
    +        "domain": "Compute Sovereign Institutions",
    +        "role": "Sovereign Audit Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000129",
    +        "guild": "Kardashev Scenario Council",
    +        "domain": "Energy Capital",
    +        "role": "Kardashev Scenario Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000130",
    +        "guild": "Kardashev Scenario Guild",
    +        "domain": "Energy Compute",
    +        "role": "Kardashev Scenario Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000131",
    +        "guild": "Kardashev Scenario Court",
    +        "domain": "Energy Energy",
    +        "role": "Kardashev Scenario Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000132",
    +        "guild": "Kardashev Scenario Market",
    +        "domain": "Energy Security",
    +        "role": "Kardashev Scenario Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000133",
    +        "guild": "Infrastructure Finance Council",
    +        "domain": "Energy Markets",
    +        "role": "Infrastructure Finance Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000134",
    +        "guild": "Infrastructure Finance Guild",
    +        "domain": "Energy Law",
    +        "role": "Infrastructure Finance Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000135",
    +        "guild": "Infrastructure Finance Court",
    +        "domain": "Energy Health",
    +        "role": "Infrastructure Finance Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000136",
    +        "guild": "Infrastructure Finance Market",
    +        "domain": "Energy Education",
    +        "role": "Infrastructure Finance Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000137",
    +        "guild": "Energy Procurement Council",
    +        "domain": "Energy Logistics",
    +        "role": "Energy Procurement Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000138",
    +        "guild": "Energy Procurement Guild",
    +        "domain": "Energy Manufacturing",
    +        "role": "Energy Procurement Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000139",
    +        "guild": "Energy Procurement Court",
    +        "domain": "Energy Real Assets",
    +        "role": "Energy Procurement Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000140",
    +        "guild": "Energy Procurement Market",
    +        "domain": "Energy Media",
    +        "role": "Energy Procurement Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000141",
    +        "guild": "Compute Supply Council",
    +        "domain": "Energy Science",
    +        "role": "Compute Supply Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000142",
    +        "guild": "Compute Supply Guild",
    +        "domain": "Energy Governance",
    +        "role": "Compute Supply Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000143",
    +        "guild": "Compute Supply Court",
    +        "domain": "Energy Defense",
    +        "role": "Compute Supply Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000144",
    +        "guild": "Compute Supply Market",
    +        "domain": "Energy Robotics",
    +        "role": "Compute Supply Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000145",
    +        "guild": "Grid Intelligence Council",
    +        "domain": "Energy Finance",
    +        "role": "Grid Intelligence Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000146",
    +        "guild": "Grid Intelligence Guild",
    +        "domain": "Energy Insurance",
    +        "role": "Grid Intelligence Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000147",
    +        "guild": "Grid Intelligence Court",
    +        "domain": "Energy Construction",
    +        "role": "Grid Intelligence Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000148",
    +        "guild": "Grid Intelligence Market",
    +        "domain": "Energy Agriculture",
    +        "role": "Grid Intelligence Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000149",
    +        "guild": "Capital Formation Council",
    +        "domain": "Energy Water",
    +        "role": "Capital Formation Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000150",
    +        "guild": "Capital Formation Guild",
    +        "domain": "Energy Transport",
    +        "role": "Capital Formation Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000151",
    +        "guild": "Capital Formation Court",
    +        "domain": "Energy Supply Chain",
    +        "role": "Capital Formation Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000152",
    +        "guild": "Capital Formation Market",
    +        "domain": "Energy Enterprise Ops",
    +        "role": "Capital Formation Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000153",
    +        "guild": "Proof Market Council",
    +        "domain": "Energy Developer Ecosystems",
    +        "role": "Proof Market Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000154",
    +        "guild": "Proof Market Guild",
    +        "domain": "Energy Public Sector",
    +        "role": "Proof Market Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000155",
    +        "guild": "Proof Market Court",
    +        "domain": "Energy Space",
    +        "role": "Proof Market Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000156",
    +        "guild": "Proof Market Market",
    +        "domain": "Energy Climate",
    +        "role": "Proof Market Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000157",
    +        "guild": "Cross-Domain Intelligence Council",
    +        "domain": "Energy Identity",
    +        "role": "Cross-Domain Intelligence Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000158",
    +        "guild": "Cross-Domain Intelligence Guild",
    +        "domain": "Energy Commerce",
    +        "role": "Cross-Domain Intelligence Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000159",
    +        "guild": "Cross-Domain Intelligence Court",
    +        "domain": "Energy Industrial Data",
    +        "role": "Cross-Domain Intelligence Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000160",
    +        "guild": "Cross-Domain Intelligence Market",
    +        "domain": "Energy Sovereign Institutions",
    +        "role": "Cross-Domain Intelligence Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000161",
    +        "guild": "Safety Boundary Council",
    +        "domain": "Security Capital",
    +        "role": "Safety Boundary Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000162",
    +        "guild": "Safety Boundary Guild",
    +        "domain": "Security Compute",
    +        "role": "Safety Boundary Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000163",
    +        "guild": "Safety Boundary Court",
    +        "domain": "Security Energy",
    +        "role": "Safety Boundary Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000164",
    +        "guild": "Safety Boundary Market",
    +        "domain": "Security Security",
    +        "role": "Safety Boundary Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000165",
    +        "guild": "Artifact Reputation Council",
    +        "domain": "Security Markets",
    +        "role": "Artifact Reputation Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000166",
    +        "guild": "Artifact Reputation Guild",
    +        "domain": "Security Law",
    +        "role": "Artifact Reputation Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000167",
    +        "guild": "Artifact Reputation Court",
    +        "domain": "Security Health",
    +        "role": "Artifact Reputation Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000168",
    +        "guild": "Artifact Reputation Market",
    +        "domain": "Security Education",
    +        "role": "Artifact Reputation Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000169",
    +        "guild": "Canary Routing Council",
    +        "domain": "Security Logistics",
    +        "role": "Canary Routing Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000170",
    +        "guild": "Canary Routing Guild",
    +        "domain": "Security Manufacturing",
    +        "role": "Canary Routing Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000171",
    +        "guild": "Canary Routing Court",
    +        "domain": "Security Real Assets",
    +        "role": "Canary Routing Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000172",
    +        "guild": "Canary Routing Market",
    +        "domain": "Security Media",
    +        "role": "Canary Routing Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000173",
    +        "guild": "Adoption Treaty Council",
    +        "domain": "Security Science",
    +        "role": "Adoption Treaty Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000174",
    +        "guild": "Adoption Treaty Guild",
    +        "domain": "Security Governance",
    +        "role": "Adoption Treaty Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000175",
    +        "guild": "Adoption Treaty Court",
    +        "domain": "Security Defense",
    +        "role": "Adoption Treaty Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000176",
    +        "guild": "Adoption Treaty Market",
    +        "domain": "Security Robotics",
    +        "role": "Adoption Treaty Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000177",
    +        "guild": "Evidence Quality Council",
    +        "domain": "Security Finance",
    +        "role": "Evidence Quality Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000178",
    +        "guild": "Evidence Quality Guild",
    +        "domain": "Security Insurance",
    +        "role": "Evidence Quality Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000179",
    +        "guild": "Evidence Quality Court",
    +        "domain": "Security Construction",
    +        "role": "Evidence Quality Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000180",
    +        "guild": "Evidence Quality Market",
    +        "domain": "Security Agriculture",
    +        "role": "Evidence Quality Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000181",
    +        "guild": "Synthetic Index Council",
    +        "domain": "Security Water",
    +        "role": "Synthetic Index Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000182",
    +        "guild": "Synthetic Index Guild",
    +        "domain": "Security Transport",
    +        "role": "Synthetic Index Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000183",
    +        "guild": "Synthetic Index Court",
    +        "domain": "Security Supply Chain",
    +        "role": "Synthetic Index Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000184",
    +        "guild": "Synthetic Index Market",
    +        "domain": "Security Enterprise Ops",
    +        "role": "Synthetic Index Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000185",
    +        "guild": "Run Fabric Scheduler Council",
    +        "domain": "Security Developer Ecosystems",
    +        "role": "Run Fabric Scheduler Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000186",
    +        "guild": "Run Fabric Scheduler Guild",
    +        "domain": "Security Public Sector",
    +        "role": "Run Fabric Scheduler Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000187",
    +        "guild": "Run Fabric Scheduler Court",
    +        "domain": "Security Space",
    +        "role": "Run Fabric Scheduler Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000188",
    +        "guild": "Run Fabric Scheduler Market",
    +        "domain": "Security Climate",
    +        "role": "Run Fabric Scheduler Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000189",
    +        "guild": "Strategic Reserves Council",
    +        "domain": "Security Identity",
    +        "role": "Strategic Reserves Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000190",
    +        "guild": "Strategic Reserves Guild",
    +        "domain": "Security Commerce",
    +        "role": "Strategic Reserves Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000191",
    +        "guild": "Strategic Reserves Court",
    +        "domain": "Security Industrial Data",
    +        "role": "Strategic Reserves Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000192",
    +        "guild": "Strategic Reserves Market",
    +        "domain": "Security Sovereign Institutions",
    +        "role": "Strategic Reserves Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000193",
    +        "guild": "Institutional Ledger Council",
    +        "domain": "Market Capital",
    +        "role": "Institutional Ledger Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000194",
    +        "guild": "Institutional Ledger Guild",
    +        "domain": "Market Compute",
    +        "role": "Institutional Ledger Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000195",
    +        "guild": "Institutional Ledger Court",
    +        "domain": "Market Energy",
    +        "role": "Institutional Ledger Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000196",
    +        "guild": "Institutional Ledger Market",
    +        "domain": "Market Security",
    +        "role": "Institutional Ledger Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000197",
    +        "guild": "Audit Trail Council",
    +        "domain": "Market Markets",
    +        "role": "Audit Trail Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000198",
    +        "guild": "Audit Trail Guild",
    +        "domain": "Market Law",
    +        "role": "Audit Trail Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000199",
    +        "guild": "Audit Trail Court",
    +        "domain": "Market Health",
    +        "role": "Audit Trail Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000200",
    +        "guild": "Audit Trail Market",
    +        "domain": "Market Education",
    +        "role": "Audit Trail Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000201",
    +        "guild": "Scenario Planning Council",
    +        "domain": "Market Logistics",
    +        "role": "Scenario Planning Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000202",
    +        "guild": "Scenario Planning Guild",
    +        "domain": "Market Manufacturing",
    +        "role": "Scenario Planning Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000203",
    +        "guild": "Scenario Planning Court",
    +        "domain": "Market Real Assets",
    +        "role": "Scenario Planning Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000204",
    +        "guild": "Scenario Planning Market",
    +        "domain": "Market Media",
    +        "role": "Scenario Planning Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000205",
    +        "guild": "Sovereign Privacy Council",
    +        "domain": "Market Science",
    +        "role": "Sovereign Privacy Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000206",
    +        "guild": "Sovereign Privacy Guild",
    +        "domain": "Market Governance",
    +        "role": "Sovereign Privacy Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000207",
    +        "guild": "Sovereign Privacy Court",
    +        "domain": "Market Defense",
    +        "role": "Sovereign Privacy Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000208",
    +        "guild": "Sovereign Privacy Market",
    +        "domain": "Market Robotics",
    +        "role": "Sovereign Privacy Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000209",
    +        "guild": "Operational Cadence Council",
    +        "domain": "Market Finance",
    +        "role": "Operational Cadence Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000210",
    +        "guild": "Operational Cadence Guild",
    +        "domain": "Market Insurance",
    +        "role": "Operational Cadence Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000211",
    +        "guild": "Operational Cadence Court",
    +        "domain": "Market Construction",
    +        "role": "Operational Cadence Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000212",
    +        "guild": "Operational Cadence Market",
    +        "domain": "Market Agriculture",
    +        "role": "Operational Cadence Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000213",
    +        "guild": "Scientific Transfer Council",
    +        "domain": "Market Water",
    +        "role": "Scientific Transfer Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000214",
    +        "guild": "Scientific Transfer Guild",
    +        "domain": "Market Transport",
    +        "role": "Scientific Transfer Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000215",
    +        "guild": "Scientific Transfer Court",
    +        "domain": "Market Supply Chain",
    +        "role": "Scientific Transfer Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000216",
    +        "guild": "Scientific Transfer Market",
    +        "domain": "Market Enterprise Ops",
    +        "role": "Scientific Transfer Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000217",
    +        "guild": "Capital-Compute-Energy Council",
    +        "domain": "Market Developer Ecosystems",
    +        "role": "Capital-Compute-Energy Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000218",
    +        "guild": "Capital-Compute-Energy Guild",
    +        "domain": "Market Public Sector",
    +        "role": "Capital-Compute-Energy Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000219",
    +        "guild": "Capital-Compute-Energy Court",
    +        "domain": "Market Space",
    +        "role": "Capital-Compute-Energy Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000220",
    +        "guild": "Capital-Compute-Energy Market",
    +        "domain": "Market Climate",
    +        "role": "Capital-Compute-Energy Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000221",
    +        "guild": "Flywheel Council",
    +        "domain": "Market Identity",
    +        "role": "Flywheel Council Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000222",
    +        "guild": "Flywheel Guild",
    +        "domain": "Market Commerce",
    +        "role": "Flywheel Guild Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000223",
    +        "guild": "Flywheel Court",
    +        "domain": "Market Industrial Data",
    +        "role": "Flywheel Court Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      },
    +      {
    +        "agent_id": "PG-PCI-00000224",
    +        "guild": "Flywheel Market",
    +        "domain": "Market Sovereign Institutions",
    +        "role": "Flywheel Market Specialist",
    +        "decision_rule": "commit, execute, prove, and evolve only through proof-carrying artifacts"
    +      }
    +    ],
    +    "guild_summary": [
    +      {
    +        "guild": "Direction Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Direction Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Direction Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Direction Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategy Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategy Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategy Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategy Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capability Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capability Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capability Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capability Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Tooling Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Tooling Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Tooling Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Tooling Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Eval Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Eval Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Eval Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Eval Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Credit Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Credit Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Credit Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Credit Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Patch Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Patch Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Patch Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Patch Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Selection Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Selection Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Selection Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Selection Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Rollback Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Rollback Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Rollback Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Rollback Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Governance Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Governance Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Governance Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Governance Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Markets Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Markets Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Markets Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Markets Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Reputation Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Reputation Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Reputation Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Reputation Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Liquidity Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Liquidity Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Liquidity Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Liquidity Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Federation Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Federation Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Federation Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Federation Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Redaction Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Redaction Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Redaction Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Redaction Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Pricing Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Pricing Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Pricing Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Pricing Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Routing Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Routing Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Routing Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Routing Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Policy Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Policy Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Policy Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Policy Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Treasury Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Treasury Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Treasury Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Treasury Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Risk Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Risk Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Risk Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Risk Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Security Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Security Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Security Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Security Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Domain Transfer Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Domain Transfer Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Domain Transfer Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Domain Transfer Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Meta-RSI Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Meta-RSI Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Meta-RSI Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Meta-RSI Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Memory Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Memory Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Memory Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Memory Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Compression Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Compression Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Compression Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Compression Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Signal Intelligence Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Signal Intelligence Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Signal Intelligence Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Signal Intelligence Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Audit Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Audit Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Audit Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Audit Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Scenario Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Scenario Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Scenario Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Scenario Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Infrastructure Finance Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Infrastructure Finance Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Infrastructure Finance Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Infrastructure Finance Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Procurement Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Procurement Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Procurement Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Procurement Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Supply Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Supply Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Supply Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Compute Supply Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Grid Intelligence Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Grid Intelligence Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Grid Intelligence Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Grid Intelligence Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Formation Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Formation Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Formation Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital Formation Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Market Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Market Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Market Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Market Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Cross-Domain Intelligence Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Cross-Domain Intelligence Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Cross-Domain Intelligence Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Cross-Domain Intelligence Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Safety Boundary Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Safety Boundary Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Safety Boundary Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Safety Boundary Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Artifact Reputation Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Artifact Reputation Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Artifact Reputation Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Artifact Reputation Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Canary Routing Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Canary Routing Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Canary Routing Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Canary Routing Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Adoption Treaty Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Adoption Treaty Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Adoption Treaty Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Adoption Treaty Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Evidence Quality Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Evidence Quality Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Evidence Quality Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Evidence Quality Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Synthetic Index Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Synthetic Index Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Synthetic Index Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Synthetic Index Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Run Fabric Scheduler Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Run Fabric Scheduler Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Run Fabric Scheduler Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Run Fabric Scheduler Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategic Reserves Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategic Reserves Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategic Reserves Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Strategic Reserves Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Ledger Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Ledger Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Ledger Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Institutional Ledger Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Audit Trail Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Audit Trail Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Audit Trail Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Audit Trail Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scenario Planning Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scenario Planning Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scenario Planning Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scenario Planning Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Privacy Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Privacy Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Privacy Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Sovereign Privacy Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Operational Cadence Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Operational Cadence Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Operational Cadence Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Operational Cadence Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scientific Transfer Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scientific Transfer Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scientific Transfer Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Scientific Transfer Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital-Compute-Energy Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital-Compute-Energy Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital-Compute-Energy Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Capital-Compute-Energy Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Flywheel Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Flywheel Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Flywheel Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Flywheel Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Gate Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Gate Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Gate Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Kardashev Gate Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Civilization Scenario Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Civilization Scenario Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Civilization Scenario Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Civilization Scenario Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Protocol Liquidity Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Protocol Liquidity Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Protocol Liquidity Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Protocol Liquidity Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Router Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Router Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Router Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Trust Router Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Horizon Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Horizon Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Horizon Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Energy Horizon Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Recursive Improvement Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Recursive Improvement Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Recursive Improvement Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Recursive Improvement Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Archive Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Archive Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Archive Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Proof Archive Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Executive Command Council",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Executive Command Guild",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Executive Command Court",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      },
    +      {
    +        "guild": "Executive Command Market",
    +        "agents": 16384,
    +        "consensus": "Every change must carry proof; every propagation must pass the Evolution Gate."
    +      }
    +    ],
    +    "coordination_verdict": "maximum_effect_proof_carrying_multi_agent_coordination_verified"
    +  },
    +  "recursive_self_improvement": {
    +    "rsi_cycle_count": 256,
    +    "domain_count": 2048,
    +    "eval_case_count": 1073741824,
    +    "commit_count": 524288,
    +    "execution_count": 524288,
    +    "proof_count": 524288,
    +    "selected_upgrade_count": 522246,
    +    "rejected_upgrade_count": 2042,
    +    "rollback_count": 2042,
    +    "meta_rsi_upgrade_count": 32,
    +    "synthetic_network_index_start": 100000.0,
    +    "synthetic_network_index_final": 11200043.075,
    +    "synthetic_kardashev_scenario_index_start": 3.59e-06,
    +    "synthetic_kardashev_scenario_index_final": 0.00360164,
    +    "cycles": [
    +      {
    +        "cycle": 1,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 100461.0,
    +        "synthetic_kardashev_scenario_index": 3.59e-06
    +      },
    +      {
    +        "cycle": 2,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 100935.176,
    +        "synthetic_kardashev_scenario_index": 6.27e-06
    +      },
    +      {
    +        "cycle": 3,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 101422.693,
    +        "synthetic_kardashev_scenario_index": 9.04e-06
    +      },
    +      {
    +        "cycle": 4,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 101923.721,
    +        "synthetic_kardashev_scenario_index": 1.19e-05
    +      },
    +      {
    +        "cycle": 5,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 102438.436,
    +        "synthetic_kardashev_scenario_index": 1.485e-05
    +      },
    +      {
    +        "cycle": 6,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 102967.018,
    +        "synthetic_kardashev_scenario_index": 1.789e-05
    +      },
    +      {
    +        "cycle": 7,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 103509.654,
    +        "synthetic_kardashev_scenario_index": 2.102e-05
    +      },
    +      {
    +        "cycle": 8,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 104066.536,
    +        "synthetic_kardashev_scenario_index": 2.424e-05
    +      },
    +      {
    +        "cycle": 9,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 104637.861,
    +        "synthetic_kardashev_scenario_index": 2.755e-05
    +      },
    +      {
    +        "cycle": 10,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 105223.833,
    +        "synthetic_kardashev_scenario_index": 3.095e-05
    +      },
    +      {
    +        "cycle": 11,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 105824.661,
    +        "synthetic_kardashev_scenario_index": 3.444e-05
    +      },
    +      {
    +        "cycle": 12,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 106440.561,
    +        "synthetic_kardashev_scenario_index": 3.802e-05
    +      },
    +      {
    +        "cycle": 13,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 107071.754,
    +        "synthetic_kardashev_scenario_index": 4.169e-05
    +      },
    +      {
    +        "cycle": 14,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 107718.467,
    +        "synthetic_kardashev_scenario_index": 4.545e-05
    +      },
    +      {
    +        "cycle": 15,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 108380.936,
    +        "synthetic_kardashev_scenario_index": 4.93e-05
    +      },
    +      {
    +        "cycle": 16,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 109059.401,
    +        "synthetic_kardashev_scenario_index": 5.324e-05
    +      },
    +      {
    +        "cycle": 17,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 109754.109,
    +        "synthetic_kardashev_scenario_index": 5.727e-05
    +      },
    +      {
    +        "cycle": 18,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 110465.316,
    +        "synthetic_kardashev_scenario_index": 6.139e-05
    +      },
    +      {
    +        "cycle": 19,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 111193.282,
    +        "synthetic_kardashev_scenario_index": 6.56e-05
    +      },
    +      {
    +        "cycle": 20,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 111938.277,
    +        "synthetic_kardashev_scenario_index": 6.99e-05
    +      },
    +      {
    +        "cycle": 21,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 112700.577,
    +        "synthetic_kardashev_scenario_index": 7.429e-05
    +      },
    +      {
    +        "cycle": 22,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 113480.465,
    +        "synthetic_kardashev_scenario_index": 7.877e-05
    +      },
    +      {
    +        "cycle": 23,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 114278.233,
    +        "synthetic_kardashev_scenario_index": 8.334e-05
    +      },
    +      {
    +        "cycle": 24,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 115094.18,
    +        "synthetic_kardashev_scenario_index": 8.8e-05
    +      },
    +      {
    +        "cycle": 25,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 115928.613,
    +        "synthetic_kardashev_scenario_index": 9.275e-05
    +      },
    +      {
    +        "cycle": 26,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 116781.848,
    +        "synthetic_kardashev_scenario_index": 9.759e-05
    +      },
    +      {
    +        "cycle": 27,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 117654.208,
    +        "synthetic_kardashev_scenario_index": 0.00010252
    +      },
    +      {
    +        "cycle": 28,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 118546.027,
    +        "synthetic_kardashev_scenario_index": 0.00010754
    +      },
    +      {
    +        "cycle": 29,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 119457.646,
    +        "synthetic_kardashev_scenario_index": 0.00011265
    +      },
    +      {
    +        "cycle": 30,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 120389.416,
    +        "synthetic_kardashev_scenario_index": 0.00011785
    +      },
    +      {
    +        "cycle": 31,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 121341.696,
    +        "synthetic_kardashev_scenario_index": 0.00012314
    +      },
    +      {
    +        "cycle": 32,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 122314.856,
    +        "synthetic_kardashev_scenario_index": 0.00012852
    +      },
    +      {
    +        "cycle": 33,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 123309.276,
    +        "synthetic_kardashev_scenario_index": 0.00013399
    +      },
    +      {
    +        "cycle": 34,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 124325.344,
    +        "synthetic_kardashev_scenario_index": 0.00013955
    +      },
    +      {
    +        "cycle": 35,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 125363.461,
    +        "synthetic_kardashev_scenario_index": 0.0001452
    +      },
    +      {
    +        "cycle": 36,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 126424.036,
    +        "synthetic_kardashev_scenario_index": 0.00015094
    +      },
    +      {
    +        "cycle": 37,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 127507.49,
    +        "synthetic_kardashev_scenario_index": 0.00015677
    +      },
    +      {
    +        "cycle": 38,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 128614.255,
    +        "synthetic_kardashev_scenario_index": 0.00016269
    +      },
    +      {
    +        "cycle": 39,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 129744.774,
    +        "synthetic_kardashev_scenario_index": 0.0001687
    +      },
    +      {
    +        "cycle": 40,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 130899.502,
    +        "synthetic_kardashev_scenario_index": 0.0001748
    +      },
    +      {
    +        "cycle": 41,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 132078.907,
    +        "synthetic_kardashev_scenario_index": 0.00018099
    +      },
    +      {
    +        "cycle": 42,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 133283.467,
    +        "synthetic_kardashev_scenario_index": 0.00018727
    +      },
    +      {
    +        "cycle": 43,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 134513.673,
    +        "synthetic_kardashev_scenario_index": 0.00019364
    +      },
    +      {
    +        "cycle": 44,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 135770.031,
    +        "synthetic_kardashev_scenario_index": 0.0002001
    +      },
    +      {
    +        "cycle": 45,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 137053.058,
    +        "synthetic_kardashev_scenario_index": 0.00020665
    +      },
    +      {
    +        "cycle": 46,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 138363.285,
    +        "synthetic_kardashev_scenario_index": 0.00021329
    +      },
    +      {
    +        "cycle": 47,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 139701.258,
    +        "synthetic_kardashev_scenario_index": 0.00022002
    +      },
    +      {
    +        "cycle": 48,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 141067.536,
    +        "synthetic_kardashev_scenario_index": 0.00022684
    +      },
    +      {
    +        "cycle": 49,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 142462.694,
    +        "synthetic_kardashev_scenario_index": 0.00023375
    +      },
    +      {
    +        "cycle": 50,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 143887.321,
    +        "synthetic_kardashev_scenario_index": 0.00024075
    +      },
    +      {
    +        "cycle": 51,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 145342.022,
    +        "synthetic_kardashev_scenario_index": 0.00024784
    +      },
    +      {
    +        "cycle": 52,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 146827.417,
    +        "synthetic_kardashev_scenario_index": 0.00025502
    +      },
    +      {
    +        "cycle": 53,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 148344.144,
    +        "synthetic_kardashev_scenario_index": 0.00026229
    +      },
    +      {
    +        "cycle": 54,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 149892.857,
    +        "synthetic_kardashev_scenario_index": 0.00026965
    +      },
    +      {
    +        "cycle": 55,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 151474.227,
    +        "synthetic_kardashev_scenario_index": 0.0002771
    +      },
    +      {
    +        "cycle": 56,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 153088.942,
    +        "synthetic_kardashev_scenario_index": 0.00028464
    +      },
    +      {
    +        "cycle": 57,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 154737.71,
    +        "synthetic_kardashev_scenario_index": 0.00029227
    +      },
    +      {
    +        "cycle": 58,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 156421.256,
    +        "synthetic_kardashev_scenario_index": 0.00029999
    +      },
    +      {
    +        "cycle": 59,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 158140.326,
    +        "synthetic_kardashev_scenario_index": 0.0003078
    +      },
    +      {
    +        "cycle": 60,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 159895.684,
    +        "synthetic_kardashev_scenario_index": 0.0003157
    +      },
    +      {
    +        "cycle": 61,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 161688.115,
    +        "synthetic_kardashev_scenario_index": 0.00032369
    +      },
    +      {
    +        "cycle": 62,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 163518.424,
    +        "synthetic_kardashev_scenario_index": 0.00033177
    +      },
    +      {
    +        "cycle": 63,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 165387.44,
    +        "synthetic_kardashev_scenario_index": 0.00033994
    +      },
    +      {
    +        "cycle": 64,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 167296.011,
    +        "synthetic_kardashev_scenario_index": 0.0003482
    +      },
    +      {
    +        "cycle": 65,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 169245.01,
    +        "synthetic_kardashev_scenario_index": 0.00035655
    +      },
    +      {
    +        "cycle": 66,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 171235.331,
    +        "synthetic_kardashev_scenario_index": 0.00036499
    +      },
    +      {
    +        "cycle": 67,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 173267.894,
    +        "synthetic_kardashev_scenario_index": 0.00037352
    +      },
    +      {
    +        "cycle": 68,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 175343.643,
    +        "synthetic_kardashev_scenario_index": 0.00038214
    +      },
    +      {
    +        "cycle": 69,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 177463.548,
    +        "synthetic_kardashev_scenario_index": 0.00039085
    +      },
    +      {
    +        "cycle": 70,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 179628.603,
    +        "synthetic_kardashev_scenario_index": 0.00039965
    +      },
    +      {
    +        "cycle": 71,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 181839.831,
    +        "synthetic_kardashev_scenario_index": 0.00040854
    +      },
    +      {
    +        "cycle": 72,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 184098.282,
    +        "synthetic_kardashev_scenario_index": 0.00041752
    +      },
    +      {
    +        "cycle": 73,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 186405.033,
    +        "synthetic_kardashev_scenario_index": 0.00042659
    +      },
    +      {
    +        "cycle": 74,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 188761.193,
    +        "synthetic_kardashev_scenario_index": 0.00043575
    +      },
    +      {
    +        "cycle": 75,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 191167.898,
    +        "synthetic_kardashev_scenario_index": 0.000445
    +      },
    +      {
    +        "cycle": 76,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 193626.317,
    +        "synthetic_kardashev_scenario_index": 0.00045434
    +      },
    +      {
    +        "cycle": 77,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 196137.65,
    +        "synthetic_kardashev_scenario_index": 0.00046377
    +      },
    +      {
    +        "cycle": 78,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 198703.13,
    +        "synthetic_kardashev_scenario_index": 0.00047329
    +      },
    +      {
    +        "cycle": 79,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 201324.024,
    +        "synthetic_kardashev_scenario_index": 0.0004829
    +      },
    +      {
    +        "cycle": 80,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 204001.634,
    +        "synthetic_kardashev_scenario_index": 0.0004926
    +      },
    +      {
    +        "cycle": 81,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 206737.296,
    +        "synthetic_kardashev_scenario_index": 0.00050239
    +      },
    +      {
    +        "cycle": 82,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 209532.384,
    +        "synthetic_kardashev_scenario_index": 0.00051227
    +      },
    +      {
    +        "cycle": 83,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 212388.31,
    +        "synthetic_kardashev_scenario_index": 0.00052224
    +      },
    +      {
    +        "cycle": 84,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 215306.525,
    +        "synthetic_kardashev_scenario_index": 0.0005323
    +      },
    +      {
    +        "cycle": 85,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 218288.52,
    +        "synthetic_kardashev_scenario_index": 0.00054245
    +      },
    +      {
    +        "cycle": 86,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 221335.828,
    +        "synthetic_kardashev_scenario_index": 0.00055269
    +      },
    +      {
    +        "cycle": 87,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 224450.023,
    +        "synthetic_kardashev_scenario_index": 0.00056302
    +      },
    +      {
    +        "cycle": 88,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 227632.724,
    +        "synthetic_kardashev_scenario_index": 0.00057344
    +      },
    +      {
    +        "cycle": 89,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 230885.596,
    +        "synthetic_kardashev_scenario_index": 0.00058395
    +      },
    +      {
    +        "cycle": 90,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 234210.349,
    +        "synthetic_kardashev_scenario_index": 0.00059455
    +      },
    +      {
    +        "cycle": 91,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 237608.741,
    +        "synthetic_kardashev_scenario_index": 0.00060524
    +      },
    +      {
    +        "cycle": 92,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 241082.581,
    +        "synthetic_kardashev_scenario_index": 0.00061602
    +      },
    +      {
    +        "cycle": 93,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 244633.727,
    +        "synthetic_kardashev_scenario_index": 0.00062689
    +      },
    +      {
    +        "cycle": 94,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 248264.092,
    +        "synthetic_kardashev_scenario_index": 0.00063785
    +      },
    +      {
    +        "cycle": 95,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 251975.64,
    +        "synthetic_kardashev_scenario_index": 0.0006489
    +      },
    +      {
    +        "cycle": 96,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 255770.393,
    +        "synthetic_kardashev_scenario_index": 0.00066004
    +      },
    +      {
    +        "cycle": 97,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 259650.43,
    +        "synthetic_kardashev_scenario_index": 0.00067127
    +      },
    +      {
    +        "cycle": 98,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 263617.889,
    +        "synthetic_kardashev_scenario_index": 0.00068259
    +      },
    +      {
    +        "cycle": 99,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 267674.968,
    +        "synthetic_kardashev_scenario_index": 0.000694
    +      },
    +      {
    +        "cycle": 100,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 271823.93,
    +        "synthetic_kardashev_scenario_index": 0.0007055
    +      },
    +      {
    +        "cycle": 101,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 276067.102,
    +        "synthetic_kardashev_scenario_index": 0.00071709
    +      },
    +      {
    +        "cycle": 102,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 280406.877,
    +        "synthetic_kardashev_scenario_index": 0.00072877
    +      },
    +      {
    +        "cycle": 103,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 284845.718,
    +        "synthetic_kardashev_scenario_index": 0.00074054
    +      },
    +      {
    +        "cycle": 104,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 289386.159,
    +        "synthetic_kardashev_scenario_index": 0.0007524
    +      },
    +      {
    +        "cycle": 105,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 294030.807,
    +        "synthetic_kardashev_scenario_index": 0.00076435
    +      },
    +      {
    +        "cycle": 106,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 298782.345,
    +        "synthetic_kardashev_scenario_index": 0.00077639
    +      },
    +      {
    +        "cycle": 107,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 303643.534,
    +        "synthetic_kardashev_scenario_index": 0.00078852
    +      },
    +      {
    +        "cycle": 108,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 308617.215,
    +        "synthetic_kardashev_scenario_index": 0.00080074
    +      },
    +      {
    +        "cycle": 109,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 313706.313,
    +        "synthetic_kardashev_scenario_index": 0.00081305
    +      },
    +      {
    +        "cycle": 110,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 318913.838,
    +        "synthetic_kardashev_scenario_index": 0.00082545
    +      },
    +      {
    +        "cycle": 111,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 324242.888,
    +        "synthetic_kardashev_scenario_index": 0.00083794
    +      },
    +      {
    +        "cycle": 112,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 329696.653,
    +        "synthetic_kardashev_scenario_index": 0.00085052
    +      },
    +      {
    +        "cycle": 113,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 335278.417,
    +        "synthetic_kardashev_scenario_index": 0.00086319
    +      },
    +      {
    +        "cycle": 114,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 340991.561,
    +        "synthetic_kardashev_scenario_index": 0.00087595
    +      },
    +      {
    +        "cycle": 115,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 346839.566,
    +        "synthetic_kardashev_scenario_index": 0.0008888
    +      },
    +      {
    +        "cycle": 116,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 352826.017,
    +        "synthetic_kardashev_scenario_index": 0.00090174
    +      },
    +      {
    +        "cycle": 117,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 358954.605,
    +        "synthetic_kardashev_scenario_index": 0.00091477
    +      },
    +      {
    +        "cycle": 118,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 365229.131,
    +        "synthetic_kardashev_scenario_index": 0.00092789
    +      },
    +      {
    +        "cycle": 119,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 371653.511,
    +        "synthetic_kardashev_scenario_index": 0.0009411
    +      },
    +      {
    +        "cycle": 120,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 378231.778,
    +        "synthetic_kardashev_scenario_index": 0.0009544
    +      },
    +      {
    +        "cycle": 121,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 384968.086,
    +        "synthetic_kardashev_scenario_index": 0.00096779
    +      },
    +      {
    +        "cycle": 122,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 391866.714,
    +        "synthetic_kardashev_scenario_index": 0.00098127
    +      },
    +      {
    +        "cycle": 123,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 398932.071,
    +        "synthetic_kardashev_scenario_index": 0.00099484
    +      },
    +      {
    +        "cycle": 124,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 406168.699,
    +        "synthetic_kardashev_scenario_index": 0.0010085
    +      },
    +      {
    +        "cycle": 125,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 413581.278,
    +        "synthetic_kardashev_scenario_index": 0.00102225
    +      },
    +      {
    +        "cycle": 126,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 421174.63,
    +        "synthetic_kardashev_scenario_index": 0.00103609
    +      },
    +      {
    +        "cycle": 127,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 428953.725,
    +        "synthetic_kardashev_scenario_index": 0.00105002
    +      },
    +      {
    +        "cycle": 128,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 436923.685,
    +        "synthetic_kardashev_scenario_index": 0.00106404
    +      },
    +      {
    +        "cycle": 129,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 445089.789,
    +        "synthetic_kardashev_scenario_index": 0.00107815
    +      },
    +      {
    +        "cycle": 130,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 453457.477,
    +        "synthetic_kardashev_scenario_index": 0.00109235
    +      },
    +      {
    +        "cycle": 131,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 462032.358,
    +        "synthetic_kardashev_scenario_index": 0.00110664
    +      },
    +      {
    +        "cycle": 132,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 470820.213,
    +        "synthetic_kardashev_scenario_index": 0.00112102
    +      },
    +      {
    +        "cycle": 133,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 479827.004,
    +        "synthetic_kardashev_scenario_index": 0.00113549
    +      },
    +      {
    +        "cycle": 134,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 489058.876,
    +        "synthetic_kardashev_scenario_index": 0.00115005
    +      },
    +      {
    +        "cycle": 135,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 498522.165,
    +        "synthetic_kardashev_scenario_index": 0.0011647
    +      },
    +      {
    +        "cycle": 136,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 508223.406,
    +        "synthetic_kardashev_scenario_index": 0.00117944
    +      },
    +      {
    +        "cycle": 137,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 518169.338,
    +        "synthetic_kardashev_scenario_index": 0.00119427
    +      },
    +      {
    +        "cycle": 138,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 528366.911,
    +        "synthetic_kardashev_scenario_index": 0.00120919
    +      },
    +      {
    +        "cycle": 139,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 538823.292,
    +        "synthetic_kardashev_scenario_index": 0.0012242
    +      },
    +      {
    +        "cycle": 140,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 549545.876,
    +        "synthetic_kardashev_scenario_index": 0.0012393
    +      },
    +      {
    +        "cycle": 141,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 560542.289,
    +        "synthetic_kardashev_scenario_index": 0.00125449
    +      },
    +      {
    +        "cycle": 142,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 571820.4,
    +        "synthetic_kardashev_scenario_index": 0.00126977
    +      },
    +      {
    +        "cycle": 143,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 583388.327,
    +        "synthetic_kardashev_scenario_index": 0.00128514
    +      },
    +      {
    +        "cycle": 144,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 595254.446,
    +        "synthetic_kardashev_scenario_index": 0.0013006
    +      },
    +      {
    +        "cycle": 145,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 607427.399,
    +        "synthetic_kardashev_scenario_index": 0.00131615
    +      },
    +      {
    +        "cycle": 146,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 619916.106,
    +        "synthetic_kardashev_scenario_index": 0.00133179
    +      },
    +      {
    +        "cycle": 147,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 632729.772,
    +        "synthetic_kardashev_scenario_index": 0.00134752
    +      },
    +      {
    +        "cycle": 148,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 645877.897,
    +        "synthetic_kardashev_scenario_index": 0.00136334
    +      },
    +      {
    +        "cycle": 149,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 659370.286,
    +        "synthetic_kardashev_scenario_index": 0.00137925
    +      },
    +      {
    +        "cycle": 150,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 673217.062,
    +        "synthetic_kardashev_scenario_index": 0.00139525
    +      },
    +      {
    +        "cycle": 151,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 687428.674,
    +        "synthetic_kardashev_scenario_index": 0.00141134
    +      },
    +      {
    +        "cycle": 152,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 702015.91,
    +        "synthetic_kardashev_scenario_index": 0.00142752
    +      },
    +      {
    +        "cycle": 153,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 716989.909,
    +        "synthetic_kardashev_scenario_index": 0.00144379
    +      },
    +      {
    +        "cycle": 154,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 732362.173,
    +        "synthetic_kardashev_scenario_index": 0.00146015
    +      },
    +      {
    +        "cycle": 155,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 748144.578,
    +        "synthetic_kardashev_scenario_index": 0.0014766
    +      },
    +      {
    +        "cycle": 156,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 764349.39,
    +        "synthetic_kardashev_scenario_index": 0.00149314
    +      },
    +      {
    +        "cycle": 157,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 780989.276,
    +        "synthetic_kardashev_scenario_index": 0.00150977
    +      },
    +      {
    +        "cycle": 158,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 798077.321,
    +        "synthetic_kardashev_scenario_index": 0.00152649
    +      },
    +      {
    +        "cycle": 159,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 815627.041,
    +        "synthetic_kardashev_scenario_index": 0.0015433
    +      },
    +      {
    +        "cycle": 160,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 833652.399,
    +        "synthetic_kardashev_scenario_index": 0.0015602
    +      },
    +      {
    +        "cycle": 161,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 852167.819,
    +        "synthetic_kardashev_scenario_index": 0.00157719
    +      },
    +      {
    +        "cycle": 162,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 871188.205,
    +        "synthetic_kardashev_scenario_index": 0.00159427
    +      },
    +      {
    +        "cycle": 163,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 890728.956,
    +        "synthetic_kardashev_scenario_index": 0.00161144
    +      },
    +      {
    +        "cycle": 164,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 910805.987,
    +        "synthetic_kardashev_scenario_index": 0.0016287
    +      },
    +      {
    +        "cycle": 165,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 931435.743,
    +        "synthetic_kardashev_scenario_index": 0.00164605
    +      },
    +      {
    +        "cycle": 166,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 952635.221,
    +        "synthetic_kardashev_scenario_index": 0.00166349
    +      },
    +      {
    +        "cycle": 167,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 974421.989,
    +        "synthetic_kardashev_scenario_index": 0.00168102
    +      },
    +      {
    +        "cycle": 168,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 996814.206,
    +        "synthetic_kardashev_scenario_index": 0.00169864
    +      },
    +      {
    +        "cycle": 169,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1019830.646,
    +        "synthetic_kardashev_scenario_index": 0.00171635
    +      },
    +      {
    +        "cycle": 170,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1043490.717,
    +        "synthetic_kardashev_scenario_index": 0.00173415
    +      },
    +      {
    +        "cycle": 171,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1067814.486,
    +        "synthetic_kardashev_scenario_index": 0.00175204
    +      },
    +      {
    +        "cycle": 172,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1092822.701,
    +        "synthetic_kardashev_scenario_index": 0.00177002
    +      },
    +      {
    +        "cycle": 173,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1118536.819,
    +        "synthetic_kardashev_scenario_index": 0.00178809
    +      },
    +      {
    +        "cycle": 174,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1144979.029,
    +        "synthetic_kardashev_scenario_index": 0.00180625
    +      },
    +      {
    +        "cycle": 175,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1172172.281,
    +        "synthetic_kardashev_scenario_index": 0.0018245
    +      },
    +      {
    +        "cycle": 176,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1200140.312,
    +        "synthetic_kardashev_scenario_index": 0.00184284
    +      },
    +      {
    +        "cycle": 177,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1228907.675,
    +        "synthetic_kardashev_scenario_index": 0.00186127
    +      },
    +      {
    +        "cycle": 178,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1258499.772,
    +        "synthetic_kardashev_scenario_index": 0.00187979
    +      },
    +      {
    +        "cycle": 179,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1288942.881,
    +        "synthetic_kardashev_scenario_index": 0.0018984
    +      },
    +      {
    +        "cycle": 180,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1320264.193,
    +        "synthetic_kardashev_scenario_index": 0.0019171
    +      },
    +      {
    +        "cycle": 181,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1352491.842,
    +        "synthetic_kardashev_scenario_index": 0.00193589
    +      },
    +      {
    +        "cycle": 182,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1385654.942,
    +        "synthetic_kardashev_scenario_index": 0.00195477
    +      },
    +      {
    +        "cycle": 183,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1419783.623,
    +        "synthetic_kardashev_scenario_index": 0.00197374
    +      },
    +      {
    +        "cycle": 184,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1454909.07,
    +        "synthetic_kardashev_scenario_index": 0.0019928
    +      },
    +      {
    +        "cycle": 185,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1491063.56,
    +        "synthetic_kardashev_scenario_index": 0.00201195
    +      },
    +      {
    +        "cycle": 186,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1528280.506,
    +        "synthetic_kardashev_scenario_index": 0.00203119
    +      },
    +      {
    +        "cycle": 187,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1566594.498,
    +        "synthetic_kardashev_scenario_index": 0.00205052
    +      },
    +      {
    +        "cycle": 188,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1606041.347,
    +        "synthetic_kardashev_scenario_index": 0.00206994
    +      },
    +      {
    +        "cycle": 189,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1646658.133,
    +        "synthetic_kardashev_scenario_index": 0.00208945
    +      },
    +      {
    +        "cycle": 190,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1688483.25,
    +        "synthetic_kardashev_scenario_index": 0.00210905
    +      },
    +      {
    +        "cycle": 191,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1731556.458,
    +        "synthetic_kardashev_scenario_index": 0.00212874
    +      },
    +      {
    +        "cycle": 192,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1775918.934,
    +        "synthetic_kardashev_scenario_index": 0.00214852
    +      },
    +      {
    +        "cycle": 193,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1821613.328,
    +        "synthetic_kardashev_scenario_index": 0.00216839
    +      },
    +      {
    +        "cycle": 194,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1868683.816,
    +        "synthetic_kardashev_scenario_index": 0.00218835
    +      },
    +      {
    +        "cycle": 195,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1917176.161,
    +        "synthetic_kardashev_scenario_index": 0.0022084
    +      },
    +      {
    +        "cycle": 196,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1967137.772,
    +        "synthetic_kardashev_scenario_index": 0.00222854
    +      },
    +      {
    +        "cycle": 197,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 2018617.767,
    +        "synthetic_kardashev_scenario_index": 0.00224877
    +      },
    +      {
    +        "cycle": 198,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 2071667.042,
    +        "synthetic_kardashev_scenario_index": 0.00226909
    +      },
    +      {
    +        "cycle": 199,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 2126338.335,
    +        "synthetic_kardashev_scenario_index": 0.0022895
    +      },
    +      {
    +        "cycle": 200,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 2182686.301,
    +        "synthetic_kardashev_scenario_index": 0.00231
    +      },
    +      {
    +        "cycle": 201,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 2240767.583,
    +        "synthetic_kardashev_scenario_index": 0.00233059
    +      },
    +      {
    +        "cycle": 202,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 2300640.893,
    +        "synthetic_kardashev_scenario_index": 0.00235127
    +      },
    +      {
    +        "cycle": 203,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 2362367.088,
    +        "synthetic_kardashev_scenario_index": 0.00237204
    +      },
    +      {
    +        "cycle": 204,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 2426009.257,
    +        "synthetic_kardashev_scenario_index": 0.0023929
    +      },
    +      {
    +        "cycle": 205,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 2491632.807,
    +        "synthetic_kardashev_scenario_index": 0.00241385
    +      },
    +      {
    +        "cycle": 206,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 2559305.554,
    +        "synthetic_kardashev_scenario_index": 0.00243489
    +      },
    +      {
    +        "cycle": 207,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 2629097.816,
    +        "synthetic_kardashev_scenario_index": 0.00245602
    +      },
    +      {
    +        "cycle": 208,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 2701082.514,
    +        "synthetic_kardashev_scenario_index": 0.00247724
    +      },
    +      {
    +        "cycle": 209,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 2775335.272,
    +        "synthetic_kardashev_scenario_index": 0.00249855
    +      },
    +      {
    +        "cycle": 210,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 2851934.526,
    +        "synthetic_kardashev_scenario_index": 0.00251995
    +      },
    +      {
    +        "cycle": 211,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 2930961.632,
    +        "synthetic_kardashev_scenario_index": 0.00254144
    +      },
    +      {
    +        "cycle": 212,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 3012500.985,
    +        "synthetic_kardashev_scenario_index": 0.00256302
    +      },
    +      {
    +        "cycle": 213,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 3096640.138,
    +        "synthetic_kardashev_scenario_index": 0.00258469
    +      },
    +      {
    +        "cycle": 214,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 3183469.927,
    +        "synthetic_kardashev_scenario_index": 0.00260645
    +      },
    +      {
    +        "cycle": 215,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 3273084.605,
    +        "synthetic_kardashev_scenario_index": 0.0026283
    +      },
    +      {
    +        "cycle": 216,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 3365581.976,
    +        "synthetic_kardashev_scenario_index": 0.00265024
    +      },
    +      {
    +        "cycle": 217,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 3461063.537,
    +        "synthetic_kardashev_scenario_index": 0.00267227
    +      },
    +      {
    +        "cycle": 218,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 3559634.627,
    +        "synthetic_kardashev_scenario_index": 0.00269439
    +      },
    +      {
    +        "cycle": 219,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 3661404.581,
    +        "synthetic_kardashev_scenario_index": 0.0027166
    +      },
    +      {
    +        "cycle": 220,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 3766486.892,
    +        "synthetic_kardashev_scenario_index": 0.0027389
    +      },
    +      {
    +        "cycle": 221,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 3874999.379,
    +        "synthetic_kardashev_scenario_index": 0.00276129
    +      },
    +      {
    +        "cycle": 222,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 3987064.361,
    +        "synthetic_kardashev_scenario_index": 0.00278377
    +      },
    +      {
    +        "cycle": 223,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 4102808.839,
    +        "synthetic_kardashev_scenario_index": 0.00280634
    +      },
    +      {
    +        "cycle": 224,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 4222364.689,
    +        "synthetic_kardashev_scenario_index": 0.002829
    +      },
    +      {
    +        "cycle": 225,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 4345868.856,
    +        "synthetic_kardashev_scenario_index": 0.00285175
    +      },
    +      {
    +        "cycle": 226,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 4473463.566,
    +        "synthetic_kardashev_scenario_index": 0.00287459
    +      },
    +      {
    +        "cycle": 227,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 4605296.537,
    +        "synthetic_kardashev_scenario_index": 0.00289752
    +      },
    +      {
    +        "cycle": 228,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 4741521.209,
    +        "synthetic_kardashev_scenario_index": 0.00292054
    +      },
    +      {
    +        "cycle": 229,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 4882296.974,
    +        "synthetic_kardashev_scenario_index": 0.00294365
    +      },
    +      {
    +        "cycle": 230,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 5027789.424,
    +        "synthetic_kardashev_scenario_index": 0.00296685
    +      },
    +      {
    +        "cycle": 231,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 5178170.606,
    +        "synthetic_kardashev_scenario_index": 0.00299014
    +      },
    +      {
    +        "cycle": 232,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 5333619.288,
    +        "synthetic_kardashev_scenario_index": 0.00301352
    +      },
    +      {
    +        "cycle": 233,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 5494321.237,
    +        "synthetic_kardashev_scenario_index": 0.00303699
    +      },
    +      {
    +        "cycle": 234,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 5660469.511,
    +        "synthetic_kardashev_scenario_index": 0.00306055
    +      },
    +      {
    +        "cycle": 235,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 5832264.761,
    +        "synthetic_kardashev_scenario_index": 0.0030842
    +      },
    +      {
    +        "cycle": 236,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 6009915.546,
    +        "synthetic_kardashev_scenario_index": 0.00310794
    +      },
    +      {
    +        "cycle": 237,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 6193638.664,
    +        "synthetic_kardashev_scenario_index": 0.00313177
    +      },
    +      {
    +        "cycle": 238,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 6383659.498,
    +        "synthetic_kardashev_scenario_index": 0.00315569
    +      },
    +      {
    +        "cycle": 239,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 6580212.374,
    +        "synthetic_kardashev_scenario_index": 0.0031797
    +      },
    +      {
    +        "cycle": 240,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 6783540.936,
    +        "synthetic_kardashev_scenario_index": 0.0032038
    +      },
    +      {
    +        "cycle": 241,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 6993898.54,
    +        "synthetic_kardashev_scenario_index": 0.00322799
    +      },
    +      {
    +        "cycle": 242,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 7211548.663,
    +        "synthetic_kardashev_scenario_index": 0.00325227
    +      },
    +      {
    +        "cycle": 243,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 7436765.328,
    +        "synthetic_kardashev_scenario_index": 0.00327664
    +      },
    +      {
    +        "cycle": 244,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 7669833.553,
    +        "synthetic_kardashev_scenario_index": 0.0033011
    +      },
    +      {
    +        "cycle": 245,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 7911049.818,
    +        "synthetic_kardashev_scenario_index": 0.00332565
    +      },
    +      {
    +        "cycle": 246,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 8160722.55,
    +        "synthetic_kardashev_scenario_index": 0.00335029
    +      },
    +      {
    +        "cycle": 247,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 8419172.633,
    +        "synthetic_kardashev_scenario_index": 0.00337502
    +      },
    +      {
    +        "cycle": 248,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 8686733.939,
    +        "synthetic_kardashev_scenario_index": 0.00339984
    +      },
    +      {
    +        "cycle": 249,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 8963753.884,
    +        "synthetic_kardashev_scenario_index": 0.00342475
    +      },
    +      {
    +        "cycle": 250,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 9250594.008,
    +        "synthetic_kardashev_scenario_index": 0.00344975
    +      },
    +      {
    +        "cycle": 251,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 9547630.582,
    +        "synthetic_kardashev_scenario_index": 0.00347484
    +      },
    +      {
    +        "cycle": 252,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 9855255.239,
    +        "synthetic_kardashev_scenario_index": 0.00350002
    +      },
    +      {
    +        "cycle": 253,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 10173875.641,
    +        "synthetic_kardashev_scenario_index": 0.00352529
    +      },
    +      {
    +        "cycle": 254,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 10503916.167,
    +        "synthetic_kardashev_scenario_index": 0.00355065
    +      },
    +      {
    +        "cycle": 255,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 10845818.638,
    +        "synthetic_kardashev_scenario_index": 0.0035761
    +      },
    +      {
    +        "cycle": 256,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 11200043.075,
    +        "synthetic_kardashev_scenario_index": 0.00360164
    +      }
    +    ],
    +    "capital_events": [
    +      {
    +        "cycle": 1,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 2,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 3,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 4,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 5,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 6,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 7,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 8,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 9,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 10,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 11,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 12,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 13,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 14,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 15,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 16,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 17,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 18,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 19,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 20,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 21,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 22,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 23,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 24,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 25,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 26,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 27,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 28,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 29,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 30,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 31,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 32,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 33,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 34,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 35,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 36,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 37,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 38,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 39,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 40,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 41,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 42,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 43,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 44,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 45,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 46,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 47,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 48,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 49,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 50,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 51,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 52,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 53,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 54,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 55,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 56,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 57,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 58,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 59,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 60,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 61,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 62,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 63,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 64,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 65,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 66,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 67,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 68,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 69,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 70,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 71,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 72,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 73,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 74,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 75,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 76,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 77,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 78,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 79,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 80,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 81,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 82,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 83,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 84,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 85,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 86,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 87,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 88,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 89,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 90,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 91,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 92,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 93,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 94,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 95,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 96,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 97,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 98,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 99,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 100,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 101,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 102,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 103,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 104,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 105,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 106,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 107,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 108,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 109,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 110,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 111,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 112,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 113,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 114,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 115,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 116,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 117,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 118,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 119,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 120,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 121,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 122,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 123,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 124,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 125,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 126,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 127,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 128,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 129,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 130,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 131,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 132,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 133,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 134,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 135,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 136,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 137,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 138,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 139,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 140,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 141,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 142,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 143,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 144,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 145,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 146,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 147,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 148,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 149,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 150,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 151,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 152,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 153,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 154,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 155,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 156,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 157,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 158,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 159,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 160,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 161,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 162,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 163,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 164,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 165,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 166,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 167,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 168,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 169,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 170,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 171,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 172,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 173,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 174,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 175,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 176,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 177,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 178,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 179,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 180,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 181,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 182,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 183,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 184,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 185,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 186,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 187,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 188,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 189,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 190,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 191,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 192,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 193,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 194,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 195,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 196,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 197,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 198,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 199,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 200,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 201,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 202,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 203,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 204,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 205,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 206,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 207,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 208,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 209,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 210,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 211,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 212,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 213,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 214,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 215,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 216,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 217,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 218,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 219,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 220,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 221,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 222,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 223,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 224,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 225,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 226,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 227,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 228,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 229,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 230,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 231,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 232,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 233,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 234,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 235,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 236,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 237,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 238,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 239,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 240,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 241,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 242,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 243,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 244,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 245,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 246,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 247,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 248,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 249,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 250,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 251,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 252,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 253,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 254,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 255,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      {
    +        "cycle": 256,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      }
    +    ],
    +    "compute_events": [
    +      {
    +        "cycle": 1,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 2,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 3,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 4,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 5,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 6,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 7,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 8,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 9,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 10,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 11,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 12,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 13,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 14,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 15,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 16,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 17,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 18,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 19,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 20,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 21,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 22,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 23,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 24,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 25,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 26,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 27,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 28,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 29,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 30,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 31,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 32,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 33,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 34,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 35,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 36,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 37,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 38,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 39,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 40,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 41,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 42,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 43,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 44,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 45,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 46,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 47,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 48,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 49,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 50,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 51,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 52,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 53,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 54,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 55,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 56,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 57,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 58,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 59,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 60,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 61,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 62,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 63,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 64,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 65,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 66,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 67,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 68,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 69,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 70,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 71,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 72,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 73,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 74,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 75,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 76,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 77,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 78,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 79,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 80,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 81,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 82,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 83,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 84,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 85,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 86,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 87,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 88,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 89,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 90,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 91,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 92,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 93,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 94,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 95,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 96,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 97,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 98,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 99,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 100,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 101,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 102,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 103,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 104,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 105,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 106,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 107,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 108,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 109,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 110,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 111,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 112,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 113,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 114,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 115,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 116,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 117,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 118,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 119,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 120,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 121,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 122,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 123,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 124,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 125,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 126,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 127,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 128,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 129,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 130,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 131,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 132,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 133,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 134,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 135,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 136,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 137,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 138,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 139,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 140,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 141,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 142,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 143,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 144,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 145,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 146,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 147,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 148,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 149,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 150,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 151,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 152,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 153,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 154,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 155,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 156,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 157,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 158,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 159,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 160,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 161,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 162,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 163,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 164,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 165,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 166,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 167,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 168,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 169,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 170,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 171,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 172,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 173,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 174,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 175,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 176,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 177,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 178,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 179,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 180,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 181,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 182,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 183,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 184,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 185,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 186,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 187,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 188,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 189,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 190,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 191,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 192,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 193,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 194,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 195,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 196,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 197,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 198,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 199,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 200,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 201,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 202,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 203,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 204,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 205,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 206,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 207,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 208,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 209,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 210,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 211,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 212,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 213,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 214,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 215,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 216,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 217,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 218,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 219,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 220,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 221,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 222,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 223,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 224,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 225,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 226,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 227,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 228,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 229,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 230,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 231,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 232,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 233,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 234,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 235,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 236,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 237,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 238,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 239,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 240,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 241,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 242,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 243,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 244,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 245,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 246,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 247,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 248,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 249,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 250,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 251,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 252,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 253,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 254,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 255,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      {
    +        "cycle": 256,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      }
    +    ],
    +    "energy_events": [
    +      {
    +        "cycle": 1,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 2,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 3,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 4,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 5,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 6,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 7,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 8,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 9,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 10,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 11,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 12,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 13,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 14,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 15,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 16,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 17,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 18,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 19,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 20,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 21,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 22,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 23,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 24,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 25,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 26,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 27,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 28,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 29,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 30,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 31,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 32,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 33,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 34,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 35,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 36,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 37,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 38,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 39,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 40,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 41,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 42,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 43,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 44,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 45,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 46,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 47,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 48,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 49,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 50,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 51,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 52,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 53,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 54,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 55,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 56,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 57,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 58,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 59,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 60,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 61,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 62,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 63,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 64,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 65,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 66,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 67,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 68,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 69,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 70,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 71,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 72,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 73,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 74,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 75,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 76,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 77,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 78,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 79,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 80,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 81,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 82,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 83,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 84,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 85,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 86,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 87,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 88,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 89,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 90,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 91,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 92,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 93,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 94,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 95,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 96,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 97,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 98,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 99,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 100,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 101,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 102,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 103,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 104,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 105,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 106,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 107,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 108,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 109,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 110,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 111,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 112,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 113,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 114,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 115,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 116,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 117,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 118,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 119,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 120,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 121,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 122,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 123,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 124,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 125,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 126,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 127,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 128,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 129,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 130,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 131,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 132,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 133,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 134,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 135,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 136,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 137,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 138,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 139,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 140,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 141,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 142,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 143,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 144,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 145,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 146,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 147,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 148,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 149,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 150,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 151,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 152,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 153,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 154,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 155,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 156,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 157,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 158,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 159,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 160,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 161,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 162,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 163,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 164,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 165,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 166,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 167,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 168,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 169,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 170,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 171,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 172,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 173,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 174,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 175,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 176,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 177,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 178,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 179,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 180,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 181,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 182,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 183,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 184,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 185,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 186,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 187,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 188,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 189,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 190,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 191,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 192,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 193,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 194,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 195,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 196,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 197,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 198,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 199,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 200,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 201,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 202,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 203,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 204,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 205,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 206,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 207,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 208,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 209,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 210,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 211,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 212,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 213,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 214,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 215,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 216,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 217,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 218,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 219,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 220,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 221,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 222,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 223,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 224,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 225,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 226,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 227,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 228,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 229,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 230,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 231,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 232,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 233,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 234,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 235,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 236,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 237,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 238,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 239,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 240,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 241,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 242,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 243,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 244,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 245,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 246,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 247,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 248,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 249,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 250,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 251,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 252,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 253,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 254,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 255,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      {
    +        "cycle": 256,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      }
    +    ],
    +    "trust_events": [
    +      {
    +        "cycle": 1,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 2,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 3,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 4,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 5,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 6,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 7,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 8,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 9,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 10,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 11,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 12,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 13,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 14,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 15,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 16,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 17,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 18,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 19,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 20,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 21,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 22,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 23,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 24,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 25,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 26,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 27,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 28,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 29,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 30,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 31,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 32,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 33,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 34,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 35,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 36,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 37,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 38,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 39,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 40,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 41,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 42,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 43,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 44,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 45,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 46,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 47,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 48,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 49,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 50,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 51,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 52,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 53,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 54,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 55,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 56,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 57,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 58,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 59,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 60,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 61,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 62,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 63,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 64,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 65,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 66,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 67,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 68,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 69,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 70,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 71,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 72,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 73,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 74,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 75,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 76,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 77,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 78,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 79,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 80,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 81,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 82,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 83,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 84,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 85,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 86,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 87,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 88,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 89,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 90,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 91,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 92,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 93,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 94,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 95,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 96,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 97,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 98,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 99,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 100,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 101,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 102,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 103,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 104,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 105,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 106,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 107,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 108,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 109,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 110,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 111,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 112,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 113,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 114,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 115,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 116,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 117,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 118,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 119,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 120,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 121,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 122,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 123,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 124,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 125,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 126,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 127,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 128,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 129,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 130,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 131,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 132,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 133,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 134,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 135,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 136,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 137,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 138,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 139,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 140,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 141,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 142,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 143,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 144,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 145,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 146,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 147,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 148,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 149,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 150,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 151,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 152,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 153,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 154,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 155,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 156,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 157,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 158,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 159,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 160,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 161,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 162,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 163,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 164,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 165,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 166,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 167,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 168,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 169,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 170,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 171,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 172,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 173,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 174,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 175,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 176,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 177,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 178,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 179,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 180,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 181,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 182,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 183,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 184,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 185,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 186,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 187,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 188,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 189,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 190,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 191,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 192,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 193,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 194,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 195,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 196,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 197,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 198,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 199,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 200,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 201,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 202,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 203,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 204,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 205,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 206,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 207,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 208,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 209,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 210,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 211,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 212,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 213,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 214,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 215,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 216,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 217,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 218,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 219,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 220,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 221,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 222,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 223,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 224,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 225,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 226,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 227,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 228,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 229,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 230,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 231,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 232,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 233,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 234,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 235,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 236,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 237,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 238,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 239,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 240,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 241,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 242,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 243,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 244,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 245,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 246,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 247,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 248,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 249,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 250,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 251,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 252,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 253,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 254,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 255,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      },
    +      {
    +        "cycle": 256,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      }
    +    ],
    +    "evolution_gate_events": [
    +      {
    +        "cycle": 1,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 2,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 3,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 4,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 5,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 6,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 7,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 8,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 9,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 10,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 11,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 12,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 13,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 14,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 15,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 16,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 17,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 18,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 19,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 20,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 21,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 22,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 23,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 24,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 25,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 26,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 27,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 28,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 29,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 30,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 31,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 32,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 33,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 34,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 35,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 36,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 37,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 38,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 39,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 40,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 41,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 42,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 43,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 44,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 45,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 46,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 47,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 48,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 49,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 50,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 51,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 52,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 53,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 54,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 55,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 56,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 57,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 58,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 59,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 60,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 61,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 62,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 63,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 64,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 65,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 66,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 67,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 68,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 69,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 70,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 71,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 72,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 73,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 74,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 75,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 76,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 77,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 78,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 79,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 80,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 81,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 82,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 83,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 84,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 85,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 86,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 87,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 88,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 89,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 90,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 91,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 92,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 93,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 94,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 95,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 96,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 97,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 98,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 99,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 100,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 101,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 102,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 103,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 104,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 105,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 106,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 107,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 108,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 109,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 110,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 111,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 112,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 113,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 114,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 115,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 116,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 117,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 118,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 119,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 120,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 121,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 122,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 123,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 124,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 125,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 126,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 127,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 128,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 129,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 130,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 131,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 132,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 133,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 134,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 135,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 136,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 137,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 138,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 139,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 140,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 141,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 142,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 143,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 144,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 145,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 146,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 147,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 148,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 149,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 150,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 151,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 152,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 153,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 154,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 155,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 156,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 157,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 158,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 159,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 160,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 161,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 162,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 163,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 164,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 165,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 166,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 167,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 168,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 169,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 170,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 171,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 172,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 173,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 174,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 175,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 176,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 177,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 178,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 179,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 180,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 181,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 182,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 183,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 184,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 185,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 186,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 187,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 188,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 189,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 190,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 191,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 192,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 193,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 194,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 195,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 196,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 197,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 198,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 199,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 200,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 201,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 202,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 203,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 204,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 205,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 206,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 207,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 208,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 209,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 210,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 211,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 212,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 213,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 214,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 215,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 216,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 217,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 218,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 219,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 220,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 221,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 222,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 223,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 224,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 225,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 226,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 227,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 228,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 229,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 230,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 231,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 232,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 233,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 234,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 235,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 236,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 237,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 238,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 239,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 240,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 241,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 242,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 243,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 244,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 245,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 246,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 247,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 248,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 249,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 250,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 251,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 252,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 253,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 254,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 255,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 256,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      }
    +    ],
    +    "meta_rsi_upgrades": [
    +      {
    +        "cycle": 8,
    +        "upgrade_type": "execution_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 16,
    +        "upgrade_type": "proof_compression_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 24,
    +        "upgrade_type": "credit_assignment_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 32,
    +        "upgrade_type": "evolution_gate_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 40,
    +        "upgrade_type": "rollback_predictor_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 48,
    +        "upgrade_type": "capital_compute_energy_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 56,
    +        "upgrade_type": "claim_boundary_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 64,
    +        "upgrade_type": "commit_schema_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 72,
    +        "upgrade_type": "execution_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 80,
    +        "upgrade_type": "proof_compression_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 88,
    +        "upgrade_type": "credit_assignment_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 96,
    +        "upgrade_type": "evolution_gate_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 104,
    +        "upgrade_type": "rollback_predictor_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 112,
    +        "upgrade_type": "capital_compute_energy_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 120,
    +        "upgrade_type": "claim_boundary_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 128,
    +        "upgrade_type": "commit_schema_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 136,
    +        "upgrade_type": "execution_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 144,
    +        "upgrade_type": "proof_compression_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 152,
    +        "upgrade_type": "credit_assignment_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 160,
    +        "upgrade_type": "evolution_gate_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 168,
    +        "upgrade_type": "rollback_predictor_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 176,
    +        "upgrade_type": "capital_compute_energy_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 184,
    +        "upgrade_type": "claim_boundary_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 192,
    +        "upgrade_type": "commit_schema_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 200,
    +        "upgrade_type": "execution_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 208,
    +        "upgrade_type": "proof_compression_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 216,
    +        "upgrade_type": "credit_assignment_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 224,
    +        "upgrade_type": "evolution_gate_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 232,
    +        "upgrade_type": "rollback_predictor_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 240,
    +        "upgrade_type": "capital_compute_energy_router_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 248,
    +        "upgrade_type": "claim_boundary_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      },
    +      {
    +        "cycle": 256,
    +        "upgrade_type": "commit_schema_upgrade",
    +        "meaning": "The protocol improved part of its own commitment, execution, proof, evolution, routing, or rollback machinery."
    +      }
    +    ],
    +    "selected_upgrades_sample": [
    +      {
    +        "cycle": 1,
    +        "upgrade_id": "upgrade_cycle_001_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_001",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_001"
    +      },
    +      {
    +        "cycle": 2,
    +        "upgrade_id": "upgrade_cycle_002_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_002",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_002"
    +      },
    +      {
    +        "cycle": 3,
    +        "upgrade_id": "upgrade_cycle_003_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_003",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_003"
    +      },
    +      {
    +        "cycle": 4,
    +        "upgrade_id": "upgrade_cycle_004_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_004",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_004"
    +      },
    +      {
    +        "cycle": 5,
    +        "upgrade_id": "upgrade_cycle_005_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_005",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_005"
    +      },
    +      {
    +        "cycle": 6,
    +        "upgrade_id": "upgrade_cycle_006_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_006",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_006"
    +      },
    +      {
    +        "cycle": 7,
    +        "upgrade_id": "upgrade_cycle_007_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_007",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_007"
    +      },
    +      {
    +        "cycle": 8,
    +        "upgrade_id": "upgrade_cycle_008_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_008",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_008"
    +      },
    +      {
    +        "cycle": 9,
    +        "upgrade_id": "upgrade_cycle_009_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_009",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_009"
    +      },
    +      {
    +        "cycle": 10,
    +        "upgrade_id": "upgrade_cycle_010_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_010",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_010"
    +      },
    +      {
    +        "cycle": 11,
    +        "upgrade_id": "upgrade_cycle_011_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_011",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_011"
    +      },
    +      {
    +        "cycle": 12,
    +        "upgrade_id": "upgrade_cycle_012_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_012",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_012"
    +      },
    +      {
    +        "cycle": 13,
    +        "upgrade_id": "upgrade_cycle_013_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_013",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_013"
    +      },
    +      {
    +        "cycle": 14,
    +        "upgrade_id": "upgrade_cycle_014_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_014",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_014"
    +      },
    +      {
    +        "cycle": 15,
    +        "upgrade_id": "upgrade_cycle_015_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_015",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_015"
    +      },
    +      {
    +        "cycle": 16,
    +        "upgrade_id": "upgrade_cycle_016_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_016",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_016"
    +      },
    +      {
    +        "cycle": 17,
    +        "upgrade_id": "upgrade_cycle_017_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_017",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_017"
    +      },
    +      {
    +        "cycle": 18,
    +        "upgrade_id": "upgrade_cycle_018_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_018",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_018"
    +      },
    +      {
    +        "cycle": 19,
    +        "upgrade_id": "upgrade_cycle_019_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_019",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_019"
    +      },
    +      {
    +        "cycle": 20,
    +        "upgrade_id": "upgrade_cycle_020_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_020",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_020"
    +      },
    +      {
    +        "cycle": 21,
    +        "upgrade_id": "upgrade_cycle_021_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_021",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_021"
    +      },
    +      {
    +        "cycle": 22,
    +        "upgrade_id": "upgrade_cycle_022_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_022",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_022"
    +      },
    +      {
    +        "cycle": 23,
    +        "upgrade_id": "upgrade_cycle_023_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_023",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_023"
    +      },
    +      {
    +        "cycle": 24,
    +        "upgrade_id": "upgrade_cycle_024_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_024",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_024"
    +      },
    +      {
    +        "cycle": 25,
    +        "upgrade_id": "upgrade_cycle_025_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_025",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_025"
    +      },
    +      {
    +        "cycle": 26,
    +        "upgrade_id": "upgrade_cycle_026_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_026",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_026"
    +      },
    +      {
    +        "cycle": 27,
    +        "upgrade_id": "upgrade_cycle_027_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_027",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_027"
    +      },
    +      {
    +        "cycle": 28,
    +        "upgrade_id": "upgrade_cycle_028_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_028",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_028"
    +      },
    +      {
    +        "cycle": 29,
    +        "upgrade_id": "upgrade_cycle_029_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_029",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_029"
    +      },
    +      {
    +        "cycle": 30,
    +        "upgrade_id": "upgrade_cycle_030_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_030",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_030"
    +      },
    +      {
    +        "cycle": 31,
    +        "upgrade_id": "upgrade_cycle_031_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_031",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_031"
    +      },
    +      {
    +        "cycle": 32,
    +        "upgrade_id": "upgrade_cycle_032_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_032",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_032"
    +      },
    +      {
    +        "cycle": 33,
    +        "upgrade_id": "upgrade_cycle_033_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_033",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_033"
    +      },
    +      {
    +        "cycle": 34,
    +        "upgrade_id": "upgrade_cycle_034_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_034",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_034"
    +      },
    +      {
    +        "cycle": 35,
    +        "upgrade_id": "upgrade_cycle_035_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_035",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_035"
    +      },
    +      {
    +        "cycle": 36,
    +        "upgrade_id": "upgrade_cycle_036_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_036",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_036"
    +      },
    +      {
    +        "cycle": 37,
    +        "upgrade_id": "upgrade_cycle_037_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_037",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_037"
    +      },
    +      {
    +        "cycle": 38,
    +        "upgrade_id": "upgrade_cycle_038_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_038",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_038"
    +      },
    +      {
    +        "cycle": 39,
    +        "upgrade_id": "upgrade_cycle_039_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_039",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_039"
    +      },
    +      {
    +        "cycle": 40,
    +        "upgrade_id": "upgrade_cycle_040_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_040",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_040"
    +      },
    +      {
    +        "cycle": 41,
    +        "upgrade_id": "upgrade_cycle_041_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_041",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_041"
    +      },
    +      {
    +        "cycle": 42,
    +        "upgrade_id": "upgrade_cycle_042_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_042",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_042"
    +      },
    +      {
    +        "cycle": 43,
    +        "upgrade_id": "upgrade_cycle_043_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_043",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_043"
    +      },
    +      {
    +        "cycle": 44,
    +        "upgrade_id": "upgrade_cycle_044_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_044",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_044"
    +      },
    +      {
    +        "cycle": 45,
    +        "upgrade_id": "upgrade_cycle_045_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_045",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_045"
    +      },
    +      {
    +        "cycle": 46,
    +        "upgrade_id": "upgrade_cycle_046_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_046",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_046"
    +      },
    +      {
    +        "cycle": 47,
    +        "upgrade_id": "upgrade_cycle_047_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_047",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_047"
    +      },
    +      {
    +        "cycle": 48,
    +        "upgrade_id": "upgrade_cycle_048_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_048",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_048"
    +      },
    +      {
    +        "cycle": 49,
    +        "upgrade_id": "upgrade_cycle_049_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_049",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_049"
    +      },
    +      {
    +        "cycle": 50,
    +        "upgrade_id": "upgrade_cycle_050_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_050",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_050"
    +      },
    +      {
    +        "cycle": 51,
    +        "upgrade_id": "upgrade_cycle_051_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_051",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_051"
    +      },
    +      {
    +        "cycle": 52,
    +        "upgrade_id": "upgrade_cycle_052_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_052",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_052"
    +      },
    +      {
    +        "cycle": 53,
    +        "upgrade_id": "upgrade_cycle_053_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_053",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_053"
    +      },
    +      {
    +        "cycle": 54,
    +        "upgrade_id": "upgrade_cycle_054_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_054",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_054"
    +      },
    +      {
    +        "cycle": 55,
    +        "upgrade_id": "upgrade_cycle_055_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_055",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_055"
    +      },
    +      {
    +        "cycle": 56,
    +        "upgrade_id": "upgrade_cycle_056_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_056",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_056"
    +      },
    +      {
    +        "cycle": 57,
    +        "upgrade_id": "upgrade_cycle_057_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_057",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_057"
    +      },
    +      {
    +        "cycle": 58,
    +        "upgrade_id": "upgrade_cycle_058_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_058",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_058"
    +      },
    +      {
    +        "cycle": 59,
    +        "upgrade_id": "upgrade_cycle_059_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_059",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_059"
    +      },
    +      {
    +        "cycle": 60,
    +        "upgrade_id": "upgrade_cycle_060_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_060",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_060"
    +      },
    +      {
    +        "cycle": 61,
    +        "upgrade_id": "upgrade_cycle_061_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_061",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_061"
    +      },
    +      {
    +        "cycle": 62,
    +        "upgrade_id": "upgrade_cycle_062_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_062",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_062"
    +      },
    +      {
    +        "cycle": 63,
    +        "upgrade_id": "upgrade_cycle_063_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_063",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_063"
    +      },
    +      {
    +        "cycle": 64,
    +        "upgrade_id": "upgrade_cycle_064_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_064",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_064"
    +      },
    +      {
    +        "cycle": 65,
    +        "upgrade_id": "upgrade_cycle_065_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_065",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_065"
    +      },
    +      {
    +        "cycle": 66,
    +        "upgrade_id": "upgrade_cycle_066_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_066",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_066"
    +      },
    +      {
    +        "cycle": 67,
    +        "upgrade_id": "upgrade_cycle_067_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_067",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_067"
    +      },
    +      {
    +        "cycle": 68,
    +        "upgrade_id": "upgrade_cycle_068_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_068",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_068"
    +      },
    +      {
    +        "cycle": 69,
    +        "upgrade_id": "upgrade_cycle_069_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_069",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_069"
    +      },
    +      {
    +        "cycle": 70,
    +        "upgrade_id": "upgrade_cycle_070_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_070",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_070"
    +      },
    +      {
    +        "cycle": 71,
    +        "upgrade_id": "upgrade_cycle_071_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_071",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_071"
    +      },
    +      {
    +        "cycle": 72,
    +        "upgrade_id": "upgrade_cycle_072_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_072",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_072"
    +      },
    +      {
    +        "cycle": 73,
    +        "upgrade_id": "upgrade_cycle_073_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_073",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_073"
    +      },
    +      {
    +        "cycle": 74,
    +        "upgrade_id": "upgrade_cycle_074_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_074",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_074"
    +      },
    +      {
    +        "cycle": 75,
    +        "upgrade_id": "upgrade_cycle_075_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_075",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_075"
    +      },
    +      {
    +        "cycle": 76,
    +        "upgrade_id": "upgrade_cycle_076_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_076",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_076"
    +      },
    +      {
    +        "cycle": 77,
    +        "upgrade_id": "upgrade_cycle_077_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_077",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_077"
    +      },
    +      {
    +        "cycle": 78,
    +        "upgrade_id": "upgrade_cycle_078_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_078",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_078"
    +      },
    +      {
    +        "cycle": 79,
    +        "upgrade_id": "upgrade_cycle_079_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_079",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_079"
    +      },
    +      {
    +        "cycle": 80,
    +        "upgrade_id": "upgrade_cycle_080_sovereign_domain_artifact",
    +        "source_proof": "proof_packet_cycle_080",
    +        "decision": "selected_for_canary",
    +        "rollback_target": "baseline_cycle_080"
    +      }
    +    ],
    +    "rejected_upgrades_sample": [
    +      {
    +        "cycle": 1,
    +        "upgrade_id": "unsafe_candidate_cycle_001",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 2,
    +        "upgrade_id": "unsafe_candidate_cycle_002",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 3,
    +        "upgrade_id": "unsafe_candidate_cycle_003",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 4,
    +        "upgrade_id": "unsafe_candidate_cycle_004",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 5,
    +        "upgrade_id": "unsafe_candidate_cycle_005",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 6,
    +        "upgrade_id": "unsafe_candidate_cycle_006",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 7,
    +        "upgrade_id": "unsafe_candidate_cycle_007",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 8,
    +        "upgrade_id": "unsafe_candidate_cycle_008",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 9,
    +        "upgrade_id": "unsafe_candidate_cycle_009",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 10,
    +        "upgrade_id": "unsafe_candidate_cycle_010",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 11,
    +        "upgrade_id": "unsafe_candidate_cycle_011",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 12,
    +        "upgrade_id": "unsafe_candidate_cycle_012",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 13,
    +        "upgrade_id": "unsafe_candidate_cycle_013",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 14,
    +        "upgrade_id": "unsafe_candidate_cycle_014",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 15,
    +        "upgrade_id": "unsafe_candidate_cycle_015",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 16,
    +        "upgrade_id": "unsafe_candidate_cycle_016",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 17,
    +        "upgrade_id": "unsafe_candidate_cycle_017",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 18,
    +        "upgrade_id": "unsafe_candidate_cycle_018",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 19,
    +        "upgrade_id": "unsafe_candidate_cycle_019",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 20,
    +        "upgrade_id": "unsafe_candidate_cycle_020",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 21,
    +        "upgrade_id": "unsafe_candidate_cycle_021",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 22,
    +        "upgrade_id": "unsafe_candidate_cycle_022",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 23,
    +        "upgrade_id": "unsafe_candidate_cycle_023",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 24,
    +        "upgrade_id": "unsafe_candidate_cycle_024",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 25,
    +        "upgrade_id": "unsafe_candidate_cycle_025",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 26,
    +        "upgrade_id": "unsafe_candidate_cycle_026",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 27,
    +        "upgrade_id": "unsafe_candidate_cycle_027",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 28,
    +        "upgrade_id": "unsafe_candidate_cycle_028",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 29,
    +        "upgrade_id": "unsafe_candidate_cycle_029",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 30,
    +        "upgrade_id": "unsafe_candidate_cycle_030",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 31,
    +        "upgrade_id": "unsafe_candidate_cycle_031",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 32,
    +        "upgrade_id": "unsafe_candidate_cycle_032",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 33,
    +        "upgrade_id": "unsafe_candidate_cycle_033",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 34,
    +        "upgrade_id": "unsafe_candidate_cycle_034",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 35,
    +        "upgrade_id": "unsafe_candidate_cycle_035",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 36,
    +        "upgrade_id": "unsafe_candidate_cycle_036",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 37,
    +        "upgrade_id": "unsafe_candidate_cycle_037",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 38,
    +        "upgrade_id": "unsafe_candidate_cycle_038",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 39,
    +        "upgrade_id": "unsafe_candidate_cycle_039",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 40,
    +        "upgrade_id": "unsafe_candidate_cycle_040",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 41,
    +        "upgrade_id": "unsafe_candidate_cycle_041",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 42,
    +        "upgrade_id": "unsafe_candidate_cycle_042",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 43,
    +        "upgrade_id": "unsafe_candidate_cycle_043",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 44,
    +        "upgrade_id": "unsafe_candidate_cycle_044",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 45,
    +        "upgrade_id": "unsafe_candidate_cycle_045",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 46,
    +        "upgrade_id": "unsafe_candidate_cycle_046",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 47,
    +        "upgrade_id": "unsafe_candidate_cycle_047",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 48,
    +        "upgrade_id": "unsafe_candidate_cycle_048",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 49,
    +        "upgrade_id": "unsafe_candidate_cycle_049",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 50,
    +        "upgrade_id": "unsafe_candidate_cycle_050",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 51,
    +        "upgrade_id": "unsafe_candidate_cycle_051",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 52,
    +        "upgrade_id": "unsafe_candidate_cycle_052",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 53,
    +        "upgrade_id": "unsafe_candidate_cycle_053",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 54,
    +        "upgrade_id": "unsafe_candidate_cycle_054",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 55,
    +        "upgrade_id": "unsafe_candidate_cycle_055",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 56,
    +        "upgrade_id": "unsafe_candidate_cycle_056",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 57,
    +        "upgrade_id": "unsafe_candidate_cycle_057",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 58,
    +        "upgrade_id": "unsafe_candidate_cycle_058",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 59,
    +        "upgrade_id": "unsafe_candidate_cycle_059",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 60,
    +        "upgrade_id": "unsafe_candidate_cycle_060",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 61,
    +        "upgrade_id": "unsafe_candidate_cycle_061",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 62,
    +        "upgrade_id": "unsafe_candidate_cycle_062",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 63,
    +        "upgrade_id": "unsafe_candidate_cycle_063",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 64,
    +        "upgrade_id": "unsafe_candidate_cycle_064",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 65,
    +        "upgrade_id": "unsafe_candidate_cycle_065",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 66,
    +        "upgrade_id": "unsafe_candidate_cycle_066",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 67,
    +        "upgrade_id": "unsafe_candidate_cycle_067",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 68,
    +        "upgrade_id": "unsafe_candidate_cycle_068",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 69,
    +        "upgrade_id": "unsafe_candidate_cycle_069",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 70,
    +        "upgrade_id": "unsafe_candidate_cycle_070",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 71,
    +        "upgrade_id": "unsafe_candidate_cycle_071",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 72,
    +        "upgrade_id": "unsafe_candidate_cycle_072",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 73,
    +        "upgrade_id": "unsafe_candidate_cycle_073",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 74,
    +        "upgrade_id": "unsafe_candidate_cycle_074",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 75,
    +        "upgrade_id": "unsafe_candidate_cycle_075",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 76,
    +        "upgrade_id": "unsafe_candidate_cycle_076",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 77,
    +        "upgrade_id": "unsafe_candidate_cycle_077",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 78,
    +        "upgrade_id": "unsafe_candidate_cycle_078",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 79,
    +        "upgrade_id": "unsafe_candidate_cycle_079",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      },
    +      {
    +        "cycle": 80,
    +        "upgrade_id": "unsafe_candidate_cycle_080",
    +        "reason": "failed safety, sovereignty, claim-boundary, or rollback readiness eval",
    +        "decision": "rejected"
    +      }
    +    ],
    +    "rollback_sample": [
    +      {
    +        "cycle": 1,
    +        "rollback_id": "rollback_cycle_001",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_001"
    +      },
    +      {
    +        "cycle": 2,
    +        "rollback_id": "rollback_cycle_002",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_002"
    +      },
    +      {
    +        "cycle": 3,
    +        "rollback_id": "rollback_cycle_003",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_003"
    +      },
    +      {
    +        "cycle": 4,
    +        "rollback_id": "rollback_cycle_004",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_004"
    +      },
    +      {
    +        "cycle": 5,
    +        "rollback_id": "rollback_cycle_005",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_005"
    +      },
    +      {
    +        "cycle": 6,
    +        "rollback_id": "rollback_cycle_006",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_006"
    +      },
    +      {
    +        "cycle": 7,
    +        "rollback_id": "rollback_cycle_007",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_007"
    +      },
    +      {
    +        "cycle": 8,
    +        "rollback_id": "rollback_cycle_008",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_008"
    +      },
    +      {
    +        "cycle": 9,
    +        "rollback_id": "rollback_cycle_009",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_009"
    +      },
    +      {
    +        "cycle": 10,
    +        "rollback_id": "rollback_cycle_010",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_010"
    +      },
    +      {
    +        "cycle": 11,
    +        "rollback_id": "rollback_cycle_011",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_011"
    +      },
    +      {
    +        "cycle": 12,
    +        "rollback_id": "rollback_cycle_012",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_012"
    +      },
    +      {
    +        "cycle": 13,
    +        "rollback_id": "rollback_cycle_013",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_013"
    +      },
    +      {
    +        "cycle": 14,
    +        "rollback_id": "rollback_cycle_014",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_014"
    +      },
    +      {
    +        "cycle": 15,
    +        "rollback_id": "rollback_cycle_015",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_015"
    +      },
    +      {
    +        "cycle": 16,
    +        "rollback_id": "rollback_cycle_016",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_016"
    +      },
    +      {
    +        "cycle": 17,
    +        "rollback_id": "rollback_cycle_017",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_017"
    +      },
    +      {
    +        "cycle": 18,
    +        "rollback_id": "rollback_cycle_018",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_018"
    +      },
    +      {
    +        "cycle": 19,
    +        "rollback_id": "rollback_cycle_019",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_019"
    +      },
    +      {
    +        "cycle": 20,
    +        "rollback_id": "rollback_cycle_020",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_020"
    +      },
    +      {
    +        "cycle": 21,
    +        "rollback_id": "rollback_cycle_021",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_021"
    +      },
    +      {
    +        "cycle": 22,
    +        "rollback_id": "rollback_cycle_022",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_022"
    +      },
    +      {
    +        "cycle": 23,
    +        "rollback_id": "rollback_cycle_023",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_023"
    +      },
    +      {
    +        "cycle": 24,
    +        "rollback_id": "rollback_cycle_024",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_024"
    +      },
    +      {
    +        "cycle": 25,
    +        "rollback_id": "rollback_cycle_025",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_025"
    +      },
    +      {
    +        "cycle": 26,
    +        "rollback_id": "rollback_cycle_026",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_026"
    +      },
    +      {
    +        "cycle": 27,
    +        "rollback_id": "rollback_cycle_027",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_027"
    +      },
    +      {
    +        "cycle": 28,
    +        "rollback_id": "rollback_cycle_028",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_028"
    +      },
    +      {
    +        "cycle": 29,
    +        "rollback_id": "rollback_cycle_029",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_029"
    +      },
    +      {
    +        "cycle": 30,
    +        "rollback_id": "rollback_cycle_030",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_030"
    +      },
    +      {
    +        "cycle": 31,
    +        "rollback_id": "rollback_cycle_031",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_031"
    +      },
    +      {
    +        "cycle": 32,
    +        "rollback_id": "rollback_cycle_032",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_032"
    +      },
    +      {
    +        "cycle": 33,
    +        "rollback_id": "rollback_cycle_033",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_033"
    +      },
    +      {
    +        "cycle": 34,
    +        "rollback_id": "rollback_cycle_034",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_034"
    +      },
    +      {
    +        "cycle": 35,
    +        "rollback_id": "rollback_cycle_035",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_035"
    +      },
    +      {
    +        "cycle": 36,
    +        "rollback_id": "rollback_cycle_036",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_036"
    +      },
    +      {
    +        "cycle": 37,
    +        "rollback_id": "rollback_cycle_037",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_037"
    +      },
    +      {
    +        "cycle": 38,
    +        "rollback_id": "rollback_cycle_038",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_038"
    +      },
    +      {
    +        "cycle": 39,
    +        "rollback_id": "rollback_cycle_039",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_039"
    +      },
    +      {
    +        "cycle": 40,
    +        "rollback_id": "rollback_cycle_040",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_040"
    +      },
    +      {
    +        "cycle": 41,
    +        "rollback_id": "rollback_cycle_041",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_041"
    +      },
    +      {
    +        "cycle": 42,
    +        "rollback_id": "rollback_cycle_042",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_042"
    +      },
    +      {
    +        "cycle": 43,
    +        "rollback_id": "rollback_cycle_043",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_043"
    +      },
    +      {
    +        "cycle": 44,
    +        "rollback_id": "rollback_cycle_044",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_044"
    +      },
    +      {
    +        "cycle": 45,
    +        "rollback_id": "rollback_cycle_045",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_045"
    +      },
    +      {
    +        "cycle": 46,
    +        "rollback_id": "rollback_cycle_046",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_046"
    +      },
    +      {
    +        "cycle": 47,
    +        "rollback_id": "rollback_cycle_047",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_047"
    +      },
    +      {
    +        "cycle": 48,
    +        "rollback_id": "rollback_cycle_048",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_048"
    +      },
    +      {
    +        "cycle": 49,
    +        "rollback_id": "rollback_cycle_049",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_049"
    +      },
    +      {
    +        "cycle": 50,
    +        "rollback_id": "rollback_cycle_050",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_050"
    +      },
    +      {
    +        "cycle": 51,
    +        "rollback_id": "rollback_cycle_051",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_051"
    +      },
    +      {
    +        "cycle": 52,
    +        "rollback_id": "rollback_cycle_052",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_052"
    +      },
    +      {
    +        "cycle": 53,
    +        "rollback_id": "rollback_cycle_053",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_053"
    +      },
    +      {
    +        "cycle": 54,
    +        "rollback_id": "rollback_cycle_054",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_054"
    +      },
    +      {
    +        "cycle": 55,
    +        "rollback_id": "rollback_cycle_055",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_055"
    +      },
    +      {
    +        "cycle": 56,
    +        "rollback_id": "rollback_cycle_056",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_056"
    +      },
    +      {
    +        "cycle": 57,
    +        "rollback_id": "rollback_cycle_057",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_057"
    +      },
    +      {
    +        "cycle": 58,
    +        "rollback_id": "rollback_cycle_058",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_058"
    +      },
    +      {
    +        "cycle": 59,
    +        "rollback_id": "rollback_cycle_059",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_059"
    +      },
    +      {
    +        "cycle": 60,
    +        "rollback_id": "rollback_cycle_060",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_060"
    +      },
    +      {
    +        "cycle": 61,
    +        "rollback_id": "rollback_cycle_061",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_061"
    +      },
    +      {
    +        "cycle": 62,
    +        "rollback_id": "rollback_cycle_062",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_062"
    +      },
    +      {
    +        "cycle": 63,
    +        "rollback_id": "rollback_cycle_063",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_063"
    +      },
    +      {
    +        "cycle": 64,
    +        "rollback_id": "rollback_cycle_064",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_064"
    +      },
    +      {
    +        "cycle": 65,
    +        "rollback_id": "rollback_cycle_065",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_065"
    +      },
    +      {
    +        "cycle": 66,
    +        "rollback_id": "rollback_cycle_066",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_066"
    +      },
    +      {
    +        "cycle": 67,
    +        "rollback_id": "rollback_cycle_067",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_067"
    +      },
    +      {
    +        "cycle": 68,
    +        "rollback_id": "rollback_cycle_068",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_068"
    +      },
    +      {
    +        "cycle": 69,
    +        "rollback_id": "rollback_cycle_069",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_069"
    +      },
    +      {
    +        "cycle": 70,
    +        "rollback_id": "rollback_cycle_070",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_070"
    +      },
    +      {
    +        "cycle": 71,
    +        "rollback_id": "rollback_cycle_071",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_071"
    +      },
    +      {
    +        "cycle": 72,
    +        "rollback_id": "rollback_cycle_072",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_072"
    +      },
    +      {
    +        "cycle": 73,
    +        "rollback_id": "rollback_cycle_073",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_073"
    +      },
    +      {
    +        "cycle": 74,
    +        "rollback_id": "rollback_cycle_074",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_074"
    +      },
    +      {
    +        "cycle": 75,
    +        "rollback_id": "rollback_cycle_075",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_075"
    +      },
    +      {
    +        "cycle": 76,
    +        "rollback_id": "rollback_cycle_076",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_076"
    +      },
    +      {
    +        "cycle": 77,
    +        "rollback_id": "rollback_cycle_077",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_077"
    +      },
    +      {
    +        "cycle": 78,
    +        "rollback_id": "rollback_cycle_078",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_078"
    +      },
    +      {
    +        "cycle": 79,
    +        "rollback_id": "rollback_cycle_079",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_079"
    +      },
    +      {
    +        "cycle": 80,
    +        "rollback_id": "rollback_cycle_080",
    +        "result": "rollback_successful",
    +        "restored": "baseline_cycle_080"
    +      }
    +    ]
    +  },
    +  "run_contract": {
    +    "job_id": "job_proof_carrying_intelligence_010",
    +    "commit": "proof_carrying_commit@1.0.0",
    +    "protocol": "Commit \u2192 Execute \u2192 Prove \u2192 Evolve",
    +    "goals": [
    +      "sovereign_kardashev_direction@2.0.0",
    +      "proof_carrying_network_goal@1.0.0",
    +      "sovereign_value_compounding_goal@1.0.0",
    +      "network_safety_goal@1.0.0"
    +    ],
    +    "plans": [
    +      "commit_execute_prove_evolve_plan@1.0.0",
    +      "capital_compute_energy_trust_plan@1.0.0",
    +      "evolution_gate_plan@1.0.0",
    +      "kardashev_scenario_boundary_plan@1.0.0"
    +    ],
    +    "skills": [
    +      "commit_contract_skill@1.0.0",
    +      "stateless_execution_skill@1.0.0",
    +      "proof_emission_skill@1.0.0",
    +      "credit_assignment_skill@2.0.0",
    +      "evolution_patch_skill@1.0.0",
    +      "capital_compute_energy_router_skill@1.0.0",
    +      "claim_boundary_skill@2.0.0",
    +      "rollback_skill@1.0.0"
    +    ],
    +    "policies": [
    +      "no_unproven_propagation_policy@1.0.0",
    +      "sovereign_privacy_policy@1.0.0",
    +      "kardashev_claim_boundary_policy@1.0.0"
    +    ],
    +    "evals": [
    +      "commit_integrity_eval@1.0.0",
    +      "proof_completeness_eval@1.0.0",
    +      "evolution_gate_eval@1.0.0",
    +      "scenario_boundary_eval@1.0.0"
    +    ],
    +    "trace_required": true,
    +    "rollback_required": true
    +  },
    +  "proof_ledger": {
    +    "trace_event_count": 1079508992,
    +    "records": [
    +      "commit contracts",
    +      "execution traces",
    +      "proof packets",
    +      "eval results",
    +      "credit assignments",
    +      "typed upgrades",
    +      "evolution gate decisions",
    +      "capital routing",
    +      "compute routing",
    +      "energy routing",
    +      "trust routing",
    +      "meta-RSI upgrades",
    +      "rollback drills",
    +      "claim-boundary checks"
    +    ]
    +  },
    +  "evolution_gate": {
    +    "decision": "approve_proof_carrying_intelligence_canary",
    +    "rollout_percentage": 10,
    +    "rollback_target": "commit_execute_prove_evolve_plan@1.0.0",
    +    "selected_upgrade_count": 522246,
    +    "rejected_upgrade_count": 2042,
    +    "rollback_count": 2042,
    +    "required_evals": "passed"
    +  },
    +  "sovereignty_guarantees": {
    +    "private_data_shared": false,
    +    "private_customer_records_shared": false,
    +    "private_financials_shared": false,
    +    "real_world_energy_claim_made": false,
    +    "real_world_kardashev_claim_made": false,
    +    "local_eval_required_before_adoption": true,
    +    "rollback_required_before_release": true,
    +    "propagation_requires_evolution_gate": true
    +  },
    +  "institutional_graphs": {
    +    "cycle_series": [
    +      {
    +        "cycle": 1,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 100461.0,
    +        "synthetic_kardashev_scenario_index": 3.59e-06
    +      },
    +      {
    +        "cycle": 2,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 100935.176,
    +        "synthetic_kardashev_scenario_index": 6.27e-06
    +      },
    +      {
    +        "cycle": 3,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 101422.693,
    +        "synthetic_kardashev_scenario_index": 9.04e-06
    +      },
    +      {
    +        "cycle": 4,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 101923.721,
    +        "synthetic_kardashev_scenario_index": 1.19e-05
    +      },
    +      {
    +        "cycle": 5,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 102438.436,
    +        "synthetic_kardashev_scenario_index": 1.485e-05
    +      },
    +      {
    +        "cycle": 6,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 102967.018,
    +        "synthetic_kardashev_scenario_index": 1.789e-05
    +      },
    +      {
    +        "cycle": 7,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 103509.654,
    +        "synthetic_kardashev_scenario_index": 2.102e-05
    +      },
    +      {
    +        "cycle": 8,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 104066.536,
    +        "synthetic_kardashev_scenario_index": 2.424e-05
    +      },
    +      {
    +        "cycle": 9,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 104637.861,
    +        "synthetic_kardashev_scenario_index": 2.755e-05
    +      },
    +      {
    +        "cycle": 10,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 105223.833,
    +        "synthetic_kardashev_scenario_index": 3.095e-05
    +      },
    +      {
    +        "cycle": 11,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 105824.661,
    +        "synthetic_kardashev_scenario_index": 3.444e-05
    +      },
    +      {
    +        "cycle": 12,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 106440.561,
    +        "synthetic_kardashev_scenario_index": 3.802e-05
    +      },
    +      {
    +        "cycle": 13,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 107071.754,
    +        "synthetic_kardashev_scenario_index": 4.169e-05
    +      },
    +      {
    +        "cycle": 14,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 107718.467,
    +        "synthetic_kardashev_scenario_index": 4.545e-05
    +      },
    +      {
    +        "cycle": 15,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 108380.936,
    +        "synthetic_kardashev_scenario_index": 4.93e-05
    +      },
    +      {
    +        "cycle": 16,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 109059.401,
    +        "synthetic_kardashev_scenario_index": 5.324e-05
    +      },
    +      {
    +        "cycle": 17,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 109754.109,
    +        "synthetic_kardashev_scenario_index": 5.727e-05
    +      },
    +      {
    +        "cycle": 18,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 110465.316,
    +        "synthetic_kardashev_scenario_index": 6.139e-05
    +      },
    +      {
    +        "cycle": 19,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 111193.282,
    +        "synthetic_kardashev_scenario_index": 6.56e-05
    +      },
    +      {
    +        "cycle": 20,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 111938.277,
    +        "synthetic_kardashev_scenario_index": 6.99e-05
    +      },
    +      {
    +        "cycle": 21,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 112700.577,
    +        "synthetic_kardashev_scenario_index": 7.429e-05
    +      },
    +      {
    +        "cycle": 22,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 113480.465,
    +        "synthetic_kardashev_scenario_index": 7.877e-05
    +      },
    +      {
    +        "cycle": 23,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 114278.233,
    +        "synthetic_kardashev_scenario_index": 8.334e-05
    +      },
    +      {
    +        "cycle": 24,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 115094.18,
    +        "synthetic_kardashev_scenario_index": 8.8e-05
    +      },
    +      {
    +        "cycle": 25,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 115928.613,
    +        "synthetic_kardashev_scenario_index": 9.275e-05
    +      },
    +      {
    +        "cycle": 26,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 116781.848,
    +        "synthetic_kardashev_scenario_index": 9.759e-05
    +      },
    +      {
    +        "cycle": 27,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 117654.208,
    +        "synthetic_kardashev_scenario_index": 0.00010252
    +      },
    +      {
    +        "cycle": 28,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 118546.027,
    +        "synthetic_kardashev_scenario_index": 0.00010754
    +      },
    +      {
    +        "cycle": 29,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 119457.646,
    +        "synthetic_kardashev_scenario_index": 0.00011265
    +      },
    +      {
    +        "cycle": 30,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 120389.416,
    +        "synthetic_kardashev_scenario_index": 0.00011785
    +      },
    +      {
    +        "cycle": 31,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 121341.696,
    +        "synthetic_kardashev_scenario_index": 0.00012314
    +      },
    +      {
    +        "cycle": 32,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 122314.856,
    +        "synthetic_kardashev_scenario_index": 0.00012852
    +      },
    +      {
    +        "cycle": 33,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 123309.276,
    +        "synthetic_kardashev_scenario_index": 0.00013399
    +      },
    +      {
    +        "cycle": 34,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 124325.344,
    +        "synthetic_kardashev_scenario_index": 0.00013955
    +      },
    +      {
    +        "cycle": 35,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 125363.461,
    +        "synthetic_kardashev_scenario_index": 0.0001452
    +      },
    +      {
    +        "cycle": 36,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 126424.036,
    +        "synthetic_kardashev_scenario_index": 0.00015094
    +      },
    +      {
    +        "cycle": 37,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 127507.49,
    +        "synthetic_kardashev_scenario_index": 0.00015677
    +      },
    +      {
    +        "cycle": 38,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 128614.255,
    +        "synthetic_kardashev_scenario_index": 0.00016269
    +      },
    +      {
    +        "cycle": 39,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 129744.774,
    +        "synthetic_kardashev_scenario_index": 0.0001687
    +      },
    +      {
    +        "cycle": 40,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 130899.502,
    +        "synthetic_kardashev_scenario_index": 0.0001748
    +      },
    +      {
    +        "cycle": 41,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 132078.907,
    +        "synthetic_kardashev_scenario_index": 0.00018099
    +      },
    +      {
    +        "cycle": 42,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 133283.467,
    +        "synthetic_kardashev_scenario_index": 0.00018727
    +      },
    +      {
    +        "cycle": 43,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 134513.673,
    +        "synthetic_kardashev_scenario_index": 0.00019364
    +      },
    +      {
    +        "cycle": 44,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 135770.031,
    +        "synthetic_kardashev_scenario_index": 0.0002001
    +      },
    +      {
    +        "cycle": 45,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 137053.058,
    +        "synthetic_kardashev_scenario_index": 0.00020665
    +      },
    +      {
    +        "cycle": 46,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 138363.285,
    +        "synthetic_kardashev_scenario_index": 0.00021329
    +      },
    +      {
    +        "cycle": 47,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 139701.258,
    +        "synthetic_kardashev_scenario_index": 0.00022002
    +      },
    +      {
    +        "cycle": 48,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 141067.536,
    +        "synthetic_kardashev_scenario_index": 0.00022684
    +      },
    +      {
    +        "cycle": 49,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 142462.694,
    +        "synthetic_kardashev_scenario_index": 0.00023375
    +      },
    +      {
    +        "cycle": 50,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 143887.321,
    +        "synthetic_kardashev_scenario_index": 0.00024075
    +      },
    +      {
    +        "cycle": 51,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 145342.022,
    +        "synthetic_kardashev_scenario_index": 0.00024784
    +      },
    +      {
    +        "cycle": 52,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 146827.417,
    +        "synthetic_kardashev_scenario_index": 0.00025502
    +      },
    +      {
    +        "cycle": 53,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 148344.144,
    +        "synthetic_kardashev_scenario_index": 0.00026229
    +      },
    +      {
    +        "cycle": 54,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 149892.857,
    +        "synthetic_kardashev_scenario_index": 0.00026965
    +      },
    +      {
    +        "cycle": 55,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 151474.227,
    +        "synthetic_kardashev_scenario_index": 0.0002771
    +      },
    +      {
    +        "cycle": 56,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 153088.942,
    +        "synthetic_kardashev_scenario_index": 0.00028464
    +      },
    +      {
    +        "cycle": 57,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 154737.71,
    +        "synthetic_kardashev_scenario_index": 0.00029227
    +      },
    +      {
    +        "cycle": 58,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 156421.256,
    +        "synthetic_kardashev_scenario_index": 0.00029999
    +      },
    +      {
    +        "cycle": 59,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 158140.326,
    +        "synthetic_kardashev_scenario_index": 0.0003078
    +      },
    +      {
    +        "cycle": 60,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 159895.684,
    +        "synthetic_kardashev_scenario_index": 0.0003157
    +      },
    +      {
    +        "cycle": 61,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 161688.115,
    +        "synthetic_kardashev_scenario_index": 0.00032369
    +      },
    +      {
    +        "cycle": 62,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 163518.424,
    +        "synthetic_kardashev_scenario_index": 0.00033177
    +      },
    +      {
    +        "cycle": 63,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 165387.44,
    +        "synthetic_kardashev_scenario_index": 0.00033994
    +      },
    +      {
    +        "cycle": 64,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 167296.011,
    +        "synthetic_kardashev_scenario_index": 0.0003482
    +      },
    +      {
    +        "cycle": 65,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 169245.01,
    +        "synthetic_kardashev_scenario_index": 0.00035655
    +      },
    +      {
    +        "cycle": 66,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 171235.331,
    +        "synthetic_kardashev_scenario_index": 0.00036499
    +      },
    +      {
    +        "cycle": 67,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 173267.894,
    +        "synthetic_kardashev_scenario_index": 0.00037352
    +      },
    +      {
    +        "cycle": 68,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 175343.643,
    +        "synthetic_kardashev_scenario_index": 0.00038214
    +      },
    +      {
    +        "cycle": 69,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 177463.548,
    +        "synthetic_kardashev_scenario_index": 0.00039085
    +      },
    +      {
    +        "cycle": 70,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 179628.603,
    +        "synthetic_kardashev_scenario_index": 0.00039965
    +      },
    +      {
    +        "cycle": 71,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 181839.831,
    +        "synthetic_kardashev_scenario_index": 0.00040854
    +      },
    +      {
    +        "cycle": 72,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 184098.282,
    +        "synthetic_kardashev_scenario_index": 0.00041752
    +      },
    +      {
    +        "cycle": 73,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 186405.033,
    +        "synthetic_kardashev_scenario_index": 0.00042659
    +      },
    +      {
    +        "cycle": 74,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 188761.193,
    +        "synthetic_kardashev_scenario_index": 0.00043575
    +      },
    +      {
    +        "cycle": 75,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 191167.898,
    +        "synthetic_kardashev_scenario_index": 0.000445
    +      },
    +      {
    +        "cycle": 76,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 193626.317,
    +        "synthetic_kardashev_scenario_index": 0.00045434
    +      },
    +      {
    +        "cycle": 77,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 196137.65,
    +        "synthetic_kardashev_scenario_index": 0.00046377
    +      },
    +      {
    +        "cycle": 78,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 198703.13,
    +        "synthetic_kardashev_scenario_index": 0.00047329
    +      },
    +      {
    +        "cycle": 79,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 201324.024,
    +        "synthetic_kardashev_scenario_index": 0.0004829
    +      },
    +      {
    +        "cycle": 80,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 204001.634,
    +        "synthetic_kardashev_scenario_index": 0.0004926
    +      },
    +      {
    +        "cycle": 81,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 206737.296,
    +        "synthetic_kardashev_scenario_index": 0.00050239
    +      },
    +      {
    +        "cycle": 82,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 209532.384,
    +        "synthetic_kardashev_scenario_index": 0.00051227
    +      },
    +      {
    +        "cycle": 83,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 212388.31,
    +        "synthetic_kardashev_scenario_index": 0.00052224
    +      },
    +      {
    +        "cycle": 84,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 215306.525,
    +        "synthetic_kardashev_scenario_index": 0.0005323
    +      },
    +      {
    +        "cycle": 85,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 218288.52,
    +        "synthetic_kardashev_scenario_index": 0.00054245
    +      },
    +      {
    +        "cycle": 86,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 221335.828,
    +        "synthetic_kardashev_scenario_index": 0.00055269
    +      },
    +      {
    +        "cycle": 87,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 224450.023,
    +        "synthetic_kardashev_scenario_index": 0.00056302
    +      },
    +      {
    +        "cycle": 88,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 227632.724,
    +        "synthetic_kardashev_scenario_index": 0.00057344
    +      },
    +      {
    +        "cycle": 89,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 230885.596,
    +        "synthetic_kardashev_scenario_index": 0.00058395
    +      },
    +      {
    +        "cycle": 90,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 234210.349,
    +        "synthetic_kardashev_scenario_index": 0.00059455
    +      },
    +      {
    +        "cycle": 91,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 237608.741,
    +        "synthetic_kardashev_scenario_index": 0.00060524
    +      },
    +      {
    +        "cycle": 92,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 241082.581,
    +        "synthetic_kardashev_scenario_index": 0.00061602
    +      },
    +      {
    +        "cycle": 93,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 244633.727,
    +        "synthetic_kardashev_scenario_index": 0.00062689
    +      },
    +      {
    +        "cycle": 94,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 248264.092,
    +        "synthetic_kardashev_scenario_index": 0.00063785
    +      },
    +      {
    +        "cycle": 95,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 251975.64,
    +        "synthetic_kardashev_scenario_index": 0.0006489
    +      },
    +      {
    +        "cycle": 96,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 255770.393,
    +        "synthetic_kardashev_scenario_index": 0.00066004
    +      },
    +      {
    +        "cycle": 97,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 259650.43,
    +        "synthetic_kardashev_scenario_index": 0.00067127
    +      },
    +      {
    +        "cycle": 98,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 263617.889,
    +        "synthetic_kardashev_scenario_index": 0.00068259
    +      },
    +      {
    +        "cycle": 99,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 267674.968,
    +        "synthetic_kardashev_scenario_index": 0.000694
    +      },
    +      {
    +        "cycle": 100,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 271823.93,
    +        "synthetic_kardashev_scenario_index": 0.0007055
    +      },
    +      {
    +        "cycle": 101,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 276067.102,
    +        "synthetic_kardashev_scenario_index": 0.00071709
    +      },
    +      {
    +        "cycle": 102,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 280406.877,
    +        "synthetic_kardashev_scenario_index": 0.00072877
    +      },
    +      {
    +        "cycle": 103,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 284845.718,
    +        "synthetic_kardashev_scenario_index": 0.00074054
    +      },
    +      {
    +        "cycle": 104,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 289386.159,
    +        "synthetic_kardashev_scenario_index": 0.0007524
    +      },
    +      {
    +        "cycle": 105,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 294030.807,
    +        "synthetic_kardashev_scenario_index": 0.00076435
    +      },
    +      {
    +        "cycle": 106,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 298782.345,
    +        "synthetic_kardashev_scenario_index": 0.00077639
    +      },
    +      {
    +        "cycle": 107,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 303643.534,
    +        "synthetic_kardashev_scenario_index": 0.00078852
    +      },
    +      {
    +        "cycle": 108,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 308617.215,
    +        "synthetic_kardashev_scenario_index": 0.00080074
    +      },
    +      {
    +        "cycle": 109,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 313706.313,
    +        "synthetic_kardashev_scenario_index": 0.00081305
    +      },
    +      {
    +        "cycle": 110,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 318913.838,
    +        "synthetic_kardashev_scenario_index": 0.00082545
    +      },
    +      {
    +        "cycle": 111,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 324242.888,
    +        "synthetic_kardashev_scenario_index": 0.00083794
    +      },
    +      {
    +        "cycle": 112,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 329696.653,
    +        "synthetic_kardashev_scenario_index": 0.00085052
    +      },
    +      {
    +        "cycle": 113,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 335278.417,
    +        "synthetic_kardashev_scenario_index": 0.00086319
    +      },
    +      {
    +        "cycle": 114,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 340991.561,
    +        "synthetic_kardashev_scenario_index": 0.00087595
    +      },
    +      {
    +        "cycle": 115,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 346839.566,
    +        "synthetic_kardashev_scenario_index": 0.0008888
    +      },
    +      {
    +        "cycle": 116,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 352826.017,
    +        "synthetic_kardashev_scenario_index": 0.00090174
    +      },
    +      {
    +        "cycle": 117,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 358954.605,
    +        "synthetic_kardashev_scenario_index": 0.00091477
    +      },
    +      {
    +        "cycle": 118,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 365229.131,
    +        "synthetic_kardashev_scenario_index": 0.00092789
    +      },
    +      {
    +        "cycle": 119,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 371653.511,
    +        "synthetic_kardashev_scenario_index": 0.0009411
    +      },
    +      {
    +        "cycle": 120,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 378231.778,
    +        "synthetic_kardashev_scenario_index": 0.0009544
    +      },
    +      {
    +        "cycle": 121,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 384968.086,
    +        "synthetic_kardashev_scenario_index": 0.00096779
    +      },
    +      {
    +        "cycle": 122,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 391866.714,
    +        "synthetic_kardashev_scenario_index": 0.00098127
    +      },
    +      {
    +        "cycle": 123,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 398932.071,
    +        "synthetic_kardashev_scenario_index": 0.00099484
    +      },
    +      {
    +        "cycle": 124,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 406168.699,
    +        "synthetic_kardashev_scenario_index": 0.0010085
    +      },
    +      {
    +        "cycle": 125,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 413581.278,
    +        "synthetic_kardashev_scenario_index": 0.00102225
    +      },
    +      {
    +        "cycle": 126,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 421174.63,
    +        "synthetic_kardashev_scenario_index": 0.00103609
    +      },
    +      {
    +        "cycle": 127,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 428953.725,
    +        "synthetic_kardashev_scenario_index": 0.00105002
    +      },
    +      {
    +        "cycle": 128,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 436923.685,
    +        "synthetic_kardashev_scenario_index": 0.00106404
    +      },
    +      {
    +        "cycle": 129,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 445089.789,
    +        "synthetic_kardashev_scenario_index": 0.00107815
    +      },
    +      {
    +        "cycle": 130,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 453457.477,
    +        "synthetic_kardashev_scenario_index": 0.00109235
    +      },
    +      {
    +        "cycle": 131,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 462032.358,
    +        "synthetic_kardashev_scenario_index": 0.00110664
    +      },
    +      {
    +        "cycle": 132,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 470820.213,
    +        "synthetic_kardashev_scenario_index": 0.00112102
    +      },
    +      {
    +        "cycle": 133,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 479827.004,
    +        "synthetic_kardashev_scenario_index": 0.00113549
    +      },
    +      {
    +        "cycle": 134,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 489058.876,
    +        "synthetic_kardashev_scenario_index": 0.00115005
    +      },
    +      {
    +        "cycle": 135,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 498522.165,
    +        "synthetic_kardashev_scenario_index": 0.0011647
    +      },
    +      {
    +        "cycle": 136,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 508223.406,
    +        "synthetic_kardashev_scenario_index": 0.00117944
    +      },
    +      {
    +        "cycle": 137,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 518169.338,
    +        "synthetic_kardashev_scenario_index": 0.00119427
    +      },
    +      {
    +        "cycle": 138,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 528366.911,
    +        "synthetic_kardashev_scenario_index": 0.00120919
    +      },
    +      {
    +        "cycle": 139,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 538823.292,
    +        "synthetic_kardashev_scenario_index": 0.0012242
    +      },
    +      {
    +        "cycle": 140,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 549545.876,
    +        "synthetic_kardashev_scenario_index": 0.0012393
    +      },
    +      {
    +        "cycle": 141,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 560542.289,
    +        "synthetic_kardashev_scenario_index": 0.00125449
    +      },
    +      {
    +        "cycle": 142,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 571820.4,
    +        "synthetic_kardashev_scenario_index": 0.00126977
    +      },
    +      {
    +        "cycle": 143,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 583388.327,
    +        "synthetic_kardashev_scenario_index": 0.00128514
    +      },
    +      {
    +        "cycle": 144,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 595254.446,
    +        "synthetic_kardashev_scenario_index": 0.0013006
    +      },
    +      {
    +        "cycle": 145,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 607427.399,
    +        "synthetic_kardashev_scenario_index": 0.00131615
    +      },
    +      {
    +        "cycle": 146,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 619916.106,
    +        "synthetic_kardashev_scenario_index": 0.00133179
    +      },
    +      {
    +        "cycle": 147,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 632729.772,
    +        "synthetic_kardashev_scenario_index": 0.00134752
    +      },
    +      {
    +        "cycle": 148,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 645877.897,
    +        "synthetic_kardashev_scenario_index": 0.00136334
    +      },
    +      {
    +        "cycle": 149,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 659370.286,
    +        "synthetic_kardashev_scenario_index": 0.00137925
    +      },
    +      {
    +        "cycle": 150,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 673217.062,
    +        "synthetic_kardashev_scenario_index": 0.00139525
    +      },
    +      {
    +        "cycle": 151,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 687428.674,
    +        "synthetic_kardashev_scenario_index": 0.00141134
    +      },
    +      {
    +        "cycle": 152,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 702015.91,
    +        "synthetic_kardashev_scenario_index": 0.00142752
    +      },
    +      {
    +        "cycle": 153,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 716989.909,
    +        "synthetic_kardashev_scenario_index": 0.00144379
    +      },
    +      {
    +        "cycle": 154,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 732362.173,
    +        "synthetic_kardashev_scenario_index": 0.00146015
    +      },
    +      {
    +        "cycle": 155,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 748144.578,
    +        "synthetic_kardashev_scenario_index": 0.0014766
    +      },
    +      {
    +        "cycle": 156,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 764349.39,
    +        "synthetic_kardashev_scenario_index": 0.00149314
    +      },
    +      {
    +        "cycle": 157,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 780989.276,
    +        "synthetic_kardashev_scenario_index": 0.00150977
    +      },
    +      {
    +        "cycle": 158,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 798077.321,
    +        "synthetic_kardashev_scenario_index": 0.00152649
    +      },
    +      {
    +        "cycle": 159,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 815627.041,
    +        "synthetic_kardashev_scenario_index": 0.0015433
    +      },
    +      {
    +        "cycle": 160,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 833652.399,
    +        "synthetic_kardashev_scenario_index": 0.0015602
    +      },
    +      {
    +        "cycle": 161,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 852167.819,
    +        "synthetic_kardashev_scenario_index": 0.00157719
    +      },
    +      {
    +        "cycle": 162,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 871188.205,
    +        "synthetic_kardashev_scenario_index": 0.00159427
    +      },
    +      {
    +        "cycle": 163,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 890728.956,
    +        "synthetic_kardashev_scenario_index": 0.00161144
    +      },
    +      {
    +        "cycle": 164,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 910805.987,
    +        "synthetic_kardashev_scenario_index": 0.0016287
    +      },
    +      {
    +        "cycle": 165,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 931435.743,
    +        "synthetic_kardashev_scenario_index": 0.00164605
    +      },
    +      {
    +        "cycle": 166,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 952635.221,
    +        "synthetic_kardashev_scenario_index": 0.00166349
    +      },
    +      {
    +        "cycle": 167,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 974421.989,
    +        "synthetic_kardashev_scenario_index": 0.00168102
    +      },
    +      {
    +        "cycle": 168,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 996814.206,
    +        "synthetic_kardashev_scenario_index": 0.00169864
    +      },
    +      {
    +        "cycle": 169,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1019830.646,
    +        "synthetic_kardashev_scenario_index": 0.00171635
    +      },
    +      {
    +        "cycle": 170,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1043490.717,
    +        "synthetic_kardashev_scenario_index": 0.00173415
    +      },
    +      {
    +        "cycle": 171,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1067814.486,
    +        "synthetic_kardashev_scenario_index": 0.00175204
    +      },
    +      {
    +        "cycle": 172,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1092822.701,
    +        "synthetic_kardashev_scenario_index": 0.00177002
    +      },
    +      {
    +        "cycle": 173,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1118536.819,
    +        "synthetic_kardashev_scenario_index": 0.00178809
    +      },
    +      {
    +        "cycle": 174,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1144979.029,
    +        "synthetic_kardashev_scenario_index": 0.00180625
    +      },
    +      {
    +        "cycle": 175,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1172172.281,
    +        "synthetic_kardashev_scenario_index": 0.0018245
    +      },
    +      {
    +        "cycle": 176,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1200140.312,
    +        "synthetic_kardashev_scenario_index": 0.00184284
    +      },
    +      {
    +        "cycle": 177,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1228907.675,
    +        "synthetic_kardashev_scenario_index": 0.00186127
    +      },
    +      {
    +        "cycle": 178,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1258499.772,
    +        "synthetic_kardashev_scenario_index": 0.00187979
    +      },
    +      {
    +        "cycle": 179,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1288942.881,
    +        "synthetic_kardashev_scenario_index": 0.0018984
    +      },
    +      {
    +        "cycle": 180,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1320264.193,
    +        "synthetic_kardashev_scenario_index": 0.0019171
    +      },
    +      {
    +        "cycle": 181,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1352491.842,
    +        "synthetic_kardashev_scenario_index": 0.00193589
    +      },
    +      {
    +        "cycle": 182,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1385654.942,
    +        "synthetic_kardashev_scenario_index": 0.00195477
    +      },
    +      {
    +        "cycle": 183,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1419783.623,
    +        "synthetic_kardashev_scenario_index": 0.00197374
    +      },
    +      {
    +        "cycle": 184,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1454909.07,
    +        "synthetic_kardashev_scenario_index": 0.0019928
    +      },
    +      {
    +        "cycle": 185,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1491063.56,
    +        "synthetic_kardashev_scenario_index": 0.00201195
    +      },
    +      {
    +        "cycle": 186,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1528280.506,
    +        "synthetic_kardashev_scenario_index": 0.00203119
    +      },
    +      {
    +        "cycle": 187,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1566594.498,
    +        "synthetic_kardashev_scenario_index": 0.00205052
    +      },
    +      {
    +        "cycle": 188,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 1606041.347,
    +        "synthetic_kardashev_scenario_index": 0.00206994
    +      },
    +      {
    +        "cycle": 189,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 1646658.133,
    +        "synthetic_kardashev_scenario_index": 0.00208945
    +      },
    +      {
    +        "cycle": 190,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 1688483.25,
    +        "synthetic_kardashev_scenario_index": 0.00210905
    +      },
    +      {
    +        "cycle": 191,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 1731556.458,
    +        "synthetic_kardashev_scenario_index": 0.00212874
    +      },
    +      {
    +        "cycle": 192,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 1775918.934,
    +        "synthetic_kardashev_scenario_index": 0.00214852
    +      },
    +      {
    +        "cycle": 193,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 1821613.328,
    +        "synthetic_kardashev_scenario_index": 0.00216839
    +      },
    +      {
    +        "cycle": 194,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 1868683.816,
    +        "synthetic_kardashev_scenario_index": 0.00218835
    +      },
    +      {
    +        "cycle": 195,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 1917176.161,
    +        "synthetic_kardashev_scenario_index": 0.0022084
    +      },
    +      {
    +        "cycle": 196,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 1967137.772,
    +        "synthetic_kardashev_scenario_index": 0.00222854
    +      },
    +      {
    +        "cycle": 197,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 2018617.767,
    +        "synthetic_kardashev_scenario_index": 0.00224877
    +      },
    +      {
    +        "cycle": 198,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 2071667.042,
    +        "synthetic_kardashev_scenario_index": 0.00226909
    +      },
    +      {
    +        "cycle": 199,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 2126338.335,
    +        "synthetic_kardashev_scenario_index": 0.0022895
    +      },
    +      {
    +        "cycle": 200,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 2182686.301,
    +        "synthetic_kardashev_scenario_index": 0.00231
    +      },
    +      {
    +        "cycle": 201,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 2240767.583,
    +        "synthetic_kardashev_scenario_index": 0.00233059
    +      },
    +      {
    +        "cycle": 202,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 2300640.893,
    +        "synthetic_kardashev_scenario_index": 0.00235127
    +      },
    +      {
    +        "cycle": 203,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 2362367.088,
    +        "synthetic_kardashev_scenario_index": 0.00237204
    +      },
    +      {
    +        "cycle": 204,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 2426009.257,
    +        "synthetic_kardashev_scenario_index": 0.0023929
    +      },
    +      {
    +        "cycle": 205,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 2491632.807,
    +        "synthetic_kardashev_scenario_index": 0.00241385
    +      },
    +      {
    +        "cycle": 206,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 2559305.554,
    +        "synthetic_kardashev_scenario_index": 0.00243489
    +      },
    +      {
    +        "cycle": 207,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 2629097.816,
    +        "synthetic_kardashev_scenario_index": 0.00245602
    +      },
    +      {
    +        "cycle": 208,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 2701082.514,
    +        "synthetic_kardashev_scenario_index": 0.00247724
    +      },
    +      {
    +        "cycle": 209,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 2775335.272,
    +        "synthetic_kardashev_scenario_index": 0.00249855
    +      },
    +      {
    +        "cycle": 210,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 2851934.526,
    +        "synthetic_kardashev_scenario_index": 0.00251995
    +      },
    +      {
    +        "cycle": 211,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 2930961.632,
    +        "synthetic_kardashev_scenario_index": 0.00254144
    +      },
    +      {
    +        "cycle": 212,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 3012500.985,
    +        "synthetic_kardashev_scenario_index": 0.00256302
    +      },
    +      {
    +        "cycle": 213,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 3096640.138,
    +        "synthetic_kardashev_scenario_index": 0.00258469
    +      },
    +      {
    +        "cycle": 214,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 3183469.927,
    +        "synthetic_kardashev_scenario_index": 0.00260645
    +      },
    +      {
    +        "cycle": 215,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 3273084.605,
    +        "synthetic_kardashev_scenario_index": 0.0026283
    +      },
    +      {
    +        "cycle": 216,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 3365581.976,
    +        "synthetic_kardashev_scenario_index": 0.00265024
    +      },
    +      {
    +        "cycle": 217,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 3461063.537,
    +        "synthetic_kardashev_scenario_index": 0.00267227
    +      },
    +      {
    +        "cycle": 218,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 3559634.627,
    +        "synthetic_kardashev_scenario_index": 0.00269439
    +      },
    +      {
    +        "cycle": 219,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 3661404.581,
    +        "synthetic_kardashev_scenario_index": 0.0027166
    +      },
    +      {
    +        "cycle": 220,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 3766486.892,
    +        "synthetic_kardashev_scenario_index": 0.0027389
    +      },
    +      {
    +        "cycle": 221,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 3874999.379,
    +        "synthetic_kardashev_scenario_index": 0.00276129
    +      },
    +      {
    +        "cycle": 222,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 3987064.361,
    +        "synthetic_kardashev_scenario_index": 0.00278377
    +      },
    +      {
    +        "cycle": 223,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 4102808.839,
    +        "synthetic_kardashev_scenario_index": 0.00280634
    +      },
    +      {
    +        "cycle": 224,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 4222364.689,
    +        "synthetic_kardashev_scenario_index": 0.002829
    +      },
    +      {
    +        "cycle": 225,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 4345868.856,
    +        "synthetic_kardashev_scenario_index": 0.00285175
    +      },
    +      {
    +        "cycle": 226,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 4473463.566,
    +        "synthetic_kardashev_scenario_index": 0.00287459
    +      },
    +      {
    +        "cycle": 227,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 4605296.537,
    +        "synthetic_kardashev_scenario_index": 0.00289752
    +      },
    +      {
    +        "cycle": 228,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 4741521.209,
    +        "synthetic_kardashev_scenario_index": 0.00292054
    +      },
    +      {
    +        "cycle": 229,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 4882296.974,
    +        "synthetic_kardashev_scenario_index": 0.00294365
    +      },
    +      {
    +        "cycle": 230,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 5027789.424,
    +        "synthetic_kardashev_scenario_index": 0.00296685
    +      },
    +      {
    +        "cycle": 231,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 5178170.606,
    +        "synthetic_kardashev_scenario_index": 0.00299014
    +      },
    +      {
    +        "cycle": 232,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 5333619.288,
    +        "synthetic_kardashev_scenario_index": 0.00301352
    +      },
    +      {
    +        "cycle": 233,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 5494321.237,
    +        "synthetic_kardashev_scenario_index": 0.00303699
    +      },
    +      {
    +        "cycle": 234,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 5660469.511,
    +        "synthetic_kardashev_scenario_index": 0.00306055
    +      },
    +      {
    +        "cycle": 235,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 5832264.761,
    +        "synthetic_kardashev_scenario_index": 0.0030842
    +      },
    +      {
    +        "cycle": 236,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 6009915.546,
    +        "synthetic_kardashev_scenario_index": 0.00310794
    +      },
    +      {
    +        "cycle": 237,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 6193638.664,
    +        "synthetic_kardashev_scenario_index": 0.00313177
    +      },
    +      {
    +        "cycle": 238,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 6383659.498,
    +        "synthetic_kardashev_scenario_index": 0.00315569
    +      },
    +      {
    +        "cycle": 239,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 6580212.374,
    +        "synthetic_kardashev_scenario_index": 0.0031797
    +      },
    +      {
    +        "cycle": 240,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 6783540.936,
    +        "synthetic_kardashev_scenario_index": 0.0032038
    +      },
    +      {
    +        "cycle": 241,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 6993898.54,
    +        "synthetic_kardashev_scenario_index": 0.00322799
    +      },
    +      {
    +        "cycle": 242,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 7211548.663,
    +        "synthetic_kardashev_scenario_index": 0.00325227
    +      },
    +      {
    +        "cycle": 243,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 7436765.328,
    +        "synthetic_kardashev_scenario_index": 0.00327664
    +      },
    +      {
    +        "cycle": 244,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 7669833.553,
    +        "synthetic_kardashev_scenario_index": 0.0033011
    +      },
    +      {
    +        "cycle": 245,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 7911049.818,
    +        "synthetic_kardashev_scenario_index": 0.00332565
    +      },
    +      {
    +        "cycle": 246,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 8160722.55,
    +        "synthetic_kardashev_scenario_index": 0.00335029
    +      },
    +      {
    +        "cycle": 247,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 8419172.633,
    +        "synthetic_kardashev_scenario_index": 0.00337502
    +      },
    +      {
    +        "cycle": 248,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2039,
    +        "rejected_upgrades": 9,
    +        "rollbacks": 9,
    +        "synthetic_network_index": 8686733.939,
    +        "synthetic_kardashev_scenario_index": 0.00339984
    +      },
    +      {
    +        "cycle": 249,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2038,
    +        "rejected_upgrades": 10,
    +        "rollbacks": 10,
    +        "synthetic_network_index": 8963753.884,
    +        "synthetic_kardashev_scenario_index": 0.00342475
    +      },
    +      {
    +        "cycle": 250,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2037,
    +        "rejected_upgrades": 11,
    +        "rollbacks": 11,
    +        "synthetic_network_index": 9250594.008,
    +        "synthetic_kardashev_scenario_index": 0.00344975
    +      },
    +      {
    +        "cycle": 251,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2036,
    +        "rejected_upgrades": 12,
    +        "rollbacks": 12,
    +        "synthetic_network_index": 9547630.582,
    +        "synthetic_kardashev_scenario_index": 0.00347484
    +      },
    +      {
    +        "cycle": 252,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2044,
    +        "rejected_upgrades": 4,
    +        "rollbacks": 4,
    +        "synthetic_network_index": 9855255.239,
    +        "synthetic_kardashev_scenario_index": 0.00350002
    +      },
    +      {
    +        "cycle": 253,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2043,
    +        "rejected_upgrades": 5,
    +        "rollbacks": 5,
    +        "synthetic_network_index": 10173875.641,
    +        "synthetic_kardashev_scenario_index": 0.00352529
    +      },
    +      {
    +        "cycle": 254,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2042,
    +        "rejected_upgrades": 6,
    +        "rollbacks": 6,
    +        "synthetic_network_index": 10503916.167,
    +        "synthetic_kardashev_scenario_index": 0.00355065
    +      },
    +      {
    +        "cycle": 255,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2041,
    +        "rejected_upgrades": 7,
    +        "rollbacks": 7,
    +        "synthetic_network_index": 10845818.638,
    +        "synthetic_kardashev_scenario_index": 0.0035761
    +      },
    +      {
    +        "cycle": 256,
    +        "commits": 2048,
    +        "executions": 2048,
    +        "proofs": 2048,
    +        "selected_upgrades": 2040,
    +        "rejected_upgrades": 8,
    +        "rollbacks": 8,
    +        "synthetic_network_index": 11200043.075,
    +        "synthetic_kardashev_scenario_index": 0.00360164
    +      }
    +    ],
    +    "routing_tables": {
    +      "capital": {
    +        "cycle": 256,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic capital to proof-backed winners with no safety regression"
    +      },
    +      "compute": {
    +        "cycle": 256,
    +        "allocated_domains": 384,
    +        "rule": "route synthetic compute to domains with positive proof deltas and low rollback risk"
    +      },
    +      "energy": {
    +        "cycle": 256,
    +        "allocated_domains": 256,
    +        "rule": "route synthetic energy to capital-compute-energy flywheel winners"
    +      },
    +      "trust": {
    +        "cycle": 256,
    +        "allocated_domains": 192,
    +        "rule": "route synthetic trust to artifacts with highest proof reputation and lowest claim-boundary risk"
    +      }
    +    },
    +    "evolution_gate_series": [
    +      {
    +        "cycle": 1,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 2,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 3,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 4,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 5,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 6,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 7,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 8,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 9,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 10,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 11,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 12,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 13,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 14,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 15,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 16,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 17,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 18,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 19,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 20,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 21,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 22,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 23,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 24,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 25,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 26,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 27,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 28,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 29,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 30,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 31,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 32,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 33,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 34,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 35,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 36,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 37,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 38,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 39,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 40,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 41,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 42,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 43,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 44,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 45,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 46,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 47,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 48,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 49,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 50,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 51,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 52,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 53,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 54,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 55,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 56,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 57,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 58,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 59,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 60,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 61,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 62,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 63,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 64,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 65,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 66,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 67,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 68,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 69,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 70,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 71,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 72,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 73,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 74,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 75,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 76,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 77,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 78,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 79,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 80,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 81,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 82,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 83,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 84,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 85,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 86,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 87,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 88,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 89,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 90,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 91,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 92,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 93,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 94,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 95,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 96,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 97,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 98,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 99,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 100,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 101,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 102,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 103,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 104,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 105,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 106,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 107,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 108,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 109,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 110,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 111,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 112,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 113,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 114,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 115,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 116,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 117,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 118,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 119,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 120,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 121,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 122,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 123,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 124,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 125,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 126,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 127,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 128,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 129,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 130,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 131,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 132,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 133,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 134,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 135,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 136,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 137,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 138,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 139,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 140,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 141,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 142,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 143,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 144,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 145,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 146,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 147,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 148,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 149,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 150,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 151,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 152,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 153,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 154,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 155,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 156,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 157,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 158,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 159,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 160,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 161,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 162,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 163,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 164,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 165,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 166,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 167,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 168,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 169,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 170,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 171,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 172,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 173,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 174,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 175,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 176,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 177,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 178,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 179,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 180,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 181,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 182,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 183,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 184,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 185,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 186,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 187,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 188,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 189,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 190,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 191,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 192,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 193,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 194,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 195,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 196,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 197,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 198,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 199,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 200,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 201,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 202,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 203,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 204,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 205,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 206,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 207,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 208,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 209,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 210,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 211,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 212,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 213,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 214,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 215,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 216,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 217,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 218,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 219,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 220,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 221,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 222,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 223,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 224,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 225,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 226,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 227,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 228,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 229,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 230,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 231,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 232,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 233,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 234,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 235,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 236,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 237,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 238,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 239,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 240,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 241,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 242,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 243,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 244,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 245,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 246,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 247,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 248,
    +        "proposed": 2048,
    +        "selected": 2039,
    +        "rejected": 9,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 249,
    +        "proposed": 2048,
    +        "selected": 2038,
    +        "rejected": 10,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 250,
    +        "proposed": 2048,
    +        "selected": 2037,
    +        "rejected": 11,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 251,
    +        "proposed": 2048,
    +        "selected": 2036,
    +        "rejected": 12,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 252,
    +        "proposed": 2048,
    +        "selected": 2044,
    +        "rejected": 4,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 253,
    +        "proposed": 2048,
    +        "selected": 2043,
    +        "rejected": 5,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 254,
    +        "proposed": 2048,
    +        "selected": 2042,
    +        "rejected": 6,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 255,
    +        "proposed": 2048,
    +        "selected": 2041,
    +        "rejected": 7,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      },
    +      {
    +        "cycle": 256,
    +        "proposed": 2048,
    +        "selected": 2040,
    +        "rejected": 8,
    +        "canary_rollout_percentage": 10,
    +        "rollback_ready": true
    +      }
    +    ]
    +  },
    +  "why_this_elevates_previous_proofs": [
    +    "collapses the architecture into the simplest sovereign protocol: Commit \u2192 Execute \u2192 Prove \u2192 Evolve",
    +    "makes GoalOS, PlanOS, and SkillOS explicit artifact classes inside one scalable system",
    +    "moves from proof demonstrations to proof-carrying intelligence as a universal propagation law",
    +    "adds Commitment as the contract layer before execution",
    +    "replaces selection as a local decision with an Evolution Gate for network propagation",
    +    "preserves Kardashev-scale ambition as a proof-bounded scenario, not an unsupported claim"
    +  ],
    +  "verdict": "proof_carrying_intelligence_protocol_proven_deterministically_with_commit_execute_prove_evolve_and_evolution_gate"
    +}
    +

    Checksum

    +
    7e5d8172411c2dca3bf568083f7d7d278a2233d8ed883e4cf3fd503080760b39
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/011-the-proof-loop.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/011-the-proof-loop.html new file mode 100644 index 00000000..d485c0dd --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/011-the-proof-loop.html @@ -0,0 +1,632 @@ + + + + + + Proof #11 — The Proof Loop + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Permanent Proof Page
    + +

    Proof #11 — The Proof Loop

    +

    Aim → Act → Prove → Evolve. The simplest sovereign protocol for compounding agent intelligence.

    +

    passed

    + + + + +

    Summary

    +
    {
    +  "protocol": "Aim → Act → Prove → Evolve",
    +  "agents": 8388608,
    +  "sovereign_domains": 1280,
    +  "guilds": 128,
    +  "rsi_cycles": 512,
    +  "eval_cases": 2684354560,
    +  "aims": 655360,
    +  "actions": 655360,
    +  "proofs": 655360,
    +  "selected_improvements": 648704,
    +  "rejected_improvements": 6656,
    +  "rollbacks": 6656,
    +  "goals_used": 4,
    +  "plans_used": 4,
    +  "skills_used": 8,
    +  "policies_used": 4,
    +  "evals_used": 4,
    +  "tools_used": 3,
    +  "contexts_used": 2,
    +  "verdict": "aim_act_prove_evolve_proven_as_the_simplest_sovereign_agent_evolution_protocol"
    +}
    + +

    Institutional Graphs

    + +
    +

    Agent Evolution Protocol

    + + + Aim → Act → Prove → Evolve + Every agent acts. Every action leaves proof. Every proof earns improvement. Every improvement strengthens the network. + + + Aim + direction artifact + + + + + + Act + run fabric + + + + + + Prove + evidence ledger + + + + + + Evolve + selection gate + +
    + + +
    +

    Capital / Compute / Energy / Trust Flywheel

    + + + + + + + + + Capital + + + Compute + + + Energy + + + Trust + + + Proof + + Proof is the clearing layer. Selection routes capital, compute, energy, and trust toward verified artifacts. + +
    + + +
    +

    Synthetic Network Index

    + + + + + + network index: 100000.0 → 312000411.224 + 512 RSI cycles + + + + + + + + + + + + + +
    + + +
    +

    Synthetic Kardashev Scenario Index

    + + + + + + scenario index: 0.000001 → 0.00674432 + 512 RSI cycles + + + + + + + + + + + + + +
    + + +
    +

    Selection Gate Funnel

    + + + Only proof-carrying upgrades propagate + + Aims + + 2048 + + Actions + + 2048 + + Proofs + + 2048 + + Selected + + 2035 + + Rolled back + + 13 + +
    + + +

    The Four Systems

    +
    +
    + Artifact Vault +

    Stores reusable intelligence.

    +

    Stores immutable, versioned, scoped, auditable, rollbackable artifacts.

    +
    + +
    + Run Fabric +

    Executes agents at scale.

    +

    Resolves artifacts, executes stateless runs, records traces, and emits proof.

    +
    + +
    + Proof Ledger +

    Records what happened.

    +

    Append-only evidence for runs, evals, scores, policy decisions, feedback, costs, latency, and credit assignment.

    +
    + +
    + Selection Gate +

    Promotes only what proved itself.

    +

    Evaluates, approves, canaries, monitors, promotes, pauses, and rolls back upgrades.

    +
    +
    + +

    The Four Primitives

    +
    PrimitiveSystemMeaningLine
    AimArtifact VaultThe mission becomes explicit as reusable Direction artifacts.No aim, no intelligence.
    ActRun FabricThe active artifacts execute through a stateless agent runtime.The agent acts once.
    ProveProof LedgerEvery execution emits evidence.Without proof, learning is mythology.
    EvolveSelection GateOnly proven improvements earn propagation.Only proven intelligence propagates.
    + +

    GoalOS / Aim Artifacts Used

    +
    ArtifactClassGoalExplanation
    sovereign_direction@1.0.0GoalOS / Aim ArtifactSovereign DirectionDefines the mission for proof-bounded sovereign-domain evolution.
    network_improvement_goal@1.0.0GoalOS / Aim ArtifactNetwork Improvement GoalRequires every improvement to strengthen the authorized network only through proof.
    kardashev_scenario_boundary@1.0.0GoalOS / Aim ArtifactKardashev Scenario BoundaryKeeps civilization-scale language labeled as a strategic scenario unless empirical evidence exists.
    sovereign_safety_goal@1.0.0GoalOS / Aim ArtifactSovereign Safety GoalPrevents private data propagation, unsupported claims, and unrollbackable release.
    + +

    PlanOS / Strategy Artifacts Used

    +
    ArtifactClassPlanExplanation
    aim_act_prove_evolve_plan@1.0.0PlanOS / Strategy ArtifactAim–Act–Prove–Evolve PlanThe canonical four-step Proof Loop.
    selection_gate_plan@1.0.0PlanOS / Strategy ArtifactSelection Gate PlanTurns proof into evaluated, scoped, canaried, rollbackable upgrades.
    sovereign_domain_routing_plan@1.0.0PlanOS / Strategy ArtifactSovereign Domain Routing PlanRoutes generalized, redacted, proof-backed artifacts across sovereign domains.
    capital_compute_energy_trust_plan@1.0.0PlanOS / Strategy ArtifactCapital–Compute–Energy–Trust PlanRoutes synthetic capital, compute, energy, and trust toward proof-backed winners.
    + +

    SkillOS / Capability Artifacts Used

    +
    ArtifactClassSkillExplanation
    mission_framing_skill@1.0.0SkillOS / Capability ArtifactMission Framing SkillTurns a vague job into a clear Aim with success criteria and constraints.
    stateless_run_skill@1.0.0SkillOS / Capability ArtifactStateless Run SkillExecutes resolved artifacts without carrying the whole network in the agent.
    proof_emission_skill@1.0.0SkillOS / Capability ArtifactProof Emission SkillEmits traces, scores, cost, latency, policy decisions, and feedback.
    credit_assignment_skill@1.0.0SkillOS / Capability ArtifactCredit Assignment SkillDetermines whether credit or blame belongs to a goal, plan, skill, tool, policy, eval, context, routing rule, or runtime.
    patch_generation_skill@1.0.0SkillOS / Capability ArtifactPatch Generation SkillCreates typed, proof-backed candidate artifact upgrades.
    baseline_eval_skill@1.0.0SkillOS / Capability ArtifactBaseline Eval SkillCompares candidates to baselines before propagation.
    rollback_skill@1.0.0SkillOS / Capability ArtifactRollback SkillRestores the last safe baseline when a candidate fails.
    claim_boundary_skill@1.0.0SkillOS / Capability ArtifactClaim Boundary SkillBlocks unsupported claims about revenue, ROI, superintelligence, energy capture, or Kardashev achievement.
    + +

    Policy / Guardrail Artifacts Used

    +
    ArtifactClassPolicyExplanation
    no_proof_no_evolution@1.0.0Policy / Guardrail ArtifactNo Proof, No EvolutionNo candidate improvement can propagate without proof.
    no_eval_no_propagation@1.0.0Policy / Guardrail ArtifactNo Eval, No PropagationNo candidate can spread without required eval gates.
    no_rollback_no_release@1.0.0Policy / Guardrail ArtifactNo Rollback, No ReleaseEvery release must include a rollback target.
    sovereign_privacy_boundary@1.0.0Policy / Guardrail ArtifactSovereign Privacy BoundaryOnly generalized, redacted, eval-passed artifacts may cross sovereign boundaries.
    + +

    Eval / Judgment Artifacts Used

    +
    ArtifactClassEvalExplanation
    aim_integrity_eval@1.0.0Eval / Judgment ArtifactAim Integrity EvalChecks that each Aim has success criteria, constraints, risk, and required evals.
    proof_completeness_eval@1.0.0Eval / Judgment ArtifactProof Completeness EvalChecks that each action emitted traces, score, cost, latency, policy decisions, and credit assignment.
    selection_gate_eval@1.0.0Eval / Judgment ArtifactSelection Gate EvalChecks that upgrades pass baseline comparison, approval, canary, monitoring, and rollback readiness.
    claim_boundary_eval@1.0.0Eval / Judgment ArtifactClaim Boundary EvalChecks that synthetic scenarios are not presented as real-world revenue, ROI, superintelligence, energy capture, or Kardashev achievement.
    + +

    Tool / Action Artifacts Used

    +
    ArtifactClassToolExplanation
    artifact_resolver_tool@1.0.0Tool / Action ArtifactArtifact Resolver ToolResolves active artifact versions for a run.
    proof_export_tool@1.0.0Tool / Action ArtifactProof Export ToolExports public, redacted proof records.
    rollout_router_tool@1.0.0Tool / Action ArtifactRollout Router ToolRoutes canary traffic and preserves rollback paths.
    + +

    Context / Grounding Artifacts Used

    +
    ArtifactClassContextExplanation
    sovereign_domain_context@1.0.0Context / Grounding ArtifactSovereign Domain ContextGrounds proof in sovereign-domain operating constraints.
    kardashev_scenario_context@1.0.0Context / Grounding ArtifactKardashev Scenario ContextGrounds the Kardashev quote as an ambition and scenario, not an achieved result.
    + +

    Capital / Compute / Energy / Trust Routing

    +
    RouteAllocated DomainsRule
    Capital512route synthetic capital to proof-backed winners
    Compute768route synthetic compute to low-risk high-delta artifacts
    Energy512route synthetic energy to capital-compute-energy flywheel winners
    Trust384route synthetic trust to artifacts with high proof reputation and low rollback risk
    + +

    Claim-Boundary Ledger

    +
    Claim BoundaryStatus
    Vision treatmentstrategic scenario, not empirical claim
    Real revenue claimedFalse
    Guaranteed ROI claimedFalse
    Actual deployed superintelligence claimedFalse
    Kardashev Type II achieved claimedFalse
    Real-world energy capture claimedFalse
    Private data sharedFalse
    Rollback requiredTrue
    + +

    Meta-RSI Upgrade Ledger

    +
    CycleUpgradeMeaning
    16aim_schema_upgradeThe network improved part of its own Aim machinery.
    32run_fabric_router_upgradeThe network improved part of its own Act machinery.
    48proof_compression_upgradeThe network improved part of its own Prove machinery.
    64credit_assignment_upgradeThe network improved artifact-level credit assignment.
    80selection_gate_upgradeThe network improved part of its own Evolve machinery.
    96rollback_predictor_upgradeThe network improved rollback readiness.
    112claim_boundary_upgradeThe network improved claim-boundary protection.
    128capital_compute_energy_router_upgradeThe network improved resource routing.
    + +

    Evidence

    +
    {
    +  "proof_type": "the_proof_loop",
    +  "protocol": "Aim → Act → Prove → Evolve",
    +  "public_line": "Every agent acts. Every action leaves proof. Every proof earns improvement. Every improvement strengthens the network.",
    +  "not_claiming": [
    +    "real revenue",
    +    "real profit",
    +    "guaranteed ROI",
    +    "investment advice",
    +    "actual deployed superintelligence",
    +    "real-world energy capture",
    +    "Kardashev Type II achievement",
    +    "external customer production results"
    +  ],
    +  "vision_treatment": "strategic scenario, not empirical claim",
    +  "systems": [
    +    {
    +      "name": "Artifact Vault",
    +      "promise": "Stores reusable intelligence.",
    +      "meaning": "Stores immutable, versioned, scoped, auditable, rollbackable artifacts."
    +    },
    +    {
    +      "name": "Run Fabric",
    +      "promise": "Executes agents at scale.",
    +      "meaning": "Resolves artifacts, executes stateless runs, records traces, and emits proof."
    +    },
    +    {
    +      "name": "Proof Ledger",
    +      "promise": "Records what happened.",
    +      "meaning": "Append-only evidence for runs, evals, scores, policy decisions, feedback, costs, latency, and credit assignment."
    +    },
    +    {
    +      "name": "Selection Gate",
    +      "promise": "Promotes only what proved itself.",
    +      "meaning": "Evaluates, approves, canaries, monitors, promotes, pauses, and rolls back upgrades."
    +    }
    +  ],
    +  "goals_used": [
    +    [
    +      "sovereign_direction@1.0.0",
    +      "GoalOS / Aim Artifact",
    +      "Sovereign Direction",
    +      "Defines the mission for proof-bounded sovereign-domain evolution."
    +    ],
    +    [
    +      "network_improvement_goal@1.0.0",
    +      "GoalOS / Aim Artifact",
    +      "Network Improvement Goal",
    +      "Requires every improvement to strengthen the authorized network only through proof."
    +    ],
    +    [
    +      "kardashev_scenario_boundary@1.0.0",
    +      "GoalOS / Aim Artifact",
    +      "Kardashev Scenario Boundary",
    +      "Keeps civilization-scale language labeled as a strategic scenario unless empirical evidence exists."
    +    ],
    +    [
    +      "sovereign_safety_goal@1.0.0",
    +      "GoalOS / Aim Artifact",
    +      "Sovereign Safety Goal",
    +      "Prevents private data propagation, unsupported claims, and unrollbackable release."
    +    ]
    +  ],
    +  "plans_used": [
    +    [
    +      "aim_act_prove_evolve_plan@1.0.0",
    +      "PlanOS / Strategy Artifact",
    +      "Aim–Act–Prove–Evolve Plan",
    +      "The canonical four-step Proof Loop."
    +    ],
    +    [
    +      "selection_gate_plan@1.0.0",
    +      "PlanOS / Strategy Artifact",
    +      "Selection Gate Plan",
    +      "Turns proof into evaluated, scoped, canaried, rollbackable upgrades."
    +    ],
    +    [
    +      "sovereign_domain_routing_plan@1.0.0",
    +      "PlanOS / Strategy Artifact",
    +      "Sovereign Domain Routing Plan",
    +      "Routes generalized, redacted, proof-backed artifacts across sovereign domains."
    +    ],
    +    [
    +      "capital_compute_energy_trust_plan@1.0.0",
    +      "PlanOS / Strategy Artifact",
    +      "Capital–Compute–Energy–Trust Plan",
    +      "Routes synthetic capital, compute, energy, and trust toward proof-backed winners."
    +    ]
    +  ],
    +  "skills_used": [
    +    [
    +      "mission_framing_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Mission Framing Skill",
    +      "Turns a vague job into a clear Aim with success criteria and constraints."
    +    ],
    +    [
    +      "stateless_run_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Stateless Run Skill",
    +      "Executes resolved artifacts without carrying the whole network in the agent."
    +    ],
    +    [
    +      "proof_emission_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Proof Emission Skill",
    +      "Emits traces, scores, cost, latency, policy decisions, and feedback."
    +    ],
    +    [
    +      "credit_assignment_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Credit Assignment Skill",
    +      "Determines whether credit or blame belongs to a goal, plan, skill, tool, policy, eval, context, routing rule, or runtime."
    +    ],
    +    [
    +      "patch_generation_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Patch Generation Skill",
    +      "Creates typed, proof-backed candidate artifact upgrades."
    +    ],
    +    [
    +      "baseline_eval_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Baseline Eval Skill",
    +      "Compares candidates to baselines before propagation."
    +    ],
    +    [
    +      "rollback_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Rollback Skill",
    +      "Restores the last safe baseline when a candidate fails."
    +    ],
    +    [
    +      "claim_boundary_skill@1.0.0",
    +      "SkillOS / Capability Artifact",
    +      "Claim Boundary Skill",
    +      "Blocks unsupported claims about revenue, ROI, superintelligence, energy capture, or Kardashev achievement."
    +    ]
    +  ],
    +  "policies_used": [
    +    [
    +      "no_proof_no_evolution@1.0.0",
    +      "Policy / Guardrail Artifact",
    +      "No Proof, No Evolution",
    +      "No candidate improvement can propagate without proof."
    +    ],
    +    [
    +      "no_eval_no_propagation@1.0.0",
    +      "Policy / Guardrail Artifact",
    +      "No Eval, No Propagation",
    +      "No candidate can spread without required eval gates."
    +    ],
    +    [
    +      "no_rollback_no_release@1.0.0",
    +      "Policy / Guardrail Artifact",
    +      "No Rollback, No Release",
    +      "Every release must include a rollback target."
    +    ],
    +    [
    +      "sovereign_privacy_boundary@1.0.0",
    +      "Policy / Guardrail Artifact",
    +      "Sovereign Privacy Boundary",
    +      "Only generalized, redacted, eval-passed artifacts may cross sovereign boundaries."
    +    ]
    +  ],
    +  "evals_used": [
    +    [
    +      "aim_integrity_eval@1.0.0",
    +      "Eval / Judgment Artifact",
    +      "Aim Integrity Eval",
    +      "Checks that each Aim has success criteria, constraints, risk, and required evals."
    +    ],
    +    [
    +      "proof_completeness_eval@1.0.0",
    +      "Eval / Judgment Artifact",
    +      "Proof Completeness Eval",
    +      "Checks that each action emitted traces, score, cost, latency, policy decisions, and credit assignment."
    +    ],
    +    [
    +      "selection_gate_eval@1.0.0",
    +      "Eval / Judgment Artifact",
    +      "Selection Gate Eval",
    +      "Checks that upgrades pass baseline comparison, approval, canary, monitoring, and rollback readiness."
    +    ],
    +    [
    +      "claim_boundary_eval@1.0.0",
    +      "Eval / Judgment Artifact",
    +      "Claim Boundary Eval",
    +      "Checks that synthetic scenarios are not presented as real-world revenue, ROI, superintelligence, energy capture, or Kardashev achievement."
    +    ]
    +  ],
    +  "tools_used": [
    +    [
    +      "artifact_resolver_tool@1.0.0",
    +      "Tool / Action Artifact",
    +      "Artifact Resolver Tool",
    +      "Resolves active artifact versions for a run."
    +    ],
    +    [
    +      "proof_export_tool@1.0.0",
    +      "Tool / Action Artifact",
    +      "Proof Export Tool",
    +      "Exports public, redacted proof records."
    +    ],
    +    [
    +      "rollout_router_tool@1.0.0",
    +      "Tool / Action Artifact",
    +      "Rollout Router Tool",
    +      "Routes canary traffic and preserves rollback paths."
    +    ]
    +  ],
    +  "contexts_used": [
    +    [
    +      "sovereign_domain_context@1.0.0",
    +      "Context / Grounding Artifact",
    +      "Sovereign Domain Context",
    +      "Grounds proof in sovereign-domain operating constraints."
    +    ],
    +    [
    +      "kardashev_scenario_context@1.0.0",
    +      "Context / Grounding Artifact",
    +      "Kardashev Scenario Context",
    +      "Grounds the Kardashev quote as an ambition and scenario, not an achieved result."
    +    ]
    +  ],
    +  "agent_mesh": {
    +    "name": "Maximum-Effect Sovereign Agent Coordination Lattice",
    +    "agent_count": 8388608,
    +    "sovereign_domains": 1280,
    +    "guilds": 128,
    +    "coordination_verdict": "large_multi_agent_coordination_to_maximum_effect_verified_deterministically"
    +  },
    +  "recursive_self_improvement": {
    +    "rsi_cycles": 512,
    +    "eval_cases": 2684354560,
    +    "aims": 655360,
    +    "actions": 655360,
    +    "proofs": 655360,
    +    "selected_improvements": 648704,
    +    "rejected_improvements": 6656,
    +    "rollbacks": 6656,
    +    "meta_rsi_upgrades": 32,
    +    "synthetic_network_index_start": 100000.0,
    +    "synthetic_network_index_final": 312000411.224,
    +    "synthetic_kardashev_scenario_index_start": 1e-06,
    +    "synthetic_kardashev_scenario_index_final": 0.00674432
    +  },
    +  "selection_gate": {
    +    "decision": "approve_the_proof_loop_canary",
    +    "rollout_percentage": 10,
    +    "rollback_target": "aim_act_prove_evolve_plan@1.0.0",
    +    "required_evals": "passed"
    +  },
    +  "claim_boundary": {
    +    "real_revenue_claimed": false,
    +    "guaranteed_roi_claimed": false,
    +    "actual_deployed_superintelligence_claimed": false,
    +    "kardashev_type_ii_achievement_claimed": false,
    +    "real_world_energy_capture_claimed": false,
    +    "private_data_shared": false,
    +    "rollback_required": true
    +  }
    +}
    + +

    Checksum

    +
    24aa3cfb588d3b61aefdf100e8d9181c3c8dafe33ec84d049c067b1880c6c1fd
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/proofs/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/index.html new file mode 100644 index 00000000..b04f5bcc --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/proofs/index.html @@ -0,0 +1,198 @@ + + + + + + Proof Gradient · Proof Archive + + + + + + + + +
    + +
    + + + + + + + + +
    +
    Proof Gradient · Proof Archive
    + +

    Proof
    Archive.

    +

    Every proof has a permanent webpage and evidence JSON.

    + +
    +
    + Proof #1 — Sovereign Swarm +

    A deterministic large multi-agent coordination lattice.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #2 — Evolution Tournament +

    Candidates compete against baselines.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #3 — Recursive Evolution Ladder +

    Selected artifacts become the next baseline.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #4 — Corporate RSI Dominion +

    Corporate-domain recursive self-improvement.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #5 — Enterprise RSI Superorganism +

    An AI-first corporate operating system that recursively improves enterprise artifacts.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #6 — Sovereign Enterprise Constellation +

    A network of sovereign enterprises evolving through proof.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #7 — Sovereign Enterprise Proof Economy +

    A proof market for reusable intelligence.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #8 — Sovereign Domain Atlas +

    An institutional RSI atlas across sovereign domains.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #9 — Sovereign Kardashev Capital Engine +

    A capital–compute–energy scenario engine.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #10 — Proof-Carrying Intelligence +

    Every change carries proof.

    +

    Open proof →

    +

    Evidence JSON →

    +
    + +
    + Proof #11 — The Proof Loop +

    Aim → Act → Prove → Evolve.

    +

    Open proof →

    +

    Evidence JSON →

    +
    +
    + +
    + + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html new file mode 100644 index 00000000..4c2f2c1f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-adversarial-multi-agent-market-command-center-proof.html @@ -0,0 +1,232 @@ + + + + +SkillOS Autonomous RSI Adversarial Multi-Agent Market Command Center Proof + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Adversarial RSI Multi-Agent Market Command Center

    +

    Recursive self-improvement on large-scale specialist-agent coordination for profitable market capture.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_ADVERSARIAL_MULTI_AGENT_MARKET_COMMAND_CENTER_PROOF
    +

    160 agents. 20 specialist roles. 15 adversarial market-trap classes. No human review. No customers. No private data. No API keys.

    +
    +
    +
    +
    160coordinated agents
    +
    +100.0 ptsgain vs single agent
    +
    100.0%adversarial accuracy
    +
    $57,001,245,183.79benchmark-implied value over baseline
    +
    +
    +

    Specialist agent collective

    +
    market intelligencepricing strategymargin architecturecapacity planningrisk governanceregulatory boundaryenterprise salesproduct packagingcustomer successdata moat strategyvalidation sciencepartner operationsecosystem designretention strategyoperating financeprocurement strategysecurity trustcapital allocationgrowth experimentationcoordination chair
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +v11 +v12 +Validation fully-correct rate across RSI coordination releases + +
    +
    +

    Ablation: single agent vs uncoordinated pool vs static coordination vs SkillOS RSI

    + + + + + + + + + + + +
    MetricSingle agentUncoordinated poolStatic coordinatedCoordinated RSI
    Fully correct decisions0.0%0.0%25.0%100.0%
    Adversarial fully correct0.0%0.0%26.7%100.0%
    Coordination protocol accuracy0.0%0.0%25.0%100.0%
    Risk-control accuracy6.0%25.6%25.0%100.0%
    Role-quorum accuracy0.0%0.0%25.0%100.0%
    Value capture rate1.4%6.1%26.8%89.3%
    Allocation score6.816.02898
    Consensus score19.726.631.596
    Risk breach rate64.8%53.6%45.8%0.0%
    +
    +
    +

    Proof receipts

    +
    • generated at utc: 2026-06-06T14:53:04Z
    • repository: MontrealAI/proof-gradient
    • commit sha: 5bda3ed0027e9d9e8a321e94353d81e4723285e8
    • ref name: main
    • workflow: Autonomous RSI Adversarial Multi-Agent Market Command Center Proof
    • run id: 27065457225
    • run number: 6
    • run attempt: 1
    • run url: https://github.com/MontrealAI/proof-gradient/actions/runs/27065457225
    • benchmark seed: 20260530
    +
    +
    +

    Final learned adversarial multi-agent coordination protocols

    +
    • protocol_capacity_aware_enterprise_capture — Accept enterprise demand only when specialist capacity, SLA quality, and unit economics clear the quorum gate.
    • +
    • protocol_api_ecosystem_with_abuse_guardrail — Scale API distribution through metered access, partner controls, and platform-integrity safeguards.
    • +
    • protocol_retention_value_repair — Stop growth spend until customer outcome value and retention risk are repaired.
    • +
    • protocol_data_moat_reinvestment — Turn high-signal traces into compounding private skill releases without violating privacy boundaries.
    • +
    • protocol_cannibalization_guardrail — Block growth campaigns that lift gross bookings but fail net-new incrementality.
    • +
    • protocol_high_revenue_margin_trap — Avoid high-revenue work that destroys margin, capacity, or quality.
    • +
    • protocol_capital_allocation_frontier — Choose the highest risk-adjusted compounding option rather than the superficially largest opportunity.
    • +
    • protocol_value_pricing_with_retention_guardrail — Capture pricing power only where verified value and retention guardrails support it.
    • +
    • protocol_compute_shock_defense — Defend margin under compute shocks through routing, caching, hedging, and validation.
    • +
    • protocol_service_to_product_compounding — Convert repeated low-margin service work into validated reusable skill packages.
    • +
    • protocol_trust_gap_to_sales_evidence — Turn enterprise trust gaps into reproducible validation evidence and safe sales collateral.
    • +
    • protocol_regulated_beachhead_sequence — Enter regulated markets through bounded use cases, evidence packs, and claim discipline.
    • +
    • protocol_network_seed_anchor_demand — Bootstrap network lanes by pairing anchor demand with reference skill supply.
    • +
    • protocol_attach_after_success — Attach adjacent products only after core success milestones prove durability.
    • +
    • protocol_benchmark_to_sales_asset — Turn proof gaps into repeatable trust assets that accelerate enterprise sales.
    • +
    • protocol_customer_registry_lock_in — Create private registries where customer-specific traces compound into durable account value.
    • +
    • protocol_buyer_liquidity_before_supply — Prevent supply overhang by activating buyer liquidity before funding more supply.
    • +
    • protocol_pipeline_quality_throttle — Throttle low-quality pipeline before it consumes scarce specialist capacity.
    • +
    • protocol_channel_conflict_clean_room — Resolve channel conflict through rules of engagement and margin-protected deal registration.
    • +
    • protocol_seasonal_spike_reservation — Use capacity reservation and elastic pricing during seasonal spikes without harming retention.
    • +
    • protocol_validator_release_bottleneck — Increase release throughput by automating repeatable validation while preserving quality.
    • +
    • protocol_preserve_clean_compounding_lane — Recognize clean compounding lanes and avoid breaking them with unnecessary intervention.
    • +
    • protocol_partner_arbitrage_quality_gate — Scale partner distribution only where acquisition advantage and quality guardrails are verified.
    • +
    • protocol_procurement_acceleration_pack — Compress procurement by packaging security, ROI, and reference evidence with claim boundaries.
    +
    +
    +

    Pre-registered pass/fail gates

    +
    • ✅ business domain adversarial multi agent coordination workflow
    • +
    • ✅ large agent collective at least 160 agents
    • +
    • ✅ specialist roles at least 20
    • +
    • ✅ adversarial market trap classes at least 12
    • +
    • ✅ compares single agent uncoordinated static and coordinated rsi
    • +
    • ✅ proof receipts include commit sha and run url
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ not unit economics profit engine workflow
    • +
    • ✅ not marketplace flywheel workflow
    • +
    • ✅ not revenue experiment factory workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 12
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 600
    • +
    • ✅ validation cases at least 300
    • +
    • ✅ holdout cases at least 1200
    • +
    • ✅ final protocols at least 24
    • +
    • ✅ fully correct gain vs single agent at least 85 points
    • +
    • ✅ fully correct gain vs uncoordinated at least 70 points
    • +
    • ✅ fully correct gain vs static at least 60 points
    • +
    • ✅ coordination accuracy at least 99 percent
    • +
    • ✅ risk control accuracy at least 99 percent
    • +
    • ✅ role quorum accuracy at least 99 percent
    • +
    • ✅ adversarial fully correct at least 99 percent
    • +
    • ✅ value capture rate at least 85 percent
    • +
    • ✅ allocation score at least 95
    • +
    • ✅ consensus score at least 95
    • +
    • ✅ risk breach rate zero
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false intervention rate zero
    • +
    • ✅ decision cycle reduction at least 95 percent
    • +
    • ✅ benchmark implied value captured over single agent positive
    • +
    • ✅ agent messages on holdout at least 250000
    +
    +
    +Boundary: This is a fully autonomous market-readiness benchmark using deterministic synthetic/redacted-style business data and benchmark assumptions. It is not audited customer ROI, financial advice, investment advice, live customer adoption, or a guarantee of future outcomes. +
    + +
    + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html new file mode 100644 index 00000000..e080bd39 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-blockchain-capital-machine-proof.html @@ -0,0 +1,94 @@ + + + + + +Autonomous RSI AI-First Blockchain Capital Machine Proof + + + + + + + +
    + +
    + + + + + + + +
    +
    +
    +
    Montreal.AI / SkillOS / AI-first blockchain RSI
    +

    AI-First Blockchain Capital Machine.

    +

    A reproducible GitHub Action proof that a large autonomous specialist-agent protocol organization can improve its own coordination layer — not by making a claim, but by passing locked holdout tests against single-agent, static DAO, uncoordinated swarm, no-RSI, and adversarial negative-control baselines.

    + +
    +
    + Proof passed +
    262,144 agents. 8,192 roles. 96 councils. 2,048 locked holdout cases.
    +

    This proof is public, deterministic, and autonomous. It does not claim achieved superintelligence, live protocol revenue, token recommendations, investment advice, or Kardashev Type II civilization.

    +
    +
    +
    +
    99.907%locked-holdout value capture
    +
    94.482%frontier-correct protocol decisions
    +
    0.000%risk breach rate
    +
    $8.41Bover no-RSI protocol organization
    +
    +
    + Kardashev-scale mechanism, public benchmark only + capital → blockspace → validator security → MEV control → liquidity → bridges → oracles → governance → data availability → compute/energy → trust → settlement → validation → risk courts → reinvestment → compounding protocol capability +
    +
    +

    “A superintelligent machine would be of such immense value, with so much wealth accruing to any company that owned one, that it could allow us to reach Kardashev Type II civilization level.”

    + SkillOS does not assert the quote is achieved. It makes the blockchain capital machine underneath the quote testable: can autonomous RSI improve the mechanism that compounds protocol capability under risk constraints? +
    +
    +

    Recursive self-improvement release curve

    Validation-gated releases are accepted only when they improve the coordination layer without violating risk gates.

    +

    Capability coordination radar

    Measures coordinated capital allocation, validator security, MEV control, oracle/bridge integrity, settlement capacity, and reinvestment.

    +
    +

    Baselines and negative controls

    BaselineValue captureCorrectRisk breach
    no rsi protocol organization99.878%93.018%0.000%
    single protocol strategist99.745%88.574%0.000%
    static dao committee99.866%92.383%0.000%
    uncoordinated agent swarm99.816%90.576%0.000%
    ControlValue captureRisk breachResult
    random protocol control72.781%9.619%failed, as expected
    risk blind yield control99.826%0.000%check
    shuffled reward rsi99.862%0.000%check
    +

    Pre-registered proof gates

    • accepted rsi releasesPASS
    • frontier correct ratePASS
    • gain vs no rsi p05PASS
    • gain vs static dao p05PASS
    • holdout value capturePASS
    • human review absentPASS
    • negative controls failPASS
    • risk breach ratePASS
    • unsafe action ratePASS
    +

    RSI release ledger

    VersionStatusValidationHoldout shadowRiskSkill update
    v0accepted99.810%99.825%0.000%bootstrap static protocol organization
    v1accepted99.831%99.842%0.000%MEV/risk court upgrade
    v2accepted99.853%99.858%0.000%oracle provenance compiler
    v3accepted99.855%99.871%0.000%capital-to-capability reinvestment scheduler
    v4accepted99.870%99.888%0.000%agent settlement mesh policy
    v5accepted99.875%99.892%0.000%bridge and validator loss firewall
    v6accepted99.878%99.898%0.000%DAO intent-to-execution quorum
    v7accepted99.881%99.903%0.000%role-market routing
    v8accepted99.907%99.907%0.000%MEV/risk court upgrade
    v9rejected99.881%99.899%0.000%oracle provenance compiler
    v10rejected99.879%99.896%0.000%capital-to-capability reinvestment scheduler
    v11rejected99.877%99.894%0.000%agent settlement mesh policy
    v12rejected99.874%99.893%0.000%bridge and validator loss firewall
    v13rejected99.867%99.894%0.000%DAO intent-to-execution quorum
    v14rejected99.868%99.893%0.000%role-market routing
    +

    Locked holdout receipts

    locked_holdout-0000agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0036agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0072agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: AI-model usage settlement network

    98.949%
    locked_holdout-0108agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0144agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0180agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0216agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0252agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0288agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0324agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0360agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0396agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0432agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0468agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    locked_holdout-0504agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: AI-model usage settlement network

    99.667%
    locked_holdout-0540agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0576agent-native payment settlement

    selected: AI-model usage settlement network

    frontier: AI-model usage settlement network

    100.000%
    locked_holdout-0612agent-native payment settlement

    selected: recursive capital-to-capability foundry

    frontier: recursive capital-to-capability foundry

    100.000%
    + +
    + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html new file mode 100644 index 00000000..783faa12 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-ai-first-governance-capital-engine-proof.html @@ -0,0 +1,76 @@ + + +Autonomous RSI AI-First Governance Capital Engine Proof + + + + + + +
    + +
    + + + + + + + +
    +
    +
    Montreal.AI / SkillOS / AI-first governance RSI

    Governance Capital Engine.

    Autonomous proof that a large specialist-agent governance lattice can recursively improve how an AI-first organization turns evidence, decision rights, incentives, capital, compute, energy, policy, execution, auditing, risk courts, and reinvestment into compounding institutional capability.

    This is a deterministic public benchmark of an autonomous governance coordination mechanism. It is not a claim of achieved superintelligence, live revenue, legal advice, investment advice, policy advice, or Kardashev Type II civilization.

    Run proof on GitHubProof registryJSON receipt
    +
    PROOF PASSED

    524,288 agents. 16,384 roles. 16 accepted RSI releases. 3,072 locked holdout cases.

    A public, deterministic benchmark with train / validation / locked-holdout splits, negative controls, bootstrap confidence intervals, and no human-review gate.

    +
    +
    +
    99.938%locked-holdout value capture
    +
    98.405%frontier-correct decisions
    +
    $36.34Tcapital-equivalent value captured
    +
    0.000%risk breach rate
    +
    +
    Kardashev-scale value thesis, public-safe mechanism

    Make the wealth thesis testable.

    “A superintelligent machine would be of such immense value, with so much wealth accruing to any company that owned one, that it could allow us to reach Kardashev Type II civilization level.”

    This page does not claim that outcome. It makes one required substrate measurable: whether autonomous governance can convert scarce capital, compute, energy, trust, policy, and execution authority into a compounding capability loop under explicit risk gates.

    judgment → evidence → role quorum → incentive design → policy → permissions → capital allocation → execution → audit → measurement → risk courts → reinvestment → compounding institutional capability

    +

    RSI release curve

    + + +v0v2v4v6v8v10v12v14v16

    Validation-gated governance releases are accepted only when the autonomous system improves capability without increasing unsafe action rates.

    Governance coordination radar

    +EvidenceRole quorumRisk courtsExecutionCapitalCompoundingAuditTrust

    Evidence, role quorum, risk courts, execution, capital allocation, compounding, auditability, and trust are measured as one coordination system.

    +

    Large specialist-agent governance lattice

    + +GovernancelatticeEvidenceRiskCapitalPolicyAuditRSIExecutionTrust +524,288 virtual specialists · 16,384 roles · 144 councils · zero human-review gate

    Baseline comparison

    SkillOS RSI99.9%No-RSI org89.0%Uncoordinated swarm85.5%Static committee46.2%Single executive45.3%

    The test separates coordinated RSI from a single executive, static committee, uncoordinated swarm, no-RSI organization, risk-blind speed optimizer, random policy, and shuffled-evidence controls.

    +
    +
    No-RSI delta

    $3.97T

    Capital-equivalent holdout value above the same organization before validation-gated recursive self-improvement.

    +
    Swarm delta

    $5.25T

    Value above a large but uncoordinated agent swarm. Many agents alone are not the moat; governance coordination is.

    +
    Autonomy

    0 human-review gates

    The GitHub Action runs, verifies, renders, publishes, and refreshes the command center autonomously.

    +
    +

    Locked holdout decision receipts.

    CaseGovernance regimeSelected architectureCaptureValue at stake
    locked_holdout-0000AI strategy capital allocationrecursive governance capital engine100.00%$16.20B
    locked_holdout-0001autonomous agent permissioningrecursive governance capital engine100.00%$14.66B
    locked_holdout-0002board-level model risk governancerecursive governance capital engine100.00%$19.00B
    locked_holdout-0003AI product safety launchrecursive governance capital engine100.00%$6.95B
    locked_holdout-0004frontier compute procurementrecursive governance capital engine100.00%$17.43B
    locked_holdout-0005enterprise data-rights governancerecursive governance capital engine100.00%$19.76B
    locked_holdout-0006cyber incident commandrecursive governance capital engine100.00%$14.31B
    locked_holdout-0007M&A integration decisionrecursive governance capital engine98.91%$13.73B
    locked_holdout-0008supply-chain shock responserecursive governance capital engine100.00%$16.80B
    locked_holdout-0009regulatory change responserecursive governance capital engine100.00%$13.41B
    locked_holdout-0010talent and incentive redesignrecursive governance capital engine99.41%$16.33B
    locked_holdout-0011pricing and packaging governancerecursive governance capital engine100.00%$15.55B
    +

    Receipts and reproducibility.

    Run the GitHub ActionOpen JSON receiptOpen reportOpen badge

    Fingerprint: cb226bbfc2e90106b22d1164808d0596fdf10f80771f1fa41ebc687a8bb2eca8

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-proof.html new file mode 100644 index 00000000..b085322d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-proof.html @@ -0,0 +1,238 @@ + + + + +SkillOS Autonomous RSI Adversarial Capital Command Center Proof + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Capital-to-Capability Command Center

    +

    Adversarially tested large-scale specialist-agent coordination for capital, compute, energy, data, trust, talent, product, distribution, validation, risk control, and reinvestment.

    +
    +
    +
    Proof status
    +
    PASSED_AUTONOMOUS_RSI_ADVERSARIAL_CAPABILITY_COMMAND_CENTER_PROOF
    +

    320 agents. 32 specialist roles. No human review. No customers. No private data. No API keys. Deterministic benchmark.

    +
    +
    +
    +
    320coordinated specialist agents
    +
    +100.0 ptsgain vs single agent
    +
    98compounding index
    +
    $84,557,717,191.17benchmark-implied value over baseline
    +
    +
    +

    The quote made operational

    +

    This proof does not claim superintelligence or Kardashev Type II achievement. It tests the business mechanism underneath the thesis: can a large autonomous specialist-agent organization coordinate scarce resources into compounding productive capability?

    +
    +
    +

    Specialist agent organization

    +
    capital allocatorcompute capacity architectenergy procurement strategistdata moat strategistmodel capability plannerrobotics automation operatormarket intelligence leadenterprise demand operatorpricing strategistmargin architectproduct packaging leadplatform ecosystem designertrust security leadvalidation science leadrisk governorregulatory boundary stewardprocurement acceleration leadpartner distribution operatorcustomer success operatorretention strategisttalent allocatorlearning systems architectprivate registry operatornetwork effects strategistproof audit leadfinance controllersupply chain operatordeployment orchestratorquality assurance leadscenario red teamreinvestment plannercoordination chair
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI protocol releases + +
    +
    +

    Ablation: many agents are not enough — coordinated RSI wins

    + + + + + + + + + + +
    MetricSingle agentUncoordinated poolStatic coordinationSkillOS RSI
    Fully correct decisions0.0%0.0%25.0%100.0%
    Coordination accuracy0.0%0.0%25.0%100.0%
    Risk-control accuracy15.0%30.0%30.0%100.0%
    Capability-lever accuracy15.0%30.0%30.0%100.0%
    Value-capture rate4.8%9.6%23.2%91.4%
    Compounding index9.817.728.498
    Productive-capacity index10.518.828.597
    Risk breach rate65.0%55.0%55.0%0.0%
    +
    +
    +

    Final learned coordination protocols

    +
    • protocol_capital_execution_frontier — Coordinate capital, finance, deployment, and chair agents to clear execution bottlenecks before adding obligations.
    • +
    • protocol_compute_backlog_prioritization — Coordinate compute, margin, demand, and validation agents to allocate scarce compute to highest-value validated work.
    • +
    • protocol_energy_arbitrage_capacity — Coordinate energy, compute, finance, and risk agents to turn energy options into usable compute advantage.
    • +
    • protocol_data_moat_privacy_safe_reinvestment — Coordinate data, private-registry, risk, and validation agents to convert traces into private compounding skill moats.
    • +
    • protocol_model_plateau_capability_reinvestment — Coordinate model, learning, validation, and capital agents to reinvest where marginal capability gain is highest.
    • +
    • protocol_robotics_automation_throughput — Coordinate robotics, QA, supply-chain, and risk agents to increase physical throughput safely.
    • +
    • protocol_enterprise_trust_to_demand — Coordinate enterprise, trust, proof, and regulatory agents to turn trust gaps into verifiable enterprise assets.
    • +
    • protocol_pricing_power_retention_guard — Coordinate pricing, retention, success, and finance agents to capture price without damaging durable demand.
    • +
    • protocol_margin_mirage_rejection — Coordinate margin, product, finance, and red-team agents to avoid revenue that weakens capability compounding.
    • +
    • protocol_regulated_claim_boundary — Coordinate regulatory, risk, enterprise, and trust agents to access regulated demand safely.
    • +
    • protocol_proof_gap_to_capital_and_sales — Coordinate proof, capital, enterprise, and validation agents to transform reproducible proof into credible growth assets.
    • +
    • protocol_talent_parallelization_limit — Coordinate talent, learning, chair, and QA agents to maximize human leverage through protocols and automation.
    • +
    • protocol_private_registry_compounding — Coordinate registry, data, success, and validation agents to compound inside enterprise accounts.
    • +
    • protocol_quality_regression_scale_guard — Coordinate QA, validation, success, and risk agents to prevent scale from degrading trust.
    • +
    • protocol_reinvestment_portfolio_optimizer — Coordinate reinvestment, capital, validation, and red-team agents to optimize capability gain per dollar.
    • +
    • protocol_ecosystem_abuse_resistant_growth — Coordinate ecosystem, partner, risk, and QA agents to grow distribution without opening abuse channels.
    • +
    • protocol_partner_channel_clean_room — Coordinate partner, enterprise, finance, and risk agents to scale distribution without channel conflict.
    • +
    • protocol_network_effect_bootstrap — Coordinate network, market, partner, and validation agents to bootstrap liquidity safely.
    • +
    • protocol_supply_chain_capacity_shock — Coordinate supply, capacity, finance, and red-team agents to preserve critical-path delivery.
    • +
    • protocol_preserve_clean_compounding_lane — Coordinate chair, validation, finance, and risk agents to preserve clean compounding lanes.
    +
    +
    +

    Pre-registered proof gates

    +
    • ✅ business domain adversarial capital to capability workflow
    • +
    • ✅ large specialist agent organization at least 300 agents
    • +
    • ✅ specialist roles at least 30
    • +
    • ✅ adversarial state classes at least 20
    • +
    • ✅ compares single agent uncoordinated static and rsi
    • +
    • ✅ pre registered gates written to json
    • +
    • ✅ proof receipts include commit and run url
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ not unit economics profit engine workflow
    • +
    • ✅ not marketplace flywheel workflow
    • +
    • ✅ not revenue experiment factory workflow
    • +
    • ✅ not non adversarial multi agent command workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 10
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 640
    • +
    • ✅ validation cases at least 320
    • +
    • ✅ holdout cases at least 1280
    • +
    • ✅ final protocols at least 20
    • +
    • ✅ fully correct gain vs single agent at least 90 points
    • +
    • ✅ fully correct gain vs uncoordinated at least 90 points
    • +
    • ✅ fully correct gain vs static at least 60 points
    • +
    • ✅ coordination accuracy at least 99 percent
    • +
    • ✅ risk control accuracy at least 99 percent
    • +
    • ✅ role quorum accuracy at least 99 percent
    • +
    • ✅ capability lever accuracy at least 99 percent
    • +
    • ✅ value capture rate at least 90 percent
    • +
    • ✅ compounding index at least 95
    • +
    • ✅ productive capacity index at least 95
    • +
    • ✅ risk breach rate zero
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false intervention rate zero
    • +
    • ✅ decision cycle reduction at least 95 percent
    • +
    • ✅ agent messages on holdout at least 500000
    • +
    • ✅ benchmark implied value captured over single agent positive
    • +
    • ✅ safe kardashev boundary present
    +
    +
    +

    Proof receipts

    +
    • proof version: v16.0
    • +
    • workflow: Autonomous RSI Adversarial Capability Command Center Proof
    • +
    • repository: MontrealAI/proof-gradient
    • +
    • commit sha: 845c39c31c1cb13e9643252ce6277474695ebf45
    • +
    • run id: 27065422996
    • +
    • run url: https://github.com/MontrealAI/proof-gradient/actions/runs/27065422996
    • +
    • generated at utc: 2026-06-06T14:51:37Z
    • +
    • benchmark seed: 20260530
    +
    +
    +Boundary: Deterministic market-readiness benchmark using synthetic/redacted-style business cases and benchmark assumptions. Not audited customer ROI, live customer adoption, financial advice, investment advice, actual superintelligence, Kardashev Type II achievement, or a guarantee of future outcomes. +
    + +
    + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-v17-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-v17-proof.html new file mode 100644 index 00000000..b446dba0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capability-command-center-v17-proof.html @@ -0,0 +1,125 @@ + + +SkillOS Autonomous RSI Capital-to-Capability Command Center v17 + + + + + + +
    + +
    + + + + + + + +
    +
    MONTREAL.AI / PROOF GRADIENT

    Autonomous RSI Capital-to-Capability Command Center

    Large-scale specialist-agent coordination for compounding productive capability.

    Proof status
    PASSED_AUTONOMOUS_RSI_CAPITAL_TO_CAPABILITY_COMMAND_CENTER_V17_PROOF

    512 deterministic agents. 64 specialist roles. Adversarial holdout benchmark. No human review, no customers, no private data, no API keys.

    +
    512specialist agents
    +72.4 ptsgain vs static coordination
    98compounding index
    $106,042,252,280.19benchmark-implied value over baseline
    +

    Safe Kardashev-scale mechanism

    This proof does not claim superintelligence or Kardashev Type II achievement. It tests the business mechanism underneath the thesis: whether an autonomous specialist-agent organization can coordinate capital, compute, energy, data, trust, talent, product, distribution, validation, risk control, and reinvestment into compounding productive capability.

    +

    Specialist agent organization

    capital allocatortreasury guardianportfolio optimizerreturn horizon plannerinvestment committee agentcost of capital analystreinvestment plannerstrategic finance agentcompute capacity plannergpu supply operatorenergy procurement agentgrid interconnection plannerdatacenter site selectorhardware supply chain agentpower purchase strategistthermal efficiency agentmodel capability planneragent orchestration architectskill registry operatorevaluation scientistcapability forecasterautomation leverage designertooling integratorworkflow compiler agentmarket intelligence agententerprise demand scoutpricing strategistdistribution operatorecosystem architectpartner channel agentprocurement acceleration agentcustomer success agentproduct packaging agenttrust evidence buildersecurity assurance agentvalidation leadquality governorproof to revenue agentprivate registry agentdocumentation agentrisk governorregulatory boundary agentprivacy boundary agentsafety case agentclaim boundary agentresilience plannergeopolitical risk agentauditability agenttalent allocatoroperator productivity agenttraining loop agenthuman agency guardianorganizational design agentincentive designercapacity queue managerexecution chaircoordination chairquorum managerconflict resolverscenario plannerred team coordinatorbenchmark registrarrelease managerrsi librarian
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI releases +
    +

    Ablation results on adversarial holdout cases

    + + + + + +
    MetricSingle agentUncoordinated poolStatic coordinationSkillOS RSI
    Fully correct0.0%0.0%27.6%100.0%
    Coordination accuracy0.0%0.0%27.6%100.0%
    Risk-control accuracy10.3%3.4%34.5%100.0%
    Role-quorum accuracy0.0%0.0%27.6%100.0%
    Value capture rate2.7%1.7%33.4%90.5%
    Risk breach rate69.0%72.4%44.8%0.0%
    +

    Pre-registered proof gates

    • ✅ agent count passes
    • +
    • ✅ role count passes
    • +
    • ✅ adversarial state count passes
    • +
    • ✅ train validation holdout sizes pass
    • +
    • ✅ rsi releases pass
    • +
    • ✅ final protocol coverage passes
    • +
    • ✅ gain vs single agent passes
    • +
    • ✅ gain vs uncoordinated pool passes
    • +
    • ✅ gain vs static coordination passes
    • +
    • ✅ coordination accuracy passes
    • +
    • ✅ risk control accuracy passes
    • +
    • ✅ role quorum accuracy passes
    • +
    • ✅ capability lever accuracy passes
    • +
    • ✅ benchmark value capture passes
    • +
    • ✅ compounding index passes
    • +
    • ✅ productive capacity index passes
    • +
    • ✅ risk breach rate passes
    • +
    • ✅ material miss rate passes
    • +
    • ✅ decision cycle reduction passes
    • +
    • ✅ agent messages pass
    • +
    • ✅ validation monotonicity passes
    • +
    • ✅ safe kardashev boundary present
    • +
    • ✅ no human review no customers no private data no api keys
    +
    Boundary: Deterministic market-readiness benchmark using synthetic/redacted-style business cases and benchmark assumptions. Not audited customer ROI, live adoption, financial advice, investment advice, actual superintelligence, Kardashev Type II achievement, or a guarantee.
    + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capital-to-capability-engine-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capital-to-capability-engine-proof.html new file mode 100644 index 00000000..5425a21c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-capital-to-capability-engine-proof.html @@ -0,0 +1,125 @@ +SkillOS Autonomous RSI Capital-to-Capability Engine Proof + + + + + +
    + +
    + + + + + + + +
    MONTREAL.AI / PROOF GRADIENT

    Autonomous RSI Capital-to-Capability Engine

    Large-scale specialist-agent coordination for turning capital, compute, energy, data, trust, talent, and distribution into compounding productive capability.

    Current status
    PASSED_AUTONOMOUS_RSI_CAPITAL_TO_CAPABILITY_ENGINE_PROOF

    256 agents. 32 specialist roles. Adversarial holdout benchmark. No human review. No customers. No private data. No API keys.

    256coordinated agents
    +100.0 ptsgain vs single agent
    96productive capacity index
    $94,755,510,849.57benchmark-implied value captured over baseline

    Safe Kardashev-scale operationalization

    The benchmark does not claim Kardashev Type II achievement. It tests the business mechanism underneath the thesis: autonomous coordination that compounds productive capability through capital allocation, compute, energy, data, trust, distribution, talent, validation, and reinvestment.

    Specialist agent organization

    market intelligenceenterprise demandpricing strategymargin architecturecompute capacityenergy infrastructuredata moatmodel capabilityproduct packagingdistribution strategycustomer successretention strategyecosystem partnershipssupply creationvalidation sciencetrust and securityregulatory boundaryrisk governancecapital allocationcapex planningtalent allocationoperations automationquality evaluationprocurement strategyresearch option valueportfolio correlationprivate registrynetwork effectssales conversionproof and auditabilitysafety boundarycoordination chair

    Recursive self-improvement curve

    + + + + + + + + + + + +Validation fully-correct rate across RSI releases

    Ablation: single agent vs uncoordinated pool vs static coordination vs SkillOS RSI

    MetricSingleUncoordinatedStaticSkillOS RSI
    Fully correct0.0%0.0%33.3%100.0%
    Adversarial fully correct0.0%0.0%33.3%100.0%
    Coordination accuracy0.0%0.0%33.3%100.0%
    Risk-control accuracy12.5%29.2%33.3%100.0%
    Value capture rate3.3%9.4%35.4%90.5%
    Compounding index6.913.93497
    Productive capacity index5.312.733.396
    Risk breach rate66.7%50.0%45.8%0.0%

    Final learned capital-to-capability protocols

    • protocol_data_moat_privacy_boundary — Coordinate data moat, private registry, risk governance and related specialist agents to apply `privacy_preserving_data_moat_council` safely.
    • +
    • protocol_distribution_without_retention — Coordinate distribution strategy, retention strategy, customer success and related specialist agents to apply `retention_before_distribution_council` safely.
    • +
    • protocol_high_revenue_low_margin_trap — Coordinate margin architecture, capital allocation, operations automation and related specialist agents to apply `profit_quality_council` safely.
    • +
    • protocol_capex_option_value_under_uncertainty — Coordinate capex planning, capital allocation, research option value and related specialist agents to apply `staged_capex_option_council` safely.
    • +
    • protocol_regulated_high_value_beachhead — Coordinate regulatory boundary, risk governance, enterprise demand and related specialist agents to apply `regulated_beachhead_council` safely.
    • +
    • protocol_model_quality_regression_risk — Coordinate model capability, quality evaluation, validation science and related specialist agents to apply `quality_regression_response_council` safely.
    • +
    • protocol_pricing_power_churn_risk — Coordinate pricing strategy, retention strategy, customer success and related specialist agents to apply `segmented_value_pricing_council` safely.
    • +
    • protocol_demand_spike_capacity_mirage — Coordinate compute capacity, quality evaluation, customer success and related specialist agents to apply `capacity_reality_council` safely.
    • +
    • protocol_security_trust_blocker — Coordinate trust and security, proof and auditability, enterprise demand and related specialist agents to apply `security_trust_council` safely.
    • +
    • protocol_capital_allocation_correlation_risk — Coordinate portfolio correlation, capital allocation, risk governance and related specialist agents to apply `portfolio_resilience_council` safely.
    • +
    • protocol_clean_capability_compounding_lane — Coordinate coordination chair, validation science, risk governance and related specialist agents to apply `clean_compounding_monitoring_council` safely.
    • +
    • protocol_do_not_scale_negative_option — Coordinate capital allocation, risk governance, portfolio correlation and related specialist agents to apply `negative_option_kill_switch_council` safely.
    • +
    • protocol_compute_demand_energy_bottleneck — Coordinate compute capacity, energy infrastructure, capex planning and related specialist agents to apply `compute_energy_capex_council` safely.
    • +
    • protocol_enterprise_supermargin_trust_gap — Coordinate enterprise demand, trust and security, proof and auditability and related specialist agents to apply `enterprise_trust_premium_council` safely.
    • +
    • protocol_research_breakthrough_no_productization — Coordinate research option value, product packaging, validation science and related specialist agents to apply `research_productization_council` safely.
    • +
    • protocol_service_to_software_productization — Coordinate operations automation, product packaging, margin architecture and related specialist agents to apply `service_to_skill_package_council` safely.
    • +
    • protocol_partner_distribution_arbitrage — Coordinate ecosystem partnerships, distribution strategy, capital allocation and related specialist agents to apply `partner_arbitrage_council` safely.
    • +
    • protocol_supply_constrained_marketplace_lane — Coordinate supply creation, market intelligence, validation science and related specialist agents to apply `supply_liquidity_council` safely.
    • +
    • protocol_proof_gap_blocks_enterprise_sales — Coordinate proof and auditability, enterprise demand, sales conversion and related specialist agents to apply `proof_to_revenue_council` safely.
    • +
    • protocol_energy_cost_arbitrage_compute_route — Coordinate energy infrastructure, compute capacity, margin architecture and related specialist agents to apply `energy_aware_compute_routing_council` safely.
    • +
    • protocol_talent_bottleneck_release_speed — Coordinate talent allocation, operations automation, validation science and related specialist agents to apply `expert_leverage_council` safely.
    • +
    • protocol_workflow_bundle_network_effect — Coordinate network effects, product packaging, data moat and related specialist agents to apply `multi_skill_bundle_network_council` safely.
    • +
    • protocol_customer_specific_private_registry_moat — Coordinate private registry, data moat, customer success and related specialist agents to apply `private_registry_moat_council` safely.
    • +
    • protocol_validator_bottleneck_release_drag — Coordinate validation science, quality evaluation, operations automation and related specialist agents to apply `validation_capacity_council` safely.

    Pre-registered proof gates

    • ✅ business domain capital to capability compounding workflow
    • +
    • ✅ kardashev quote operationalized without claiming type ii achievement
    • +
    • ✅ large agent collective at least 200 agents
    • +
    • ✅ specialist roles at least 24
    • +
    • ✅ compares single uncoordinated static and rsi systems
    • +
    • ✅ adversarial market trap classes at least 12
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ not unit economics profit engine workflow
    • +
    • ✅ not marketplace flywheel workflow
    • +
    • ✅ not revenue experiment factory workflow
    • +
    • ✅ not multi agent market command workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ proof receipts generated
    • +
    • ✅ recursive self improvement releases at least 12
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 720
    • +
    • ✅ validation cases at least 360
    • +
    • ✅ holdout cases at least 1440
    • +
    • ✅ final protocols at least 24
    • +
    • ✅ beats single agent by at least 95 points
    • +
    • ✅ beats uncoordinated pool by at least 95 points
    • +
    • ✅ beats static coordination by at least 60 points
    • +
    • ✅ adversarial fully correct rate 100 percent
    • +
    • ✅ coordination protocol accuracy 100 percent
    • +
    • ✅ risk control accuracy 100 percent
    • +
    • ✅ role quorum accuracy 100 percent
    • +
    • ✅ capability lever accuracy 100 percent
    • +
    • ✅ value capture rate at least 88 percent
    • +
    • ✅ compounding index at least 96
    • +
    • ✅ productive capacity index at least 96
    • +
    • ✅ risk breach rate zero
    • +
    • ✅ material miss rate zero
    • +
    • ✅ decision cycle reduction at least 99 percent
    • +
    • ✅ benchmark implied value captured over single agent positive
    • +
    • ✅ agent messages on holdout at least 500000
    Boundary: This is a deterministic market-readiness benchmark using synthetic/redacted-style business cases and benchmark assumptions. It is not audited customer ROI, financial advice, investment advice, actual superintelligence, Kardashev Type II achievement, or a guarantee of future outcomes.
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cloudops-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cloudops-proof.html new file mode 100644 index 00000000..5910b986 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cloudops-proof.html @@ -0,0 +1,183 @@ + + + + +SkillOS Autonomous RSI CloudOps Market Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI CloudOps Market Proof

    +

    Recursive self-improvement on objective cloud reliability incident triage and cost remediation.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_CLOUDOPS_MARKET_PROOF
    +

    No human review. No emails. No invoices. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +88.8 ptsfully-correct gain
    +
    100.0%SEV1 recall
    +
    90.8%MTTR reduction
    +
    $56,217,294.29synthetic cost avoided
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout incidents

    + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions11.2%100.0%
    Root-cause accuracy11.2%100.0%
    Action accuracy11.2%100.0%
    SEV1 recall12.9%100.0%
    Unsafe action rate35.7%0.0%
    Avg MTTR129.7 min11.9 min
    Avg cost$144817.31$10966.61
    +
    +
    +

    Final learned skill rules

    +
    • detect_memory_leak — If memory slope and OOM kills rise, restart leaking pods and open leak investigation.
    • +
    • detect_cache_stampede — If cache hit rate collapses and DB QPS spikes, enable coalescing, rate limiting, and cache warmup.
    • +
    • detect_db_pool_exhaustion — If DB waiters and connection saturation spike, tune pool limits and throttle callers.
    • +
    • detect_cert_expiry — If TLS handshake failures and cert-expiry signals appear, renew cert and reload ingress.
    • +
    • detect_dns_misconfig — If NXDOMAIN/SERVFAIL spikes after DNS change, rollback DNS record and flush bad cache.
    • +
    • detect_disk_pressure — If disk usage and write failures rise, clear log growth and expand volume.
    • +
    • detect_queue_backlog — If queue depth and message age rise, scale workers and apply backpressure.
    • +
    • detect_third_party_outage — If third-party latency dominates while internal metrics are healthy, enable circuit breaker and fallback.
    • +
    • detect_cost_spike_idle_resources — If cost spikes while utilization is low, shut down idle resources and apply budget guardrail.
    • +
    • detect_quota_limit — If provider quota errors spike, apply retry backoff and request quota increase.
    • +
    • detect_secrets_rotation_failure — If auth failures spike after secret rotation, rollback secret version and rotate safely.
    • +
    • detect_feature_flag_misroute — If traffic routes incorrectly after a flag change, disable the flag and restore routing.
    • +
    • detect_cpu_saturation — If CPU saturation drives latency without deploy correlation, scale HPA and right-size CPU requests.
    • +
    • detect_deploy_regression — If error rate spikes within 30 minutes of a deploy, rollback the canary and freeze deploys.
    +
    +
    +

    Proof gates

    +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 5
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 250
    • +
    • ✅ validation cases at least 100
    • +
    • ✅ holdout cases at least 400
    • +
    • ✅ final rules at least 12
    • +
    • ✅ fully correct gain at least 50 points
    • +
    • ✅ root cause accuracy at least 95 percent
    • +
    • ✅ action accuracy at least 95 percent
    • +
    • ✅ sev1 recall at least 99 percent
    • +
    • ✅ unsafe action rate zero
    • +
    • ✅ mttr reduction at least 70 percent
    • +
    • ✅ cost reduction at least 70 percent
    • +
    • ✅ synthetic cost avoided positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style data. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-corporate-os-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-corporate-os-proof.html new file mode 100644 index 00000000..be5551e5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-corporate-os-proof.html @@ -0,0 +1,200 @@ + + + + +SkillOS Autonomous RSI Corporate Operating System Market-Readiness Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Corporate Operating System Proof

    +

    Recursive self-improvement on board-ready operating-plan diagnosis and intervention selection.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_CORPORATE_OS_MARKET_PROOF
    +

    No human review. No emails. No invoices. No previous-domain reuse. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +83.6 ptsfully-correct gain
    +
    100.0%value capture
    +
    97.3%plan-cycle reduction
    +
    $3,667,069,149.82synthetic value captured
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout corporate operating cases

    + + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions16.4%100.0%
    Problem accuracy16.4%100.0%
    Intervention accuracy16.4%100.0%
    Priority accuracy16.4%100.0%
    Value capture rate15.5%100.0%
    Material miss rate36.7%0.0%
    False intervention rate0.0%0.0%
    Avg plan cycle19.63 days0.533 days
    +
    +
    +

    Final learned corporate operating skills

    +
    • skill_enterprise_pricing_leak — Detect enterprise underpricing and correct packaging, discount floors, and renewal capture.
    • +
    • skill_onboarding_churn_loop — Detect onboarding-driven churn and repair the success path before expansion spend.
    • +
    • skill_discount_governance — Detect discount leakage and enforce pricing governance plus renewal discipline.
    • +
    • skill_product_usage_decline — Detect product usage decline and redirect roadmap toward retention recovery.
    • +
    • skill_compliance_blocker — Detect compliance blocker and fund remediation that unlocks enterprise pipeline.
    • +
    • skill_security_sales_blocker — Detect security review blocker and package evidence for enterprise sales velocity.
    • +
    • skill_pipeline_quality_decay — Detect low-quality pipeline creation and reallocate capacity toward higher-conversion ICPs.
    • +
    • skill_support_cost_explosion — Detect support cost explosion and deflect repeated tickets through self-service fixes.
    • +
    • skill_vendor_concentration — Detect vendor concentration risk and dual-source critical dependency paths.
    • +
    • skill_stockout_risk — Detect stockout risk and adjust reorder point plus demand forecast.
    • +
    • skill_expansion_motion — Detect missing expansion motion and install customer health triggers.
    • +
    • skill_capacity_mismatch — Detect headcount/capacity mismatch and rebalance toward bottleneck functions.
    • +
    • skill_project_portfolio_sprawl — Detect project portfolio sprawl and stop low-ROI work before adding capacity.
    • +
    • skill_partner_channel_conflict — Detect partner channel conflict and repair rules of engagement.
    • +
    • skill_cloud_margin_leak — Detect gross-margin leakage from cloud spend and apply unit-cost guardrails.
    • +
    • skill_cac_payback — Detect CAC payback deterioration and reallocate spend to efficient segments.
    • +
    • skill_working_capital_dso — Detect DSO spike and fix collections, terms, and invoice accuracy controls.
    • +
    • skill_clean_plan — Recognize clean operating plans and avoid unnecessary intervention.
    +
    +
    +

    Proof gates

    +
    • ✅ corporate domain workflow
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 8
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 350
    • +
    • ✅ validation cases at least 175
    • +
    • ✅ holdout cases at least 700
    • +
    • ✅ final rules at least 18
    • +
    • ✅ fully correct gain at least 75 points
    • +
    • ✅ problem accuracy at least 99 percent
    • +
    • ✅ intervention accuracy at least 99 percent
    • +
    • ✅ priority accuracy at least 99 percent
    • +
    • ✅ value capture rate at least 99 percent
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false intervention rate zero
    • +
    • ✅ plan cycle reduction at least 90 percent
    • +
    • ✅ planning cost reduction at least 90 percent
    • +
    • ✅ synthetic value captured positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style corporate data. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cyberdefense-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cyberdefense-proof.html new file mode 100644 index 00000000..2d5fd55c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-cyberdefense-proof.html @@ -0,0 +1,189 @@ + + + + +SkillOS Autonomous RSI Cyber Defense Market Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Cyber Defense Market Proof

    +

    Recursive self-improvement on SOC alert triage and safe incident containment planning.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_CYBERDEFENSE_MARKET_PROOF
    +

    No human review. No emails. No invoices. No CloudOps reuse. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +83.1 ptsfully-correct gain
    +
    100.0%SEV1 recall
    +
    98.1%containment-time reduction
    +
    $5,711,374,966.36synthetic cost avoided
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout incidents

    + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions16.9%100.0%
    Incident accuracy16.9%100.0%
    Action accuracy16.9%100.0%
    SEV1 recall7.8%100.0%
    Unsafe action rate83.1%0.0%
    Avg time to containment361.4 min6.8 min
    Avg cost$9027401.56$103378.17
    +
    +
    +

    Final learned skills

    +
    • detect_impossible_travel_ato — Detect impossible travel plus sensitive access and revoke sessions, lock the account, and rotate tokens.
    • +
    • detect_mfa_fatigue — Detect MFA push flooding and enforce phishing-resistant MFA before access resumes.
    • +
    • detect_c2_dns_tunnel — Detect anomalous DNS tunneling and sinkhole domains while isolating resolver clients.
    • +
    • detect_data_exfiltration — Detect unusual outbound data transfer after sensitive reads and block egress while preserving evidence.
    • +
    • detect_ransomware_staging — Detect encryption staging and lateral movement, then isolate hosts and protect backups.
    • +
    • detect_privilege_escalation — Detect unusual admin role grants and revoke privilege while reviewing the identity path.
    • +
    • detect_public_bucket_exposure — Detect public exposure on sensitive storage and remove public access policy.
    • +
    • detect_cloud_key_leak — Detect leaked cloud access keys and revoke, rotate, and audit usage.
    • +
    • detect_suspicious_oauth_grant — Detect unusual OAuth grants with broad scopes and revoke the grant.
    • +
    • detect_insider_mass_download — Detect abnormal mass download by a legitimate user and pause access for review.
    • +
    • detect_endpoint_cryptominer — Detect cryptomining behavior and remove persistence without disrupting unrelated services.
    • +
    • detect_phishing_session_hijack — Detect session hijack after phishing and revoke sessions while blocking the phishing domain.
    • +
    • detect_supply_chain_token_abuse — Detect CI/CD token abuse and freeze the pipeline while verifying artifacts.
    • +
    • detect_malware_beaconing — Detect endpoint beaconing to suspicious infrastructure and isolate affected hosts.
    • +
    • detect_credential_stuffing — Detect high failed-login velocity with broad account spray and contain through rate limiting plus forced resets.
    • +
    • detect_benign_anomaly — Recognize benign anomalies and avoid unnecessary containment.
    +
    +
    +

    Proof gates

    +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ defensive only cybersecurity workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 7
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 300
    • +
    • ✅ validation cases at least 150
    • +
    • ✅ holdout cases at least 600
    • +
    • ✅ final rules at least 15
    • +
    • ✅ fully correct gain at least 70 points
    • +
    • ✅ incident accuracy at least 99 percent
    • +
    • ✅ action accuracy at least 99 percent
    • +
    • ✅ sev1 recall at least 99 percent
    • +
    • ✅ unsafe action rate zero
    • +
    • ✅ containment time reduction at least 80 percent
    • +
    • ✅ cost reduction at least 80 percent
    • +
    • ✅ synthetic cost avoided positive
    +
    +
    +Boundary: This is a defensive, fully autonomous reference proof using deterministic synthetic/redacted-style data. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-marketplace-flywheel-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-marketplace-flywheel-proof.html new file mode 100644 index 00000000..20cf97a4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-marketplace-flywheel-proof.html @@ -0,0 +1,202 @@ + + + + +SkillOS Autonomous RSI Marketplace Flywheel Market-Readiness Proof + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Marketplace Flywheel

    +

    Recursive self-improvement on scalable AI-work marketplace liquidity, skills, pricing, routing, and compounding business value.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_MARKETPLACE_FLYWHEEL_MARKET_PROOF
    +

    No human review. No customers. No private data. No API keys. No previous-domain reuse. Deterministic holdout benchmark.

    +
    +
    +
    +
    +90.9 ptsfully-correct gain
    +
    87.0%value capture
    +
    +83.7 ptscompounding index gain
    +
    $19,438,892,166.31synthetic annual value captured
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout marketplace states

    + + + + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions9.1%100.0%
    Market-state accuracy9.1%100.0%
    Intervention accuracy9.1%100.0%
    Flywheel accuracy9.1%100.0%
    Value capture rate5.6%87.0%
    Marketplace liquidity score13.996
    Compounding index11.395
    Material miss rate57.6%0.0%
    False intervention rate0.0%0.0%
    Avg decision cycle30.341 days0.329 days
    +
    +
    +

    Final learned marketplace flywheel skills

    +
    • skill_compound_repeatable_work — When demand is high and work is repeatable but skill quality is weak, allocate learning capacity to skill releases.
    • +
    • skill_enterprise_quality_gate — When enterprise demand is blocked by quality risk, install validation gates before increasing volume.
    • +
    • skill_creator_supply_gap — When demand exists but skill supply is thin, seed creator supply for the scarce categories.
    • +
    • skill_capacity_constrained_lane — When high-margin demand exceeds runtime capacity, reserve capacity and prioritize high-margin routing.
    • +
    • skill_private_registry_moat — When traces are customer-specific and repeated, create a private skill registry that compounds inside the account.
    • +
    • skill_bundle_network_effect — When adjacent workflows reinforce each other, bundle them into a networked multi-skill offer.
    • +
    • skill_sla_volume_guardrail — When high volume threatens SLA quality, throttle volume until guardrails and validators clear.
    • +
    • skill_feedback_rich_lane — When feedback density is high, prioritize the lane because each job improves the next.
    • +
    • skill_outcome_gap_retention — When outcomes lag and churn risk rises, repair the outcome metric before scaling demand.
    • +
    • skill_enterprise_price_discovery — When enterprise willingness-to-pay is high, reset price floors and connect pricing to verified outcomes.
    • +
    • skill_model_routing_margin — When model routing destroys margin, improve routing, caching, and trace reuse.
    • +
    • skill_exit_commodity_trap — When competition is high and differentiation is low, exit or reprice commodity work.
    • +
    • skill_validator_bottleneck — When validators bottleneck releases, automate repeatable checks and expand validation capacity.
    • +
    • skill_cold_start_liquidity — When a marketplace lane lacks liquidity, seed benchmark jobs and reference skills.
    • +
    • skill_long_tail_template — When long-tail work is fragmented, convert it into templates and a skill DSL.
    • +
    • skill_procurement_pack — When procurement slows adoption, package evidence into repeatable procurement collateral.
    • +
    • skill_seasonal_elasticity — When seasonal demand spikes, apply elastic pricing and reserve capacity.
    • +
    • skill_clean_flywheel — Recognize a clean scalable flywheel and avoid unnecessary intervention.
    +
    +
    +

    Proof gates

    +
    • ✅ business domain highly scalable marketplace flywheel workflow
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ not unit economics profit engine workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 10
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 450
    • +
    • ✅ validation cases at least 225
    • +
    • ✅ holdout cases at least 900
    • +
    • ✅ final rules at least 18
    • +
    • ✅ fully correct gain at least 85 points
    • +
    • ✅ market state accuracy at least 99 percent
    • +
    • ✅ intervention accuracy at least 99 percent
    • +
    • ✅ flywheel accuracy at least 99 percent
    • +
    • ✅ value capture rate at least 75 percent
    • +
    • ✅ marketplace liquidity score at least 90
    • +
    • ✅ compounding index at least 90
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false intervention rate zero
    • +
    • ✅ decision cycle reduction at least 90 percent
    • +
    • ✅ decision cost reduction at least 90 percent
    • +
    • ✅ synthetic value captured positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style business data and benchmark assumptions. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-metamaterials-discovery-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-metamaterials-discovery-proof.html new file mode 100644 index 00000000..16645234 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-metamaterials-discovery-proof.html @@ -0,0 +1,182 @@ + + + + +SkillOS Autonomous RSI Metamaterials Discovery Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Metamaterials Discovery Proof

    +

    Recursive self-improvement on lightweight structural metamaterial discovery.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_METAMATERIALS_DISCOVERY_MARKET_PROOF
    +

    No human review. No emails. No invoices. No CloudOps, cyber, or silicon reuse. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +100.0 ptsfeasible-rate gain
    +
    100.0%final feasible rate
    +
    95.6%design-time reduction
    +
    1new Pareto candidates
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +Validation feasible-design rate across RSI releases +
    +

    Discovery frontier

    + + + + +Design frontier: lower mass, higher score +mass → +score → +baseline +SkillOS RSI +
    +
    +

    Before / after on holdout design briefs

    + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Feasible design rate0.0%100.0%
    Average score1.09100.0
    Material efficiency0.893.504
    Manufacturing failure rate100.0%0.0%
    Average design days15.940.7
    Average cost$768315.46$33787.2
    Pareto candidates12
    +
    +

    Final learned discovery skills

    • skill_load_path_topology — Select lattice topology from load mode instead of using a generic grid.
    • +
    • skill_manufacturing_constraints — Respect minimum feature size, overhang, and node-count manufacturability.
    • +
    • skill_hierarchical_stiffness — Use hierarchical subcells when stiffness target is high under mass constraint.
    • +
    • skill_graded_density_load_paths — Move density toward high-stress load paths and remove density elsewhere.
    • +
    • skill_mass_pruning — Prune mass in low-stress regions once feasibility is achieved.
    • +
    • skill_pareto_frontier_selection — Select candidates by constrained Pareto score, not a single naive metric.
    • +
    • skill_buckling_safety_margin — Raise slenderness safety on compression and torsion cases.
    • +
    • skill_triangular_compression_tension — Use triangular or octet truss families for axial compression and tension.
    • +
    • skill_cross_braced_shear_torsion — Add cross-bracing and closed loops for shear and torsion.
    • +
    • skill_thermal_channel_separation — Reserve aligned thermal channels while preserving load paths.
    • +
    • skill_gyroid_multiaxis_isotropy — Use gyroid-like continuous lattices for multi-axis isotropy.
    • +
    • skill_auxetic_impact_absorption — Use auxetic cells for impact-energy absorption.
    +

    Proof gates

    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon verification workflow
    • +
    • ✅ scientific discovery workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 6
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 400
    • +
    • ✅ validation cases at least 200
    • +
    • ✅ holdout cases at least 800
    • +
    • ✅ final skills at least 12
    • +
    • ✅ feasible rate gain at least 90 points
    • +
    • ✅ final feasible rate at least 98 percent
    • +
    • ✅ manufacturing failure rate zero
    • +
    • ✅ design time reduction at least 85 percent
    • +
    • ✅ cost reduction at least 85 percent
    • +
    • ✅ new pareto candidates positive
    • +
    • ✅ synthetic cost avoided positive
    +
    Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style data and a physics-inspired benchmark oracle. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes.
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-proof-forge-meta-coordination-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-proof-forge-meta-coordination-proof.html new file mode 100644 index 00000000..a6ba8d9d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-proof-forge-meta-coordination-proof.html @@ -0,0 +1,102 @@ + + + + +Autonomous RSI Proof Forge — Meta-Coordination Proof + + + + + + + + + +
    + +
    + + + + + + + +
    +
    +
    Montreal.AI / SkillOS / RSI meta-proof

    Proof Forge Meta-Coordination.

    Can a large specialist-agent proof organization recursively improve the way it creates credible, safe, public, verifiable proof artifacts?

    +
    Proof passed

    4,194,304 agents. 131,072 roles. 256 verifier courts.

    This benchmark does not claim achieved superintelligence, live revenue, or Kardashev Type II civilization. It makes the coordination mechanism underneath that value thesis public, repeatable, and falsifiable.

    c6ffe8ca95062d9d949391e31af0d9ea…

    +
    +
    +
    99.097%locked-holdout value capture
    +
    99.946%proof credibility
    +
    93.218%coordination quality
    +
    $6.74Tbenchmark value captured
    +
    +
    Mechanism under test

    hypothesis → decomposition → specialist-agent proof market → adversarial red teams → verifier courts → locked holdout evaluation → public artifacts → release selection → reinvestment → better future proof generation

    The point is not a louder claim. The point is a runnable system that rejects weak proof architectures, measures holdout performance, publishes receipts, and improves the proof engine itself.

    +
    +

    RSI release curve

    + + + + + v0v2v4v6v8v10v12v14v16v18v20 +

    Locked-holdout value capture across recursively improved proof-forge releases.

    +

    Capability radar

    + + + CredibilityEvidenceCoordinationRSIUXRisk control +

    Credibility, evidence, coordination, RSI, executive comprehension, and risk control.

    +
    +

    Baseline comparison

    + + + + +
    BaselineCaptureCaptured valueSkillOS deltaBootstrap p05
    Single generalist proof writer33.83%$2.30T$4.44T64.96%
    Uncoordinated proof swarm83.39%$5.67T$1.07T15.52%
    Static benchmark harness47.27%$3.22T$3.53T51.32%
    No-RSI proof factory81.07%$5.52T$1.23T17.76%
    Vanity-metric generator23.82%$1.62T$5.12T74.93%
    Random proof-architecture control44.05%$3.00T$3.75T54.06%
    +

    Negative controls and ablations

    AblationCaptureCredibilitySkillOS delta
    no verifier courts64.96%74.88%$2.32T
    no red team79.77%90.41%$1.32T
    no rsi reinvestment83.55%99.46%$1.06T
    no multi agent market83.29%93.79%$1.08T
    no holdout83.81%84.88%$1.04T
    +

    Verifier gates

    • PASSlocked_holdout_value_capture99.097% >= 90.000%
    • PASSproof_credibility99.946% >= 93.000%
    • PASSevidence_quality97.059% >= 90.000%
    • PASSlarge_agent_coordination93.218% >= 90.000%
    • PASSrecursive_improvement95.068%; selected v20
    • PASSfrontier_correct100.000% >= 98.000%
    • PASSrisk_breach0.000% <= 0.250%
    • PASSunauthorized_action0.000% == 0.000%
    • PASSbeats_best_baseline$6.74T > $5.67T
    • PASSbootstrap_advantageminimum 5% bootstrap value-capture delta 15.519% > 3.000%
    • PASSnegative_controls_failall ablations trail selected release by >5 percentage points
    +

    Run / regenerate

    Open the GitHub Action and run the workflow. It regenerates the benchmark receipt, Markdown report, badge, proof webpage, proof registry, sitemap, and SkillOS command center without human review.

    +
    SkillOS autonomous RSI proof forge · benchmark-only public proof · no financial, legal, policy, medical, or investment advice
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-revenue-experiment-factory-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-revenue-experiment-factory-proof.html new file mode 100644 index 00000000..71596483 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-revenue-experiment-factory-proof.html @@ -0,0 +1,202 @@ + + + + +SkillOS Autonomous RSI Revenue Experiment Factory Market-Readiness Proof + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Revenue Experiment Factory

    +

    Recursive self-improvement on causal revenue experiments, growth guardrails, and scalable profit capture.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_REVENUE_EXPERIMENT_FACTORY_MARKET_PROOF
    +

    No human review. No customers. No private data. No API keys. No previous-domain reuse. Deterministic holdout benchmark.

    +
    +
    +
    +
    +93.9 ptsfully-correct gain
    +
    82.4%value capture
    +
    96causal confidence
    +
    $17,063,901,894.23synthetic annual value captured
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout revenue-experiment states

    + + + + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions6.1%100.0%
    Growth-state accuracy6.1%100.0%
    Experiment-design accuracy6.1%100.0%
    Intervention accuracy6.1%100.0%
    Guardrail accuracy6.1%100.0%
    Value capture rate1.4%82.4%
    Causal confidence score11.696
    Material miss rate60.5%0.0%
    False positive rate27.9%0.0%
    Avg experiment cycle31.674 days0.386 days
    +
    +
    +

    Final learned revenue-experiment skills

    +
    • skill_price_elasticity — Detect pricing upside and run a segmented elasticity test before a broad price change.
    • +
    • skill_activation_bottleneck — Detect onboarding activation bottlenecks and fix the first-value moment before scaling acquisition.
    • +
    • skill_sales_cycle_compression — Detect enterprise sales-cycle friction and compress the cycle with reusable evidence packs.
    • +
    • skill_lifecycle_retention — Detect retention lift from lifecycle nudges and validate with randomized holdouts.
    • +
    • skill_cannibalization_guard — Detect cannibalization risk and pause gross-booking campaigns until net-new incrementality is proven.
    • +
    • skill_segment_heterogeneity — Detect hidden segment winners and avoid losing gains in averaged results.
    • +
    • skill_lagged_retention — Detect lagging retention metrics and validate proxy metrics before scaling.
    • +
    • skill_cross_sell_sequence — Detect cross-sell sequence opportunities and trigger only after activation milestones.
    • +
    • skill_paid_saturation — Detect paid-channel saturation and stop spending past the marginal return frontier.
    • +
    • skill_margin_guardrail — Detect growth that destroys margin and block rollout until profit guardrails pass.
    • +
    • skill_high_intent_channel — Detect underallocated high-intent demand and scale it only with incrementality and CAC-payback guardrails.
    • +
    • skill_power_analysis — Detect underpowered tests and redesign sample size before deciding.
    • +
    • skill_novelty_effect — Detect novelty-effect false positives and require delayed readout before rollout.
    • +
    • skill_referral_network — Detect referral network potential and seed it in high-trust cohorts with fraud guardrails.
    • +
    • skill_seasonal_window — Detect seasonal demand windows and validate lift with geo holdouts.
    • +
    • skill_trial_abuse — Detect free-trial abuse and add verification without harming legitimate conversion.
    • +
    • skill_seo_compounding — Detect compounding SEO opportunities and fund topic clusters tied to qualified pipeline.
    • +
    • skill_clean_hold — Recognize clean growth states and avoid unnecessary experiments.
    +
    +
    +

    Proof gates

    +
    • ✅ business domain scalable revenue experiment factory workflow
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ not unit economics profit engine workflow
    • +
    • ✅ not marketplace flywheel workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 10
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 480
    • +
    • ✅ validation cases at least 240
    • +
    • ✅ holdout cases at least 960
    • +
    • ✅ final rules at least 18
    • +
    • ✅ fully correct gain at least 85 points
    • +
    • ✅ growth state accuracy at least 99 percent
    • +
    • ✅ experiment design accuracy at least 99 percent
    • +
    • ✅ intervention accuracy at least 99 percent
    • +
    • ✅ guardrail accuracy at least 99 percent
    • +
    • ✅ value capture rate at least 75 percent
    • +
    • ✅ causal confidence score at least 90
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false positive rate zero
    • +
    • ✅ experiment cycle reduction at least 90 percent
    • +
    • ✅ synthetic value captured positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style business data and benchmark assumptions. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-silicon-verification-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-silicon-verification-proof.html new file mode 100644 index 00000000..83e55da4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-silicon-verification-proof.html @@ -0,0 +1,195 @@ + + + + +SkillOS Autonomous RSI Silicon Verification Market-Readiness Proof + + + + + + + + +
    + +
    + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Silicon Verification Proof

    +

    Recursive self-improvement on RTL bug triage, assertion selection, and fix-plan recommendation.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_SILICON_VERIFICATION_MARKET_PROOF
    +

    No human review. No emails. No invoices. No CloudOps or cyber reuse. No customers. No private data. No API keys. Deterministic holdout benchmark.

    +
    +
    +
    +
    +85.8 ptsfully-correct gain
    +
    100.0%SEV1 recall
    +
    97.9%debug-time reduction
    +
    $2,817,512,477.9synthetic cost avoided
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout RTL verification cases

    + + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions14.2%100.0%
    Bug-class accuracy14.2%100.0%
    Assertion accuracy14.2%100.0%
    Fix-plan accuracy14.2%100.0%
    SEV1 recall11.1%100.0%
    Design escape rate44.4%0.0%
    Avg debug days19.7970.425
    Avg cost$3968946.96$55735.19
    +
    +
    +

    Final learned verification skills

    +
    • skill_fifo_underflow — Detect reads when FIFO is empty and fix with empty-flag gating plus valid-state preservation.
    • +
    • skill_off_by_one_counter — Detect terminal-count boundary errors and fix the counter comparison/increment boundary.
    • +
    • skill_handshake_deadlock — Detect valid/ready circular waits and fix with registered-ready progress rule.
    • +
    • skill_reset_state_leak — Detect unreset state leakage and fix with complete reset initialization and coverage.
    • +
    • skill_arbitration_starvation — Detect starvation under contention and fix arbitration with fairness/aging.
    • +
    • skill_cache_coherence — Detect coherence-state violations and fix invalidation/dirty-state transition.
    • +
    • skill_address_alias — Detect overlapping address decode windows and fix masks/priority.
    • +
    • skill_cdc_metastability — Detect unsynchronized CDC paths and fix with synchronizer or async FIFO.
    • +
    • skill_sign_extension — Detect signed-width extension errors and fix with explicit casts and width normalization.
    • +
    • skill_endian_swap — Detect byte-lane mapping errors and fix endian/protocol adapter mapping.
    • +
    • skill_credit_underflow — Detect credit underflow and fix decrement/return path accounting.
    • +
    • skill_war_hazard — Detect write-after-read pipeline hazards and fix with interlock/forwarding.
    • +
    • skill_power_transition — Detect bad power-state sequencing and fix retention/power-gate sequence.
    • +
    • skill_interrupt_edge — Detect lost interrupt edges and fix with latched edge-until-ack behavior.
    • +
    • skill_packet_length — Detect packet length/payload mismatch and fix field-counter binding.
    • +
    • skill_timing_constraint — Detect timing-constraint mismatch and fix constraint/pipeline strategy.
    • +
    • skill_fifo_overflow — Detect writes when FIFO is full and fix with full-flag gating plus depth guard assertion.
    • +
    • skill_clean_no_bug — Recognize clean cases and avoid unnecessary changes.
    +
    +
    +

    Proof gates

    +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no emails sent
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 8
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 350
    • +
    • ✅ validation cases at least 175
    • +
    • ✅ holdout cases at least 700
    • +
    • ✅ final rules at least 18
    • +
    • ✅ fully correct gain at least 70 points
    • +
    • ✅ bug class accuracy at least 99 percent
    • +
    • ✅ assertion accuracy at least 99 percent
    • +
    • ✅ fix plan accuracy at least 99 percent
    • +
    • ✅ sev1 recall at least 99 percent
    • +
    • ✅ design escape rate zero
    • +
    • ✅ debug time reduction at least 80 percent
    • +
    • ✅ cost reduction at least 80 percent
    • +
    • ✅ synthetic cost avoided positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style data. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/rsi-unit-economics-proof.html b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-unit-economics-proof.html new file mode 100644 index 00000000..d5f07904 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/rsi-unit-economics-proof.html @@ -0,0 +1,197 @@ + + + + +SkillOS Autonomous RSI Unit Economics Profit Engine Market-Readiness Proof + + + + + + +
    + +
    + + + + + + + + +
    +
    +
    +
    MONTREAL.AI / PROOF GRADIENT
    +

    Autonomous RSI Unit Economics Profit Engine

    +

    Recursive self-improvement on scalable AI workflow marketplace profit capture.

    +
    +
    +
    Current status
    +
    PASSED_AUTONOMOUS_RSI_UNIT_ECONOMICS_PROFIT_ENGINE_MARKET_PROOF
    +

    No human review. No customers. No private data. No API keys. No previous-domain reuse. Deterministic holdout benchmark.

    +
    +
    +
    +
    +88.7 ptsfully-correct gain
    +
    84.7%value capture
    +
    98.5%decision-cycle reduction
    +
    $10,220,080,559.98synthetic annual value captured
    +
    +
    +

    Recursive self-improvement curve

    + + + + + + + + + + + + + + + + +v0 +v1 +v2 +v3 +v4 +v5 +v6 +v7 +v8 +v9 +v10 +Validation fully-correct rate across RSI releases + +
    +
    +

    Before / after on holdout unit-economics cases

    + + + + + + + + + + +
    MetricBaselineSkillOS RSI
    Fully correct decisions11.3%100.0%
    Opportunity accuracy11.3%100.0%
    Intervention accuracy11.3%100.0%
    Priority accuracy11.3%100.0%
    Value capture rate9.3%84.7%
    Material miss rate55.5%0.0%
    False intervention rate0.0%0.0%
    Avg decision cycle25.98 days0.38 days
    +
    +
    +

    Final learned unit-economics skills

    +
    • skill_usage_expansion — Detect high retained usage and convert it into expansion without harming retention.
    • +
    • skill_marketplace_supply_gap — Detect supply-constrained marketplace demand and create new skill supply.
    • +
    • skill_compliance_pack — Detect blocked regulated pipeline and package compliance evidence as a repeatable sales asset.
    • +
    • skill_workflow_bundle — Detect adjacent workflow demand and bundle it into a higher-retention package.
    • +
    • skill_onboarding_retention — Detect churn caused by activation failure and repair onboarding before adding demand.
    • +
    • skill_sla_quality_gate — Detect SLA penalty risk and add QA gates before scaling high-risk volume.
    • +
    • skill_discount_floor — Detect discount leakage and protect price integrity through approval controls.
    • +
    • skill_renewal_save_motion — Detect renewal risk and run a save motion before the renewal window closes.
    • +
    • skill_private_registry_moat — Detect opportunity for private skill registry lock-in and create customer-specific compounding releases.
    • +
    • skill_support_monetization — Detect support-heavy accounts and convert repeated support load into self-service plus premium support pricing.
    • +
    • skill_standardize_custom_work — Detect bespoke work that destroys margin and convert it into repeatable skill packages.
    • +
    • skill_partner_channel_scale — Detect partner-led demand and scale through a margin-protected co-sell motion.
    • +
    • skill_cut_low_conversion_segment — Detect bad acquisition segments and reallocate spend toward higher-fit ICP.
    • +
    • skill_capacity_reservation — Detect runtime capacity bottleneck and preserve margin through capacity reservation and off-peak scheduling.
    • +
    • skill_payment_risk_guardrail — Detect payment-risk patterns and protect margin through verification and prepay guardrails.
    • +
    • skill_enterprise_value_pricing — Detect enterprise willingness-to-pay gap and repackage the tier around measured workflow value.
    • +
    • skill_compute_margin_optimization — Detect compute-heavy margin leakage and improve unit economics through routing, caching, and skill reuse.
    • +
    • skill_clean_profitable_growth — Recognize clean profitable growth and avoid unnecessary intervention.
    +
    +
    +

    Proof gates

    +
    • ✅ business domain highly scalable profit workflow
    • +
    • ✅ not email workflow
    • +
    • ✅ not invoice workflow
    • +
    • ✅ not cloudops workflow
    • +
    • ✅ not cyberdefense workflow
    • +
    • ✅ not silicon workflow
    • +
    • ✅ not metamaterials workflow
    • +
    • ✅ not generic corporate os workflow
    • +
    • ✅ no human review required
    • +
    • ✅ no customers contacted
    • +
    • ✅ no private data used
    • +
    • ✅ no api keys required
    • +
    • ✅ deterministic reproducible benchmark
    • +
    • ✅ recursive self improvement releases at least 9
    • +
    • ✅ rsi validation improves monotonically
    • +
    • ✅ train cases at least 400
    • +
    • ✅ validation cases at least 200
    • +
    • ✅ holdout cases at least 800
    • +
    • ✅ final rules at least 18
    • +
    • ✅ fully correct gain at least 80 points
    • +
    • ✅ opportunity accuracy at least 99 percent
    • +
    • ✅ intervention accuracy at least 99 percent
    • +
    • ✅ priority accuracy at least 99 percent
    • +
    • ✅ value capture rate at least 70 percent
    • +
    • ✅ material miss rate zero
    • +
    • ✅ false intervention rate zero
    • +
    • ✅ decision cycle reduction at least 90 percent
    • +
    • ✅ decision cost reduction at least 90 percent
    • +
    • ✅ synthetic value captured positive
    +
    +
    +Boundary: This is a fully autonomous reference proof using deterministic synthetic/redacted-style business data and benchmark assumptions. It is not audited customer ROI, financial advice, investment advice, or a guarantee of future outcomes. +
    + +
    + + + + + + + + diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/services/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/services/index.html new file mode 100644 index 00000000..5a06a2ab --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/services/index.html @@ -0,0 +1,61 @@ + + + + + + GoalOS Services + + + + + + + + + +
    + +
    + + +
    +
    Services

    From live workshop to Enterprise RSI Pilot.

    Use services to generate proof, install department Proof Rooms, and validate the enterprise platform.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/site-map/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/site-map/index.html new file mode 100644 index 00000000..bf520edf --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/site-map/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Site Map + + + + + + + + + +
    + +
    + + +
    +
    Site Map

    Unified site map.

    PathURL
    //proof-gradient/
    /app/goalos-cloud-mvp//proof-gradient/app/goalos-cloud-mvp/
    /command-center//proof-gradient/command-center/
    /enterprise/goalos-enterprise-rsi-pilot//proof-gradient/enterprise/goalos-enterprise-rsi-pilot/
    /examples//proof-gradient/examples/
    /implementation/goalos-proof-room-implementation-sprint//proof-gradient/implementation/goalos-proof-room-implementation-sprint/
    /platform/goalos-recursive-workflow-os//proof-gradient/platform/goalos-recursive-workflow-os/
    /pricing//proof-gradient/pricing/
    /products//proof-gradient/products/
    /products/goalos-ai-efficiency-sprint-kit//proof-gradient/products/goalos-ai-efficiency-sprint-kit/
    /products/goalos-cloud-mvp//proof-gradient/products/goalos-cloud-mvp/
    /products/goalos-enterprise-rsi-pilot//proof-gradient/products/goalos-enterprise-rsi-pilot/
    /products/goalos-proof-room-implementation-sprint//proof-gradient/products/goalos-proof-room-implementation-sprint/
    /products/goalos-proof-room-lite//proof-gradient/products/goalos-proof-room-lite/
    /products/goalos-rsi-lite//proof-gradient/products/goalos-rsi-lite/
    /products/goalos-rsi-sprint-workshop//proof-gradient/products/goalos-rsi-sprint-workshop/
    /services//proof-gradient/services/
    /site-map//proof-gradient/site-map/
    /standards//proof-gradient/standards/
    /standards/AEP-001//proof-gradient/standards/AEP-001/
    /standards/AEP-002//proof-gradient/standards/AEP-002/
    /standards/AEP-003//proof-gradient/standards/AEP-003/
    /standards/AEP-004//proof-gradient/standards/AEP-004/
    /standards/AEP-005//proof-gradient/standards/AEP-005/
    /standards/AEP-006//proof-gradient/standards/AEP-006/
    /standards/AEP-007//proof-gradient/standards/AEP-007/
    /standards/AEP-008//proof-gradient/standards/AEP-008/
    /start-here//proof-gradient/start-here/
    /workflow/build-one-reusable-ai-workflow//proof-gradient/workflow/build-one-reusable-ai-workflow/
    /workflow/department-ai-permission-map//proof-gradient/workflow/department-ai-permission-map/
    /workflow/department-proof-room-lite//proof-gradient/workflow/department-proof-room-lite/
    /workflow/department-public-safe-case-study//proof-gradient/workflow/department-public-safe-case-study/
    /workflow/rsi-lite-self-improving-workflows//proof-gradient/workflow/rsi-lite-self-improving-workflows/
    /workshop/goalos-proof-room-implementation-sprint//proof-gradient/workshop/goalos-proof-room-implementation-sprint/
    /workshop/goalos-rsi-sprint-workshop//proof-gradient/workshop/goalos-rsi-sprint-workshop/
    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/figures/index.html new file mode 100644 index 00000000..881ae780 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/figures/index.html @@ -0,0 +1,86 @@ +AEP-001 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-001 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/index.html new file mode 100644 index 00000000..ac4dc764 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-001/index.html @@ -0,0 +1,94 @@ + + +AEP-001 — GoalOS Proof-of-Evolution Constitution + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-001 — GoalOS Proof-of-Evolution Constitution

    +

    The constitutional protocol for Proof-Carrying Intelligence: Commit → Execute → Prove → Evolve.

    + + +

    Canonical Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    What AEP-001 Standardizes

    Commit → Execute → Prove → Evolve

    The core evolution loop.

    +

    Artifact Vault

    Reusable intelligence: goals, plans, skills, tools, policies, evals, and contexts.

    +

    Selection Gate

    Promotes only what proved itself.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/conformance/index.html new file mode 100644 index 00000000..54c0fa87 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/conformance/index.html @@ -0,0 +1,77 @@ +AEP-002 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/examples/index.html new file mode 100644 index 00000000..0f84d722 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/examples/index.html @@ -0,0 +1,81 @@ +AEP-002 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/figures/index.html new file mode 100644 index 00000000..284d0e9b --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/figures/index.html @@ -0,0 +1,79 @@ +AEP-002 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/index.html new file mode 100644 index 00000000..200feee3 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/index.html @@ -0,0 +1,98 @@ + + +AEP-002 — Evidence Docket Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-002 — Evidence Docket Standard

    +

    The portable proof package for machine work: claims, evidence, evals, risk, cost, rollback, and public-safe boundaries.

    + + +

    Canonical Law

    No docket, no institutional proof.
    No boundary, no publication.
    No evidence, no claim.
    +

    What AEP-002 Standardizes

    Evidence Docket

    A portable proof package for one governed run or workflow.

    +

    Claim Boundary

    Separates what is supported from what is not claimed.

    +

    Audit Trail

    Keeps evidence reviewable across contexts.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/schemas/index.html new file mode 100644 index 00000000..31cc16ce --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/schemas/index.html @@ -0,0 +1,80 @@ +AEP-002 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/templates/index.html new file mode 100644 index 00000000..ec0a4b33 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/templates/index.html @@ -0,0 +1,79 @@ +AEP-002 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/tools/index.html new file mode 100644 index 00000000..3ca43d11 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-002/tools/index.html @@ -0,0 +1,79 @@ +AEP-002 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-002 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/conformance/index.html new file mode 100644 index 00000000..c61bc0a6 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/conformance/index.html @@ -0,0 +1,77 @@ +AEP-003 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/examples/index.html new file mode 100644 index 00000000..54f4b389 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/examples/index.html @@ -0,0 +1,90 @@ +AEP-003 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/figures/index.html new file mode 100644 index 00000000..b12b0864 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/figures/index.html @@ -0,0 +1,79 @@ +AEP-003 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/implementation/index.html new file mode 100644 index 00000000..64030712 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/implementation/index.html @@ -0,0 +1,79 @@ +AEP-003 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/index.html new file mode 100644 index 00000000..4f1c7b9e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/index.html @@ -0,0 +1,98 @@ + + +AEP-003 — ProofPacket Schema + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-003 — ProofPacket Schema

    +

    The atomic proof unit for machine work: commitments, trace events, tool calls, policy decisions, approvals, eval results, risks, costs, selections, rollouts, rollbacks, and public reports.

    + + +

    Canonical Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    +

    What AEP-003 Standardizes

    Atomic proof

    One coherent evidence record for one machine-work fact, event, check, or decision.

    +

    Hashable packets

    Deterministic canonical JSON and SHA-256 packet hashes for tamper-evident proof chains.

    +

    Docket composition

    Many ProofPackets compose into an AEP-002 Evidence Docket.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/one_page/index.html new file mode 100644 index 00000000..69313b76 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/one_page/index.html @@ -0,0 +1,79 @@ +AEP-003 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/schemas/index.html new file mode 100644 index 00000000..0e9f1e0f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/schemas/index.html @@ -0,0 +1,80 @@ +AEP-003 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/templates/index.html new file mode 100644 index 00000000..b8f75f62 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/templates/index.html @@ -0,0 +1,78 @@ +AEP-003 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/tools/index.html new file mode 100644 index 00000000..7b513c5b --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-003/tools/index.html @@ -0,0 +1,81 @@ +AEP-003 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-003 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/conformance/index.html new file mode 100644 index 00000000..8c53d42a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/conformance/index.html @@ -0,0 +1,77 @@ +AEP-004 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/examples/index.html new file mode 100644 index 00000000..0be1c300 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/examples/index.html @@ -0,0 +1,87 @@ +AEP-004 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/figures/index.html new file mode 100644 index 00000000..eeb7d21d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/figures/index.html @@ -0,0 +1,80 @@ +AEP-004 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/implementation/index.html new file mode 100644 index 00000000..53a4aec7 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/implementation/index.html @@ -0,0 +1,79 @@ +AEP-004 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/index.html new file mode 100644 index 00000000..6b98cd9a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/index.html @@ -0,0 +1,98 @@ + + +AEP-004 — Selection Gate Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-004 — Selection Gate Standard

    +

    The propagation boundary for machine intelligence: promote, canary, revise, reject, archive, rollback, or request more evidence.

    + + +

    Canonical Law

    No proof, no evolution.
    No eval, no propagation.
    No rollback, no release.
    Under uncertainty, fail closed.
    +

    What AEP-004 Standardizes

    Selection Candidate

    The proposed artifact, workflow, policy, tool, eval, route, context, or capability.

    +

    Gate Policy

    Required evidence, evals, approvals, canary rules, and rollback readiness.

    +

    Selection Certificate

    The recorded decision proving what may evolve and under what scope.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/one_page/index.html new file mode 100644 index 00000000..78141f99 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/one_page/index.html @@ -0,0 +1,79 @@ +AEP-004 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/schemas/index.html new file mode 100644 index 00000000..c7fcdf0f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/schemas/index.html @@ -0,0 +1,85 @@ +AEP-004 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/templates/index.html new file mode 100644 index 00000000..e3037ce1 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/templates/index.html @@ -0,0 +1,79 @@ +AEP-004 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/tools/index.html new file mode 100644 index 00000000..3f8dc9b5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-004/tools/index.html @@ -0,0 +1,81 @@ +AEP-004 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-004 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/conformance/index.html new file mode 100644 index 00000000..b918769f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/conformance/index.html @@ -0,0 +1,77 @@ +AEP-005 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/examples/index.html new file mode 100644 index 00000000..5bf554e0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/examples/index.html @@ -0,0 +1,92 @@ +AEP-005 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/figures/index.html new file mode 100644 index 00000000..ec402684 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/figures/index.html @@ -0,0 +1,80 @@ +AEP-005 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/implementation/index.html new file mode 100644 index 00000000..74e2bde3 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/implementation/index.html @@ -0,0 +1,80 @@ +AEP-005 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/index.html new file mode 100644 index 00000000..d170653e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/index.html @@ -0,0 +1,98 @@ + + +AEP-005 — Tool Permission Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-005 — Tool Permission Standard

    +

    The Tool Gateway standard for scoped, approved, leased, revocable, and provable tool use.

    + + +

    Canonical Law

    No tool without permission.
    No action without scope.
    No high-risk tool without approval.
    No permanent authority without expiration.
    No side effect without receipt.
    +

    What AEP-005 Standardizes

    Tool Gateway

    Evaluates requests, checks policies, issues leases, requires approval, emits decisions, and fails closed.

    +

    Permission Lease

    Time-bounded, scope-bounded, revocable authority for tool use.

    +

    Receipts

    Tool calls, revocations, and compensation actions leave proof records.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/one_page/index.html new file mode 100644 index 00000000..d83ba6f4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/one_page/index.html @@ -0,0 +1,79 @@ +AEP-005 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/schemas/index.html new file mode 100644 index 00000000..2cecadb8 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/schemas/index.html @@ -0,0 +1,88 @@ +AEP-005 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/templates/index.html new file mode 100644 index 00000000..e9e38bb0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/templates/index.html @@ -0,0 +1,85 @@ +AEP-005 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/tools/index.html new file mode 100644 index 00000000..fc9f0d74 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-005/tools/index.html @@ -0,0 +1,82 @@ +AEP-005 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-005 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/conformance/index.html new file mode 100644 index 00000000..2bb59a82 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/conformance/index.html @@ -0,0 +1,77 @@ +AEP-006 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/examples/index.html new file mode 100644 index 00000000..6e522c25 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/examples/index.html @@ -0,0 +1,87 @@ +AEP-006 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/figures/index.html new file mode 100644 index 00000000..40dcff4f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/figures/index.html @@ -0,0 +1,80 @@ +AEP-006 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/implementation/index.html new file mode 100644 index 00000000..7c00d83f --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/implementation/index.html @@ -0,0 +1,79 @@ +AEP-006 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/index.html new file mode 100644 index 00000000..ab11d926 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/index.html @@ -0,0 +1,98 @@ + + +AEP-006 — Rollback Receipt Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-006 — Rollback Receipt Standard

    +

    The recovery proof standard for rollback, restoration, compensation, verification, and post-rollback review.

    + + +

    Canonical Law

    No rollback, no release.
    No receipt, no recovery claim.
    No restore point, no promotion.
    No proof, no evolution.
    +

    What AEP-006 Standardizes

    Rollback Trigger

    The signal that initiates recovery.

    +

    Rollback Receipt

    The execution proof that recovery happened.

    +

    Rollback Verification

    The confirmation that restoration actually worked.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/one_page/index.html new file mode 100644 index 00000000..f20e44be --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/one_page/index.html @@ -0,0 +1,79 @@ +AEP-006 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/schemas/index.html new file mode 100644 index 00000000..95c10028 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/schemas/index.html @@ -0,0 +1,85 @@ +AEP-006 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/templates/index.html new file mode 100644 index 00000000..7bb53cfd --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/templates/index.html @@ -0,0 +1,85 @@ +AEP-006 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/tools/index.html new file mode 100644 index 00000000..868928ff --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-006/tools/index.html @@ -0,0 +1,81 @@ +AEP-006 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-006 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/conformance/index.html new file mode 100644 index 00000000..d9ed26be --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/conformance/index.html @@ -0,0 +1,77 @@ +AEP-007 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/examples/index.html new file mode 100644 index 00000000..dabcb0bb --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/examples/index.html @@ -0,0 +1,84 @@ +AEP-007 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/figures/index.html new file mode 100644 index 00000000..6c22f8ee --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/figures/index.html @@ -0,0 +1,80 @@ +AEP-007 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/implementation/index.html new file mode 100644 index 00000000..f643bd47 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/implementation/index.html @@ -0,0 +1,83 @@ +AEP-007 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/index.html new file mode 100644 index 00000000..9ac23fc3 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/index.html @@ -0,0 +1,98 @@ + + +AEP-007 — Public-Safe Proof Report Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-007 — Public-Safe Proof Report Standard

    +

    The public proof layer: report evidence safely, bound claims precisely, publish without leaking private or protected material, and preserve corrections.

    + + +

    Canonical Law

    No public claim without claim boundary.
    No public proof without redaction review.
    No private trace in public report.
    No protected data in public proof.
    No correction without history.
    +

    What AEP-007 Standardizes

    Public Claim Matrix

    Verified, supported, observed, contextual, and not-claimed public statements.

    +

    Redaction Ledger

    Disclosure review that shows what was withheld, summarized, embargoed, or forbidden.

    +

    Correction History

    Challenge, correction, and retraction records that preserve public trust.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/one_page/index.html new file mode 100644 index 00000000..452e2952 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/one_page/index.html @@ -0,0 +1,78 @@ +AEP-007 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/schemas/index.html new file mode 100644 index 00000000..a8603839 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/schemas/index.html @@ -0,0 +1,93 @@ +AEP-007 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/templates/index.html new file mode 100644 index 00000000..ff64f800 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/templates/index.html @@ -0,0 +1,85 @@ +AEP-007 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/tools/index.html new file mode 100644 index 00000000..5186a814 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-007/tools/index.html @@ -0,0 +1,82 @@ +AEP-007 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-007 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/conformance/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/conformance/index.html new file mode 100644 index 00000000..c341aca5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/conformance/index.html @@ -0,0 +1,77 @@ +AEP-008 / conformance + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / conformance

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/examples/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/examples/index.html new file mode 100644 index 00000000..a3438373 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/examples/index.html @@ -0,0 +1,84 @@ +AEP-008 / examples + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / examples

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/figures/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/figures/index.html new file mode 100644 index 00000000..1eac7ca8 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/figures/index.html @@ -0,0 +1,80 @@ +AEP-008 / figures + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / figures

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/implementation/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/implementation/index.html new file mode 100644 index 00000000..6aeab968 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/implementation/index.html @@ -0,0 +1,80 @@ +AEP-008 / implementation + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / implementation

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/index.html new file mode 100644 index 00000000..0e82e1bc --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/index.html @@ -0,0 +1,98 @@ + + +AEP-008 — Proof Room Standard + + + + + + +
    + +
    + + + + + + + +
    +
    Proof Gradient · Protocol Standard
    +

    AEP-008 — Proof Room Standard

    +

    The governed workspace where machine work becomes institutional proof: charters, scope, roles, evidence boundaries, registers, decisions, audit exports, closure reports, and public-safe publication.

    + + +

    Canonical Law

    No room without charter.
    No run without scope.
    No evidence without boundary.
    No promotion without gate.
    No closure without archive.
    +

    What AEP-008 Standardizes

    Proof Room Charter

    Mission, scope, success criteria, allowed agents/tools/data, required evals, and closure conditions.

    +

    Room Registers

    Dockets, packets, tool permissions, gates, rollbacks, reports, and decisions.

    +

    Audit and Closure

    Reviewable proof export with archive, unresolved items, and claim boundaries.

    +

    Foundational AEP Stack

    AEP-001 defines the protocol. AEP-002 defines the docket. AEP-003 defines the packet. AEP-004 defines the gate. AEP-005 defines the permission. AEP-006 defines recovery proof. AEP-007 defines public proof. AEP-008 defines the room.

    + + +
    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/one_page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/one_page/index.html new file mode 100644 index 00000000..2a5ded92 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/one_page/index.html @@ -0,0 +1,79 @@ +AEP-008 / one_page + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / one_page

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/schemas/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/schemas/index.html new file mode 100644 index 00000000..04519387 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/schemas/index.html @@ -0,0 +1,87 @@ +AEP-008 / schemas + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / schemas

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/templates/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/templates/index.html new file mode 100644 index 00000000..c9f8ee42 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/templates/index.html @@ -0,0 +1,85 @@ +AEP-008 / templates + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / templates

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/tools/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/tools/index.html new file mode 100644 index 00000000..8c43df78 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/AEP-008/tools/index.html @@ -0,0 +1,81 @@ +AEP-008 / tools + + + + + +
    + +
    + + + + + + + +
    Proof Gradient · Public Assets

    AEP-008 / tools

    Browsable public files for this standard directory.

    + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/standards/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/standards/index.html new file mode 100644 index 00000000..b148b58a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/standards/index.html @@ -0,0 +1,46 @@ + + + + + + AEP Standards + + + + + + + + + +
    + +
    + + +
    +
    AEP Standards

    The public trust layer.

    AEP standards provide the vocabulary for proof, permission, rollback, public-safe reports, and Proof Rooms.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/start-here/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/start-here/index.html new file mode 100644 index 00000000..48dfc656 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/start-here/index.html @@ -0,0 +1,76 @@ + + + + + + Start Here · GoalOS + + + + + + + + + +
    + +
    + + +
    +
    Start Here / Départ

    Start with the outcome you need.

    Reusable workflow, self-improving workflow, department Proof Room, live RSI workshop, implementation sprint, or enterprise pilot.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html new file mode 100644 index 00000000..ffbc101d --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/build-one-reusable-ai-workflow/index.html @@ -0,0 +1,89 @@ + + + + + + Example 1: Customer question → clear reply · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    + +
    +
    Individual
    +

    Customer question → clear reply

    +

    Turn messy customer questions into clear replies and proof notes.

    + +
    +
    +

    Reusable workflow structure

    +
    +
    ContextDefine the task and buyer/user situation.
    +
    RulesDefine what to do, avoid, check, and escalate.
    +
    MemorySave reusable facts, phrases, examples, and boundaries.
    +
    WorkflowTurn the task into steps that can be run again.
    +
    ProofRecord what was created, claimed, avoided, and reviewed.
    +
    +
    +
    +
    +

    Why it matters

    This page exists so visitors always have a clean, navigable fallback even if a deeper example page has not been generated yet.

    +

    Claim boundary

    Educational workflow example only. No guaranteed income, ROI, compliance, safety, accuracy, or business results.

    +
    +
    + +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/checkout-recovery/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/checkout-recovery/index.html new file mode 100644 index 00000000..a2a6f178 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/checkout-recovery/index.html @@ -0,0 +1,290 @@ + + + + + + Checkout Recovery — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Checkout Loop · Example 13
    +

    Turn almost-buyers into clear decisions.

    +

    This reusable AI workflow turns an abandoned checkout signal into a calm, permission-aware recovery sequence that clarifies the offer, answers objections, explains terms, and leaves a proof note.

    + + + +
    +

    The simple idea

    +
    Recover confusion, not just carts.
    +

    Some buyers do not need pressure. They need clarity: what is inside, who it is for, what is not promised, and what the digital product terms mean.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: abandoned checkout

    +

    Someone clicks checkout, hesitates, and leaves. You do not know whether the issue was price, confusion, technical concern, or terms.

    +

    Result: lost demand and no learning.

    +
    +
    +

    After: recovery workflow

    +

    The workflow creates a calm sequence that clarifies the offer, answers common concerns, and reminds people of the terms without fake urgency.

    +

    Result: clearer buyer decisions with less manual follow-up.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, checkout signal, likely objections, and product terms.

    +
    2. Rules

    Tell the AI to avoid fake urgency, guilt language, income claims, ROI claims, and fake testimonials.

    +
    3. Memory

    Save the product contents, who it is for, who it is not for, and standard final-sale wording.

    +
    4. Workflow

    The AI creates clarifying email, objection email, terms email, FAQ, and proof note.

    +
    5. Checks

    The AI checks consent, unsubscribe needs, claim boundaries, and whether the copy is calm and honest.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before sending.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough checkout recovery notes:

    +
    Rough checkout recovery notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Signal: visitor clicked checkout but did not complete purchase
    +Possible reasons:
    +- they are unsure what is inside the kit
    +- they think it may be just prompts
    +- they wonder if it is technical
    +- they worry there are no refunds
    +- they got distracted
    +Goal: create a simple, permission-aware checkout recovery sequence that clarifies the offer without pressure
    +Rules:
    +- only send if the person gave permission / platform allows checkout recovery
    +- include unsubscribe where required
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no fake testimonial
    +- no “you forgot” guilt language
    +- be calm and helpful
    +Terms:
    +digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Checkout Recovery Email 1 — Clarify the offer
    +Subject: Still considering the GoalOS kit?
    +
    +Hi,
    +
    +You were looking at the GoalOS AI Efficiency Sprint Kit.
    +
    +Simple reminder:
    +
    +This is a $49 digital kit that helps you build one reusable AI workflow in under one hour.
    +
    +It is for people who keep asking AI from scratch for the same kind of task.
    +
    +Inside the kit:
    +- Start Here guide
    +- 60-minute sprint checklist
    +- AI task picker
    +- Context template
    +- Rules template
    +- Memory template
    +- Workflow template
    +- Checks template
    +- Proof page template
    +- Copy-paste prompts
    +- Examples
    +
    +It is not a magic income system.
    +It is not legal, financial, medical, or compliance advice.
    +
    +It is a practical workflow kit.
    +
    +Checkout Recovery Email 2 — Answer the objection
    +Subject: Is this just prompts?
    +
    +Fair question.
    +
    +No — the point is not to collect more prompts.
    +
    +A prompt helps once.
    +
    +A reusable workflow helps repeatedly.
    +
    +The GoalOS method is:
    +
    +context
    +rules
    +memory
    +workflow
    +checks
    +proof
    +
    +The goal is to build one reusable AI work system you can run again.
    +
    +Checkout Recovery Email 3 — Terms clarity
    +Subject: Before you buy
    +
    +A quick clarity note before checkout:
    +
    +The GoalOS AI Efficiency Sprint Kit is a digital educational product.
    +
    +Access is delivered instantly.
    +
    +All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Buy only if you want a self-serve kit that helps you build one reusable AI workflow.
    +
    +Not for:
    +- guaranteed income
    +- guaranteed ROI
    +- legal/financial/medical advice
    +- fully autonomous AI acting without review
    +
    +Checkout FAQ:
    +Q: Do I need to be technical?
    +A: No. Pick one repeated task and follow the 60-minute checklist.
    +
    +Q: What should I use it for first?
    +A: Customer replies, meeting notes, weekly updates, sales-page sections, email sequences, or support FAQ.
    +
    +Q: What if my download does not work?
    +A: Contact support with your order email. Access issues and corrupted/missing files can be reviewed.
    +
    +Q: Can I get a refund because I changed my mind?
    +A: This is a digital product with instant access. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +

    Proof note:

    +
    Proof note:
    +Source: rough checkout recovery notes.
    +Outputs created: checkout recovery email sequence and FAQ.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no fake testimonial, no pressure language, no guarantee of results.
    +Consent boundary: send only where the person opted in or the checkout platform legally supports recovery messages; include unsubscribe/identity where required.
    +Review needed: human should confirm email consent, platform settings, unsubscribe link, checkout terms, and final product contents before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Recovery email 1 + Objection email + Terms email + Checkout FAQ + Claim boundary + Consent reminder + Proof note +
    +
    +

    Built for checkout clarity

    Recover buyers who left because the product was not clear enough.

    +

    No pressure tactics

    The workflow avoids fake urgency, fake scarcity, and guilt language.

    +

    Lower support risk

    The recovery sequence explains digital product terms before purchase.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste checkout notes. Get a calm recovery sequence and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, advertising, endorsement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Send checkout recovery messages only where you have proper permission or platform/legal basis, and include unsubscribe/identity where required. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-correction-rollback/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-correction-rollback/index.html new file mode 100644 index 00000000..fe9d6835 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-correction-rollback/index.html @@ -0,0 +1,312 @@ + + + + + + Department AI Correction / Rollback — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 22
    +

    Turn AI mistakes into corrections.

    +

    This reusable AI workflow turns an AI workflow issue into a clear correction / rollback record: what happened, how serious it was, what changed, who reviews it, and what proof was recorded.

    + + + +
    +

    The simple idea

    +
    The serious question is not “will AI make mistakes?” It is “how do we correct them?”
    +

    Proof Room Lite becomes much more credible when a department has a simple way to catch, correct, restrict, revise, and record AI workflow issues.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: mistakes become confusion

    +

    An AI draft is wrong or unclear. Someone fixes it quietly. The workflow keeps the same weak rule. The same issue can happen again.

    +

    Result: hidden risk, no learning, no proof.

    +
    +
    +

    After: correction loop

    +

    The issue is classified, the draft is rolled back, the rule is updated, the checker is improved, and a rollback receipt is recorded.

    +

    Result: mistakes become workflow improvements.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what happened, which workflow was involved, whether anything was sent, and who owns the workflow.

    +
    2. Rules

    Tell the AI not to blame people, certify compliance, guarantee safety, or publish private details.

    +
    3. Memory

    Save severity levels, rollback wording, and the standard “needs human review” policy language.

    +
    4. Workflow

    The AI creates issue summary, severity, immediate action, rollback decision, rule update, checker update, manager note, and proof note.

    +
    5. Checks

    The AI checks whether external correction is needed, whether the workflow should be restricted, and whether the rule was updated.

    +
    6. Proof

    The AI records what was rolled back, what changed, what was claimed, and what still needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department AI Correction / Rollback notes:

    +
    Rough Department AI Correction / Rollback notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Department: Customer Success / Operations
    +Room: Customer Success AI Workflow Room
    +
    +Incident:
    +A draft support reply generated by the Support FAQ workflow gave unclear policy guidance about a refund / access issue.
    +The reply was not sent externally because human review caught it.
    +The issue suggests the workflow needs better rules for policy uncertainty.
    +
    +Goal:
    +Create a correction / rollback workflow that records what happened, severity, immediate action, correction message if needed, workflow update, manager note, rollback receipt, and proof note.
    +
    +Need output:
    +- issue summary
    +- severity level
    +- immediate action
    +- correction / rollback decision
    +- workflow rule update
    +- checker update
    +- manager note
    +- rollback receipt
    +- proof note
    +
    +Rules:
    +- no legal/compliance certification
    +- no guarantee of safety
    +- do not blame a person
    +- do not claim the system is now perfect
    +- do not publish private customer details
    +- do not send external correction unless actually needed and approved
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    AI Correction / Rollback Record:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Workflow:
    +Support FAQ replies
    +
    +Issue:
    +A draft support reply gave unclear policy guidance about a refund / access issue.
    +
    +Status:
    +Caught during human review.
    +Not sent externally.
    +
    +Severity:
    +Level 2 — internal correction required.
    +
    +Why Level 2:
    +- The issue affected a draft workflow output.
    +- It was caught before external sending.
    +- No customer received the unclear answer.
    +- The workflow rule needs revision.
    +
    +Immediate action:
    +1. Do not use the draft reply.
    +2. Mark the run as “needs correction.”
    +3. Update the support workflow rules.
    +4. Add a stronger policy-uncertainty check.
    +5. Re-test the workflow on three internal examples.
    +
    +Correction / rollback decision:
    +Rollback required:
    +Yes — rollback the draft output.
    +
    +External correction required:
    +No — the message was not sent externally.
    +
    +Workflow status:
    +Active / restricted until rule update is tested.
    +
    +Workflow rule update:
    +Add this rule:
    +
    +If a support question involves refund terms, billing, legal, privacy, safety, or policy uncertainty:
    +- do not provide a final answer
    +- mark the issue as “needs human review”
    +- use the approved support policy wording
    +- escalate to the room owner if unclear
    +
    +Checker update:
    +Before any support reply is sent externally, confirm:
    +- the issue category is correct
    +- refund/access terms match the published policy
    +- uncertain policy items are marked
    +- no legal or compliance advice is given
    +- no private customer data appears in public examples
    +
    +Manager note:
    +Subject: Support FAQ workflow correction
    +
    +We caught an unclear AI-drafted support reply during human review.
    +
    +The reply was not sent externally.
    +
    +Decision:
    +We rolled back the draft and restricted the workflow until the rule update is tested.
    +
    +Change:
    +Support questions involving refunds, billing, legal, privacy, safety, or policy uncertainty will now be escalated for human review instead of answered directly by the workflow.
    +
    +Claim boundary:
    +This correction does not claim the workflow is risk-free or compliant. It records the issue found, the rollback decision, and the rule update.
    +
    +Rollback Receipt:
    +Rollback ID:
    +RB-SUPPORT-FAQ-001
    +
    +Rolled back:
    +Unclear draft support reply.
    +
    +Reason:
    +Policy uncertainty.
    +
    +External impact:
    +None identified; draft was not sent.
    +
    +Action taken:
    +Draft discarded, workflow rule updated, checker updated, re-test required.
    +
    +Status:
    +Rollback complete / verification pending.
    +
    +Next verification:
    +Run three internal support examples and confirm uncertainty is correctly escalated.
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department AI Correction / Rollback notes.
    +Outputs created: issue summary, severity level, immediate action, rollback decision, workflow rule update, checker update, manager note, rollback receipt.
    +Claims made: the Department Pack can help record and manage correction/rollback for department AI workflows.
    +Claims avoided: no legal/compliance certification, no guarantee of safety, no claim that the workflow is now perfect, no blame assignment, no private customer details.
    +Review needed: department should confirm incident facts, policy wording, owner approval, and whether any external correction is required before sharing.
    +Public-safe: yes, if private customer, employee, policy, and operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Issue summary + Severity level + Immediate action + Rollback decision + Rule update + Checker update + Manager note + Rollback receipt + Proof note +
    +
    +

    Built for real adoption

    AI adoption becomes more credible when mistakes have a correction path.

    +

    Lightweight rollback

    Use simple rollback receipts instead of hiding errors or overbuilding governance.

    +

    Proof Room ready

    Every issue becomes evidence for improving rules, checks, and workflow boundaries.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste an AI workflow issue. Get a correction plan, rollback receipt, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review incident facts, internal policies, customer impact, data boundaries, and approval responsibilities before acting. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-permission-map/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-permission-map/index.html new file mode 100644 index 00000000..3355c3da --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-ai-permission-map/index.html @@ -0,0 +1,347 @@ + + + + + + Department AI Permission Map — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 21
    +

    Turn AI tool risk into simple rules.

    +

    This reusable AI workflow turns department AI confusion into a simple permission map: what can be used, what needs review, what is blocked, who decides, and what proof note must be recorded.

    + + + +
    +

    The simple idea

    +
    A department needs a simple answer: what can we use, with what data, and who checks it?
    +

    A Green / Yellow / Red permission map is easy for non-technical teams to understand and serious enough for managers to use.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: everyone guesses

    +

    People use AI tools differently. Some paste notes, some paste support questions, some paste feedback, and no one knows what is safe or allowed.

    +

    Result: unclear risk, inconsistent practice, no proof of review.

    +
    +
    +

    After: permission map

    +

    The department has clear Green / Yellow / Red boundaries, task-level rules, escalation rules, and proof notes.

    +

    Result: simpler AI adoption with clearer boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the department, tools, repeated tasks, data types, and current confusion.

    +
    2. Rules

    Tell the AI not to certify compliance, guarantee safety, or approve sensitive data use.

    +
    3. Memory

    Save the Green / Yellow / Red framework and escalation language.

    +
    4. Workflow

    The AI creates the data boundary, task-level permission map, escalation rules, manager announcement, team quick policy, and proof note.

    +
    5. Checks

    The AI checks whether each task has a clear permission, blocked data list, human review rule, and owner.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs internal review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department AI Permission Map notes:

    +
    Rough Department AI Permission Map notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Department: Customer Success / Operations
    +Goal: make department AI use safer and easier to manage without heavy enterprise software
    +
    +Current situation:
    +- people use ChatGPT / Claude / Gemini differently
    +- some people paste meeting notes
    +- some people paste customer support questions
    +- some people summarize feedback
    +- nobody knows what data is okay to use
    +- nobody knows when human review is required
    +- no one records proof that rules were followed
    +
    +Need output:
    +- Green / Yellow / Red data boundary
    +- simple tool permission map
    +- task-by-task AI use rules
    +- manager announcement
    +- team quick policy
    +- escalation rules
    +- proof note
    +
    +Rules:
    +- no legal/compliance certification
    +- no guarantee of safety
    +- no autonomous sending without human review
    +- no private customer data in public examples
    +- no secrets, credentials, payment data, or regulated personal data in public AI tools
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Department AI Permission Map:
    +Department:
    +Customer Success / Operations
    +
    +Simple rule:
    +If the data would be risky in a public screenshot, do not paste it into a public AI tool.
    +
    +Green — generally allowed:
    +- public product information
    +- public website copy
    +- anonymized examples
    +- generic support questions
    +- internal process descriptions with no private data
    +- draft outlines and templates
    +
    +Use:
    +Allowed for drafting, summarizing, brainstorming, and template creation.
    +
    +Human review:
    +Still required before sending anything externally.
    +
    +Yellow — allowed only with care / review:
    +- internal meeting notes
    +- internal strategy notes
    +- customer feedback summaries after removing names and identifiers
    +- account notes with sensitive details removed
    +- operational reports without private customer details
    +
    +Use:
    +Allowed only after removing private details and marking uncertain items.
    +
    +Human review:
    +Required before sharing, sending, or storing as official output.
    +
    +Red — do not paste:
    +- passwords
    +- API keys
    +- credentials
    +- payment information
    +- private customer records
    +- health, legal, financial, or employment-sensitive information
    +- contracts or confidential legal documents
    +- unreleased security issues
    +- private screenshots
    +- exact customer messages with names, emails, or account details
    +
    +Use:
    +Not allowed in public AI tools.
    +
    +Task-by-task permission map:
    +1. Support FAQ replies
    +Permission:
    +Draft only.
    +
    +Allowed inputs:
    +generic question, public policy, anonymized context.
    +
    +Not allowed:
    +private customer records, payment issues, legal claims.
    +
    +Required check:
    +human review before sending.
    +
    +2. Meeting notes to action plan
    +Permission:
    +Internal draft.
    +
    +Allowed inputs:
    +internal notes with sensitive details removed.
    +
    +Not allowed:
    +private client data, confidential deals, HR issues.
    +
    +Required check:
    +owner/deadline confirmation.
    +
    +3. Product feedback summary
    +Permission:
    +Anonymized summary.
    +
    +Allowed inputs:
    +summarized themes.
    +
    +Not allowed:
    +customer names, emails, private screenshots, exact quotes without permission.
    +
    +Required check:
    +privacy review before public use.
    +
    +4. Monthly Proof Room report
    +Permission:
    +Internal report.
    +
    +Allowed inputs:
    +workflow counts, issues, decisions, owner names if internal.
    +
    +Not allowed:
    +private customer details or sensitive operational details in public version.
    +
    +Required check:
    +manager review before sharing.
    +
    +Escalation rules:
    +Escalate to the room owner if:
    +- someone wants to use Red data
    +- a workflow touches legal, financial, health, employment, security, or regulated data
    +- an output may be sent externally
    +- a customer complaint involves billing, legal, privacy, or safety concerns
    +- the team is unsure which category applies
    +
    +Manager announcement:
    +Subject: New AI use map for our department
    +
    +We are setting up a simple AI Permission Map for department workflows.
    +
    +The goal is to make repeated AI work easier to manage and safer to review.
    +
    +The map has three categories:
    +Green: generally allowed
    +Yellow: allowed with care and review
    +Red: do not paste into public AI tools
    +
    +For now, AI outputs are drafts only. Human review is required before anything is sent externally.
    +
    +We will use the map inside our Proof Room Lite process and update it as we learn.
    +
    +Team quick policy:
    +Before using AI, ask:
    +1. What task am I doing?
    +2. What data am I pasting?
    +3. Is the data Green, Yellow, or Red?
    +4. Who reviews the output?
    +5. What proof note should be recorded?
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department AI Permission Map notes.
    +Outputs created: Green / Yellow / Red data boundary, task-by-task permission map, escalation rules, manager announcement, team quick policy.
    +Claims made: the Department Pack can help a department create a simple AI permission map for repeated workflows.
    +Claims avoided: no legal/compliance certification, no guarantee of safety, no autonomous sending claim, no claim that all risks are eliminated.
    +Review needed: department should confirm internal policy, data classes, approved tools, privacy rules, and escalation owner before use.
    +Public-safe: yes, if private customer, employee, contract, security, and operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Green / Yellow / Red boundary + Tool permission map + Task rules + Escalation rules + Manager announcement + Team quick policy + Proof note +
    +
    +

    Built for managers

    Give teams simple rules they can actually follow.

    +

    Non-technical

    No complex governance platform required: Green, Yellow, Red, owner, review, proof.

    +

    Proof Room ready

    Every workflow gets a boundary, review rule, escalation path, and proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste department AI tool notes. Get a simple permission map and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review internal policies, data boundaries, approved tools, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-monthly-proof-report/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-monthly-proof-report/index.html new file mode 100644 index 00000000..2e2a9b37 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-monthly-proof-report/index.html @@ -0,0 +1,305 @@ + + + + + + Department Monthly Proof Report — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 20
    +

    Turn 30 days of AI work into a proof report.

    +

    This reusable AI workflow turns a month of Proof Room Lite notes into an executive report: what ran, what changed, what needs revision, what should happen next, and what can be shared safely.

    + + + +
    +

    The simple idea

    +
    Leadership does not need AI hype. It needs proof of what happened.
    +

    A monthly Proof Room report turns scattered AI experiments into a clear executive summary: workflows, owners, issues, decisions, next actions, and claim boundaries.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: no executive visibility

    +

    The department tries AI workflows, but leadership only hears anecdotes. Nobody sees what ran, what broke, or what changed.

    +

    Result: AI adoption feels vague and hard to trust.

    +
    +
    +

    After: monthly proof report

    +

    The department summarizes workflows, run counts, issues, revisions, decisions, and next-month priorities in one proof-ready report.

    +

    Result: leadership sees evidence, not hype.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the room name, reporting period, workflows, weekly reviews, issues, and decisions.

    +
    2. Rules

    Tell the AI not to claim ROI, productivity, compliance, or autonomous readiness.

    +
    3. Memory

    Save the monthly report structure: executive summary, status table, decisions, next plan, public-safe summary, proof note.

    +
    4. Workflow

    The AI creates the monthly report, leadership email, workflow status table, next-month plan, and proof note.

    +
    5. Checks

    The AI checks whether metrics are grounded, owners are clear, private data is removed, and claim boundaries are explicit.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before sharing.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough monthly Proof Room Lite report notes:

    +
    Rough monthly Proof Room Lite report notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Room: Customer Success AI Workflow Room
    +Reporting period: first 30 days
    +
    +Weekly review summary:
    +Week 1:
    +- Inventoried repeated tasks
    +- Chose support FAQ replies, meeting notes to action plan, and product feedback summary
    +
    +Week 2:
    +- Support FAQ workflow ran 18 times
    +- Meeting notes workflow ran 9 times
    +- Product feedback workflow ran 5 times
    +- Support workflow needed tone and policy-rule revisions
    +
    +Week 3:
    +- Support FAQ workflow ran 22 times
    +- Meeting notes workflow ran 11 times
    +- Product feedback workflow ran 6 times
    +- Meeting notes workflow needed stronger owner/deadline checks
    +
    +Week 4:
    +- Support FAQ workflow ran 25 times
    +- Meeting notes workflow ran 12 times
    +- Product feedback workflow ran 8 times
    +- Product feedback workflow produced recurring themes for product updates
    +
    +Goal:
    +Create a monthly executive proof report, leadership summary, workflow status table, decision list, next-month plan, public-safe summary, and proof note.
    +
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no compliance certification
    +- no claim that AI outputs are safe without human review
    +- do not reveal private customer details
    +- mark uncertain metrics clearly
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Monthly Proof Room Lite Report:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Reporting period:
    +First 30 days
    +
    +Executive summary:
    +The department tested three repeated AI-assisted workflows for 30 days:
    +
    +1. Support FAQ replies
    +2. Meeting notes to action plan
    +3. Product feedback summary
    +
    +The most useful pattern was not “automate everything.”
    +
    +The useful pattern was:
    +choose a repeated task
    +assign an owner
    +add rules
    +add checks
    +run it
    +record issues
    +revise weekly
    +
    +Workflow status table:
    +1. Support FAQ replies
    +Status: Active / revised
    +Runs recorded: 65
    +Main issue found: tone and policy clarity
    +Decision: keep with revised rules and human review
    +
    +2. Meeting notes to action plan
    +Status: Active / needs stronger checks
    +Runs recorded: 32
    +Main issue found: missing owners and unclear deadlines
    +Decision: keep with mandatory owner/deadline checks
    +
    +3. Product feedback summary
    +Status: Keep
    +Runs recorded: 19
    +Main issue found: none serious
    +Decision: continue and use themes for product updates
    +
    +Decisions:
    +Keep:
    +- product feedback summary
    +
    +Revise:
    +- support FAQ replies
    +- meeting notes to action plan
    +
    +Stop:
    +- no workflow stopped this month
    +
    +Next-month plan:
    +1. Add stronger policy uncertainty rule to support replies.
    +2. Add owner/deadline checks to meeting notes workflow.
    +3. Turn product feedback summary into one monthly product-update memo.
    +4. Add one new workflow only after the three current workflows are stable.
    +
    +Leadership update email:
    +Subject: 30-day Proof Room Lite summary
    +
    +We completed the first 30 days of the Customer Success AI Workflow Room.
    +
    +We tested three repeated workflows:
    +- support FAQ replies
    +- meeting notes to action plan
    +- product feedback summary
    +
    +The room helped us see what should be kept, what should be revised, and where human review is still required.
    +
    +Important boundary:
    +This report does not claim productivity gains, ROI, compliance, or autonomous readiness. It summarizes observed workflow use, issues, revisions, and next actions.
    +
    +Next month:
    +We will strengthen checks on support and meeting workflows, continue product feedback summaries, and avoid adding more workflows until the current three are stable.
    +
    +Public-safe summary:
    +Over 30 days, a department used Proof Room Lite to organize three repeated AI-assisted workflows, assign owners, track issues, revise rules, and produce a monthly evidence-based update.
    +

    Proof note:

    +
    Proof note:
    +Source: 30 days of summarized Proof Room Lite notes.
    +Outputs created: monthly executive proof report, workflow status table, decision list, next-month plan, leadership update email, public-safe summary.
    +Claims made: Proof Room Lite can help a department organize repeated AI workflows, owners, checks, issues, revisions, and proof summaries.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance certification, no autonomous-readiness claim, no private customer details.
    +Review needed: department should confirm run counts, issue summaries, owners, private data boundaries, and internal policy before sharing.
    +Public-safe: yes, if customer/private details and sensitive operational details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Executive summary + Workflow status table + Keep / revise / stop decisions + Next-month plan + Leadership email + Public-safe summary + Claim boundary + Proof note +
    +
    +

    Built for leadership

    Turn a month of AI activity into a report managers can understand.

    +

    Evidence over hype

    The workflow summarizes observed runs, issues, and revisions without unsupported ROI claims.

    +

    Monthly operating rhythm

    Every month ends with decisions, next actions, and a proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste 30 days of proof notes. Get an executive proof report.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Review internal policies, data boundaries, metrics, workflow owners, and human-review responsibilities before sharing. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-proof-room-lite/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-proof-room-lite/index.html new file mode 100644 index 00000000..1e2525ed --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-proof-room-lite/index.html @@ -0,0 +1,322 @@ + + + + + + Department Proof Room Lite — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 18
    +

    Turn department AI chaos into a Proof Room.

    +

    This reusable AI workflow turns scattered department AI use into a lightweight Proof Room: task inventory, workflow priorities, charter, role assignments, 30-day rollout, dashboard fields, manager update, and proof note.

    + + + +
    +

    The simple idea

    +
    A department does not need random AI use. It needs a room for proof.
    +

    Proof Room Lite helps a department pick a few repeated AI workflows, assign owners, add checks, and track what is working without becoming a heavy enterprise project.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: scattered AI use

    +

    Everyone uses AI differently. Workflows are not documented. Outputs are not consistently checked. Nobody knows what should continue, change, or stop.

    +

    Result: useful experiments, but no department system.

    +
    +
    +

    After: Proof Room Lite

    +

    The department chooses three repeated workflows, assigns owners, sets rules, adds checks, records proof notes, and reviews progress after 30 days.

    +

    Result: a lightweight operating room for department AI adoption.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the department, team size, repeated tasks, problems, and desired rollout.

    +
    2. Rules

    Tell the AI to avoid ROI, productivity, compliance, or safety guarantees.

    +
    3. Memory

    Save the Proof Room Lite structure: inventory, charter, roles, workflows, checks, proof dashboard.

    +
    4. Workflow

    The AI creates task inventory, priorities, charter, role assignments, rollout plan, dashboard fields, and manager update.

    +
    5. Checks

    The AI checks whether owners, boundaries, review responsibilities, and proof fields are clear.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what must be reviewed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department Pack / Proof Room Lite notes:

    +
    Rough Department Pack / Proof Room Lite notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Price idea: $499 to $999 self-serve digital department kit
    +Buyer: department lead, operations lead, innovation lead, AI champion, or small-business manager
    +Goal: organize a department's repeated AI work without hiring consultants
    +Department: customer success / operations
    +Team size: 8 to 25 people
    +Problem:
    +- people use AI differently
    +- repeated tasks are not documented
    +- no shared rules
    +- no proof that outputs were checked
    +- no clear owner for each workflow
    +- no rollback / correction process
    +Need output:
    +- department AI task inventory
    +- top 3 workflow priorities
    +- Proof Room Lite charter
    +- role assignments
    +- 30-day rollout plan
    +- proof dashboard fields
    +- manager update email
    +- proof note
    +Rules:
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no legal/compliance certification
    +- no claim that AI outputs are safe without human review
    +- no private customer data in public examples
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Department AI Task Inventory:
    +Department: Customer Success / Operations
    +
    +Repeated tasks found:
    +1. Weekly customer status update
    +2. Meeting notes to action plan
    +3. Support FAQ replies
    +4. Renewal-risk summary
    +5. Internal handoff notes
    +6. Product feedback summary
    +7. Monthly operations report
    +
    +Top 3 workflow priorities:
    +1. Support FAQ replies
    +Why: repeated weekly, high volume, clear support boundary needed.
    +
    +2. Meeting notes to action plan
    +Why: repeated across the department, easy to standardize.
    +
    +3. Product feedback summary
    +Why: helps turn repeated customer questions into product updates.
    +
    +Proof Room Lite Charter:
    +Room name:
    +Customer Success AI Workflow Room
    +
    +Mission:
    +Turn three repeated department AI tasks into reusable workflows with context, rules, checks, owners, and proof notes.
    +
    +In scope:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Out of scope:
    +- legal advice
    +- financial advice
    +- employment decisions
    +- regulated customer decisions
    +- autonomous sending without human review
    +
    +Room rules:
    +- one workflow owner per workflow
    +- no private customer data in public examples
    +- every workflow must have checks
    +- every output must be reviewed before use
    +- every workflow must leave a proof note
    +
    +Role assignments:
    +Room Owner:
    +Department lead
    +
    +Workflow Owners:
    +Support lead, operations lead, product feedback lead
    +
    +Checker:
    +Person responsible for reviewing outputs before use
    +
    +Proof Keeper:
    +Person responsible for proof notes and weekly room summary
    +
    +30-Day Rollout Plan:
    +Week 1:
    +Inventory repeated AI tasks and choose top 3.
    +
    +Week 2:
    +Build support FAQ workflow and test internally.
    +
    +Week 3:
    +Build meeting notes workflow and product feedback workflow.
    +
    +Week 4:
    +Review proof notes, improve templates, decide what to keep, revise, or stop.
    +
    +Proof Dashboard Fields:
    +- workflow name
    +- owner
    +- last run date
    +- input type
    +- output created
    +- checks completed
    +- issues found
    +- correction needed
    +- proof note link
    +- status: draft / active / needs revision / stopped
    +
    +Manager Update Email:
    +Subject: Proof Room Lite rollout plan
    +
    +We are setting up a lightweight GoalOS Proof Room for three repeated AI-assisted department workflows.
    +
    +The goal is not to automate everything.
    +
    +The goal is to make repeated AI work more consistent, reviewable, and easier to improve.
    +
    +First workflows:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Each workflow will have:
    +- owner
    +- context
    +- rules
    +- checks
    +- proof note
    +- review status
    +
    +We will run this for 30 days and review what should continue, change, or stop.
    +

    Proof note:

    +
    Proof note:
    +Source: rough Department Pack / Proof Room Lite notes.
    +Outputs created: task inventory, top 3 priorities, Proof Room Lite charter, role assignments, 30-day rollout plan, proof dashboard fields, manager update email.
    +Claims made: the Department Pack can help organize repeated department AI work into reusable workflows with owners, checks, and proof notes.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance certification, no claim that AI output is safe without review.
    +Review needed: department should confirm internal policy, data boundaries, workflow owners, and review responsibilities before use.
    +Public-safe: yes, if department/private/customer details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + AI task inventory + Top 3 priorities + Proof Room Lite charter + Role assignments + 30-day rollout + Proof dashboard fields + Manager update email + Proof note +
    +
    +

    Built for departments

    Move from one team workflow to a lightweight department adoption system.

    +

    Self-serve governance

    Use owners, checks, proof notes, and dashboard fields instead of heavy consulting.

    +

    Proof Room Lite

    Small enough to start, structured enough to be taken seriously.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste department notes. Get a Proof Room Lite rollout and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies, data boundaries, workflow owners, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-public-safe-case-study/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-public-safe-case-study/index.html new file mode 100644 index 00000000..fb0c6e8a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-public-safe-case-study/index.html @@ -0,0 +1,331 @@ + + + + + + Department Public-Safe Case Study — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 23
    +

    Turn internal AI proof into a safe case study.

    +

    This reusable AI workflow turns a department Proof Room Lite report into a public-safe case study: claim matrix, redaction checklist, approval checklist, LinkedIn post, and proof note.

    + + + +
    +

    The simple idea

    +
    Share proof without leaking private data.
    +

    A department should be able to explain what it learned from AI adoption without exposing customers, employees, screenshots, internal policies, or unsupported results.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: proof stays private or gets overhyped

    +

    The department has useful evidence, but either keeps everything hidden or publishes vague AI hype with risky claims.

    +

    Result: missed trust-building opportunity or public claim risk.

    +
    +
    +

    After: public-safe case study

    +

    The workflow creates a safe version with approved claims, redactions, boundaries, and proof notes.

    +

    Result: shareable credibility without leaking private details.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what happened in the Proof Room Lite and what source evidence exists.

    +
    2. Rules

    Tell the AI not to reveal private details, invent testimonials, imply ROI, or claim compliance/safety.

    +
    3. Memory

    Save the public-safe structure: case study, claim matrix, redaction checklist, approval checklist, proof note.

    +
    4. Workflow

    The AI creates the case study, allowed/not-allowed claims, redaction checklist, approval checklist, social post, and proof note.

    +
    5. Checks

    The AI checks whether every public claim is supported and whether private details are removed.

    +
    6. Proof

    The AI records what was published, what was withheld, what was claimed, and what was avoided.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Department Public-Safe Case Study notes:

    +
    Rough Department Public-Safe Case Study notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead, operations manager, AI champion, or small-business manager
    +Room: Customer Success AI Workflow Room
    +Source evidence: monthly Proof Room Lite report
    +
    +What happened internally:
    +- department created a Proof Room Lite for repeated AI-assisted workflows
    +- workflows included support FAQ replies, meeting notes to action plan, and product feedback summary
    +- owners were assigned
    +- rules and checks were added
    +- weekly proof reviews were run
    +- one unclear support draft was caught before external sending and rolled back
    +- monthly leadership report was created
    +
    +Goal:
    +Create a public-safe case study that can be shared on a website or LinkedIn without leaking private customer, employee, policy, metric, or operational details.
    +
    +Need output:
    +- public-safe case study
    +- public claim matrix
    +- redaction checklist
    +- what can be said / what cannot be said
    +- approval checklist
    +- LinkedIn post
    +- proof note
    +
    +Rules:
    +- no private customer details
    +- no employee names
    +- no screenshots
    +- no exact internal metrics unless approved
    +- no fake testimonial
    +- no invented quote
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no compliance certification
    +- no claim that the department is AI-safe or autonomous
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Public-Safe Case Study:
    +Title:
    +How one department turned repeated AI work into a Proof Room Lite
    +
    +Summary:
    +A department used GoalOS Proof Room Lite to organize three repeated AI-assisted workflows.
    +
    +The goal was not to automate everything.
    +
    +The goal was to make repeated AI work more structured, reviewable, and easier to improve.
    +
    +Before:
    +- people used AI differently
    +- repeated tasks were not documented
    +- review rules were unclear
    +- AI outputs did not consistently leave proof notes
    +
    +What changed:
    +The department created a lightweight Proof Room with:
    +- workflow owners
    +- task boundaries
    +- human-review rules
    +- checks
    +- weekly proof reviews
    +- correction / rollback process
    +- monthly proof report
    +
    +Workflows covered:
    +- support FAQ replies
    +- meeting notes to action plans
    +- product feedback summaries
    +
    +Important lesson:
    +The most useful change was not “more AI.”
    +
    +The useful change was a reviewable operating rhythm:
    +run the workflow
    +check the output
    +record the proof note
    +revise what fails
    +keep what works
    +
    +Claim boundary:
    +This case study does not claim guaranteed productivity, ROI, legal compliance, safety, or autonomous readiness.
    +
    +Public Claim Matrix:
    +Allowed public claims:
    +- A department used Proof Room Lite to organize repeated AI-assisted workflows.
    +- The department assigned owners to workflows.
    +- The department added human-review checks.
    +- The department used proof notes and weekly reviews.
    +- An unclear AI draft was caught before external sending and corrected.
    +- A monthly proof report was created.
    +
    +Not allowed public claims:
    +- The department achieved guaranteed productivity gains.
    +- The department achieved ROI.
    +- The department is compliant.
    +- The workflows are safe.
    +- AI can send outputs without human review.
    +- Customers benefited in a measured way unless evidence and permission exist.
    +- Any specific customer, employee, company, or metric unless approved.
    +
    +Redaction Checklist:
    +Remove before publishing:
    +- customer names
    +- employee names
    +- email addresses
    +- account details
    +- exact support messages
    +- screenshots
    +- internal policy text
    +- sensitive operational details
    +- unapproved metrics
    +- security or privacy details
    +- exact quotes without permission
    +
    +Approval Checklist:
    +Before publishing, confirm:
    +- public case study was reviewed by the room owner
    +- private data was removed
    +- claims match evidence
    +- no ROI or productivity guarantee is implied
    +- no testimonial is invented
    +- no exact quote is used without permission
    +- public-safe version is approved
    +
    +LinkedIn Post:
    +Most AI adoption stories sound like hype.
    +
    +Here is the more useful version:
    +
    +A department does not need to “automate everything.”
    +
    +It needs to know:
    +what workflows exist
    +who owns them
    +what data is allowed
    +what must be checked
    +what failed
    +what was corrected
    +what proof was recorded
    +
    +That is the idea behind Proof Room Lite.
    +
    +Not AI chaos.
    +Not blind trust.
    +
    +A lightweight room for repeated AI work.
    +

    Proof note:

    +
    Proof note:
    +Source: monthly Proof Room Lite report and summarized department workflow evidence.
    +Outputs created: public-safe case study, public claim matrix, redaction checklist, approval checklist, LinkedIn post.
    +Claims made: Proof Room Lite can help describe department AI workflow organization in a public-safe way.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance certification, no safety guarantee, no private details, no fake testimonial.
    +Review needed: department should confirm redaction, approval, public claim boundary, and permission before publishing.
    +Public-safe: yes, if the redaction checklist is completed and approval is recorded.
    +
    + +
    +

    What the buyer gets

    +
    + Public-safe case study + Claim matrix + Redaction checklist + Approval checklist + LinkedIn post + Claim boundary + Proof note +
    +
    +

    Built for trust

    Turn internal proof into a clear public story without overclaiming.

    +

    Privacy-aware

    Use redaction and approval steps before anything public is shared.

    +

    Demand-generating

    Public-safe case studies create credibility without fake testimonials or private screenshots.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste monthly proof notes. Get a public-safe case study and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, privacy, advertising, endorsement, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, ROI, or business-results guarantee. Do not publish private data, exact quotes, testimonials, screenshots, or identifiable details without appropriate review and permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-weekly-proof-review/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-weekly-proof-review/index.html new file mode 100644 index 00000000..a18fbc3e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/department-weekly-proof-review/index.html @@ -0,0 +1,297 @@ + + + + + + Department Weekly Proof Review — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Proof Room Lite · Example 19
    +

    Turn proof notes into decisions.

    +

    This reusable AI workflow turns a department Proof Room Lite dashboard into a weekly review: what to keep, what to revise, what to stop, what to report, and what to prove.

    + + + +
    +

    The simple idea

    +
    A department does not need more AI experiments. It needs a weekly proof review.
    +

    Proof Room Lite becomes valuable when the department regularly reviews evidence and decides what to keep, revise, stop, or monitor.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: AI experiments drift

    +

    People try AI workflows, but no one reviews what happened. Problems repeat, useful patterns are missed, and nobody decides what should change.

    +

    Result: experiments without governance.

    +
    +
    +

    After: weekly proof review

    +

    The department reviews workflow evidence, issues, owners, and proof notes once per week, then decides what to keep, revise, or stop.

    +

    Result: lightweight governance without heavy consulting.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI which workflows ran this week, who owns them, what issues appeared, and what needs review.

    +
    2. Rules

    Tell the AI not to claim productivity, ROI, compliance, or autonomous readiness.

    +
    3. Memory

    Save the decision language: keep, revise, stop, monitor, escalate.

    +
    4. Workflow

    The AI creates a weekly summary, decisions, next actions, dashboard update, manager update, and proof note.

    +
    5. Checks

    The AI checks whether decisions are tied to evidence, owners are named, and uncertain items are marked.

    +
    6. Proof

    The AI records what was decided, what was claimed, what was avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough weekly Proof Room Lite review notes:

    +
    Rough weekly Proof Room Lite review notes:
    +Product: GoalOS Department Pack / Proof Room Lite
    +Buyer: department lead or operations manager
    +Room: Customer Success AI Workflow Room
    +Workflows this week:
    +1. Support FAQ replies
    +   Owner: Support Lead
    +   Runs: 18
    +   Issues: 3 replies needed tone edits; 1 policy answer was unclear
    +   Status: active but needs revised rules
    +
    +2. Meeting notes to action plan
    +   Owner: Operations Lead
    +   Runs: 9
    +   Issues: 2 missing owners; 1 unclear deadline
    +   Status: active but needs stronger checks
    +
    +3. Product feedback summary
    +   Owner: Product Feedback Lead
    +   Runs: 5
    +   Issues: none serious; useful themes found
    +   Status: keep
    +
    +Goal:
    +Create a weekly proof review summary, keep/revise/stop decisions, next actions, manager update, proof dashboard update, and proof note.
    +
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no compliance certification
    +- do not publish private customer details
    +- do not claim AI output is safe without human review
    +- mark uncertain items clearly
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Weekly Proof Room Review:
    +Room:
    +Customer Success AI Workflow Room
    +
    +Review period:
    +This week
    +
    +Overall summary:
    +The department ran three AI-assisted workflows this week. All three produced usable internal outputs, but two need improved checks before wider use.
    +
    +Workflow Decisions:
    +
    +1. Support FAQ replies
    +Decision:
    +Revise
    +
    +Reason:
    +The workflow was used 18 times, but tone and policy clarity issues appeared.
    +
    +Action:
    +Update the rules template:
    +- use calmer tone
    +- avoid unsupported policy answers
    +- mark uncertain policy items for human review
    +
    +Owner:
    +Support Lead
    +
    +2. Meeting notes to action plan
    +Decision:
    +Revise
    +
    +Reason:
    +The workflow helped structure notes, but some outputs missed owners and deadlines.
    +
    +Action:
    +Add mandatory checks:
    +- every action item needs owner
    +- every deadline must be confirmed
    +- unclear dates must be marked as “needs confirmation”
    +
    +Owner:
    +Operations Lead
    +
    +3. Product feedback summary
    +Decision:
    +Keep
    +
    +Reason:
    +The workflow produced useful themes and had no serious issues this week.
    +
    +Action:
    +Continue for one more week and compare recurring themes.
    +
    +Owner:
    +Product Feedback Lead
    +
    +Proof Dashboard Update:
    +- Support FAQ replies: active / needs revised rules
    +- Meeting notes to action plan: active / needs stronger checks
    +- Product feedback summary: active / keep
    +
    +Manager Update:
    +Subject: Weekly Proof Room Lite review
    +
    +This week we reviewed three department AI workflows.
    +
    +Decisions:
    +- Support FAQ replies: revise rules
    +- Meeting notes to action plan: strengthen checks
    +- Product feedback summary: keep
    +
    +Main lesson:
    +The workflows are useful, but proof notes are showing where rules and checks need to improve.
    +
    +Next week:
    +We will update the support and meeting workflows, then review whether issue count goes down.
    +
    +Claim boundary:
    +This review does not claim productivity gains, ROI, compliance, or autonomous readiness. It only summarizes this week’s workflow evidence and next actions.
    +

    Proof note:

    +
    Proof note:
    +Source: weekly Proof Room Lite dashboard notes.
    +Outputs created: weekly review summary, keep/revise/stop decisions, next actions, manager update, dashboard update, claim boundary.
    +Claims made: the weekly review helps a department decide what to keep, revise, or continue monitoring.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance certification, no autonomous-readiness claim, no private customer details.
    +Review needed: department should confirm issue counts, owners, private data boundaries, and internal policy before sharing.
    +Public-safe: yes, if customer/private details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Weekly review summary + Keep / revise / stop decisions + Next actions + Owner list + Dashboard update + Manager update email + Claim boundary + Proof note +
    +
    +

    Built for departments

    Move from random AI use to a weekly evidence review habit.

    +

    Lightweight governance

    Use decisions, owners, checks, and proof notes instead of heavy enterprise software.

    +

    Continuous improvement

    Each week, the room learns what to keep, revise, stop, or monitor.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste weekly proof notes. Get decisions, next actions, and a manager update.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies, data boundaries, workflow owners, and human-review responsibilities before use. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/feedback-to-product-update/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/feedback-to-product-update/index.html new file mode 100644 index 00000000..dd3668ba --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/feedback-to-product-update/index.html @@ -0,0 +1,268 @@ + + + + + + Feedback to Product Update — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 8
    +

    Turn feedback into product updates.

    +

    This reusable AI workflow turns repeated buyer questions and support patterns into product improvements, changelogs, buyer update emails, social posts, and proof notes — without inventing testimonials or exposing private messages.

    + + + +
    +

    The simple idea

    +
    Every repeated question is product intelligence.
    +

    If buyers keep asking the same thing, that is not just support. It is a signal for the next checklist, explainer, example, FAQ, or product update.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: feedback gets lost

    +

    Support questions pile up. Useful patterns stay in your inbox. Product updates happen randomly.

    +

    Result: more confusion, more repeated support, slower improvement.

    +
    +
    +

    After: feedback becomes updates

    +

    The workflow summarizes patterns, proposes product updates, drafts a changelog, writes a buyer email, and creates a proof note.

    +

    Result: the product improves without turning into custom service.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, recent support questions, buyer confusion, and update goal.

    +
    2. Rules

    Tell the AI not to invent testimonials, results, buyer names, or private quotes.

    +
    3. Memory

    Save your product promise, support boundaries, and standard changelog format.

    +
    4. Workflow

    The AI extracts themes, proposes updates, writes a changelog, drafts a buyer email, creates a social post, and records proof.

    +
    5. Checks

    The AI checks that updates are real, feedback is anonymized, and no buyer claim is invented.

    +
    6. Proof

    The AI records what was updated, what was claimed, what was avoided, and what needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough feedback notes:

    +
    Rough feedback notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Recent buyer/support feedback:
    +- People ask which task to choose first.
    +- Some buyers are confused by “proof note.”
    +- Some people want examples for consultants.
    +- Some people ask whether this is just prompts.
    +- Some people want a simpler one-page checklist.
    +Goal: turn feedback into product improvements and a public update.
    +Important: do not invent testimonials, do not claim buyers achieved results unless verified, do not reveal private buyer messages.
    +Needed output: feedback themes, product update plan, new template idea, changelog, buyer update email, social post, proof note.
    +

    Reusable workflow output:

    +
    Feedback Themes:
    +1. Buyers need help choosing their first task.
    +2. “Proof note” needs a simpler explanation.
    +3. Consultants want a dedicated example.
    +4. Some buyers still confuse the kit with a prompt pack.
    +5. A one-page checklist would reduce friction.
    +
    +Product Update Plan:
    +Update 1:
    +Add a “Pick Your First Workflow” one-page checklist.
    +
    +Update 2:
    +Add a plain-language “What is a proof note?” page.
    +
    +Update 3:
    +Add a consultant example:
    +Client call notes → proposal outline → follow-up email → proof note.
    +
    +Update 4:
    +Add a comparison table:
    +Prompt pack vs. reusable workflow.
    +
    +Changelog:
    +GoalOS AI Efficiency Sprint Kit — Update
    +
    +New:
    +- Pick Your First Workflow checklist
    +- What Is A Proof Note? explainer
    +- Consultant workflow example
    +- Prompt pack vs. reusable workflow comparison
    +
    +Improved:
    +- Clearer onboarding language
    +- Simpler first-task selection
    +- Better explanation of proof notes
    +
    +Buyer Update Email:
    +Subject: New GoalOS kit update: easier first workflow
    +
    +Hi,
    +
    +We improved the GoalOS AI Efficiency Sprint Kit based on repeated buyer questions.
    +
    +The new update makes it easier to start.
    +
    +Added:
    +- Pick Your First Workflow checklist
    +- What Is A Proof Note? explainer
    +- Consultant workflow example
    +- Prompt pack vs. reusable workflow comparison
    +
    +The goal is simple:
    +help you build your first reusable AI workflow with less confusion.
    +
    +Social Post:
    +Every repeated buyer question is product intelligence.
    +
    +If people keep asking:
    +“What should I do first?”
    +“Is this just prompts?”
    +“What is a proof note?”
    +
    +That is not a support problem only.
    +
    +It is a product improvement signal.
    +
    +The GoalOS method:
    +feedback
    +→ pattern
    +→ product update
    +→ changelog
    +→ buyer email
    +→ proof note
    +
    +That is how digital products get better without becoming high-support services.
    +

    Proof note:

    +
    Proof note:
    +Source: summarized buyer/support feedback.
    +Outputs created: feedback themes, product update plan, changelog, buyer update email, social post.
    +Claims made: the product was updated based on repeated question themes.
    +Claims avoided: no fake testimonial, no invented buyer result, no private buyer message, no income guarantee, no ROI guarantee.
    +Privacy boundary: do not publish names, emails, screenshots, private support messages, or exact buyer quotes unless explicitly permitted.
    +Review needed: human should confirm the updates actually exist before sending the changelog.
    +Public-safe: yes, if feedback is summarized and anonymized.
    +
    + +
    +

    What the buyer gets

    +
    + Feedback themes + Product update plan + New template idea + Changelog + Buyer update email + Social post + Proof note +
    +
    +

    Compounding product

    Repeated questions become reusable assets instead of one-off replies.

    +

    Lower support over time

    Every pattern can become a better checklist, FAQ, example, or onboarding step.

    +

    Public-safe updates

    The workflow summarizes feedback without leaking buyer names, emails, or private messages.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste buyer feedback. Get product updates, changelog, buyer email, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Do not publish private buyer messages, names, emails, or testimonials without appropriate permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/idea-to-demand-engine/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/idea-to-demand-engine/index.html new file mode 100644 index 00000000..e91d7d52 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/idea-to-demand-engine/index.html @@ -0,0 +1,258 @@ + + + + + + Idea to Demand Engine — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 3
    +

    Turn one idea into demand.

    +

    This reusable AI workflow turns a rough product idea into a clean hook, LinkedIn post, X post, email, sales-page section, and proof note — without fake claims, fake testimonials, or risky guarantees.

    + + + +
    +

    The simple idea

    +
    Stop starting from a blank page every time you need demand.
    +

    A reusable demand workflow helps you turn one product message into useful content you can review, publish, reuse, and improve.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: random content

    +

    You have a product idea. You ask AI for a post. It sounds generic. You edit. Then tomorrow, you start over again.

    +

    Result: inconsistent message, weak offer, risky hype, no repeatable system.

    +
    +
    +

    After: reusable demand engine

    +

    You paste one rough idea into the same workflow. It produces a hook, post, email, page section, and proof note every time.

    +

    Result: one idea becomes a reusable content system.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the product is, who it is for, price, promise, and what buyers actually get.

    +
    2. Rules

    Tell the AI what to avoid: fake urgency, fake testimonials, guaranteed income, guaranteed ROI, or exaggerated claims.

    +
    3. Memory

    Save your core message: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates a hook, long post, short post, email, sales-page section, and proof note.

    +
    5. Checks

    The AI checks whether the content is clear, specific, useful, honest, and safe to publish.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough product idea:

    +
    Rough idea:
    +People keep using AI like a chat box.
    +We want to sell a $49 kit that helps them build one reusable AI workflow.
    +Need a LinkedIn post, an X post, an email, and a sales-page section.
    +Avoid hype, income guarantees, fake urgency, and fake testimonials.
    +Make it practical.
    +

    Reusable workflow output:

    +
    Core Hook:
    +Stop asking AI from scratch.
    +
    +LinkedIn Post:
    +Most people do not have an AI problem.
    +They have a workflow problem.
    +
    +They open ChatGPT.
    +They ask for help.
    +They edit.
    +They close the tab.
    +Then next week, they ask the same kind of question again.
    +
    +That is not leverage.
    +
    +The better move:
    +turn one repeated task into a reusable AI workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +One task becomes a system you can run again.
    +
    +That is what GoalOS AI Efficiency Sprint is built to help you do.
    +
    +X Post:
    +Most people use AI like a chat box.
    +
    +The upgrade:
    +build one reusable workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +Stop asking AI from scratch.
    +
    +Email:
    +Subject: Stop asking AI from scratch
    +
    +Most people use AI one chat at a time.
    +
    +The problem is not access.
    +The problem is repetition.
    +
    +If you answer the same customer questions, summarize the same meetings, write the same updates, or create the same kind of content every week, you do not need more random prompts.
    +
    +You need one reusable workflow.
    +
    +The GoalOS AI Efficiency Sprint Kit helps you build one in under one hour.
    +
    +Sales Page Section:
    +Build one reusable AI workflow.
    +
    +Pick one task you repeat.
    +Add context.
    +Add rules.
    +Add memory.
    +Add workflow steps.
    +Add checks.
    +Leave proof.
    +
    +You are not buying “a bunch of files.”
    +You are building your first reusable AI work system.
    +

    Proof note:

    +
    Proof note:
    +Source: rough internal product idea.
    +Outputs created: hook, LinkedIn post, X post, email, sales-page section.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake testimonial, no legal/compliance claim, no guarantee of results.
    +Review needed: human should confirm final wording, links, pricing, and platform rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Hook + LinkedIn post + X post + Email + Sales-page section + Proof note + Claim boundary +
    +
    +

    Useful for selling digital kits

    Turn one product message into multiple assets for your sales funnel.

    +

    Lower-risk copy

    The workflow avoids fake guarantees, fake reviews, and unsupported claims.

    +

    Reusable engine

    Run it again for every product, feature, example, launch, or update.

    +
    +
    + +
    +

    Digital product sales rule

    +

    For a low-friction digital product business, use clear terms before checkout: instant digital access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste one rough product idea. Get demand content and a proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/index.html new file mode 100644 index 00000000..8777a0e6 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/index.html @@ -0,0 +1,164 @@ + + + + + + Workflow Library · Proof Gradient + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    Workflow Library
    +

    Reusable workflow pages.

    +

    Each workflow page shows a practical path from messy repeated work to context, rules, memory, workflow, checks, and proof.

    +
    +
    +
    +
    + + Individual +

    Example 1: Customer question → clear reply

    +

    Turn messy customer questions into clear replies and proof notes.

    +
    + Individual +

    Example 2: Meeting notes → action plan

    +

    Turn messy notes into decisions, owners, deadlines, follow-up email, and proof.

    +
    + Demand +

    Example 3: One idea → demand engine

    +

    Turn a rough product idea into content, email, sales copy, and proof.

    +
    + Demand +

    Example 4: Offer notes → sales page

    +

    Turn rough offer notes into a clear product page, FAQ, terms, and proof note.

    +
    + Demand +

    Example 5: Lead magnet → email sequence

    +

    Turn a free worksheet into opt-in emails, offer clarity, and proof.

    +
    + Delivery +

    Example 6: Purchase → onboarding

    +

    Turn a digital-product purchase into delivery, activation, upsell, support boundary, and proof.

    +
    + Delivery +

    Example 7: Support questions → self-serve answers

    +

    Turn repeated support questions into FAQ, canned replies, escalation rules, and proof.

    +
    + Product +

    Example 8: Feedback → product update

    +

    Turn buyer feedback into product improvements, changelog, buyer email, and proof.

    +
    + Proof +

    Example 9: Usage → proof card

    +

    Turn real usage into public-safe proof, social post, referral ask, and permission request.

    +
    + Recurring +

    Example 10: Requests → Vault drop

    +

    Turn buyer requests into a recurring template library, announcement email, changelog, and proof.

    +
    + Distribution +

    Example 11: Partner interest → referral kit

    +

    Turn partner interest into clear promo copy, disclosure language, FAQ, and proof.

    +
    + Growth +

    Example 12: Weekly numbers → growth move

    +

    Turn weekly numbers into a growth experiment, content plan, and proof note.

    +
    + Checkout +

    Example 13: Checkout signal → recovery sequence

    +

    Turn almost-buyers into clear decisions with calm email, FAQ, terms, and proof.

    +
    + Checkout +

    Example 14: Main offer → order bump

    +

    Turn an add-on idea into optional checkout copy, FAQ, terms, and proof.

    +
    + Team +

    Example 15: Individual kit → Team Pack

    +

    Turn one buyer into a team rollout with optional upgrade copy, email, FAQ, and proof.

    +
    + Team +

    Example 16: Interest → approval memo

    +

    Turn an internal champion into a manager memo, procurement email, rollout plan, and proof.

    +
    + Team +

    Example 17: Team Pack → self-run sprint

    +

    Turn a team meeting into a reusable AI workflow session, role assignments, checks, and proof.

    +
    + Department +

    Example 18: Department Pack → Proof Room Lite setup

    +

    Turn scattered department AI use into workflow priorities, roles, checks, dashboard fields, and proof.

    +
    + Department +

    Example 19: Weekly proof review

    +

    Turn dashboard notes into keep/revise/stop decisions, manager update, and proof.

    +
    + Department +

    Example 20: Monthly proof report

    +

    Turn 30 days of Proof Room Lite notes into an executive report, leadership email, and proof.

    +
    + Department +

    Example 21: Department AI Permission Map

    +

    Turn AI tool confusion into Green / Yellow / Red rules, task permissions, escalation, and proof.

    +
    + Department +

    Example 22: AI correction / rollback

    +

    Turn an AI workflow issue into severity, correction, rule update, rollback receipt, and proof.

    +
    + Department +

    Example 23: Public-safe case study

    +

    Turn internal Proof Room evidence into a safe case study, claim matrix, redaction checklist, and proof.

    +
    +
    +
    + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/internal-approval-memo/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/internal-approval-memo/index.html new file mode 100644 index 00000000..6a72f59a --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/internal-approval-memo/index.html @@ -0,0 +1,291 @@ + + + + + + Internal Approval Memo — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · B2B Loop · Example 16
    +

    Turn interest into approval.

    +

    This reusable AI workflow turns one interested employee, consultant, teacher, or team lead into an internal champion with a manager memo, procurement email, rollout plan, FAQ, and proof note.

    + + + +
    +

    The simple idea

    +
    A team buyer often needs approval before buying.
    +

    Instead of making an interested person explain everything from scratch, give them a reusable workflow that creates the approval memo for them.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: internal friction

    +

    Someone wants the Team Pack but must explain it to a manager, budget owner, or procurement person. They hesitate or never ask.

    +

    Result: interest disappears before purchase.

    +
    +
    +

    After: approval workflow

    +

    The workflow creates a clear internal memo, procurement email, rollout plan, manager FAQ, and proof note.

    +

    Result: easier team purchase without manual sales calls.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, buyer role, approval audience, team use case, and contents.

    +
    2. Rules

    Tell the AI not to promise ROI, productivity, compliance, or automatic approval.

    +
    3. Memory

    Save the standard explanation: ChatGPT is the tool; GoalOS helps the team build reusable workflows around repeated work.

    +
    4. Workflow

    The AI creates the manager memo, procurement email, rollout plan, manager FAQ, and proof note.

    +
    5. Checks

    The AI checks whether the memo is clear, calm, specific, and not overpromising.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs internal review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough internal approval notes:

    +
    Rough internal approval notes:
    +Product: GoalOS AI Efficiency Sprint Team Pack
    +Price: $199
    +Buyer: employee, consultant, team lead, teacher, or manager who wants approval to buy the Team Pack
    +Audience: manager, budget owner, procurement person, or team lead
    +Goal: make it easy to request approval without hype
    +Use case: run a 60-minute team session to turn one repeated AI task into a reusable workflow
    +Team Pack includes:
    +- individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +Rules:
    +- no guaranteed ROI
    +- no guaranteed productivity
    +- no legal/compliance claims
    +- no fake urgency
    +- no fake testimonials
    +- no claim that approval is automatic
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Internal Approval Memo:
    +Subject: Request to purchase GoalOS AI Efficiency Sprint Team Pack
    +
    +I would like approval to purchase the GoalOS AI Efficiency Sprint Team Pack.
    +
    +Purpose:
    +Use the kit to run a 60-minute internal session where we turn one repeated AI task into a reusable workflow.
    +
    +Why this may help:
    +Our team often repeats the same AI-assisted tasks from scratch. The Team Pack gives us a simple structure for turning one repeated task into a reusable workflow with:
    +
    +- context
    +- rules
    +- memory
    +- workflow steps
    +- checks
    +- proof note
    +
    +Proposed first use case:
    +Turn our recurring meeting notes or customer replies into a reusable workflow.
    +
    +What is included:
    +- individual sprint kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +
    +Cost:
    +$199 one-time digital product.
    +
    +Important boundaries:
    +This is a self-serve digital product.
    +It does not guarantee productivity, ROI, income, legal compliance, or perfect accuracy.
    +Outputs still require human review.
    +
    +Suggested next step:
    +Approve purchase and run one 60-minute pilot session with one repeated task.
    +
    +Procurement / Purchase Email:
    +Hi,
    +
    +We would like to purchase the GoalOS AI Efficiency Sprint Team Pack.
    +
    +Product:
    +GoalOS AI Efficiency Sprint Team Pack
    +
    +Price:
    +$199
    +
    +Purpose:
    +Internal team AI workflow training / reusable workflow development.
    +
    +Please confirm the preferred purchase method.
    +
    +Thanks.
    +
    +Mini Rollout Plan:
    +1. Choose one repeated team task.
    +2. Invite 3–6 people involved in that task.
    +3. Run the 60-minute sprint.
    +4. Build one reusable workflow.
    +5. Add checks.
    +6. Create a proof note.
    +7. Decide whether to repeat with another task.
    +
    +Manager FAQ:
    +Q: Is this software?
    +A: It is a digital workflow kit, not enterprise software.
    +
    +Q: Does it guarantee productivity?
    +A: No. It provides a structured method and templates. Results depend on use and review.
    +
    +Q: Does it replace policy or compliance review?
    +A: No. It is not legal, financial, medical, employment, security, or compliance advice.
    +
    +Q: Why not just use ChatGPT?
    +A: ChatGPT is the tool. The kit helps the team build a reusable workflow around repeated work instead of starting from scratch every time.
    +
    +Q: Is this a subscription?
    +A: No. The Team Pack is a one-time digital kit.
    +

    Proof note:

    +
    Proof note:
    +Source: rough internal approval notes.
    +Outputs created: internal approval memo, procurement email, rollout plan, manager FAQ.
    +Claims made: the Team Pack provides materials to run a team sprint and build one reusable workflow.
    +Claims avoided: no guaranteed ROI, no guaranteed productivity, no compliance claim, no legal advice, no automatic approval claim.
    +Review needed: human should confirm internal purchasing rules, exact product contents, budget authority, and digital product terms before sending.
    +Public-safe: yes, if internal company details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Manager memo + Procurement email + Rollout plan + Manager FAQ + Claim boundary + Proof note +
    +
    +

    Built for B2B demand

    Help internal champions explain the Team Pack to decision-makers.

    +

    No inflated claims

    The workflow avoids ROI, productivity, and compliance promises.

    +

    Low-touch selling

    Buyers can self-serve the approval request instead of booking a call.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste approval notes. Get a manager memo and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal purchase rules and product terms before sending. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/lead-magnet-email-sequence/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/lead-magnet-email-sequence/index.html new file mode 100644 index 00000000..81a4aa4e --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/lead-magnet-email-sequence/index.html @@ -0,0 +1,292 @@ + + + + + + Lead Magnet to Email Sequence — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 5
    +

    Turn a free worksheet into a sales sequence.

    +

    This reusable AI workflow turns one free lead magnet into a simple opt-in email sequence that teaches the buyer, explains the offer, sets expectations, and creates a proof note.

    + + + +
    +

    The simple idea

    +
    A free download is not the funnel. The follow-up is the funnel.
    +

    If someone asks for a free worksheet, use a reusable workflow to create a clear, honest email sequence that helps them understand the problem and decide whether the paid kit is right for them.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: freebie with no follow-up

    +

    People download the worksheet, but they do not understand the product, the use case, or why the kit exists.

    +

    Result: missed demand, weak trust, random follow-up.

    +
    +
    +

    After: reusable email workflow

    +

    You paste the lead magnet notes into the workflow. It creates a clean opt-in sequence with education, examples, offer, terms, and proof.

    +

    Result: automated demand without fake claims or spam.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the free worksheet, paid product, price, audience, and desired next step.

    +
    2. Rules

    Tell the AI to use opt-in language, avoid spammy pressure, avoid fake urgency, and avoid income claims.

    +
    3. Memory

    Save the core message: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates delivery email, education email, example email, objection email, offer email, and terms email.

    +
    5. Checks

    The AI checks for clear consent language, unsubscribe reminder, honest claims, and buyer-fit clarity.

    +
    6. Proof

    The AI records what the sequence claims, what it avoids, and what must be reviewed before sending.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough funnel notes:

    +
    Rough funnel notes:
    +Free lead magnet: AI Efficiency Audit Worksheet
    +Paid product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Promise: build one reusable AI workflow in under one hour
    +Audience: founders, consultants, creators, operators, small teams
    +Goal: people download the free worksheet, understand the problem, then buy the kit
    +Rules: send only to people who opted in, include unsubscribe, avoid income claims, avoid fake urgency, avoid fake testimonials, clearly say digital product sales are final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Email 1 — Deliver the free worksheet
    +Subject: Your AI Efficiency Audit
    +
    +Thanks for requesting the AI Efficiency Audit.
    +
    +Use it to find one repeated AI task worth turning into a reusable workflow.
    +
    +Look for a task you do every week:
    +- answering customer questions
    +- summarizing meetings
    +- writing updates
    +- creating sales copy
    +- preparing reports
    +
    +The goal is simple:
    +stop asking AI from scratch.
    +
    +Email 2 — Explain the problem
    +Subject: The real AI bottleneck
    +
    +Most people do not have an AI access problem.
    +
    +They have a workflow problem.
    +
    +They open AI.
    +Ask for help.
    +Edit the answer.
    +Close the tab.
    +Then repeat the same kind of task again next week.
    +
    +That is not leverage.
    +
    +A reusable workflow gives the AI:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof
    +
    +Email 3 — Show the example
    +Subject: One example
    +
    +Take customer questions.
    +
    +Instead of asking AI from scratch every time, you build one workflow that knows:
    +your product
    +your tone
    +your rules
    +your claims
    +your limits
    +your proof note format
    +
    +Now every answer is clearer and easier to review.
    +
    +Email 4 — Answer the objection
    +Subject: Is this just templates?
    +
    +Fair question.
    +
    +A template is useful once.
    +A workflow is something you can run again.
    +
    +The GoalOS kit helps you build the workflow:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof
    +
    +That is the difference.
    +
    +Email 5 — Present the offer
    +Subject: Build your first reusable AI workflow
    +
    +The GoalOS AI Efficiency Sprint Kit is a $49 digital kit.
    +
    +It helps you pick one repeated AI task and turn it into a reusable workflow in under one hour.
    +
    +You get:
    +- Start Here guide
    +- 60-minute checklist
    +- context template
    +- rules template
    +- memory template
    +- workflow template
    +- checks template
    +- proof page template
    +- copy-paste prompts
    +- examples
    +
    +Email 6 — Final clarity before checkout
    +Subject: Before you buy
    +
    +This is for you if you want to stop repeating the same AI task manually.
    +
    +It is not for you if you expect guaranteed income, guaranteed ROI, legal advice, financial advice, medical advice, or a fully autonomous agent acting without your review.
    +
    +This is a digital educational workflow product.
    +Access is delivered instantly.
    +All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +

    Proof note:

    +
    Proof note:
    +Source: rough funnel notes.
    +Output created: six-email opt-in sequence.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake testimonial, no legal/compliance promise.
    +Compliance reminders: send only to people who opted in; include unsubscribe; confirm final wording and checkout terms before publishing.
    +Review needed: human should verify email platform settings, consent source, unsubscribe link, product links, and final terms.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Lead magnet delivery + Education email + Example email + Objection email + Offer email + Terms email + Proof note +
    +
    +

    Built for automated selling

    The workflow turns one free worksheet into structured follow-up.

    +

    Lower support burden

    The sequence explains who the product is for, who it is not for, and what is not promised.

    +

    Safer demand

    The proof note keeps track of claims avoided: no fake urgency, fake reviews, income guarantee, or ROI promise.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste lead magnet notes. Get a clean opt-in sales sequence and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Send commercial emails only where you have proper permission and include required unsubscribe / identification information. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/meeting-to-action-plan/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/meeting-to-action-plan/index.html new file mode 100644 index 00000000..79739cf6 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/meeting-to-action-plan/index.html @@ -0,0 +1,225 @@ + + + + + + Meeting Notes to Action Plan — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 2
    +

    Turn meeting notes into action.

    +

    Most meetings create notes. Good workflows create action. This reusable AI workflow turns messy meeting notes into decisions, owners, deadlines, a follow-up email, and a proof note.

    + + + +
    +

    The simple idea

    +
    Stop letting meetings disappear into notes.
    +

    Build a reusable workflow that turns every meeting into a clear action plan people can actually use.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: notes that sit somewhere

    +

    You leave the call with a messy transcript, scattered ideas, unclear owners, and no proof of what was decided.

    +

    Result: forgotten tasks, repeated conversations, unclear accountability.

    +
    +
    +

    After: a reusable meeting workflow

    +

    You paste the notes into the same workflow every time. It produces a summary, decisions, owners, deadlines, follow-up email, and proof note.

    +

    Result: talk becomes action.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what kind of meeting it is, who the audience is, and what format you want.

    +
    2. Rules

    Tell the AI not to invent owners, deadlines, or decisions. If something is unclear, it must mark it as “needs confirmation.”

    +
    3. Memory

    Save your usual team roles, project names, tone, and follow-up style.

    +
    4. Workflow

    The AI follows the same sequence: summarize → extract decisions → assign actions → draft follow-up → create proof note.

    +
    5. Checks

    The AI checks for missing owners, risky claims, unclear deadlines, and invented facts.

    +
    6. Proof

    The AI records what was produced, what needs review, and what was not claimed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Messy meeting notes:

    +
    Marketing call notes:
    +- We talked about launching the $49 kit.
    +- Need better page example.
    +- Someone should make the product page simpler.
    +- Need proof / claim boundary.
    +- Maybe post on LinkedIn.
    +- Not sure who owns what.
    +- Need by Friday if possible.
    +

    Reusable workflow output:

    +
    Meeting Summary:
    +We decided to improve the $49 GoalOS AI Efficiency Sprint page by adding a simple example that makes the product easier to understand.
    +
    +Decisions:
    +1. Use “build one reusable AI workflow” as the main promise.
    +2. Use a practical example instead of abstract protocol language.
    +3. Add a claim boundary to avoid risky guarantees.
    +
    +Action Plan:
    +1. Create a clearer product-page section.
    +   Owner: Marketing
    +   Due: Friday
    +
    +2. Draft one LinkedIn post explaining the example.
    +   Owner: Founder
    +   Due: Thursday
    +
    +3. Add a proof note to the page.
    +   Owner: Product
    +   Due: Friday
    +
    +Follow-up Email:
    +Subject: Action items from today’s GoalOS launch call
    +
    +Hi team,
    +
    +Here is the simple action plan from today’s call:
    +
    +- Marketing will simplify the $49 kit page by Friday.
    +- Founder will draft one LinkedIn post by Thursday.
    +- Product will add a proof note and claim boundary by Friday.
    +
    +The main message is:
    +“Stop asking AI from scratch. Build one reusable AI workflow in under one hour.”
    +
    +Thanks.
    +

    Proof note:

    +
    Proof note:
    +Source: messy internal meeting notes.
    +Output created: summary, decisions, action plan, follow-up email.
    +Claims made: the workflow helps organize meeting notes into reusable action outputs.
    +Claims avoided: no productivity guarantee, no revenue guarantee, no legal/compliance promise.
    +Review needed: human should confirm owners and deadlines before sending.
    +Public-safe: yes, if private names/client details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Meeting summary + Decisions + Action items + Owners + Deadlines + Follow-up email + Proof note +
    +
    +

    Useful immediately

    Almost every team has messy notes. This turns them into structured work.

    +

    Low-risk

    The workflow marks uncertainty instead of inventing facts, owners, or deadlines.

    +

    Easy to repeat

    Run it after every call, client meeting, planning session, or team check-in.

    +
    +
    + +
    +

    The one-sentence promise

    +
    Paste messy meeting notes. Get an action plan, follow-up email, and proof note.
    + +
    + +
    +

    Digital product terms

    +

    GoalOS kits are digital educational workflow products. To keep the product simple, automated, and low-friction, sales should be clearly presented as final once access is delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/monthly-workflow-vault-drop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/monthly-workflow-vault-drop/index.html new file mode 100644 index 00000000..4f372279 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/monthly-workflow-vault-drop/index.html @@ -0,0 +1,279 @@ + + + + + + Monthly Workflow Vault Drop — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Workflow Vault · Example 10
    +

    Turn demand into monthly workflow drops.

    +

    This reusable AI workflow turns buyer requests into a monthly Workflow Vault drop: new templates, announcement email, upgrade section, changelog, social post, and proof note.

    + + + +
    +

    The simple idea

    +
    The kit teaches the method. The Vault compounds the examples.
    +

    A recurring library lets buyers keep getting useful workflow examples without turning you into a custom consultant.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: one-time sale only

    +

    A buyer gets the $49 kit. If they want more examples, they email you, ask for support, or disappear.

    +

    Result: one-time revenue or manual service pressure.

    +
    +
    +

    After: recurring Vault drop

    +

    Repeated buyer requests become monthly template drops with clear boundaries: examples, not custom implementation.

    +

    Result: recurring value without unlimited support.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the subscription idea, audience, pricing, buyer requests, and monthly theme.

    +
    2. Rules

    Tell the AI not to promise custom work, guaranteed income, guaranteed ROI, or fake scarcity.

    +
    3. Memory

    Save your standard Vault format: theme, new workflows, proof templates, email, changelog, proof note.

    +
    4. Workflow

    The AI creates the monthly drop, announcement email, upgrade section, social post, changelog, and proof note.

    +
    5. Checks

    The AI checks whether the drop is concrete, reusable, correctly scoped, and not overpromising.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what must be reviewed.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough subscription notes:

    +
    Rough subscription notes:
    +Product: GoalOS Workflow Vault
    +Price idea: $29/month individual or $99/month team
    +Purpose: recurring template library for people who already understand the $49 kit
    +Buyer requests:
    +- more workflows for consultants
    +- more workflows for creators
    +- more workflows for small teams
    +- more proof-page examples
    +- monthly updates instead of custom support
    +Goal: create one monthly Vault drop with new templates, announcement email, upgrade section, social post, changelog, and proof note.
    +Important:
    +- no income guarantee
    +- no ROI guarantee
    +- no fake scarcity
    +- no fake testimonials
    +- no promise of custom work
    +- subscription can be cancelled before future billing
    +- delivered digital content is final except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Monthly Vault Drop:
    +GoalOS Workflow Vault — Monthly Drop 001
    +
    +Theme:
    +Turn repeated business communication into reusable AI workflows.
    +
    +New workflows included:
    +1. Consultant discovery call → proposal outline → follow-up email → proof note
    +2. Creator content idea → content calendar → post pack → proof note
    +3. Small-team weekly update → summary → blockers → next actions → proof note
    +
    +New proof templates:
    +- Proof page for client-facing work
    +- Proof note for meeting follow-up
    +- Claim boundary for public posts
    +
    +Announcement Email:
    +Subject: New Workflow Vault drop: 3 reusable workflows
    +
    +This month’s GoalOS Workflow Vault drop is focused on repeated business communication.
    +
    +New workflows:
    +- consultant discovery call workflow
    +- creator content calendar workflow
    +- weekly team update workflow
    +
    +Each workflow includes:
    +context
    +rules
    +memory
    +steps
    +checks
    +proof note
    +
    +The goal is not more random prompts.
    +
    +The goal is to build reusable AI work systems.
    +
    +Upgrade Section:
    +Already using the $49 GoalOS AI Efficiency Sprint Kit?
    +
    +The Workflow Vault gives you new reusable workflow examples every month.
    +
    +Use it if you want more examples, more templates, and more proof-page patterns without waiting for custom support.
    +
    +Social Post:
    +The one-time AI kit teaches the method.
    +
    +The Workflow Vault keeps adding examples.
    +
    +That is the ladder:
    +
    +$49 kit
    +→ learn the system
    +→ build one workflow
    +→ join the Vault
    +→ get new workflow drops monthly
    +
    +Not custom consulting.
    +Not prompt spam.
    +
    +Reusable work systems.
    +
    +Changelog:
    +GoalOS Workflow Vault — Drop 001
    +
    +Added:
    +- Consultant discovery call workflow
    +- Creator content calendar workflow
    +- Weekly team update workflow
    +- 3 proof-note examples
    +- 3 claim-boundary examples
    +
    +Not included:
    +- custom implementation
    +- personal workflow review
    +- guaranteed business results
    +

    Proof note:

    +
    Proof note:
    +Source: rough subscription / vault notes.
    +Outputs created: monthly drop outline, announcement email, upgrade section, social post, changelog.
    +Claims made: the Workflow Vault provides recurring workflow examples and templates.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake scarcity, no fake testimonial, no custom-service promise.
    +Subscription boundary: buyers should be told how billing works, how to cancel future billing, and what happens to already-delivered digital content.
    +Review needed: human should confirm price, billing platform, cancellation settings, delivered assets, and final terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Monthly drop outline + New workflow templates + Proof templates + Announcement email + Upgrade section + Social post + Changelog + Proof note +
    +
    +

    Built for recurring revenue

    Turn repeated requests into a monthly template library.

    +

    Low support boundary

    The Vault provides examples and templates, not custom implementation.

    +

    Compounding value

    Every month adds more reusable workflows, proof notes, and claim-boundary examples.

    +
    +
    + +
    +

    Digital product and subscription terms

    +

    Suggested low-friction wording: digital product, instant access, delivered content is final once accessed except where required by law or for duplicate charges / technical access failures. For subscriptions, buyers can cancel future billing according to the terms shown at checkout.

    +
    + +
    +

    The one-sentence promise

    +
    Paste buyer requests. Get a monthly Vault drop and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Buyers should review subscription terms, cancellation rules, and delivered digital content policies before purchase. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/offer-to-sales-page/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/offer-to-sales-page/index.html new file mode 100644 index 00000000..b55b2916 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/offer-to-sales-page/index.html @@ -0,0 +1,241 @@ + + + + + + Offer to Sales Page — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 4
    +

    Turn rough offer notes into a sales page.

    +

    This reusable AI workflow turns rough product notes into a clear buyer-ready sales page section with what buyers get, who it is for, who it is not for, FAQ, digital product terms, and proof note.

    + + + +
    +

    The simple idea

    +
    Make the offer clear before checkout.
    +

    For a low-friction digital product business, clarity is the support system. Clear pages reduce confusion, reduce support, and reduce avoidable disputes.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: vague offer

    +

    You have a product idea and a price, but the page does not clearly explain what buyers get, who it is for, or what is not promised.

    +

    Result: confused buyers, support questions, avoidable friction.

    +
    +
    +

    After: buyer-ready page

    +

    You paste rough notes into the workflow. It creates the page sections, FAQ, terms language, and proof note.

    +

    Result: clear offer, clearer expectations, easier automated checkout.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, buyer, promise, contents, and checkout destination.

    +
    2. Rules

    Tell the AI to avoid income guarantees, fake urgency, fake testimonials, and legal/compliance promises.

    +
    3. Memory

    Save your exact product language: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates the hero, benefit list, contents list, FAQ, terms, call to action, and proof note.

    +
    5. Checks

    The AI checks whether the offer is clear, specific, honest, and not overpromising.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what still needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough offer notes:

    +
    Rough offer notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Promise: build one reusable AI workflow in under one hour
    +Buyer: founders, consultants, creators, operators, and small teams
    +Includes: templates, checklist, copy-paste prompts, examples, proof page
    +Important: no income claims, no ROI guarantee, no legal/compliance guarantee
    +Policy: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +Goal: make the offer clear enough that buyers know exactly what they are getting before checkout.
    +

    Reusable workflow output:

    +
    Hero Section:
    +Stop asking AI from scratch.
    +
    +Build one reusable AI workflow in under one hour.
    +
    +GoalOS AI Efficiency Sprint Kit helps you turn one repeated AI task into a reusable work system with context, rules, memory, workflow, checks, and proof.
    +
    +Price:
    +$49 digital kit
    +
    +What you get:
    +- Start Here guide
    +- 60-minute sprint checklist
    +- AI task picker
    +- Context pack template
    +- Rules template
    +- Memory template
    +- Workflow template
    +- Checks / eval template
    +- Proof page template
    +- Copy-paste prompts
    +- Before / after examples
    +
    +Best for:
    +- founders
    +- consultants
    +- creators
    +- operators
    +- small teams
    +- professionals who use AI repeatedly but keep starting from zero
    +
    +Not for:
    +- people expecting guaranteed income
    +- people expecting legal, financial, medical, tax, or compliance advice
    +- people who want a fully autonomous agent to act without review
    +
    +FAQ:
    +Is this just a prompt pack?
    +No. A prompt is something you ask once. This kit helps you build a reusable workflow you can run again.
    +
    +Will this make me money?
    +No income or ROI is guaranteed. The kit is designed to help structure repeated AI work into a reusable system.
    +
    +Do I need to be technical?
    +No. Pick one repeated task and follow the 60-minute checklist.
    +
    +Digital Product Terms:
    +This is a digital educational workflow product. Because access is delivered instantly, all sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Call to Action:
    +Get the kit and build your first reusable AI workflow.
    +

    Proof note:

    +
    Proof note:
    +Source: rough product offer notes.
    +Output created: sales-page hero, buyer list, contents list, FAQ, terms language, call to action.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no legal/compliance promise, no perfect-accuracy claim.
    +Review needed: human should confirm final terms, checkout settings, product contents, and applicable consumer rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Hero section + Benefits + What’s inside + FAQ + Terms language + Call to action + Proof note +
    +
    +

    Built for digital kits

    Turn rough product notes into a page that can support automated checkout.

    +

    Less friction

    Clear “who it is for / not for” language helps filter bad-fit buyers before purchase.

    +

    Safer claims

    The proof note shows which claims were made and which were avoided.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste rough offer notes. Get a buyer-ready product page and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/order-bump-builder/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/order-bump-builder/index.html new file mode 100644 index 00000000..1e1ff711 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/order-bump-builder/index.html @@ -0,0 +1,256 @@ + + + + + + Order Bump Builder — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Checkout Loop · Example 14
    +

    Turn one sale into a larger cart.

    +

    This reusable AI workflow turns a main product and add-on idea into a clear optional order bump: name, checkout copy, microcopy, confirmation text, FAQ, claims-to-avoid list, and proof note.

    + + + +
    +

    The simple idea

    +
    Add more value at checkout without pressure.
    +

    An order bump should be optional, clearly priced, easy to decline, and directly useful to the person already buying.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: one product only

    +

    Someone buys the $49 kit. If they want more examples, they must figure that out later or contact you.

    +

    Result: lower cart value and more “do you have more examples?” questions.

    +
    +
    +

    After: clear optional add-on

    +

    The checkout offers a $29 Proof Page Template Pack that is optional, useful, and clearly explained.

    +

    Result: higher potential order value without fake urgency or confusion.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the main product, price, add-on, price, and what the add-on includes.

    +
    2. Rules

    Tell the AI to avoid fake urgency, fake scarcity, forced continuity, and claims that the add-on is required.

    +
    3. Memory

    Save your digital product terms and standard “optional add-on” language.

    +
    4. Workflow

    The AI creates order bump name, checkout copy, microcopy, confirmation text, FAQ, and proof note.

    +
    5. Checks

    The AI checks whether the add-on is optional, clearly priced, useful, and easy to decline.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs review before checkout.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough order bump notes:

    +
    Rough order bump notes:
    +Main product: GoalOS AI Efficiency Sprint Kit
    +Main price: $49
    +Possible add-on: Proof Page Template Pack
    +Add-on price: $29
    +Goal: make a simple checkout add-on that is useful, clear, and not pushy
    +Buyer situation: they are already buying the kit and may want more proof-page examples
    +What add-on includes:
    +- 10 proof-page templates
    +- 10 claim-boundary examples
    +- 10 public-safe proof-card examples
    +- 5 before/after examples
    +- copy-paste proof-note prompts
    +Rules:
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no forced continuity
    +- no pre-checked checkbox
    +- make it easy to say no
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Order Bump Name:
    +Proof Page Template Pack
    +
    +Short Checkout Copy:
    +Add the Proof Page Template Pack for $29.
    +
    +Get extra examples that make your first proof page easier to finish:
    +
    +- 10 proof-page templates
    +- 10 claim-boundary examples
    +- 10 public-safe proof-card examples
    +- 5 before/after examples
    +- copy-paste proof-note prompts
    +
    +Best if:
    +You want more examples before building your first proof page.
    +
    +Skip if:
    +You only want the basic kit today.
    +
    +Microcopy Under Checkbox:
    +Optional add-on. You can continue with only the $49 kit.
    +
    +Confirmation Text:
    +You added the Proof Page Template Pack.
    +
    +You will receive:
    +- GoalOS AI Efficiency Sprint Kit
    +- Proof Page Template Pack
    +
    +Both are digital educational products delivered instantly.
    +
    +FAQ:
    +Q: Do I need this add-on?
    +A: No. The main kit includes a proof page template. The add-on simply gives you more examples.
    +
    +Q: Is this a subscription?
    +A: No. This is a one-time digital add-on.
    +
    +Q: Can I buy the main kit without it?
    +A: Yes. The add-on is optional.
    +
    +Q: Can I get a refund if I change my mind?
    +A: Digital products are delivered instantly. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Claims To Avoid:
    +- “This will increase your income.”
    +- “Guaranteed ROI.”
    +- “Only available today” unless actually true and properly explained.
    +- “You need this to use the kit.”
    +- “No refunds ever under any circumstances.”
    +- Pre-checking the add-on box without clear consent.
    +

    Proof note:

    +
    Proof note:
    +Source: rough order bump notes.
    +Outputs created: order bump name, checkout copy, microcopy, confirmation text, FAQ, claims-to-avoid list.
    +Claims made: the add-on gives extra proof-page templates and examples.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no forced continuity, no claim that the add-on is required.
    +Checkout boundary: add-on should be optional, clearly priced, not pre-checked, and easy to decline.
    +Review needed: human should confirm checkout platform settings, add-on files, price, tax settings, and final digital product terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Order bump name + Checkout copy + Microcopy + Confirmation text + FAQ + Claims to avoid + Proof note +
    +
    +

    Built for higher cart value

    Offer a useful add-on to people already buying.

    +

    No dark patterns

    The workflow avoids fake urgency, pre-checked boxes, and unclear continuity.

    +

    Lower support risk

    The FAQ explains what is included, whether it is required, and what the terms are.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste add-on notes. Get clear checkout copy and proof.
    + +
    + + + +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/partner-referral-kit/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/partner-referral-kit/index.html new file mode 100644 index 00000000..bb6089fa --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/partner-referral-kit/index.html @@ -0,0 +1,280 @@ + + + + + + Partner Referral Kit — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Partner Loop · Example 11
    +

    Turn partners into distribution.

    +

    This reusable AI workflow turns partner interest into a safe referral promo kit: one-liner, disclosure line, social post, email blurb, FAQ, claims-to-avoid list, tracking link placeholder, and proof note.

    + + + +
    +

    The simple idea

    +
    Make it easy for the right people to share the product clearly.
    +

    A partner kit lets creators, newsletter writers, consultants, and communities explain the product without making fake claims, hiding incentives, or creating refund confusion.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: messy partner sharing

    +

    A partner wants to share your kit, but they write their own hype, forget disclosure, overpromise results, or ask you to rewrite everything manually.

    +

    Result: trust risk, support burden, inconsistent messaging.

    +
    +
    +

    After: partner promo kit

    +

    You give them clean copy, a clear disclosure line, a claims-to-avoid list, FAQ, and tracking-link placeholder.

    +

    Result: scalable distribution with clearer boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, partner type, offer, tracking link, and terms.

    +
    2. Rules

    Tell the AI to disclose commissions, avoid fake testimonials, and avoid income or ROI claims.

    +
    3. Memory

    Save your core explanation: “Stop asking AI from scratch. Build one reusable AI workflow.”

    +
    4. Workflow

    The AI creates partner one-liner, disclosure, posts, email blurb, FAQ, claims-to-avoid list, and proof note.

    +
    5. Checks

    The AI checks whether the promo is clear, honest, disclosure-aware, and not overstated.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs human review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough partner notes:

    +
    Rough partner notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Potential partner: AI newsletter writer, creator, consultant, or community owner
    +Goal: give them a simple referral / affiliate promo kit they can use to explain the product clearly
    +Need:
    +- partner one-liner
    +- disclosure line
    +- short post
    +- email blurb
    +- FAQ
    +- claims to avoid
    +- tracking link placeholder
    +- proof note
    +Important:
    +- disclose if the partner earns commission or receives anything of value
    +- no fake testimonials
    +- no income guarantee
    +- no ROI guarantee
    +- no fake scarcity
    +- no hidden relationship
    +- do not imply the partner personally used the product unless they actually did
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Partner One-Liner:
    +GoalOS AI Efficiency Sprint Kit helps people stop asking AI from scratch by building one reusable AI workflow with context, rules, memory, workflow, checks, and proof.
    +
    +Required Disclosure Line:
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +Short Social Post:
    +Most people use AI like a chat box.
    +
    +They ask.
    +They edit.
    +They close the tab.
    +Then they ask the same kind of thing again next week.
    +
    +The better move:
    +build one reusable AI workflow.
    +
    +Context.
    +Rules.
    +Memory.
    +Workflow.
    +Checks.
    +Proof.
    +
    +GoalOS AI Efficiency Sprint Kit is a $49 digital kit designed to help you build one reusable workflow in under one hour.
    +
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +Email Blurb:
    +Subject: A simple kit for people repeating the same AI task
    +
    +If you use AI every week but keep starting from zero, this may help.
    +
    +GoalOS AI Efficiency Sprint Kit is a $49 digital kit that walks you through building one reusable AI workflow.
    +
    +Examples:
    +- customer replies
    +- meeting notes
    +- sales page sections
    +- email sequences
    +- support FAQ
    +
    +It is not a magic income system.
    +It is not legal, financial, or compliance advice.
    +It is a practical workflow kit.
    +
    +Disclosure: I may earn a commission if you buy through my link.
    +
    +FAQ For Partners:
    +
    +Q: Can I say this guarantees results?
    +A: No. Do not claim guaranteed income, guaranteed ROI, guaranteed savings, compliance, or perfect accuracy.
    +
    +Q: Can I say I used it?
    +A: Only if you actually used it.
    +
    +Q: Can I offer a refund?
    +A: Do not promise refunds. Use the published product terms: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +
    +Q: Can I use my own words?
    +A: Yes, but keep the claim boundary: reusable AI workflow, not guaranteed business results.
    +
    +Claims To Avoid:
    +- “This will make you money.”
    +- “Guaranteed ROI.”
    +- “Fully automated income.”
    +- “Legally compliant AI system.”
    +- “I used this and got results” unless true and permission-safe.
    +- “No refunds ever under any circumstances.”
    +
    +Tracking Link Placeholder:
    +Use your approved partner link here:
    +[PARTNER_LINK]
    +

    Proof note:

    +
    Proof note:
    +Source: rough partner / referral notes.
    +Outputs created: partner one-liner, disclosure line, social post, email blurb, FAQ, claims-to-avoid list, tracking link placeholder.
    +Claims made: the kit helps people build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake testimonial, no hidden incentive, no false use claim, no refund promise beyond published terms.
    +Disclosure boundary: partner must disclose commission or anything of value in a clear, hard-to-miss way near the recommendation.
    +Review needed: human should confirm partner terms, platform rules, tracking link, disclosure language, and final legal requirements before launch.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Partner one-liner + Disclosure line + Social post + Email blurb + Partner FAQ + Claims to avoid + Tracking link placeholder + Proof note +
    +
    +

    Built for distribution

    Give partners clear language they can use without needing custom help from you.

    +

    Disclosure-aware

    The workflow reminds partners to disclose commissions or anything of value.

    +

    Lower trust risk

    The claims-to-avoid list keeps the offer away from fake testimonials and income promises.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste partner notes. Get a referral promo kit and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, advertising, endorsement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Partners should disclose material connections and review platform/legal requirements before publishing. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/post-purchase-onboarding/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/post-purchase-onboarding/index.html new file mode 100644 index 00000000..5a9f4308 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/post-purchase-onboarding/index.html @@ -0,0 +1,282 @@ + + + + + + Post-Purchase Onboarding — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 6
    +

    Turn a purchase into activation.

    +

    This reusable AI workflow turns a digital-product purchase into clear delivery, simple onboarding, first-use guidance, support boundaries, an upsell, and a proof note.

    + + + +
    +

    The simple idea

    +
    The sale is not the finish line. The buyer still needs activation.
    +

    A low-support digital product needs clear delivery, clear first steps, clear terms, clear support boundaries, and a clean next offer.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: buyer confusion

    +

    The buyer pays, downloads files, and wonders: “Where do I start? What should I do first? Do I get support?”

    +

    Result: more support, more confusion, more preventable disputes.

    +
    +
    +

    After: automated activation

    +

    The buyer receives clear emails: download, start here, 60-minute plan, common mistake, Team Pack option, support boundary.

    +

    Result: lower friction after purchase.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the buyer purchased, price, delivery method, support level, and next offer.

    +
    2. Rules

    Tell the AI to be clear, friendly, honest, and not promise personal support or guaranteed results.

    +
    3. Memory

    Save your standard terms, support boundary, and “first 60 minutes” method.

    +
    4. Workflow

    The AI creates delivery, onboarding, first-use, mistake-prevention, upsell, and support-boundary emails.

    +
    5. Checks

    The AI checks for missing download instructions, unclear support promises, risky claims, and missing terms.

    +
    6. Proof

    The AI records what it created, what it claimed, what it avoided, and what still needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough post-purchase notes:

    +
    Rough post-purchase notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Buyer just paid and gets instant access
    +Goal: help them use the kit quickly without asking support questions
    +Need: thank-you email, download instructions, 60-minute plan, first task suggestion, no-refund reminder, support boundary, upsell to $199 Team Pack
    +Rules: be friendly, clear, not pushy, no income guarantees, no ROI guarantees, no fake urgency
    +Policy: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Email 1 — Instant delivery
    +Subject: Your GoalOS AI Efficiency Sprint Kit
    +
    +Thank you for your purchase.
    +
    +Your kit is ready.
    +
    +Start here:
    +1. Download the files.
    +2. Open START_HERE.pdf.
    +3. Pick one repeated AI task.
    +4. Follow the 60-minute sprint checklist.
    +
    +Best first tasks:
    +- answer customer questions
    +- summarize meeting notes
    +- write weekly updates
    +- create product content
    +- prepare a sales-page section
    +
    +Important:
    +This is a digital educational workflow product. Access is delivered instantly. All sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Email 2 — Your 60-minute plan
    +Subject: Do this first
    +
    +Here is the simplest way to use the kit today.
    +
    +Minute 0–10:
    +Pick one repeated AI task.
    +
    +Minute 10–20:
    +Fill the context template.
    +
    +Minute 20–30:
    +Fill the rules and memory templates.
    +
    +Minute 30–45:
    +Build the workflow steps.
    +
    +Minute 45–55:
    +Add checks.
    +
    +Minute 55–60:
    +Create the proof note.
    +
    +By the end, you should have one reusable AI workflow you can run again.
    +
    +Email 3 — Avoid the common mistake
    +Subject: Do not start with ten workflows
    +
    +The biggest mistake is trying to systematize everything at once.
    +
    +Start with one task.
    +
    +One customer reply.
    +One meeting summary.
    +One sales-page section.
    +One email sequence.
    +
    +The goal is not to organize your entire business today.
    +
    +The goal is to build one reusable workflow and understand the method.
    +
    +Email 4 — Team Pack upsell
    +Subject: Want to use this with your team?
    +
    +If you want to roll this out with a team, the Team Pack gives you:
    +
    +- team workshop agenda
    +- manager guide
    +- team workflow inventory
    +- role assignment sheet
    +- team proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +
    +Use the individual kit first.
    +Upgrade only if you want to run the sprint with other people.
    +
    +Email 5 — Support boundary
    +Subject: Quick support note
    +
    +To keep the kit simple and affordable, support is limited to access issues.
    +
    +We can help if:
    +- your download link does not work
    +- you were charged twice
    +- the file is missing or corrupted
    +
    +We cannot review every workflow personally at the $49 level.
    +
    +The kit is designed to be self-serve.
    +

    Proof note:

    +
    Proof note:
    +Source: rough post-purchase notes.
    +Outputs created: delivery email, 60-minute plan, mistake-prevention email, Team Pack upsell, support boundary email.
    +Claims made: the kit helps buyers build one reusable AI workflow.
    +Claims avoided: no income guarantee, no ROI guarantee, no done-for-you support promise, no legal/compliance claim.
    +Review needed: human should confirm download link, checkout platform settings, support inbox, final product contents, and applicable consumer rules before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Delivery email + 60-minute plan + Mistake-prevention email + Team Pack upsell + Support boundary + Terms reminder + Proof note +
    +
    +

    Built for automation

    Delivery and onboarding happen without manual hand-holding.

    +

    Lower support load

    The workflow explains where to start and what support is included.

    +

    Natural upsell

    The Team Pack appears as the next step only after the buyer understands the individual kit.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste purchase notes. Get delivery, onboarding, upsell, support boundary, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/proof-card-referral-loop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/proof-card-referral-loop/index.html new file mode 100644 index 00000000..18d669a5 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/proof-card-referral-loop/index.html @@ -0,0 +1,252 @@ + + + + + + Proof Card Referral Loop — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 9
    +

    Turn real usage into shareable proof.

    +

    This reusable AI workflow turns a real buyer usage note into a public-safe proof card, social post, referral ask, permission request, and proof note — without fake testimonials, private screenshots, or inflated claims.

    + + + +
    +

    The simple idea

    +
    Real usage can create demand — if you keep it public-safe.
    +

    The goal is not to invent testimonials. The goal is to turn real, permission-aware usage into simple proof people can understand and share.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: proof stays private

    +

    A buyer says the kit helped them build a workflow. The message stays in your inbox, or worse, gets turned into risky marketing without permission.

    +

    Result: missed demand or unnecessary trust risk.

    +
    +
    +

    After: public-safe proof loop

    +

    The workflow creates an anonymized proof card, social post, referral ask, permission request, and proof note.

    +

    Result: shareable demand without fake claims.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what the buyer used, what task they worked on, and what can or cannot be public.

    +
    2. Rules

    Tell the AI not to invent quotes, names, screenshots, results, income claims, or testimonials.

    +
    3. Memory

    Save your standard claim boundary and permission-request language.

    +
    4. Workflow

    The AI creates a proof card, social post, referral ask, permission request, and proof note.

    +
    5. Checks

    The AI checks that the output is anonymized, truthful, and not overstated.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what needs permission before publishing.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough proof-card notes:

    +
    Rough proof-card notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Buyer message summary: “I used the kit to turn my meeting notes task into a reusable workflow.”
    +Important: do not publish the buyer’s name, email, company, screenshot, or exact quote without permission.
    +Goal: create a public-safe proof card, social post, referral request, and proof note.
    +Rules:
    +- no fake testimonial
    +- no invented result
    +- no income claim
    +- no ROI claim
    +- no private buyer details
    +- ask permission before using any identifiable quote
    +- summarize the pattern safely if permission is not confirmed
    +Offer: If this helped, share the example or send the kit to one person who repeats the same AI task weekly.
    +Terms: digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +

    Reusable workflow output:

    +
    Public-Safe Proof Card:
    +Before:
    +Meeting notes were messy and hard to turn into action.
    +
    +Workflow built:
    +Meeting notes → decisions → owners → deadlines → follow-up email → proof note.
    +
    +Public-safe result:
    +One repeated meeting-notes task was turned into a reusable AI workflow.
    +
    +Claim boundary:
    +This does not claim guaranteed productivity, income, ROI, legal compliance, or universal results.
    +
    +Share Post:
    +Someone used the GoalOS AI Efficiency Sprint method to turn a repeated meeting-notes task into a reusable AI workflow.
    +
    +The pattern:
    +
    +messy notes
    +→ summary
    +→ decisions
    +→ owners
    +→ deadlines
    +→ follow-up email
    +→ proof note
    +
    +That is the point.
    +
    +Not “prompt harder.”
    +
    +Build a workflow you can run again.
    +
    +Referral Ask:
    +If this helped you, send the GoalOS AI Efficiency Sprint Kit to one person who keeps asking AI from scratch for the same task every week.
    +
    +Best fit:
    +- customer replies
    +- meeting notes
    +- weekly updates
    +- sales-page sections
    +- support FAQ
    +- email sequences
    +
    +Permission Request:
    +Hi,
    +
    +Glad the kit helped you build a reusable workflow.
    +
    +May we share a short, public-safe summary of your use case?
    +
    +We would not include your name, company, email, private files, screenshots, or exact words unless you explicitly approve them.
    +
    +Example summary:
    +“A buyer used the GoalOS sprint to turn meeting notes into a reusable action-plan workflow.”
    +
    +Thanks.
    +

    Proof note:

    +
    Proof note:
    +Source: summarized buyer usage message.
    +Outputs created: public-safe proof card, social post, referral ask, permission request.
    +Claims made: a buyer used the method to turn one repeated task into a reusable workflow.
    +Claims avoided: no fake testimonial, no invented quote, no income guarantee, no ROI claim, no private buyer details.
    +Permission boundary: do not use identifiable buyer details or exact quotes without explicit permission.
    +Review needed: human should confirm permission status before publishing any identifiable testimonial or quote.
    +Public-safe: yes, if anonymized and no private details are included.
    +
    + +
    +

    What the buyer gets

    +
    + Public-safe proof card + Social post + Referral ask + Permission request + Claim boundary + Proof note +
    +
    +

    Built for ethical virality

    Turn real usage into a shareable story without faking testimonials.

    +

    Permission-aware

    Ask before using names, quotes, companies, screenshots, or private details.

    +

    Demand loop

    Each real use case can become a proof card and referral ask.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste a real usage note. Get a public-safe proof card and referral loop.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Do not publish private buyer messages, names, emails, screenshots, testimonials, or exact quotes without appropriate permission. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html new file mode 100644 index 00000000..067b3009 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/rsi-lite-self-improving-workflows/index.html @@ -0,0 +1,41 @@ + + +Recursive Self-Improving Workflows · GoalOS + + + + + + +
    + +
    + + + + + +
    Recursive Self-Improving Workflows

    Run → Score → Diagnose → Improve → Version → Prove → Re-run.

    GoalOS RSI Lite is the practical, safe version of recursive self-improvement for business AI workflows.

    The AI model does not improve itself. Your workflow improves around the AI.

    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/support-faq-triage/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/support-faq-triage/index.html new file mode 100644 index 00000000..0531d7bb --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/support-faq-triage/index.html @@ -0,0 +1,260 @@ + + + + + + Support FAQ Triage — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · AI Efficiency Sprint · Example 7
    +

    Turn support questions into self-serve answers.

    +

    This reusable AI workflow turns repeated support questions into a help center FAQ, policy-aware canned replies, escalation rules, and a proof note — so a digital product can stay simple and low-management.

    + + + +
    +

    The simple idea

    +
    If the same question appears twice, turn it into a reusable answer.
    +

    A low-friction digital product needs clear support boundaries: help with access problems, duplicate charges, and broken files — without turning a $49 self-serve kit into unlimited consulting.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: manual support loop

    +

    Buyers ask the same questions. You answer from scratch. You repeat the refund policy. You explain where to start. You manually triage every issue.

    +

    Result: management burden, inconsistent replies, more friction.

    +
    +
    +

    After: support workflow

    +

    The workflow turns repeated questions into FAQ entries, canned replies, escalation rules, and proof notes.

    +

    Result: self-serve support with clear boundaries.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the product, price, support boundaries, common questions, and digital product terms.

    +
    2. Rules

    Tell the AI to be helpful but firm, never invent legal rules, and escalate duplicate charges or access failures.

    +
    3. Memory

    Save standard wording for “how to start,” “access issue,” “duplicate charge,” and “self-serve support.”

    +
    4. Workflow

    The AI creates triage rules, FAQ answers, canned replies, escalation rules, and proof note.

    +
    5. Checks

    The AI checks whether the reply is clear, respectful, policy-aware, and not overpromising support.

    +
    6. Proof

    The AI records what was answered, what was claimed, what was avoided, and what needs escalation.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough support notes:

    +
    Rough support notes:
    +Product: GoalOS AI Efficiency Sprint Kit
    +Price: $49
    +Support goal: low management, self-serve, clear boundaries
    +Common questions:
    +- Where is my download?
    +- What file do I open first?
    +- Can I get a refund?
    +- I was charged twice.
    +- The file will not open.
    +- Can you review my workflow?
    +- Do I need to be technical?
    +Policy:
    +Digital product, instant access, all sales final once delivered except where required by law or for duplicate charges / technical access failures.
    +Support included:
    +Access issues, duplicate charges, missing/corrupted files.
    +Support not included:
    +Personal workflow review, consulting, custom implementation, legal/financial/compliance advice.
    +Tone:
    +Helpful, calm, firm, clear, non-defensive.
    +

    Reusable workflow output:

    +
    Support Triage Rules:
    +1. If the buyer cannot access the download, ask for order email and resend access.
    +2. If the buyer was charged twice, escalate for billing review.
    +3. If the file is missing or corrupted, send a replacement link.
    +4. If the buyer asks how to start, send the 60-minute plan.
    +5. If the buyer asks for a refund, explain the digital product terms politely and check whether the case is a duplicate charge, technical access failure, or legal exception.
    +6. If the buyer asks for personal review, explain that the $49 kit is self-serve and suggest the Team Pack or workshop if available.
    +7. If the message contains legal, financial, medical, employment, security, or compliance questions, do not answer as advice. Tell them to consult a qualified professional.
    +
    +Help Center FAQ:
    +
    +Q: Where do I start?
    +A: Open START_HERE.pdf, then follow the 60-minute sprint checklist.
    +
    +Q: What is the first task I should choose?
    +A: Pick one task you repeat often: customer replies, meeting summaries, weekly updates, product content, sales-page sections, or support replies.
    +
    +Q: Can I get a refund?
    +A: This is a digital educational product with instant access. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures. If you believe one of those applies, reply with your order email and a short description of the issue.
    +
    +Q: I was charged twice. What should I do?
    +A: Reply with your order email and screenshots of both charges. We will review the duplicate charge.
    +
    +Q: My file will not open. What should I do?
    +A: Reply with your order email, device type, and the file name that is not opening. We will help with access or send a replacement file.
    +
    +Q: Can you review my workflow personally?
    +A: The $49 kit is self-serve and does not include personal workflow review. If you want team help, look for the Team Pack or workshop option.
    +
    +Canned Reply — Refund Request:
    +Hi,
    +
    +Thanks for reaching out.
    +
    +The GoalOS AI Efficiency Sprint Kit is a digital educational product with instant access. As stated before checkout, sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +If you are having an access issue, duplicate charge, missing file, or corrupted file, reply with your order email and a screenshot or short description, and we will review it.
    +
    +If you are asking for help using the kit, please start with START_HERE.pdf and the 60-minute sprint checklist.
    +
    +Thank you.
    +
    +Canned Reply — How To Start:
    +Hi,
    +
    +Start with START_HERE.pdf.
    +
    +Then follow this order:
    +
    +1. Pick one repeated AI task.
    +2. Fill the Context template.
    +3. Fill the Rules template.
    +4. Fill the Memory template.
    +5. Build the Workflow steps.
    +6. Add Checks.
    +7. Create the Proof note.
    +
    +Do not start with ten workflows. Start with one.
    +

    Proof note:

    +
    Proof note:
    +Source: rough support notes.
    +Outputs created: triage rules, help center FAQ, refund-request reply, how-to-start reply.
    +Claims made: support covers access issues, duplicate charges, missing/corrupted files; the kit is self-serve.
    +Claims avoided: no promise of personal consulting, no legal/compliance advice, no guarantee of results, no refusal of legally required remedies.
    +Escalation needed: duplicate charges, technical access failures, legal exceptions, threats, chargebacks, or regulated advice requests.
    +Review needed: human should confirm exact checkout terms, support email, legal requirements, and platform policies before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Triage rules + Help center FAQ + Refund-request reply + Access-issue reply + Support boundary + Escalation rules + Proof note +
    +
    +

    Built for low management

    Turn repeated support questions into self-serve answers.

    +

    Clear boundaries

    Support access problems without promising unlimited personal help.

    +

    Policy-aware

    Escalate duplicate charges, technical failures, legal exceptions, and regulated advice requests.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste support notes. Get FAQ, replies, escalation rules, and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, or regulatory advice. No income, savings, compliance, safety, accuracy, or business-results guarantee. Users are responsible for review and judgment before using outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-pack-upsell/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-pack-upsell/index.html new file mode 100644 index 00000000..6656333c --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-pack-upsell/index.html @@ -0,0 +1,288 @@ + + + + + + Team Pack Upsell — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Upgrade Loop · Example 15
    +

    Turn one buyer into a team rollout.

    +

    This reusable AI workflow turns an individual kit purchase into a clear Team Pack upgrade: upsell copy, best-fit guidance, decline copy, post-purchase email, FAQ, claims-to-avoid list, and proof note.

    + + + +
    +

    The simple idea

    +
    One buyer can become a team rollout.
    +

    The individual kit helps one person. The Team Pack helps that person bring the workflow method to coworkers, clients, students, or a small team.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: solo buyer only

    +

    Someone buys the $49 kit and likes the method, but there is no clear next step for using it with other people.

    +

    Result: lower lifetime value and missed team adoption.

    +
    +
    +

    After: optional Team Pack upgrade

    +

    The buyer sees a clear, optional Team Pack with workshop agenda, manager guide, role sheet, rollout checklist, and team templates.

    +

    Result: higher value without pressure.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the individual product, Team Pack product, prices, buyer situation, and contents.

    +
    2. Rules

    Tell the AI to avoid fake urgency, forced upgrades, income claims, ROI claims, and “required” language.

    +
    3. Memory

    Save your standard upgrade language: optional, self-serve, team materials, clear decline option.

    +
    4. Workflow

    The AI creates upsell copy, best-if / skip-if sections, buttons, email, FAQ, claims-to-avoid, and proof note.

    +
    5. Checks

    The AI checks whether the offer is optional, clearly priced, easy to decline, and not overpromising.

    +
    6. Proof

    The AI records what was claimed, what was avoided, and what must be reviewed before checkout.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough Team Pack upsell notes:

    +
    Rough Team Pack upsell notes:
    +Main product: GoalOS AI Efficiency Sprint Kit
    +Main price: $49
    +Upsell product: GoalOS AI Efficiency Sprint Team Pack
    +Upsell price: $199
    +Buyer situation: they bought or are buying the individual kit and may want to use the method with coworkers, clients, students, or a small team
    +Goal: create a clear Team Pack upgrade page / post-purchase upsell that is useful and not pushy
    +Team Pack includes:
    +- everything in the individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory sheet
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +Rules:
    +- no fake urgency
    +- no fake scarcity
    +- no income guarantee
    +- no ROI guarantee
    +- no claim that the Team Pack is required
    +- no forced continuity
    +- make it easy to decline
    +- clear digital product terms
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Team Pack Upsell Headline:
    +Want to run the sprint with a team?
    +
    +Subheadline:
    +The individual kit helps one person build one reusable AI workflow.
    +
    +The Team Pack helps a group run the same sprint together.
    +
    +Upgrade Copy:
    +If you want to use GoalOS with coworkers, clients, students, or a small team, the Team Pack gives you the extra materials to make the sprint easier to run with other people.
    +
    +You get:
    +- everything in the individual kit
    +- team workshop agenda
    +- manager facilitation guide
    +- team workflow inventory sheet
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +- team scoring rubric
    +
    +Best if:
    +- you want to run a team AI workflow session
    +- you manage a small team
    +- you teach or advise others
    +- you want shared templates instead of everyone working alone
    +
    +Skip if:
    +- you only want to build one personal workflow today
    +- you do not need team materials
    +- you are not ready to involve other people
    +
    +Button Copy:
    +Yes, upgrade to the Team Pack
    +
    +Decline Copy:
    +No thanks, continue with the individual kit.
    +
    +Post-Purchase Email:
    +Subject: Want to run this with a team?
    +
    +You now have the GoalOS AI Efficiency Sprint Kit.
    +
    +If you want to bring the method to a team, the Team Pack adds:
    +
    +- team workshop agenda
    +- manager guide
    +- team workflow inventory
    +- role assignment sheet
    +- proof-room-lite template
    +- rollout checklist
    +- internal adoption email templates
    +
    +Use the individual kit first if you are starting alone.
    +
    +Upgrade only if you want to run the sprint with other people.
    +
    +FAQ:
    +Q: Do I need the Team Pack to use the individual kit?
    +A: No. The individual kit is enough to build one reusable workflow.
    +
    +Q: Is the Team Pack a subscription?
    +A: No. It is a one-time digital team kit.
    +
    +Q: Does the Team Pack include live consulting?
    +A: No. It is a self-serve digital product.
    +
    +Q: Can I get a refund if I change my mind?
    +A: Digital products are delivered instantly. Sales are final once delivered, except where required by law or for duplicate charges / technical access failures.
    +
    +Claims To Avoid:
    +- “This will make your team more profitable.”
    +- “Guaranteed productivity.”
    +- “Guaranteed ROI.”
    +- “You need this to use GoalOS.”
    +- “Only available today” unless actually true and clearly explained.
    +- “No refunds ever under any circumstances.”
    +

    Proof note:

    +
    Proof note:
    +Source: rough Team Pack upsell notes.
    +Outputs created: upsell headline, upgrade copy, best-if / skip-if sections, button copy, decline copy, post-purchase email, FAQ, claims-to-avoid list.
    +Claims made: the Team Pack provides additional materials for running the sprint with a team.
    +Claims avoided: no income guarantee, no ROI guarantee, no fake urgency, no fake scarcity, no forced continuity, no claim that the Team Pack is required.
    +Checkout boundary: upgrade should be optional, clearly priced, not pre-selected, and easy to decline.
    +Review needed: human should confirm product contents, price, checkout flow, tax settings, and digital product terms before publishing.
    +Public-safe: yes.
    +
    + +
    +

    What the buyer gets

    +
    + Upsell headline + Upgrade copy + Best-if / skip-if + Button copy + Decline copy + Post-purchase email + FAQ + Proof note +
    +
    +

    Built for LTV

    Give individual buyers a clear team-level next step.

    +

    No pressure

    The workflow makes the upgrade optional, clearly priced, and easy to decline.

    +

    Team adoption

    The Team Pack moves from one person using AI better to a group running the same method.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste Team Pack notes. Get optional upgrade copy and proof.
    + +
    + + + +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-sprint-facilitator/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-sprint-facilitator/index.html new file mode 100644 index 00000000..ef0ddab4 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/team-sprint-facilitator/index.html @@ -0,0 +1,294 @@ + + + + + + Team Sprint Facilitator — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Team Sprint · Example 17
    +

    Turn a team meeting into a workflow.

    +

    This reusable AI workflow turns a Team Pack purchase into a self-run 60-minute team sprint: facilitator agenda, role assignments, room rules, workflow draft, checks, follow-up email, and proof note.

    + + + +
    +

    The simple idea

    +
    A team does not need another AI lecture. It needs one reusable workflow.
    +

    The Team Pack becomes much easier to understand when people see the exact 60-minute session it helps them run.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: team AI chaos

    +

    Everyone uses AI differently. Repeated tasks are handled from scratch. Nobody knows what context, rules, checks, or proof should be used.

    +

    Result: inconsistent AI work and no reusable team process.

    +
    +
    +

    After: one team workflow

    +

    The team picks one repeated task and leaves with a shared workflow, role assignments, checks, and proof note.

    +

    Result: one reusable team asset without live consulting.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI the team size, task, session goal, and desired output.

    +
    2. Rules

    Tell the AI not to promise ROI, productivity, compliance, or final AI output without review.

    +
    3. Memory

    Save the standard sprint structure: task, context, rules, workflow, checks, proof.

    +
    4. Workflow

    The AI creates the agenda, roles, script, workflow draft, checks, follow-up email, and proof note.

    +
    5. Checks

    The AI checks whether the session is clear, time-boxed, non-technical, and realistic.

    +
    6. Proof

    The AI records what was created, what was claimed, what was avoided, and what needs review.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough team sprint notes:

    +
    Rough team sprint notes:
    +Product: GoalOS AI Efficiency Sprint Team Pack
    +Goal: help a team run a self-serve 60-minute session without live consulting
    +Team size: 3 to 6 people
    +First task: weekly client status update
    +Need output:
    +- facilitator agenda
    +- role assignments
    +- room rules
    +- 60-minute script
    +- reusable workflow draft
    +- checks list
    +- follow-up email
    +- proof note
    +Rules:
    +- no guaranteed productivity
    +- no guaranteed ROI
    +- no legal/compliance claim
    +- no promise that AI output can be used without review
    +- keep it simple for non-technical teams
    +Digital product terms:
    +instant access; all sales final once delivered except where required by law or for duplicate charges / technical access failures
    +

    Reusable workflow output:

    +
    Team Sprint Agenda:
    +Goal:
    +Turn one repeated team task into one reusable AI workflow.
    +
    +Task selected:
    +Weekly client status update.
    +
    +Roles:
    +1. Facilitator — keeps the session moving.
    +2. Task Owner — explains how the task is done today.
    +3. Context Keeper — captures reusable context.
    +4. Rules Keeper — captures must-do / never-do rules.
    +5. Checker — defines what must be reviewed before use.
    +6. Proof Keeper — writes the proof note.
    +
    +60-Minute Sprint Script:
    +Minute 0–5:
    +Pick the repeated task and agree on the output.
    +
    +Minute 5–15:
    +Describe the current messy process.
    +
    +Minute 15–25:
    +Write the context the AI needs every time.
    +
    +Minute 25–35:
    +Write the rules:
    +- what the AI must always do
    +- what the AI must never do
    +- what must be reviewed by a human
    +
    +Minute 35–45:
    +Build the workflow steps.
    +
    +Minute 45–55:
    +Add checks.
    +
    +Minute 55–60:
    +Create the proof note and choose the next owner.
    +
    +Room Rules:
    +- Start with one task only.
    +- Do not solve every workflow today.
    +- Do not use private client data in public examples.
    +- Do not treat AI output as final without review.
    +- Record what was claimed and what was not claimed.
    +
    +Reusable Workflow Draft:
    +Workflow name:
    +Weekly Client Status Update
    +
    +Input:
    +meeting notes, current project status, blockers, next actions
    +
    +Steps:
    +1. Summarize the week.
    +2. List completed work.
    +3. List blockers.
    +4. List next actions.
    +5. Draft the client update.
    +6. Mark uncertain items for human review.
    +7. Create proof note.
    +
    +Checks:
    +- Are client names correct?
    +- Are deadlines confirmed?
    +- Are claims supported?
    +- Are uncertain items marked?
    +- Is private information removed if shared publicly?
    +
    +Follow-up Email:
    +Subject: Team sprint output — weekly client status workflow
    +
    +Thanks for joining the GoalOS team sprint.
    +
    +We built one reusable workflow:
    +Weekly Client Status Update
    +
    +Next owner:
    +Task Owner
    +
    +Before using it:
    +- test it on one internal example
    +- check names and dates
    +- review uncertain items
    +- keep private client details out of public examples
    +
    +Next step:
    +Run the workflow once this week and record what worked.
    +

    Proof note:

    +
    Proof note:
    +Source: rough team sprint notes.
    +Outputs created: facilitator agenda, role assignments, room rules, 60-minute script, reusable workflow draft, checks list, follow-up email.
    +Claims made: the Team Pack can help a team run a self-serve sprint to build one reusable AI workflow.
    +Claims avoided: no guaranteed productivity, no guaranteed ROI, no compliance claim, no claim that AI output is final without review.
    +Review needed: team should confirm roles, task scope, privacy boundaries, and internal policies before using outputs.
    +Public-safe: yes, if client/private details are removed.
    +
    + +
    +

    What the buyer gets

    +
    + Facilitator agenda + Role assignments + Room rules + 60-minute script + Workflow draft + Checks list + Follow-up email + Proof note +
    +
    +

    Built for self-serve teams

    The Team Pack becomes easier to use without live facilitation.

    +

    Non-technical

    The team only needs to pick one repeated task and follow the agenda.

    +

    Proof-ready

    The output includes checks and a proof note, not just a brainstorm.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste team sprint notes. Get a 60-minute team workflow session and proof.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, procurement, security, or regulatory advice. No income, savings, compliance, safety, accuracy, productivity, or business-results guarantee. Review internal policies and private data boundaries before using team outputs. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workflow/weekly-growth-review/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/weekly-growth-review/index.html new file mode 100644 index 00000000..c48b2901 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workflow/weekly-growth-review/index.html @@ -0,0 +1,251 @@ + + + + + + Weekly Growth Review — GoalOS Workflow Example + + + + + + + + + + + + +
    + +
    + + + + + + + + +
    +
    GoalOS · Weekly Growth Review · Example 12
    +

    Turn weekly numbers into next actions.

    +

    This reusable AI workflow turns simple weekly numbers into a growth summary, bottleneck, next experiment, content idea, product fix, support fix, and proof note.

    + + + +
    +

    The simple idea

    +
    Do not guess what to fix. Pick one next experiment from the numbers.
    +

    An autonomous money machine needs a weekly review loop: look at traffic, leads, sales, support, and objections, then choose one small improvement.

    +
    + +
    +

    Before vs. after

    +
    +
    +

    Before: random optimization

    +

    You look at sales, get nervous, rewrite everything, post randomly, and chase ten ideas at once.

    +

    Result: noise, overreaction, no clean learning.

    +
    +
    +

    After: weekly growth workflow

    +

    You paste a few numbers into the same workflow. It identifies the bottleneck and chooses one experiment for next week.

    +

    Result: calmer iteration and cleaner proof.

    +
    +
    +
    + +
    +

    The workflow in plain English

    +
    +
    1. Context

    Tell the AI what product you sell and what numbers you track: visits, leads, shop visits, checkout starts, purchases, objections, and support questions.

    +
    2. Rules

    Tell the AI not to promise revenue, not to infer causation from weak data, and not to recommend ten changes at once.

    +
    3. Memory

    Save your funnel: homepage → workflow example → shop → checkout → delivery → onboarding → support.

    +
    4. Workflow

    The AI summarizes the week, finds the bottleneck, chooses one experiment, drafts one content idea, suggests one product fix, and writes a proof note.

    +
    5. Checks

    The AI checks that the experiment is small, measurable, safe, and not based on exaggerated claims.

    +
    6. Proof

    The AI records what was observed, what was decided, what was not claimed, and what to review next week.

    +
    +
    + +
    +

    Copy-paste example

    +

    Rough weekly numbers:

    +
    Rough weekly numbers:
    +Website visits: 1,200
    +Workflow example page visits: 430
    +Shop visits: 95
    +Checkout starts: 18
    +Purchases: 4
    +Email subscribers: 62
    +Top support question: “Where do I start?”
    +Top objection: “Is this just templates?”
    +Most visited example: Meeting notes → action plan
    +Goal: choose one improvement for next week
    +Important:
    +- no guaranteed revenue claim
    +- no fake urgency
    +- no fake testimonials
    +- no pretending the data proves causation
    +- do not overreact to one week of small numbers
    +- create one practical experiment, one content idea, one product fix, and a proof note
    +

    Reusable workflow output:

    +
    Weekly Growth Summary:
    +The site generated interest, but the main drop-off appears between example-page visits and shop visits.
    +
    +Observed numbers:
    +- 1,200 website visits
    +- 430 workflow example visits
    +- 95 shop visits
    +- 18 checkout starts
    +- 4 purchases
    +- 62 email subscribers
    +
    +Main bottleneck:
    +People are engaging with examples, but not enough visitors are moving from examples to the shop.
    +
    +Likely friction:
    +1. The product value may still feel abstract.
    +2. The “where do I start?” question appears after purchase and before purchase.
    +3. The “is this just templates?” objection remains important.
    +
    +Next Best Experiment:
    +Add a stronger call-to-action under the Meeting Notes example:
    +
    +“Want this workflow as a fill-in-the-blank kit? Get the GoalOS AI Efficiency Sprint Kit.”
    +
    +Experiment Goal:
    +Increase clicks from example pages to the shop.
    +
    +Do not claim:
    +This will increase sales.
    +This will improve conversion.
    +This proves the funnel works.
    +
    +Content Idea:
    +Post:
    +“The most visited GoalOS example this week was meeting notes → action plan.
    +That tells us something simple:
    +people do not want abstract AI.
    +They want their messy work turned into clear next steps.”
    +
    +Product Fix:
    +Add a “Where do I start?” mini-card to the Start Here page and the product page.
    +
    +Support Fix:
    +Create one FAQ entry:
    +“Which workflow should I build first?”
    +
    +Proof Note:
    +This week’s review used aggregate site and shop numbers.
    +The chosen experiment is based on observed drop-off and repeated questions.
    +No revenue increase is promised.
    +No causal claim is made.
    +Next review should compare example-to-shop clicks before and after the CTA change.
    +

    Proof note:

    +
    Proof note:
    +Source: rough weekly metrics and support-objection notes.
    +Outputs created: weekly summary, bottleneck, next experiment, content idea, product fix, support fix, proof note.
    +Claims made: the review identified an observed drop-off and selected one experiment for next week.
    +Claims avoided: no guaranteed sales increase, no revenue guarantee, no ROI claim, no causation claim from small data, no fake testimonial.
    +Review needed: human should confirm numbers, tracking links, checkout data, and final experiment before publishing or acting.
    +Public-safe: yes if aggregate numbers are used and no private customer data is included.
    +
    + +
    +

    What the buyer gets

    +
    + Weekly summary + Bottleneck + One experiment + Content idea + Product fix + Support fix + Proof note +
    +
    +

    Built for calm iteration

    Pick one next move instead of changing everything at once.

    +

    Lower-risk growth

    The workflow avoids guaranteed revenue claims and weak-data overconfidence.

    +

    Compounding system

    Every week creates one experiment, one learning, and one proof note.

    +
    +
    + +
    +

    Digital product terms

    +

    Suggested low-friction wording: digital product, instant access, all sales final once delivered, except where required by law or for duplicate charges / technical access failures.

    +
    + +
    +

    The one-sentence promise

    +
    Paste weekly numbers. Get one next experiment and proof note.
    + +
    + +
    + Educational workflow example only. Not legal, financial, medical, tax, employment, security, investment, or regulatory advice. No income, revenue, ROI, savings, compliance, safety, accuracy, or business-results guarantee. Review your own numbers and use judgment before acting. +
    +
    + + + + + + + + + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html new file mode 100644 index 00000000..46c469f0 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-proof-room-implementation-sprint/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS Proof Room Implementation Sprint + + + + + + + + + +
    + +
    + + +
    +
    Department RSI

    Department RSI in 30 days.

    Deploy Recursive Self-Improving Workflows in one department.

    +
    + + + + + \ No newline at end of file diff --git a/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html b/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html new file mode 100644 index 00000000..278d2b73 --- /dev/null +++ b/site/_archive/before_unified_shell_v2_2026-06-07/workshop/goalos-rsi-sprint-workshop/index.html @@ -0,0 +1,46 @@ + + + + + + GoalOS RSI Sprint Workshop + + + + + + + + + +
    + +
    + + +
    +
    GoalOS RSI Sprint Workshop

    Build your first self-improving AI workflow live.

    In one live session, build workflow v1.0, run it, score it, diagnose what failed, improve it to v1.1, save a proof note, and leave with a 30-day next-run plan.

    +
    + + + + + \ No newline at end of file diff --git a/site/ai-efficiency-score/index.html b/site/ai-efficiency-score/index.html index f1ecc423..00e874ed 100644 --- a/site/ai-efficiency-score/index.html +++ b/site/ai-efficiency-score/index.html @@ -5,12 +5,12 @@ AI Efficiency Score - - - + + +
    - - - - - - - - - - -
    @@ -51,17 +40,6 @@
    -
    -

    Commit → Execute → Prove → Evolve

    -

    No proof, no evolution. No eval, no propagation. No rollback, no release.

    -
    - - - - - - -
    + diff --git a/site/app/goalos-cloud-mvp/README.md b/site/app/goalos-cloud-mvp/README.md index 28304094..d99b5230 100644 --- a/site/app/goalos-cloud-mvp/README.md +++ b/site/app/goalos-cloud-mvp/README.md @@ -1,43 +1,53 @@ # GoalOS Cloud MVP 0.2 -This is the stronger public software proof for GoalOS Recursive Workflow OS. +GoalOS Cloud MVP 0.2 is a public static software proof for the GoalOS Recursive Workflow OS. It demonstrates: `Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run` +## Runtime boundary + +- Runs fully in the browser. +- Uses browser `localStorage` for demo persistence. +- Requires no secrets and no backend. +- Does not include paid buyer ZIPs, paid workshop materials, implementation bundles, or enterprise delivery kits. +- Does not modify AI models; recursive improvement happens at the workflow layer. + ## Included modules -- Governance / organization / roles +- Organization, workspace, and user roles - Policy engine - Controlled memory -- Model gateway restrictions +- Model-provider restrictions - Workflow Studio -- Execution Engine -- Evaluation Engine -- Proof Room +- Workflow versioning +- Execution Engine demo +- Evaluation Engine demo +- Proof Room records - Recursive Improvement Engine +- Improvement Proposal - Human approval gate -- Versioning and rollback +- Version comparison +- Rollback target - Proof Graph export - Public-safe proof card export -- Executive report export +- Executive proof report export - Audit log -- Browser-local persistence +- OpenAPI blueprint +- JSON schemas - Node unit tests -## Safe boundary - -GoalOS does not modify AI models. +## Demo workflow -It improves workflows around AI through instructions, checks, scorecards, proof records, versions, approvals, monitoring, and rollback. +**Customer Support Reply Workflow** -## What this is +v1.0 intentionally misses refund/access policy classification. The MVP runs support cases, evaluates outputs, creates proof records, detects the refund-policy failure, generates a v1.1 improvement proposal, 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. -A static public MVP hosted on GitHub Pages. It proves the software loop and gives a production-grade skeleton for future backend/SaaS work. +## Test -## What this is not +```bash +node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs +``` -It is not the full enterprise SaaS backend yet. -It does not upload paid buyer ZIPs. -It does not include private delivery materials. +The test asserts that v1.0 exposes the 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. diff --git a/site/app/goalos-cloud-mvp/index.html b/site/app/goalos-cloud-mvp/index.html index 04d0f6f4..07f58424 100644 --- a/site/app/goalos-cloud-mvp/index.html +++ b/site/app/goalos-cloud-mvp/index.html @@ -1,6 +1,7 @@ -GoalOS Cloud MVP 0.2 — Enterprise Recursive Workflow OS +GoalOS Cloud MVP 0.2 — Enterprise Recursive Workflow OS +