-
Notifications
You must be signed in to change notification settings - Fork 0
Keep the self-judged plan suite off the public site #65
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,12 @@ command -v jq >/dev/null 2>&1 || die "jq is required for export-site-data.sh" | |
| BATCH_ID="" | ||
| BATCH_DIR="" | ||
| RESULTS_ROOT="$SCRIPT_DIR/results" | ||
| DOCS_DIR="$REPO_ROOT/docs" | ||
| # The plan-composition suite scores Co-Evolution against itself: every condition | ||
| # is composed by Fable and the primary judge is Fable. That is a legitimate | ||
| # internal signal and not a publishable result, so the export lands in the | ||
| # ignored results tree rather than in a directory staged for the public site. | ||
| # Point --docs-dir somewhere else deliberately if you have a reason to. | ||
| DOCS_DIR="${CODE_BENCH_SITE_EXPORT_DIR:-$REPO_ROOT/benchmarks/results/site-export}" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
After changing the default export location and deleting the docs-site HTML/assets, AGENTS.md reference: AGENTS.md:L108-L110 Useful? React with 👍 / 👎. |
||
| CORPUS_DIR="$SCRIPT_DIR/corpus" | ||
| CONDITIONS_FILE="$SCRIPT_DIR/conditions.yaml" | ||
| JUDGES_CSV="fable,codex,glm" | ||
|
|
||
This file was deleted.
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.
The exporter still constructs its output as
$DOCS_DIR/data/$BATCH_ID.jsonand the index as$DOCS_DIR/data/index.json, so this new default writesbenchmarks/results/site-export/data/b1.json, notbenchmarks/results/site-export/b1.jsonas stated here. Anyone using the new internal-review runbook will look for or archive the wrong path; either include thedata/component in the documentation or change the output construction.AGENTS.md reference: AGENTS.md:L108-L110
Useful? React with 👍 / 👎.