Add workflow chart to the narrative site#12
Open
mdenolle wants to merge 1 commit into
Open
Conversation
Publish the codameter workflow chart (pipeline + agent steps + evaluation breakdown) as a standalone page on the Quarto site and link it from the navbar. - quarto/workflow.html: self-contained page (own design, back-to-site bar), kept as raw HTML so its CSS does not fight the theme. - quarto/_quarto.yml: register it as a project resource and add a top-level "Workflow" navbar item (href: workflow.html). - quarto/_site: re-rendered (freeze restored, no re-execution) so every page carries the new navbar link and _site/workflow.html ships. The deploy workflow publishes quarto/_site to gh-pages, so this goes live on the next master/main deploy. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Adds a standalone “Workflow” chart page to the Quarto narrative site and publishes it as a static resource, then updates the rendered site so the new page is linked from the navbar across all pages.
Changes:
- Adds a self-contained
workflow.htmlpage (raw HTML + inline CSS) describing the codameter pipeline and evaluation lanes. - Registers
workflow.htmlas a Quarto project resource and adds a “Workflow” navbar entry. - Re-renders and commits
quarto/_siteso the navbar link ships on all generated pages (and includes the generated_site/workflow.html).
Reviewed changes
Copilot reviewed 21 out of 21 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| quarto/_quarto.yml | Registers workflow.html as a resource and adds the “Workflow” navbar link. |
| quarto/workflow.html | Adds the standalone workflow chart page (source). |
| quarto/_site/workflow.html | Adds the rendered/deployed workflow chart page (output). |
| quarto/_site/index.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/theory-bayesian-measurement.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/theory-measurement-uq.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/theory-processing-depth.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/theory-uq.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/uncertainty-3-stress.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/uncertainty-4-attribution.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-00-measurement.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-00-measurement.ipynb | Re-render artifact update (cell ids) as part of committing _site. |
| quarto/_site/tutorial-01-data.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-02-forward.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-03-inversion.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-04-coupling.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-05-interpretation.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/tutorial-06-endtoend.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/survey-best-practices.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/survey-synthetic-demo.html | Updates rendered navbar to include “Workflow”. |
| quarto/_site/survey-references.html | Updates rendered navbar to include “Workflow”. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| </style> | ||
| </head> | ||
| <body> | ||
| <header class="sitebar"><a href="index.html">← codameter</a><span class="mid">/ workflow</span><span class="sp"></span><a href="https://github.com/Denolle-Lab/codameter">GitHub</a></header> |
| </style> | ||
| </head> | ||
| <body> | ||
| <header class="sitebar"><a href="index.html">← codameter</a><span class="mid">/ workflow</span><span class="sp"></span><a href="https://github.com/Denolle-Lab/codameter">GitHub</a></header> |
| <div class="tbl-wrap"> | ||
| <table> | ||
| <thead> | ||
| <tr><th>Step</th><th>Agent role</th><th>Tooling</th><th>Status</th></tr> |
| <div class="tbl-wrap"> | ||
| <table> | ||
| <thead> | ||
| <tr><th>Step</th><th>Agent role</th><th>Tooling</th><th>Status</th></tr> |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Publishes the codameter workflow chart to the Quarto narrative site and links it from the navbar.
What
quarto/workflow.html— a standalone page: the dv/v pipeline (ingest → measure → C_d → depth → stress → anomaly), the parameter-advisor loop, and a two-lane breakdown of evaluation (pipeline scoring vs FrugalMind agent scoring), with every step tagged by execution mode (agent / deterministic / data / human). Includes a back-to-site bar. Kept as raw HTML, not a.qmd, so its self-contained design cannot fight the theme CSS.quarto/_quarto.yml— registers it as a projectresourceand adds a top-level "Workflow" navbar item.quarto/_site— re-rendered (17/17, freeze restored → no code re-execution), so every page carries the new navbar link and_site/workflow.htmlships.How it deploys
.github/workflows/quarto.ymlpublishes the committedquarto/_sitetogh-pageson push tomasterwhenquarto/_site/**changes. Merging this makes the chart live at…/codameter/workflow.html, reachable from the "Workflow" navbar item on every page.🤖 Generated with Claude Code