Milestone 5: orbit-membership-aware scaffold#11
Merged
Conversation
Comment on lines
+22
to
+55
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
|
|
||
| - name: Validate JSON files | ||
| run: | | ||
| python3 -m json.tool data/milestone5/m5_four_prime_baseline.json >/dev/null | ||
| python3 -m json.tool schemas/milestone5_orbit_candidate.schema.json >/dev/null | ||
| python3 -m json.tool proof-adapter.json >/dev/null | ||
|
|
||
| - name: Run Milestone 5 scaffold | ||
| run: python3 scripts/milestone5_orbit_scaffold.py | ||
|
|
||
| - name: Print Milestone 5 scaffold artifacts | ||
| run: | | ||
| echo '--- m5_scaffold_result.md ---' | ||
| cat reports/milestone5/m5_scaffold_result.md | ||
| echo '--- m5_scaffold_summary.json ---' | ||
| cat reports/milestone5/m5_scaffold_summary.json | ||
| echo '--- m5_scaffold_events.jsonl ---' | ||
| cat reports/milestone5/m5_scaffold_events.jsonl | ||
|
|
||
| - name: Upload Milestone 5 scaffold artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: milestone-5-orbit-scaffold-artifacts | ||
| path: reports/milestone5/** | ||
| if-no-files-found: error |
Member
Author
|
Milestone 5 scaffold status update. The PR is intentionally fail-closed and remains open. GitHub has not attached any workflow runs or commit statuses to the current head Implemented in this PR:
Local arithmetic sanity check on inherited P1 values passed for all four targets against This PR should not merge until GitHub Actions / SocioSphere validation is observed or the workflow-trigger anomaly is resolved. |
This was referenced May 11, 2026
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.
Summary
Start Milestone 5 with an orbit-membership-aware scaffold for the four-prime cohort:
This PR adds:
data/milestone5/m5_four_prime_baseline.jsonschemas/milestone5_orbit_candidate.schema.jsonscripts/milestone5_orbit_scaffold.py.github/workflows/milestone-5-orbit-scaffold.ymlproof-adapter.jsonupdate forBSD-M5-004-orbit-membership-scaffoldScope
Scaffold only. No rank exactness, second independent point, four-descent execution, BSD-I, BSD-II, or Sha-finiteness claim is made.
The scaffold verifies inherited P1 points on each curve, classifies the four target primes by failure mode, and emits digest-addressed scaffold events.
Target split
257 and 457
No second generator was found in inherited bounded searches. Future controller-routed work requires extended search, four-descent, or another explicitly scoped method.
313 and 353
Historical false positives were caused by treating descent-image difference as sufficient. Future controller-routed work must test torsion-orbit membership before any independence claim.
Required non-claim
This milestone does not address rank exactness for primes where independent-generator search returns negative within stated bounds.
Expected validation
draft/E7, no gate marked pass, no claim promotion.Refs #10.