-
Notifications
You must be signed in to change notification settings - Fork 0
GoalOS v10: public site, docs, assets, QUEBEC.AI seal, and validation release #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
MontrealAI
wants to merge
1
commit into
main
Choose a base branch
from
codex/create-public-site-and-documentation-release
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # GoalOS workflow map | ||
|
|
||
| Current public-site path: **GoalOS Public Site Release v10** (`goalos-public-site-release-v10.yml`) and **Validate GoalOS Public Site v10** (`validate-goalos-public-site-v10.yml`). | ||
|
|
||
| Legacy v3/v4/v5/v6/v8 public-site workflows remain in the repository only as historical release artifacts and should not be treated as the default path for GoalOS / Proof Gradient / QUEBEC.AI ⚜️✨. Use v10 for current GitHub Pages release, catalog validation, QUEBEC.AI seal/icon generation, paid-artifact guard, Cloud MVP tests, and docs/tables/figures validation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Check No Paid Artifacts | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| paths: | ||
| - 'site/**' | ||
| - 'public/**' | ||
| - 'scripts/check_no_paid_artifacts.py' | ||
| - '.github/workflows/check-no-paid-artifacts.yml' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| guard: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - run: python scripts/check_no_paid_artifacts.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| name: GoalOS Public Site Release v10 | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| allow_public_page_archiving: | ||
| description: 'Allow v10 generator to archive superseded generated HTML pages under site/_archive/' | ||
| required: true | ||
| default: 'true' | ||
| type: choice | ||
| options: ['true', 'false'] | ||
|
|
||
| permissions: | ||
| contents: write | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| concurrency: | ||
| group: goalos-public-site-release-v10 | ||
| cancel-in-progress: false | ||
|
|
||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| - name: Install validation dependencies | ||
| run: python -m pip install pyyaml pytest httpx2 | ||
| - name: Detect public root | ||
| run: | | ||
| if [ -d site ]; then echo "PUBLIC_ROOT=site" >> "$GITHUB_ENV"; elif [ -d public ]; then echo "PUBLIC_ROOT=public" >> "$GITHUB_ENV"; else echo "No site/ or public/ root" >&2; exit 1; fi | ||
| - name: Refuse unexpected deletions unless archiving is explicitly enabled | ||
| if: ${{ inputs.allow_public_page_archiving != 'true' }} | ||
| run: | | ||
| echo "v10 release archives superseded generated HTML pages under site/_archive/. Set allow_public_page_archiving=true to proceed." >&2 | ||
| exit 1 | ||
| - name: Generate v10 site, docs, figures, tables, icons, manifest, and assets | ||
| run: python scripts/generate_goalos_public_site_v10.py | ||
| - name: Validate QUEBEC.AI Seal and icons | ||
| run: | | ||
| test -s assets/quebecaisealv5.png | ||
| test -s site/assets/quebecaisealv5.png | ||
| test -s site/favicon.png | ||
| test -s site/assets/apple-touch-icon.png | ||
| test -s site/assets/icon-192.png | ||
| test -s site/assets/icon-512.png | ||
| test -s site/site.webmanifest | ||
| - name: Validate catalog, shell, internal links, and public pages | ||
| run: python scripts/validate_goalos_catalog.py | ||
| - name: Run paid-artifact guard | ||
| run: python scripts/check_no_paid_artifacts.py | ||
| - name: Run Cloud MVP Node test when present | ||
| run: node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs | ||
| - name: Run docs/tables/figures validation | ||
| run: python scripts/validate_docs_tables_figures.py | ||
| - name: Run pytest | ||
| run: pytest | ||
| - name: Commit generated release changes | ||
| run: | | ||
| if git diff --quiet; then | ||
| echo "No generated changes to commit." | ||
| else | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| git add README.md data docs site scripts .github/workflows | ||
| git commit -m "Release GoalOS public site v10" | ||
| fi | ||
| - uses: actions/configure-pages@v5 | ||
| - uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: site | ||
| - id: deployment | ||
| uses: actions/deploy-pages@v4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: Validate GoalOS Docs, Tables, and Figures | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| paths: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'scripts/validate_docs_tables_figures.py' | ||
| - '.github/workflows/validate-docs-tables-figures.yml' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| validate-docs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - run: python -m pip install pyyaml | ||
| - run: python scripts/validate_docs_tables_figures.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| name: Validate GoalOS Public Site v10 | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| paths: | ||
| - 'site/**' | ||
| - 'public/**' | ||
| - 'assets/**' | ||
| - 'docs/**' | ||
| - 'scripts/**' | ||
| - '.github/workflows/**' | ||
| - 'README.md' | ||
| - 'data/goalos_products.json' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| validate: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| - name: Install Python validation dependencies | ||
| run: python -m pip install pyyaml pytest httpx2 | ||
| - name: Validate catalog and public site shell | ||
| run: python scripts/validate_goalos_catalog.py | ||
| - name: Check paid/private artifacts | ||
| run: python scripts/check_no_paid_artifacts.py | ||
| - name: Validate docs, tables, and figures | ||
| run: python scripts/validate_docs_tables_figures.py | ||
| - name: Run Cloud MVP enterprise core test when present | ||
| run: | | ||
| if [ -f site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs ]; then | ||
| node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs | ||
| else | ||
| echo "Cloud MVP enterprise core test not present; see docs/GOALOS_CLOUD_MVP_0_2.md" | ||
| exit 1 | ||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,15 @@ | ||
| # Contributing | ||
|
|
||
| Thank you for improving Agent SkillOS. | ||
| Use GoalOS Public Site Release v10 as the current path. | ||
|
|
||
| ## Local setup | ||
| Before opening a PR: | ||
|
|
||
| ```bash | ||
| python -m skillos.cli demo | ||
| python -m unittest discover -s tests | ||
| python scripts/validate_goalos_catalog.py | ||
| python scripts/check_no_paid_artifacts.py | ||
| python scripts/validate_docs_tables_figures.py | ||
| node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs | ||
| pytest | ||
| ``` | ||
|
|
||
| ## Development principles | ||
|
|
||
| 1. Keep the core loop easy to understand. | ||
| 2. Prefer small, inspectable skill artifacts over opaque behavior. | ||
| 3. Every new skill update path needs tests. | ||
| 4. Every release path needs rollback. | ||
| 5. Do not mix private knowledge with shared skill. | ||
|
|
||
| ## Pull request checklist | ||
|
|
||
| - [ ] Tests pass. | ||
| - [ ] New behavior is documented. | ||
| - [ ] New skill behavior is versioned. | ||
| - [ ] Permission changes are explicit. | ||
| - [ ] No local `.skillos` data is committed. | ||
| Public copy must keep QUEBEC.AI ⚜️✨ together, use the official seal from `assets/quebecaisealv5.png`, point all buy/apply CTAs to `https://www.quebecartificialintelligence.com/shop`, and preserve the safe boundary that GoalOS does not modify base AI models. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,54 +1,11 @@ | ||
| # QA verification | ||
| # QA Verification — GoalOS v10 | ||
|
|
||
| This package was verified locally before delivery. | ||
| Required checks: | ||
|
|
||
| Commands run: | ||
| - `python scripts/validate_goalos_catalog.py` | ||
| - `python scripts/check_no_paid_artifacts.py` | ||
| - `python scripts/validate_docs_tables_figures.py` | ||
| - `node site/app/goalos-cloud-mvp/tests/enterprise-core.test.mjs` | ||
| - `pytest` | ||
|
|
||
| ```bash | ||
| PYTHONDONTWRITEBYTECODE=1 python scripts/qa_check.py | ||
| python -m skillos.cli wealth-proof | ||
| node --check site/app.js | ||
| ``` | ||
|
|
||
| Expected result: | ||
|
|
||
| ```text | ||
| ✅ Repository file verification passed | ||
| Ran 6 tests ... OK | ||
| ✅ Agent SkillOS verification passed | ||
| ✅ Verified GitHub Pages output at dist | ||
| ✅ Repository QA passed | ||
| ``` | ||
|
|
||
| What is checked: | ||
|
|
||
| - End-to-end SkillOS loop: Work → Trace → Learn → Skill → Test → Release. | ||
| - SQLite storage initialization. | ||
| - GitHub Pages demo snapshot generation. | ||
| - reference workflow proof generation at `data/wealth_proof.json` and `dist/data/wealth_proof.json`. | ||
| - Monotonic economic checks: every release decreases cost, decreases minutes, increases quality, and increases accepted rate. | ||
| - `dist/index.html`, `dist/styles.css`, `dist/app.js`, `dist/data/demo.json`, `dist/data/wealth_proof.json`, `.nojekyll`, and manifest creation. | ||
| - Repository targets `MontrealAI/proof-gradient` and `https://montrealai.github.io/proof-gradient/`. | ||
| - JavaScript syntax for the static website. | ||
| - Root-level fallback website mirror is included for branch-root GitHub Pages deployment. | ||
|
|
||
| GitHub Actions re-runs the same QA path during deployment. | ||
|
|
||
| ## v3.0 reference workflow proof | ||
|
|
||
| This repository includes `scripts/prove_wealth_loop.py`, `skillos/wealth_proof.py`, `tests/test_wealth_proof.py`, and `data/wealth_proof.json`. | ||
|
|
||
| The proof uses the sales follow-up workflow to verify that each completed job creates a tested release and that the workflow gets cheaper, faster, and better after every release. | ||
|
|
||
| Current proof result: | ||
|
|
||
| ```text | ||
| Workflow: Sales follow-up email from call notes | ||
| Final skill version: v6 | ||
| Quality: 0.50 → 0.96 | ||
| Minutes/job: 6.75 → 2.55 | ||
| Cost/job: $8.48 → $3.23 | ||
| projected annual savings under demo assumptions vs human baseline at 10,000 jobs: $117,700 | ||
| ``` | ||
|
|
||
| The GitHub Pages deploy refuses to publish if the reference workflow proof fails. | ||
| Current release notes and skipped tooling are documented in `docs/GOALOS_PUBLIC_SITE_RELEASE_V10.md` and `docs/GOALOS_REPO_AUDIT.md`. |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This install step runs before any validation, and
httpx2is not a resolvable PyPI distribution (pip index versions httpx2reports no matching distribution), so every pull request that triggers this new workflow fails before reaching the catalog/site checks. The release workflow has the same dependency line at.github/workflows/goalos-public-site-release-v10.yml:39, so both workflows need the dependency corrected or removed.Useful? React with 👍 / 👎.