Skip to content

Unify GoalOS public site shell, add GoalOS Cloud MVP 0.2, and CI validation & paid-artifact guard#8

Open
MontrealAI wants to merge 3 commits into
mainfrom
codex/unify-goalos-public-site-and-add-cloud-mvp-0.2-np6own
Open

Unify GoalOS public site shell, add GoalOS Cloud MVP 0.2, and CI validation & paid-artifact guard#8
MontrealAI wants to merge 3 commits into
mainfrom
codex/unify-goalos-public-site-and-add-cloud-mvp-0.2-np6own

Conversation

@MontrealAI

Copy link
Copy Markdown
Owner

Motivation

  • Eliminate stacked/duplicated site shells and produce a single, reviewable public site shell and footer so the GitHub Pages site renders as one canonical GoalOS · Proof Gradient experience.
  • Expose a static, no-secrets browser software proof (GoalOS Cloud MVP 0.2) that demonstrates the core Run → Score → Prove → Diagnose → Improve → Approve → Version → Monitor → Re-run loop.
  • Add automated guards and CI workflows to prevent paid/private delivery artifacts from appearing on the public site and to validate the canonical shell before any Pages deployment.

Description

  • Canonical site shell: added site/assets/goalos-site-v2.css and site/assets/goalos-site-v2.js and unified public HTML under site/ to use GOALOS-CANONICAL-SHELL and GOALOS-CANONICAL-FOOTER markers while backing up originals to site/_archive/before_unified_shell_v2_<YYYY-MM-DD>/.
  • Cloud MVP: added and verified site/app/goalos-cloud-mvp/ including index.html, assets/enterprise-core.mjs, assets/app.js, assets/styles.css, schemas/*.schema.json, openapi.json, site-manifest.json, README.md, docs and Node unit tests under site/app/goalos-cloud-mvp/tests/.
  • Validation and paid-artifact guard: added scripts/validate_goalos_site_v2.py to enforce single canonical nav/footer, link checks and scripts/check_no_paid_artifacts.py to block suspicious paid/private filename patterns (with controlled whitelist for public standards).
  • CI/workflows and docs: added or updated workflows (repair-goalos-canonical-shell-v2.yml, build-goalos-cloud-mvp-v0-2.yml, refresh-complete-goalos-public-site.yml), updated README.md and commercialization/docs under docs/ (including GOALOS_REPO_AUDIT.md, GOALOS_CLOUD_MVP_0_2.md, GOALOS_PUBLIC_SITE_REPAIR.md, and commercialization status), and preserved all AEP standard pages under site/standards/AEP-001...AEP-008.

Testing

  • Ran the Cloud MVP unit test with node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs and it passed (confirmed prints: "GoalOS Cloud MVP v0.2 tests passed").
  • Ran static-site validation and paid-artifact guard with python scripts/validate_goalos_site_v2.py and python scripts/check_no_paid_artifacts.py and both checks passed against the public site/ (pre-repair pages were archived).
  • Project test suites pytest and make test were executed and passed (repository tests passed with reported counts and minor warnings); these runs and the MVP node test are exercised in the added workflows before deploy.

Known limitations: no browser screenshots were produced in this environment due to a missing headless Chromium binary, and a small set of archived pre-repair pages are retained under site/_archive/ for audit and review.


Codex Task

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 2765f9e995

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +16 to +17
<header class="goalos-shell">
<nav class="goalos-nav" aria-label="GoalOS canonical navigation">

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove the leftover second nav on the governance proof page

When viewing rsi-ai-first-governance-capital-engine-proof.html, this newly inserted canonical shell is followed immediately by the original sticky <nav> that was left in place on line 34. The other pages updated in this commit replace the old nav, but this page now renders two stacked navigation bars at the top, which breaks the intended single public shell and creates duplicate/conflicting navigation for users.

Useful? React with 👍 / 👎.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: bc44c7647b

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +25 to +27
"*MASTER_PACK*",
"*COMMERCIALIZATION_READY*",
"*QUICK_LAUNCH*",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Make paid-artifact pattern matching case-insensitive

In the Linux CI/deploy environments this guard runs in, fnmatch.fnmatch() is case-sensitive, so the newly banned artifact classes only match uppercase filenames. A file such as site/products/goalos_master_pack.pdf or site/products/goalos_quick_launch.pdf would bypass the guard even though this commit's policy says master packs and quick-launch packs must not be published; normalize name/full and the patterns to one case before matching.

Useful? React with 👍 / 👎.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: fbc20e8274

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

</head>
<body>
<a class="skip-link" href="#main">Skip to content</a>
<!-- GOALOS-CANONICAL-SHELL:START -->

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add the missing canonical footer before enabling validation

On this page the newly inserted canonical shell is not paired with any GOALOS-CANONICAL-FOOTER:START marker before </body>, so the newly added python scripts/validate_goalos_site_v2.py step fails immediately on the current checkout with site/autonomous-market-readiness.html: expected exactly one canonical footer marker, found 0. Because that step now runs in .github/workflows/tests.yml and the Pages deploy workflow, this blocks CI/deploys until the footer is added or the page is excluded.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant