open-research-protocol 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENT_INTEGRATION.md +94 -0
- package/INSTALL.md +159 -0
- package/LICENSE +22 -0
- package/PROTOCOL.md +140 -0
- package/README.md +312 -0
- package/bin/orp.js +38 -0
- package/cli/orp.py +3595 -0
- package/cone/CONTEXT_LOG.md +33 -0
- package/docs/AGENT_LOOP.md +63 -0
- package/docs/CHOOSING_OR_IGNORING_INSTRUMENTS.md +128 -0
- package/docs/CODA_ORP_CONTRACT.md +222 -0
- package/docs/CORE_ABILITY_REFOCUS_CHECKLIST.md +62 -0
- package/docs/DISCOVER.md +69 -0
- package/docs/EXTERNAL_CONTRIBUTION_GOVERNANCE.md +275 -0
- package/docs/MATHLIB_COLLABORATION_FLOW_PROMPT.md +112 -0
- package/docs/NPM_RELEASE_CHECKLIST.md +55 -0
- package/docs/ORP_V1_ATOMIC_DISCOVERY_EVOLUTION.md +186 -0
- package/docs/OSS_CONTRIBUTION_AGENT_LOOP.md +69 -0
- package/docs/PRESENTATION_BOW.md +100 -0
- package/docs/PROFILE_PACKS.md +227 -0
- package/docs/SUNFLOWER_CODA_PR_GOVERNANCE_MAPPING.md +77 -0
- package/docs/WHY_INSTRUMENTS.md +118 -0
- package/examples/README.md +21 -0
- package/examples/example_claim.md +33 -0
- package/examples/example_failed.md +24 -0
- package/examples/example_verification.md +36 -0
- package/examples/orp.erdos-problems.catalog.yml +88 -0
- package/examples/orp.external-pr-governance.yml +223 -0
- package/examples/orp.sunflower-coda.atomic.yml +144 -0
- package/examples/orp.sunflower-coda.live-compare.yml +181 -0
- package/examples/orp.sunflower-coda.pr-governance.yml +253 -0
- package/examples/packet.problem_scope.example.json +123 -0
- package/examples/reports/README.md +16 -0
- package/examples/reports/sunflower_live_compare_20.RUN_SUMMARY.md +37 -0
- package/examples/reports/sunflower_live_compare_367.RUN_SUMMARY.md +37 -0
- package/examples/reports/sunflower_live_compare_857.RUN_SUMMARY.md +37 -0
- package/llms.txt +58 -0
- package/modules/instruments/ADVERSARIAL/README.md +109 -0
- package/modules/instruments/ADVERSARIAL/TEMPLATE.md +27 -0
- package/modules/instruments/COMPRESSION/README.md +112 -0
- package/modules/instruments/COMPRESSION/TEMPLATE.md +27 -0
- package/modules/instruments/INSTRUMENT_TEMPLATE.md +30 -0
- package/modules/instruments/ORBIT/README.md +124 -0
- package/modules/instruments/ORBIT/TEMPLATE.md +28 -0
- package/modules/instruments/README.md +179 -0
- package/package.json +54 -0
- package/packs/README.md +16 -0
- package/packs/erdos-open-problems/README.md +287 -0
- package/packs/erdos-open-problems/data/README.md +43 -0
- package/packs/erdos-open-problems/data/erdos_open_problems.md +697 -0
- package/packs/erdos-open-problems/data/erdos_problems.active.json +15561 -0
- package/packs/erdos-open-problems/data/erdos_problems.all.json +26289 -0
- package/packs/erdos-open-problems/data/erdos_problems.closed.json +10760 -0
- package/packs/erdos-open-problems/data/erdos_problems.open.json +15561 -0
- package/packs/erdos-open-problems/docs/SUNFLOWER_ADAPTER_DEPENDENCIES.md +63 -0
- package/packs/erdos-open-problems/pack.yml +131 -0
- package/packs/erdos-open-problems/profiles/erdos-problems-catalog-sync.yml.tmpl +99 -0
- package/packs/erdos-open-problems/profiles/sunflower-live-compare.yml.tmpl +188 -0
- package/packs/erdos-open-problems/profiles/sunflower-mathlib-pr-governance.yml.tmpl +253 -0
- package/packs/erdos-open-problems/profiles/sunflower-problem857-discovery-public-repo.yml.tmpl +152 -0
- package/packs/erdos-open-problems/profiles/sunflower-problem857-discovery.yml.tmpl +154 -0
- package/packs/external-pr-governance/README.md +116 -0
- package/packs/external-pr-governance/adapters/formal-conjectures/README.md +35 -0
- package/packs/external-pr-governance/adapters/mathlib/README.md +37 -0
- package/packs/external-pr-governance/pack.yml +146 -0
- package/packs/external-pr-governance/profiles/oss-feedback-hardening.yml.tmpl +92 -0
- package/packs/external-pr-governance/profiles/oss-pr-governance.yml.tmpl +233 -0
- package/packs/issue-smashers/README.md +92 -0
- package/packs/issue-smashers/adapters/formal-conjectures/README.md +17 -0
- package/packs/issue-smashers/adapters/generic-github/README.md +16 -0
- package/packs/issue-smashers/adapters/mathlib/README.md +32 -0
- package/packs/issue-smashers/bootstrap/README.md +19 -0
- package/packs/issue-smashers/bootstrap/setup-issue-smashers.sh +18 -0
- package/packs/issue-smashers/examples/issue-smashers.workspace.yml +24 -0
- package/packs/issue-smashers/pack.yml +178 -0
- package/packs/issue-smashers/profiles/issue-smashers-feedback-hardening.yml.tmpl +102 -0
- package/packs/issue-smashers/profiles/issue-smashers.yml.tmpl +258 -0
- package/scripts/npm-postinstall-check.js +31 -0
- package/scripts/orp +11 -0
- package/scripts/orp-agent-integrate.sh +197 -0
- package/scripts/orp-checkpoint.sh +184 -0
- package/scripts/orp-erdos-problems-sync.py +580 -0
- package/scripts/orp-init.sh +50 -0
- package/scripts/orp-pack-fetch.py +155 -0
- package/scripts/orp-pack-install.py +2273 -0
- package/scripts/orp-pack-render.py +188 -0
- package/spec/v1/LIFECYCLE_MAPPING.md +40 -0
- package/spec/v1/orp.config.schema.json +385 -0
- package/spec/v1/packet.schema.json +552 -0
- package/spec/v1/profile-pack.schema.json +95 -0
- package/templates/CLAIM.md +33 -0
- package/templates/FAILED_TOPIC.md +19 -0
- package/templates/ISSUE_TEMPLATE.md +22 -0
- package/templates/VERIFICATION_RECORD.md +34 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Sunflower Adapter Dependencies (857/20/367)
|
|
2
|
+
|
|
3
|
+
This pack keeps ORP core generic while exposing optional sunflower-coda adapters.
|
|
4
|
+
|
|
5
|
+
When you install `erdos-open-problems` with:
|
|
6
|
+
|
|
7
|
+
`./scripts/orp pack install --pack-id erdos-open-problems ...`
|
|
8
|
+
|
|
9
|
+
ORP writes an install report with dependency audit counts.
|
|
10
|
+
By default, ORP also scaffolds starter adapter files for 857/20/367 (`--no-bootstrap` disables this).
|
|
11
|
+
|
|
12
|
+
## Component dependency matrix
|
|
13
|
+
|
|
14
|
+
### `live_compare` (Problems 857/20/367)
|
|
15
|
+
|
|
16
|
+
Required in target repo:
|
|
17
|
+
|
|
18
|
+
- `analysis/problem857_counting_gateboard.json`
|
|
19
|
+
- `analysis/problem20_k3_gateboard.json`
|
|
20
|
+
- `analysis/problem367_sharp_gateboard.json`
|
|
21
|
+
- `scripts/problem857_ops_board.py`
|
|
22
|
+
- `scripts/problem20_ops_board.py`
|
|
23
|
+
- `scripts/problem367_ops_board.py`
|
|
24
|
+
- `scripts/frontier_status.py`
|
|
25
|
+
|
|
26
|
+
### `problem857` (discovery profile)
|
|
27
|
+
|
|
28
|
+
Required in target repo:
|
|
29
|
+
|
|
30
|
+
- all `live_compare` dependencies relevant to Problem 857
|
|
31
|
+
- `docs/PROBLEM857_COUNTING_OPS_BOARD.md`
|
|
32
|
+
- `orchestrator/v2/scopes/problem_857.yaml`
|
|
33
|
+
- `orchestrator/problem857_public_spec_check.py`
|
|
34
|
+
- `sunflower_lean/`
|
|
35
|
+
|
|
36
|
+
In `PROBLEM857_SOURCE_MODE=public_repo`, ORP can satisfy these by syncing the public
|
|
37
|
+
`sunflower-lean` repo into `sunflower_lean/` and generating the missing ORP bridge
|
|
38
|
+
files itself.
|
|
39
|
+
|
|
40
|
+
### `governance` (mathlib collaboration)
|
|
41
|
+
|
|
42
|
+
Required in target repo:
|
|
43
|
+
|
|
44
|
+
- `docs/MATHLIB_SUBMISSION_CHECKLIST.md`
|
|
45
|
+
- `docs/MATHLIB_DRAFT_PR_TEMPLATE.md`
|
|
46
|
+
- `docs/MATHLIB_ISSUE_VIABILITY_GATE.md`
|
|
47
|
+
- `docs/UPSTREAM_PR_LANE.md`
|
|
48
|
+
- `analysis/UPSTREAM_PR_PLAN.yaml`
|
|
49
|
+
- `scripts/upstream-pr-plan.py`
|
|
50
|
+
- `scripts/upstream-pr-lane.sh`
|
|
51
|
+
- `scripts/mathlib-issue-viability-gate.py`
|
|
52
|
+
- `scripts/mathlib-naturality-snippet.sh`
|
|
53
|
+
- `scripts/mathlib-issue-local-gate.sh`
|
|
54
|
+
- `scripts/mathlib-tighten-fine-tooth-gate.sh`
|
|
55
|
+
- `scripts/mathlib-ready-to-draft-gate.sh`
|
|
56
|
+
- `scripts/mathlib-pr-body-preflight.py`
|
|
57
|
+
|
|
58
|
+
## Recommendation
|
|
59
|
+
|
|
60
|
+
- Use `catalog` for immediate public adoption.
|
|
61
|
+
- Add `live_compare` once board scripts/data exist in target repo.
|
|
62
|
+
- Add `problem857` in `public_repo` mode for public `sunflower-lean` adoption, or use starter/private adapters when you need richer host-repo workflow state.
|
|
63
|
+
- Add `governance` when those private/workflow dependencies are available.
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
schema_version: "1.0.0"
|
|
2
|
+
pack_id: erdos-open-problems
|
|
3
|
+
name: Erdos Open Problems Pack
|
|
4
|
+
version: "0.1.3"
|
|
5
|
+
description: >
|
|
6
|
+
ORP profile templates for sunflower/Erdos open-problem workflows, including
|
|
7
|
+
live gate compare profiles for Problems 857, 20, and 367 plus mathlib PR
|
|
8
|
+
governance profiles for local-first collaboration lanes and Erdos catalog
|
|
9
|
+
sync profiles.
|
|
10
|
+
orp_version_min: "0.1.0"
|
|
11
|
+
|
|
12
|
+
variables:
|
|
13
|
+
TARGET_REPO_ROOT:
|
|
14
|
+
description: Absolute path to the user's target repo (for example sunflower-coda clone).
|
|
15
|
+
required: true
|
|
16
|
+
ORP_TIMEOUT_SEC:
|
|
17
|
+
description: Default gate timeout in seconds.
|
|
18
|
+
required: false
|
|
19
|
+
default: "1200"
|
|
20
|
+
PROBLEM857_LEAN_BUILD_COMMAND:
|
|
21
|
+
description: Command used by Problem 857 discovery profile for Lean build gate.
|
|
22
|
+
required: false
|
|
23
|
+
default: "lake build SunflowerLean.Balance"
|
|
24
|
+
PROBLEM857_SOURCE_MODE:
|
|
25
|
+
description: Problem 857 bootstrap mode (starter|public_repo).
|
|
26
|
+
required: false
|
|
27
|
+
default: "starter"
|
|
28
|
+
PROBLEM857_PUBLIC_REPO_URL:
|
|
29
|
+
description: Public git repo used to sync the real Problem 857 workspace surface.
|
|
30
|
+
required: false
|
|
31
|
+
default: "https://github.com/SproutSeeds/sunflower-lean"
|
|
32
|
+
PROBLEM857_PUBLIC_REPO_REF:
|
|
33
|
+
description: Branch, tag, or commit to checkout when PROBLEM857_SOURCE_MODE=public_repo.
|
|
34
|
+
required: false
|
|
35
|
+
default: "main"
|
|
36
|
+
MATHLIB_REPO_ROOT:
|
|
37
|
+
description: Path to local mathlib checkout used by local/tighten/ready gates.
|
|
38
|
+
required: false
|
|
39
|
+
default: "$HOME/Documents/code/mathlib4"
|
|
40
|
+
MATHLIB_GITHUB_REPO:
|
|
41
|
+
description: GitHub repo used for viability checks.
|
|
42
|
+
required: false
|
|
43
|
+
default: "leanprover-community/mathlib4"
|
|
44
|
+
MATHLIB_GITHUB_AUTHOR:
|
|
45
|
+
description: GitHub login used for overlap/ownership checks.
|
|
46
|
+
required: false
|
|
47
|
+
default: "SproutSeeds"
|
|
48
|
+
DEFAULT_PR_BODY_FILE:
|
|
49
|
+
description: Default PR body file path relative to TARGET_REPO_ROOT.
|
|
50
|
+
required: false
|
|
51
|
+
default: "analysis/MATHLIB_DRAFT_PR_BODY.md"
|
|
52
|
+
READY_TO_DRAFT_NOTE:
|
|
53
|
+
description: Default micro-pass note used by ready-to-draft gate.
|
|
54
|
+
required: false
|
|
55
|
+
default: "micro-pass complete: naming/docstring-tone/readability"
|
|
56
|
+
UPSTREAM_SUBMISSION_MODE:
|
|
57
|
+
description: Expected submission mode in analysis/UPSTREAM_PR_PLAN.yaml.
|
|
58
|
+
required: false
|
|
59
|
+
default: "hold"
|
|
60
|
+
MAX_PRS_PER_SESSION:
|
|
61
|
+
description: Expected anti-spam queue cap from upstream-pr-plan policy summary.
|
|
62
|
+
required: false
|
|
63
|
+
default: "2"
|
|
64
|
+
REQUIRE_EXPLICIT_APPROVAL:
|
|
65
|
+
description: Expected explicit-approval queue policy value from summary output.
|
|
66
|
+
required: false
|
|
67
|
+
default: "True"
|
|
68
|
+
ORP_REPO_ROOT:
|
|
69
|
+
description: Absolute path to ORP repo root (needed for shared ORP sync scripts).
|
|
70
|
+
required: false
|
|
71
|
+
default: "."
|
|
72
|
+
ERDOS_SOURCE_URL:
|
|
73
|
+
description: Source URL for canonical Erdos problem listing scrape.
|
|
74
|
+
required: false
|
|
75
|
+
default: "https://erdosproblems.com/range/1-end"
|
|
76
|
+
ERDOS_DATA_SUBDIR:
|
|
77
|
+
description: Output directory under TARGET_REPO_ROOT for synced problem snapshots.
|
|
78
|
+
required: false
|
|
79
|
+
default: "analysis/erdos_problems"
|
|
80
|
+
ERDOS_OPEN_LIST_FILE:
|
|
81
|
+
description: Markdown file path (relative to TARGET_REPO_ROOT) for open-problem direct-link list.
|
|
82
|
+
required: false
|
|
83
|
+
default: "analysis/erdos_problems/erdos_open_problems.md"
|
|
84
|
+
ERDOS_TIMEOUT_SEC:
|
|
85
|
+
description: HTTP timeout for Erdos catalog sync.
|
|
86
|
+
required: false
|
|
87
|
+
default: "90"
|
|
88
|
+
ERDOS_ACTIVE_STATUS:
|
|
89
|
+
description: Active subset to publish in erdos_problems.active.json (open|closed|all).
|
|
90
|
+
required: false
|
|
91
|
+
default: "open"
|
|
92
|
+
|
|
93
|
+
templates:
|
|
94
|
+
sunflower_live_compare_suite:
|
|
95
|
+
path: profiles/sunflower-live-compare.yml.tmpl
|
|
96
|
+
description: Side-by-side live gate parity config for Problems 857/20/367.
|
|
97
|
+
output_hint: orp.erdos-live-compare.yml
|
|
98
|
+
default_profiles:
|
|
99
|
+
- sunflower_live_compare_857
|
|
100
|
+
- sunflower_live_compare_20
|
|
101
|
+
- sunflower_live_compare_367
|
|
102
|
+
|
|
103
|
+
sunflower_problem857_discovery:
|
|
104
|
+
path: profiles/sunflower-problem857-discovery.yml.tmpl
|
|
105
|
+
description: Discovery-first atomic profile for Problem 857.
|
|
106
|
+
output_hint: orp.erdos-problem857.yml
|
|
107
|
+
default_profiles:
|
|
108
|
+
- sunflower_problem857_discovery
|
|
109
|
+
|
|
110
|
+
sunflower_problem857_discovery_public_repo:
|
|
111
|
+
path: profiles/sunflower-problem857-discovery-public-repo.yml.tmpl
|
|
112
|
+
description: Discovery-first atomic profile for Problem 857 against a synced public repo workspace.
|
|
113
|
+
output_hint: orp.erdos-problem857.yml
|
|
114
|
+
default_profiles:
|
|
115
|
+
- sunflower_problem857_discovery
|
|
116
|
+
|
|
117
|
+
sunflower_mathlib_pr_governance:
|
|
118
|
+
path: profiles/sunflower-mathlib-pr-governance.yml.tmpl
|
|
119
|
+
description: Local-first mathlib PR governance profiles (pre-open, draft-readiness, full flow).
|
|
120
|
+
output_hint: orp.erdos-mathlib-pr-governance.yml
|
|
121
|
+
default_profiles:
|
|
122
|
+
- sunflower_mathlib_pre_open
|
|
123
|
+
- sunflower_mathlib_draft_readiness
|
|
124
|
+
- sunflower_mathlib_full_flow
|
|
125
|
+
|
|
126
|
+
erdos_problems_catalog_sync:
|
|
127
|
+
path: profiles/erdos-problems-catalog-sync.yml.tmpl
|
|
128
|
+
description: Sync all Erdos problems and materialize open/closed/active datasets.
|
|
129
|
+
output_hint: orp.erdos-catalog-sync.yml
|
|
130
|
+
default_profiles:
|
|
131
|
+
- erdos_catalog_sync_active
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
version: "1"
|
|
2
|
+
|
|
3
|
+
project:
|
|
4
|
+
name: erdos-problems-catalog-sync
|
|
5
|
+
repo_root: .
|
|
6
|
+
canonical_paths:
|
|
7
|
+
erdos_all_json: {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.all.json
|
|
8
|
+
erdos_open_json: {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.open.json
|
|
9
|
+
erdos_closed_json: {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.closed.json
|
|
10
|
+
erdos_active_json: {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.active.json
|
|
11
|
+
|
|
12
|
+
runtime:
|
|
13
|
+
shell: /bin/bash
|
|
14
|
+
default_timeout_sec: {{ORP_TIMEOUT_SEC}}
|
|
15
|
+
artifacts_root: orp/artifacts
|
|
16
|
+
|
|
17
|
+
packet:
|
|
18
|
+
default_kind: problem_scope
|
|
19
|
+
output_dir: orp/packets
|
|
20
|
+
write_markdown: true
|
|
21
|
+
deterministic_mode: true
|
|
22
|
+
|
|
23
|
+
epistemic_status:
|
|
24
|
+
overall: public_data_sync
|
|
25
|
+
starter_scaffold: false
|
|
26
|
+
strongest_evidence_paths:
|
|
27
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.active.json
|
|
28
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_OPEN_LIST_FILE}}
|
|
29
|
+
notes:
|
|
30
|
+
- This profile writes public Erdos catalog snapshots that are useful evidence inputs for later workflows.
|
|
31
|
+
|
|
32
|
+
lifecycle:
|
|
33
|
+
claim_status_map:
|
|
34
|
+
Draft: draft
|
|
35
|
+
In review: ready
|
|
36
|
+
Verified: reviewed
|
|
37
|
+
Blocked: blocked
|
|
38
|
+
Retracted: retracted
|
|
39
|
+
atom_status_map:
|
|
40
|
+
todo: draft
|
|
41
|
+
in_progress: ready
|
|
42
|
+
blocked: blocked
|
|
43
|
+
done: reviewed
|
|
44
|
+
claim_level_values:
|
|
45
|
+
- Exact
|
|
46
|
+
- Verified
|
|
47
|
+
- Heuristic
|
|
48
|
+
- Conjecture
|
|
49
|
+
|
|
50
|
+
gates:
|
|
51
|
+
- id: erdos_catalog_sync
|
|
52
|
+
description: Sync all Erdos problems from erdosproblems.com and publish open/closed/active snapshots.
|
|
53
|
+
phase: scope_lock
|
|
54
|
+
command: >
|
|
55
|
+
python3 {{ORP_REPO_ROOT}}/scripts/orp-erdos-problems-sync.py
|
|
56
|
+
--source-url {{ERDOS_SOURCE_URL}}
|
|
57
|
+
--timeout-sec {{ERDOS_TIMEOUT_SEC}}
|
|
58
|
+
--active-status {{ERDOS_ACTIVE_STATUS}}
|
|
59
|
+
--out-all {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.all.json
|
|
60
|
+
--out-open {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.open.json
|
|
61
|
+
--out-closed {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.closed.json
|
|
62
|
+
--out-active {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.active.json
|
|
63
|
+
--out-open-list {{TARGET_REPO_ROOT}}/{{ERDOS_OPEN_LIST_FILE}}
|
|
64
|
+
working_dir: {{ORP_REPO_ROOT}}
|
|
65
|
+
timeout_sec: {{ORP_TIMEOUT_SEC}}
|
|
66
|
+
pass:
|
|
67
|
+
exit_codes: [0]
|
|
68
|
+
stdout_must_contain:
|
|
69
|
+
- parsed_total=
|
|
70
|
+
- summary.open=
|
|
71
|
+
- summary.closed=
|
|
72
|
+
- active_status={{ERDOS_ACTIVE_STATUS}}
|
|
73
|
+
- out_open_list=
|
|
74
|
+
file_must_exist:
|
|
75
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.all.json
|
|
76
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.open.json
|
|
77
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.closed.json
|
|
78
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.active.json
|
|
79
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_OPEN_LIST_FILE}}
|
|
80
|
+
evidence:
|
|
81
|
+
include_stdout: true
|
|
82
|
+
include_stderr: true
|
|
83
|
+
status: evidence
|
|
84
|
+
note: Catalog sync writes public data snapshots that can be cited as evidence inputs.
|
|
85
|
+
paths:
|
|
86
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.all.json
|
|
87
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.open.json
|
|
88
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.closed.json
|
|
89
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_DATA_SUBDIR}}/erdos_problems.active.json
|
|
90
|
+
- {{TARGET_REPO_ROOT}}/{{ERDOS_OPEN_LIST_FILE}}
|
|
91
|
+
on_fail: stop
|
|
92
|
+
|
|
93
|
+
profiles:
|
|
94
|
+
erdos_catalog_sync_active:
|
|
95
|
+
description: Sync Erdos problem catalog with open-default active status (override via ERDOS_ACTIVE_STATUS).
|
|
96
|
+
mode: discovery
|
|
97
|
+
packet_kind: problem_scope
|
|
98
|
+
gate_ids:
|
|
99
|
+
- erdos_catalog_sync
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
version: "1"
|
|
2
|
+
|
|
3
|
+
project:
|
|
4
|
+
name: sunflower-coda-live-compare
|
|
5
|
+
repo_root: .
|
|
6
|
+
canonical_paths:
|
|
7
|
+
board_857_json: {{TARGET_REPO_ROOT}}/analysis/problem857_counting_gateboard.json
|
|
8
|
+
board_20_json: {{TARGET_REPO_ROOT}}/analysis/problem20_k3_gateboard.json
|
|
9
|
+
board_367_json: {{TARGET_REPO_ROOT}}/analysis/problem367_sharp_gateboard.json
|
|
10
|
+
|
|
11
|
+
runtime:
|
|
12
|
+
shell: /bin/bash
|
|
13
|
+
default_timeout_sec: {{ORP_TIMEOUT_SEC}}
|
|
14
|
+
artifacts_root: orp/artifacts
|
|
15
|
+
|
|
16
|
+
packet:
|
|
17
|
+
default_kind: problem_scope
|
|
18
|
+
output_dir: orp/packets
|
|
19
|
+
write_markdown: true
|
|
20
|
+
deterministic_mode: true
|
|
21
|
+
|
|
22
|
+
epistemic_status:
|
|
23
|
+
overall: starter_compare_scaffold
|
|
24
|
+
starter_scaffold: true
|
|
25
|
+
notes:
|
|
26
|
+
- Live compare profiles operate on starter board scaffolding rendered by ORP pack install.
|
|
27
|
+
- These runs are useful for process visibility, not standalone mathematical evidence.
|
|
28
|
+
|
|
29
|
+
lifecycle:
|
|
30
|
+
claim_status_map:
|
|
31
|
+
Draft: draft
|
|
32
|
+
In review: ready
|
|
33
|
+
Verified: reviewed
|
|
34
|
+
Blocked: blocked
|
|
35
|
+
Retracted: retracted
|
|
36
|
+
atom_status_map:
|
|
37
|
+
todo: draft
|
|
38
|
+
in_progress: ready
|
|
39
|
+
blocked: blocked
|
|
40
|
+
done: reviewed
|
|
41
|
+
claim_level_values:
|
|
42
|
+
- Exact
|
|
43
|
+
- Verified
|
|
44
|
+
- Heuristic
|
|
45
|
+
- Conjecture
|
|
46
|
+
|
|
47
|
+
gates:
|
|
48
|
+
- id: p857_board_show
|
|
49
|
+
description: Problem 857 board show snapshot.
|
|
50
|
+
phase: verification
|
|
51
|
+
command: python3 scripts/problem857_ops_board.py show
|
|
52
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
53
|
+
pass:
|
|
54
|
+
exit_codes: [0]
|
|
55
|
+
stdout_must_contain:
|
|
56
|
+
- route=counting_uniform
|
|
57
|
+
- route=container_v2
|
|
58
|
+
- ticket=T6
|
|
59
|
+
- ready_atoms=
|
|
60
|
+
|
|
61
|
+
- id: p857_board_ready
|
|
62
|
+
description: Problem 857 ready queue snapshot.
|
|
63
|
+
phase: verification
|
|
64
|
+
command: python3 scripts/problem857_ops_board.py ready
|
|
65
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
66
|
+
pass:
|
|
67
|
+
exit_codes: [0]
|
|
68
|
+
stdout_must_contain:
|
|
69
|
+
- ready_atoms=
|
|
70
|
+
|
|
71
|
+
- id: p857_frontier
|
|
72
|
+
description: Problem 857 strict/loose route status.
|
|
73
|
+
phase: verification
|
|
74
|
+
command: python3 scripts/frontier_status.py --problem 857
|
|
75
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
76
|
+
pass:
|
|
77
|
+
exit_codes: [0]
|
|
78
|
+
stdout_must_contain:
|
|
79
|
+
- "== Strict Routes (857) =="
|
|
80
|
+
- counting_uniform
|
|
81
|
+
- container
|
|
82
|
+
|
|
83
|
+
- id: p20_board_show
|
|
84
|
+
description: Problem 20 board show snapshot.
|
|
85
|
+
phase: verification
|
|
86
|
+
command: python3 scripts/problem20_ops_board.py show
|
|
87
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
88
|
+
pass:
|
|
89
|
+
exit_codes: [0]
|
|
90
|
+
stdout_must_contain:
|
|
91
|
+
- route=uniform_prize
|
|
92
|
+
- route=uniform_prize_final_k3
|
|
93
|
+
- ticket=T6
|
|
94
|
+
- ready_atoms=
|
|
95
|
+
|
|
96
|
+
- id: p20_board_ready
|
|
97
|
+
description: Problem 20 ready queue snapshot.
|
|
98
|
+
phase: verification
|
|
99
|
+
command: python3 scripts/problem20_ops_board.py ready
|
|
100
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
101
|
+
pass:
|
|
102
|
+
exit_codes: [0]
|
|
103
|
+
stdout_must_contain:
|
|
104
|
+
- ready_atoms=
|
|
105
|
+
|
|
106
|
+
- id: p20_frontier
|
|
107
|
+
description: Problem 20 strict/loose route status.
|
|
108
|
+
phase: verification
|
|
109
|
+
command: python3 scripts/frontier_status.py --problem 20
|
|
110
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
111
|
+
pass:
|
|
112
|
+
exit_codes: [0]
|
|
113
|
+
stdout_must_contain:
|
|
114
|
+
- "== Strict Routes (20) =="
|
|
115
|
+
- uniform_prize
|
|
116
|
+
|
|
117
|
+
- id: p367_board_show
|
|
118
|
+
description: Problem 367 board show snapshot.
|
|
119
|
+
phase: verification
|
|
120
|
+
command: python3 scripts/problem367_ops_board.py show
|
|
121
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
122
|
+
pass:
|
|
123
|
+
exit_codes: [0]
|
|
124
|
+
stdout_must_contain:
|
|
125
|
+
- route=sieve_weighted_tail
|
|
126
|
+
- route=full
|
|
127
|
+
- ticket=T5
|
|
128
|
+
- ready_atoms=
|
|
129
|
+
|
|
130
|
+
- id: p367_board_ready
|
|
131
|
+
description: Problem 367 ready queue snapshot.
|
|
132
|
+
phase: verification
|
|
133
|
+
command: python3 scripts/problem367_ops_board.py ready --allow-no-go
|
|
134
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
135
|
+
pass:
|
|
136
|
+
exit_codes: [0]
|
|
137
|
+
stdout_must_contain:
|
|
138
|
+
- no_go_active=
|
|
139
|
+
- ready_atoms=
|
|
140
|
+
|
|
141
|
+
- id: p367_frontier
|
|
142
|
+
description: Problem 367 strict/loose route status.
|
|
143
|
+
phase: verification
|
|
144
|
+
command: python3 scripts/frontier_status.py --problem 367
|
|
145
|
+
working_dir: {{TARGET_REPO_ROOT}}
|
|
146
|
+
pass:
|
|
147
|
+
exit_codes: [0]
|
|
148
|
+
stdout_must_contain:
|
|
149
|
+
- "== Strict Routes (367) =="
|
|
150
|
+
- sieve_weighted_tail
|
|
151
|
+
- "full:"
|
|
152
|
+
|
|
153
|
+
profiles:
|
|
154
|
+
sunflower_live_compare_857:
|
|
155
|
+
description: Side-by-side compare profile for Problem 857.
|
|
156
|
+
mode: discovery
|
|
157
|
+
packet_kind: problem_scope
|
|
158
|
+
atomic_board:
|
|
159
|
+
enabled: true
|
|
160
|
+
board_path: {{TARGET_REPO_ROOT}}/analysis/problem857_counting_gateboard.json
|
|
161
|
+
gate_ids:
|
|
162
|
+
- p857_board_show
|
|
163
|
+
- p857_board_ready
|
|
164
|
+
- p857_frontier
|
|
165
|
+
|
|
166
|
+
sunflower_live_compare_20:
|
|
167
|
+
description: Side-by-side compare profile for Problem 20.
|
|
168
|
+
mode: discovery
|
|
169
|
+
packet_kind: problem_scope
|
|
170
|
+
atomic_board:
|
|
171
|
+
enabled: true
|
|
172
|
+
board_path: {{TARGET_REPO_ROOT}}/analysis/problem20_k3_gateboard.json
|
|
173
|
+
gate_ids:
|
|
174
|
+
- p20_board_show
|
|
175
|
+
- p20_board_ready
|
|
176
|
+
- p20_frontier
|
|
177
|
+
|
|
178
|
+
sunflower_live_compare_367:
|
|
179
|
+
description: Side-by-side compare profile for Problem 367.
|
|
180
|
+
mode: discovery
|
|
181
|
+
packet_kind: problem_scope
|
|
182
|
+
atomic_board:
|
|
183
|
+
enabled: true
|
|
184
|
+
board_path: {{TARGET_REPO_ROOT}}/analysis/problem367_sharp_gateboard.json
|
|
185
|
+
gate_ids:
|
|
186
|
+
- p367_board_show
|
|
187
|
+
- p367_board_ready
|
|
188
|
+
- p367_frontier
|