erdos-problems 0.1.7 → 0.1.9
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 +25 -0
- package/PROTOCOL.md +36 -0
- package/README.md +58 -9
- package/docs/RESEARCH_LOOP.md +25 -8
- package/package.json +5 -2
- package/packs/sunflower/README.md +4 -0
- package/packs/sunflower/problems/20/AGENT_START.md +18 -0
- package/packs/sunflower/problems/20/CHECKPOINT_PACKET.md +11 -0
- package/packs/sunflower/problems/20/REPORT_PACKET.md +10 -0
- package/packs/sunflower/problems/20/ROUTE_PACKET.yaml +12 -0
- package/packs/sunflower/problems/857/AGENT_START.md +18 -0
- package/packs/sunflower/problems/857/CHECKPOINT_PACKET.md +11 -0
- package/packs/sunflower/problems/857/REPORT_PACKET.md +10 -0
- package/packs/sunflower/problems/857/ROUTE_PACKET.yaml +12 -0
- package/problems/1/AGENT_START.md +17 -0
- package/problems/1/CHECKPOINT_NOTES.md +11 -0
- package/problems/1/EVIDENCE.md +10 -0
- package/problems/1/FORMALIZATION.md +8 -0
- package/problems/1/REFERENCES.md +9 -0
- package/problems/1/ROUTES.md +14 -0
- package/problems/1/STATEMENT.md +21 -0
- package/problems/1/problem.yaml +44 -0
- package/problems/19/AGENT_START.md +17 -0
- package/problems/19/CHECKPOINT_NOTES.md +11 -0
- package/problems/19/EVIDENCE.md +10 -0
- package/problems/19/FORMALIZATION.md +8 -0
- package/problems/19/REFERENCES.md +9 -0
- package/problems/19/ROUTES.md +14 -0
- package/problems/19/STATEMENT.md +15 -0
- package/problems/19/problem.yaml +42 -0
- package/problems/2/AGENT_START.md +17 -0
- package/problems/2/CHECKPOINT_NOTES.md +11 -0
- package/problems/2/EVIDENCE.md +10 -0
- package/problems/2/FORMALIZATION.md +8 -0
- package/problems/2/REFERENCES.md +9 -0
- package/problems/2/ROUTES.md +14 -0
- package/problems/2/STATEMENT.md +15 -0
- package/problems/2/problem.yaml +42 -0
- package/problems/21/AGENT_START.md +17 -0
- package/problems/21/CHECKPOINT_NOTES.md +11 -0
- package/problems/21/EVIDENCE.md +10 -0
- package/problems/21/FORMALIZATION.md +8 -0
- package/problems/21/REFERENCES.md +9 -0
- package/problems/21/ROUTES.md +14 -0
- package/problems/21/STATEMENT.md +21 -0
- package/problems/21/problem.yaml +46 -0
- package/problems/22/AGENT_START.md +17 -0
- package/problems/22/CHECKPOINT_NOTES.md +11 -0
- package/problems/22/EVIDENCE.md +10 -0
- package/problems/22/FORMALIZATION.md +8 -0
- package/problems/22/REFERENCES.md +9 -0
- package/problems/22/ROUTES.md +14 -0
- package/problems/22/STATEMENT.md +21 -0
- package/problems/22/problem.yaml +44 -0
- package/problems/3/AGENT_START.md +17 -0
- package/problems/3/CHECKPOINT_NOTES.md +11 -0
- package/problems/3/EVIDENCE.md +10 -0
- package/problems/3/FORMALIZATION.md +8 -0
- package/problems/3/REFERENCES.md +9 -0
- package/problems/3/ROUTES.md +14 -0
- package/problems/3/STATEMENT.md +21 -0
- package/problems/3/problem.yaml +44 -0
- package/problems/4/AGENT_START.md +17 -0
- package/problems/4/CHECKPOINT_NOTES.md +11 -0
- package/problems/4/EVIDENCE.md +10 -0
- package/problems/4/FORMALIZATION.md +8 -0
- package/problems/4/REFERENCES.md +9 -0
- package/problems/4/ROUTES.md +14 -0
- package/problems/4/STATEMENT.md +21 -0
- package/problems/4/problem.yaml +44 -0
- package/problems/5/AGENT_START.md +17 -0
- package/problems/5/CHECKPOINT_NOTES.md +11 -0
- package/problems/5/EVIDENCE.md +10 -0
- package/problems/5/FORMALIZATION.md +8 -0
- package/problems/5/REFERENCES.md +9 -0
- package/problems/5/ROUTES.md +14 -0
- package/problems/5/STATEMENT.md +21 -0
- package/problems/5/problem.yaml +43 -0
- package/problems/6/AGENT_START.md +17 -0
- package/problems/6/CHECKPOINT_NOTES.md +11 -0
- package/problems/6/EVIDENCE.md +10 -0
- package/problems/6/FORMALIZATION.md +8 -0
- package/problems/6/REFERENCES.md +9 -0
- package/problems/6/ROUTES.md +14 -0
- package/problems/6/STATEMENT.md +21 -0
- package/problems/6/problem.yaml +43 -0
- package/problems/7/AGENT_START.md +17 -0
- package/problems/7/CHECKPOINT_NOTES.md +11 -0
- package/problems/7/EVIDENCE.md +10 -0
- package/problems/7/FORMALIZATION.md +8 -0
- package/problems/7/REFERENCES.md +9 -0
- package/problems/7/ROUTES.md +14 -0
- package/problems/7/STATEMENT.md +21 -0
- package/problems/7/problem.yaml +42 -0
- package/src/cli/index.js +5 -0
- package/src/commands/bootstrap.js +3 -0
- package/src/commands/checkpoints.js +2 -0
- package/src/commands/orp.js +58 -0
- package/src/commands/problem.js +13 -1
- package/src/commands/pull.js +31 -1
- package/src/commands/seed.js +4 -0
- package/src/commands/state.js +2 -0
- package/src/commands/sunflower.js +10 -0
- package/src/commands/workspace.js +4 -0
- package/src/runtime/maintainer-seed.js +158 -8
- package/src/runtime/orp.js +83 -0
- package/src/runtime/paths.js +28 -0
- package/src/runtime/preflight.js +15 -1
- package/src/runtime/problem-artifacts.js +36 -1
- package/src/runtime/sunflower.js +48 -0
- package/src/runtime/workspace.js +8 -0
- package/templates/CLAIM.md +9 -0
- package/templates/FAILED_TOPIC.md +8 -0
- package/templates/VERIFICATION_RECORD.md +10 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# ORP Agent Integration
|
|
2
|
+
|
|
3
|
+
Use this when an agent is working inside an `erdos-problems` workspace.
|
|
4
|
+
|
|
5
|
+
## Core Rule
|
|
6
|
+
|
|
7
|
+
Do not let local route progress masquerade as global problem closure.
|
|
8
|
+
|
|
9
|
+
## Minimum Working Loop
|
|
10
|
+
|
|
11
|
+
1. select or seed a problem
|
|
12
|
+
2. sync ORP kit
|
|
13
|
+
3. sync state
|
|
14
|
+
4. run preflight
|
|
15
|
+
5. sync checkpoints
|
|
16
|
+
6. work the next honest move
|
|
17
|
+
|
|
18
|
+
## Canonical Artifact Boundary
|
|
19
|
+
|
|
20
|
+
Evidence belongs in:
|
|
21
|
+
- `problems/<id>/`
|
|
22
|
+
- pack artifacts under `packs/`
|
|
23
|
+
- workspace pulls and scaffolds under `.erdos/`
|
|
24
|
+
|
|
25
|
+
Protocol files and ORP templates are process scaffolding only.
|
package/PROTOCOL.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Open Research Protocol
|
|
2
|
+
|
|
3
|
+
`erdos-problems` ships a bundled ORP kit so every workspace can start with the same claim hygiene and verification frame.
|
|
4
|
+
|
|
5
|
+
## Canonical Truth
|
|
6
|
+
|
|
7
|
+
- Public problem metadata comes from the upstream Erdős snapshot plus the local canonical dossier.
|
|
8
|
+
- Pack context, route packets, and workspace state guide the loop but do not silently upgrade global problem status.
|
|
9
|
+
- ORP process files are protocol tools, not mathematical evidence.
|
|
10
|
+
|
|
11
|
+
## Claim Levels
|
|
12
|
+
|
|
13
|
+
- `Exact`
|
|
14
|
+
- `Verified`
|
|
15
|
+
- `Heuristic`
|
|
16
|
+
- `Conjecture`
|
|
17
|
+
|
|
18
|
+
When unsure, downgrade rather than overclaim.
|
|
19
|
+
|
|
20
|
+
## Required Discipline
|
|
21
|
+
|
|
22
|
+
- keep open problem / active route / route breakthrough / problem solved distinct
|
|
23
|
+
- record verification hooks for exact or verified claims
|
|
24
|
+
- preserve failed paths as useful artifacts, not invisible dead ends
|
|
25
|
+
- keep route claims tied to canonical dossier and pack artifacts
|
|
26
|
+
|
|
27
|
+
## Workspace ORP Kit
|
|
28
|
+
|
|
29
|
+
The CLI syncs this protocol into `.erdos/orp/`:
|
|
30
|
+
- `PROTOCOL.md`
|
|
31
|
+
- `AGENT_INTEGRATION.md`
|
|
32
|
+
- `templates/CLAIM.md`
|
|
33
|
+
- `templates/VERIFICATION_RECORD.md`
|
|
34
|
+
- `templates/FAILED_TOPIC.md`
|
|
35
|
+
|
|
36
|
+
Use `erdos orp sync` to refresh the workspace copy explicitly.
|
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ Official binary:
|
|
|
18
18
|
|
|
19
19
|
- atlas layer with canonical local `problems/<id>/problem.yaml` records
|
|
20
20
|
- bundled upstream snapshot from `teorth/erdosproblems`
|
|
21
|
+
- bundled ORP kit with protocol and templates for claim hygiene
|
|
21
22
|
- workspace `.erdos/` state for active-problem selection, upstream refreshes, scaffolds, and pull bundles
|
|
22
23
|
- sunflower cluster as the first deep harness pack
|
|
23
24
|
- quartet-aware sunflower context for `20`, `536`, `856`, and `857`
|
|
@@ -26,7 +27,10 @@ Official binary:
|
|
|
26
27
|
- unseeded problems can still be pulled into a workspace from the bundled upstream snapshot
|
|
27
28
|
|
|
28
29
|
Seeded problems:
|
|
29
|
-
- `18`, `20`, `89`, `536`, `542`, `856`, `857`, `1008`
|
|
30
|
+
- `1`, `2`, `3`, `4`, `5`, `6`, `7`, `18`, `19`, `20`, `21`, `22`, `89`, `536`, `542`, `856`, `857`, `1008`
|
|
31
|
+
|
|
32
|
+
Native dossier count:
|
|
33
|
+
- `18`
|
|
30
34
|
|
|
31
35
|
## First-run flow
|
|
32
36
|
|
|
@@ -41,13 +45,14 @@ erdos dossier show 857
|
|
|
41
45
|
For an unseeded problem, the one-step self-seeding flow is now:
|
|
42
46
|
|
|
43
47
|
```bash
|
|
44
|
-
erdos seed problem
|
|
45
|
-
erdos problem show
|
|
48
|
+
erdos seed problem 25 --include-site --cluster number-theory
|
|
49
|
+
erdos problem show 25
|
|
46
50
|
erdos workspace show
|
|
47
51
|
```
|
|
48
52
|
|
|
49
53
|
What `bootstrap` does:
|
|
50
54
|
- sets the active workspace problem
|
|
55
|
+
- syncs the bundled ORP workspace kit into `.erdos/orp/`
|
|
51
56
|
- scaffolds the canonical dossier files into `.erdos/scaffolds/<id>/`
|
|
52
57
|
- includes the upstream record when a bundled or workspace snapshot is available
|
|
53
58
|
- copies pack-specific context and compute packets when the problem has them
|
|
@@ -57,8 +62,13 @@ What `seed` does:
|
|
|
57
62
|
- creates a pull bundle for any problem in the upstream snapshot
|
|
58
63
|
- promotes that bundle into `.erdos/seeded-problems/<id>/`
|
|
59
64
|
- auto-selects the problem in the workspace
|
|
65
|
+
- syncs the bundled ORP workspace kit into `.erdos/orp/`
|
|
60
66
|
- syncs the staged research loop state and checkpoint shelf
|
|
61
67
|
- makes the new dossier visible to the atlas commands immediately inside that workspace
|
|
68
|
+
- writes richer starter artifacts:
|
|
69
|
+
- `AGENT_START.md`
|
|
70
|
+
- `ROUTES.md`
|
|
71
|
+
- `CHECKPOINT_NOTES.md`
|
|
62
72
|
|
|
63
73
|
## Pull lanes
|
|
64
74
|
|
|
@@ -87,10 +97,9 @@ What the pull lanes do:
|
|
|
87
97
|
To turn a pulled bundle into a new canonical dossier in the repo:
|
|
88
98
|
|
|
89
99
|
```bash
|
|
90
|
-
erdos maintainer seed problem
|
|
91
|
-
--from-pull .erdos/pulls/
|
|
92
|
-
--cluster number-theory
|
|
93
|
-
--family-tag additive-combinatorics
|
|
100
|
+
erdos maintainer seed problem 25 \
|
|
101
|
+
--from-pull .erdos/pulls/25 \
|
|
102
|
+
--cluster number-theory
|
|
94
103
|
```
|
|
95
104
|
|
|
96
105
|
What maintainer seeding does:
|
|
@@ -102,6 +111,10 @@ What maintainer seeding does:
|
|
|
102
111
|
- `REFERENCES.md`
|
|
103
112
|
- `EVIDENCE.md`
|
|
104
113
|
- `FORMALIZATION.md`
|
|
114
|
+
- starter loop files:
|
|
115
|
+
- `AGENT_START.md`
|
|
116
|
+
- `ROUTES.md`
|
|
117
|
+
- `CHECKPOINT_NOTES.md`
|
|
105
118
|
- preserves upstream/site provenance in the local record
|
|
106
119
|
|
|
107
120
|
## Sunflower pack
|
|
@@ -112,6 +125,10 @@ The first deep pack is the sunflower quartet:
|
|
|
112
125
|
- `536`: natural-density LCM analogue
|
|
113
126
|
- `856`: harmonic-density LCM analogue
|
|
114
127
|
|
|
128
|
+
Deep sunflower problems now also ship route packets:
|
|
129
|
+
- `20`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`
|
|
130
|
+
- `857`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`
|
|
131
|
+
|
|
115
132
|
Useful sunflower commands:
|
|
116
133
|
|
|
117
134
|
```bash
|
|
@@ -129,6 +146,27 @@ erdos sunflower status 857 --json
|
|
|
129
146
|
- problem-solved distinction
|
|
130
147
|
- compute posture when a packet exists
|
|
131
148
|
|
|
149
|
+
## ORP
|
|
150
|
+
|
|
151
|
+
`erdos-problems` now ships a bundled Open Research Protocol kit:
|
|
152
|
+
- `PROTOCOL.md`
|
|
153
|
+
- `AGENT_INTEGRATION.md`
|
|
154
|
+
- `templates/CLAIM.md`
|
|
155
|
+
- `templates/VERIFICATION_RECORD.md`
|
|
156
|
+
- `templates/FAILED_TOPIC.md`
|
|
157
|
+
|
|
158
|
+
Workspace copy:
|
|
159
|
+
- `.erdos/orp/PROTOCOL.md`
|
|
160
|
+
- `.erdos/orp/AGENT_INTEGRATION.md`
|
|
161
|
+
- `.erdos/orp/templates/`
|
|
162
|
+
|
|
163
|
+
Useful ORP commands:
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
erdos orp show
|
|
167
|
+
erdos orp sync
|
|
168
|
+
```
|
|
169
|
+
|
|
132
170
|
## CLI
|
|
133
171
|
|
|
134
172
|
```bash
|
|
@@ -144,6 +182,8 @@ erdos problem artifacts 857 --json
|
|
|
144
182
|
erdos cluster list
|
|
145
183
|
erdos cluster show sunflower
|
|
146
184
|
erdos workspace show
|
|
185
|
+
erdos orp show
|
|
186
|
+
erdos orp sync
|
|
147
187
|
erdos sunflower status 857
|
|
148
188
|
erdos sunflower status --json
|
|
149
189
|
erdos dossier show
|
|
@@ -153,11 +193,11 @@ erdos upstream diff
|
|
|
153
193
|
erdos scaffold problem 857
|
|
154
194
|
erdos bootstrap problem 857
|
|
155
195
|
erdos bootstrap problem 857 --sync-upstream
|
|
156
|
-
erdos seed problem
|
|
196
|
+
erdos seed problem 25 --include-site --cluster number-theory
|
|
157
197
|
erdos pull problem 857
|
|
158
198
|
erdos pull artifacts 857
|
|
159
199
|
erdos pull literature 857
|
|
160
|
-
erdos maintainer seed problem
|
|
200
|
+
erdos maintainer seed problem 25 --from-pull .erdos/pulls/25 --cluster number-theory
|
|
161
201
|
```
|
|
162
202
|
|
|
163
203
|
## Canonical sources
|
|
@@ -177,6 +217,11 @@ For each seeded problem, the canonical local dossier lives in `problems/<id>/`:
|
|
|
177
217
|
- `EVIDENCE.md`
|
|
178
218
|
- `FORMALIZATION.md`
|
|
179
219
|
|
|
220
|
+
Many seeded dossiers now also carry starter-loop artifacts:
|
|
221
|
+
- `AGENT_START.md`
|
|
222
|
+
- `ROUTES.md`
|
|
223
|
+
- `CHECKPOINT_NOTES.md`
|
|
224
|
+
|
|
180
225
|
The CLI can surface these directly:
|
|
181
226
|
- `erdos problem artifacts <id>` shows the canonical inventory
|
|
182
227
|
- `erdos problem artifacts <id> --json` emits machine-readable inventory
|
|
@@ -189,6 +234,7 @@ The CLI can surface these directly:
|
|
|
189
234
|
For sunflower problems, the CLI also surfaces pack-specific artifacts:
|
|
190
235
|
- pack README context
|
|
191
236
|
- per-problem context files under `packs/sunflower/problems/<id>/`
|
|
237
|
+
- route packets and checkpoint/report packets for `20` and `857`
|
|
192
238
|
- compute packets under `packs/sunflower/compute/<id>/` when available
|
|
193
239
|
|
|
194
240
|
## Notes
|
|
@@ -222,6 +268,9 @@ This runtime writes:
|
|
|
222
268
|
- `.erdos/QUESTION-LEDGER.md`
|
|
223
269
|
- `.erdos/checkpoints/CHECKPOINTS.md`
|
|
224
270
|
- `.erdos/checkpoints/CHECKPOINTS.json`
|
|
271
|
+
- `.erdos/orp/PROTOCOL.md`
|
|
272
|
+
- `.erdos/orp/AGENT_INTEGRATION.md`
|
|
273
|
+
- `.erdos/orp/templates/`
|
|
225
274
|
- `.erdos/registry/preflight/`
|
|
226
275
|
|
|
227
276
|
The public package uses the same status ladder we settled on in the lab:
|
package/docs/RESEARCH_LOOP.md
CHANGED
|
@@ -11,24 +11,29 @@ Workspace runtime files live under `.erdos/`:
|
|
|
11
11
|
- `QUESTION-LEDGER.md`
|
|
12
12
|
- `checkpoints/CHECKPOINTS.md`
|
|
13
13
|
- `checkpoints/CHECKPOINTS.json`
|
|
14
|
+
- `orp/PROTOCOL.md`
|
|
15
|
+
- `orp/AGENT_INTEGRATION.md`
|
|
16
|
+
- `orp/templates/`
|
|
14
17
|
- `registry/preflight/`
|
|
15
18
|
- `registry/compute/`
|
|
16
19
|
|
|
17
20
|
## Core loop
|
|
18
21
|
|
|
19
22
|
1. Select or bootstrap a problem.
|
|
20
|
-
2. Sync
|
|
21
|
-
3.
|
|
22
|
-
4.
|
|
23
|
-
5.
|
|
24
|
-
6.
|
|
25
|
-
7.
|
|
26
|
-
8.
|
|
23
|
+
2. Sync ORP.
|
|
24
|
+
3. Sync state.
|
|
25
|
+
4. Run preflight.
|
|
26
|
+
5. Set continuation mode.
|
|
27
|
+
6. Sync checkpoints.
|
|
28
|
+
7. Pull or scaffold artifacts.
|
|
29
|
+
8. Work the active route.
|
|
30
|
+
9. Sync checkpoints again at honest boundaries.
|
|
27
31
|
|
|
28
32
|
## Commands
|
|
29
33
|
|
|
30
34
|
```bash
|
|
31
35
|
erdos problem use 857
|
|
36
|
+
erdos orp sync
|
|
32
37
|
erdos state sync
|
|
33
38
|
erdos preflight
|
|
34
39
|
erdos continuation use route
|
|
@@ -39,7 +44,7 @@ erdos workspace show
|
|
|
39
44
|
For problems that are not yet packaged as native dossiers, the loop can start with one-step self-seeding:
|
|
40
45
|
|
|
41
46
|
```bash
|
|
42
|
-
erdos seed problem
|
|
47
|
+
erdos seed problem 25 --include-site --cluster number-theory
|
|
43
48
|
erdos preflight
|
|
44
49
|
erdos continuation use route
|
|
45
50
|
erdos checkpoints sync
|
|
@@ -47,6 +52,18 @@ erdos checkpoints sync
|
|
|
47
52
|
|
|
48
53
|
That flow writes the local dossier into `.erdos/seeded-problems/<id>/`, makes it visible to the atlas inside the current workspace, and immediately syncs the same state/checkpoint machinery used by packaged dossiers.
|
|
49
54
|
|
|
55
|
+
The seeded dossier now also includes starter-loop artifacts:
|
|
56
|
+
- `AGENT_START.md`
|
|
57
|
+
- `ROUTES.md`
|
|
58
|
+
- `CHECKPOINT_NOTES.md`
|
|
59
|
+
|
|
60
|
+
The ORP kit travels with the workspace too:
|
|
61
|
+
- `PROTOCOL.md`
|
|
62
|
+
- `AGENT_INTEGRATION.md`
|
|
63
|
+
- `templates/CLAIM.md`
|
|
64
|
+
- `templates/VERIFICATION_RECORD.md`
|
|
65
|
+
- `templates/FAILED_TOPIC.md`
|
|
66
|
+
|
|
50
67
|
## Status ladder
|
|
51
68
|
|
|
52
69
|
The public package uses the same ladder we converged on in the lab:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erdos-problems",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "CLI atlas and staged research harness for Paul Erdos problems.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,12 +9,15 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"README.md",
|
|
11
11
|
"LICENSE",
|
|
12
|
+
"PROTOCOL.md",
|
|
13
|
+
"AGENT_INTEGRATION.md",
|
|
12
14
|
"bin",
|
|
13
15
|
"data",
|
|
14
16
|
"docs",
|
|
15
17
|
"packs",
|
|
16
18
|
"problems",
|
|
17
|
-
"src"
|
|
19
|
+
"src",
|
|
20
|
+
"templates"
|
|
18
21
|
],
|
|
19
22
|
"scripts": {
|
|
20
23
|
"test": "node --test",
|
|
@@ -13,3 +13,7 @@ Profiles:
|
|
|
13
13
|
- `857`: deep harness, weak / non-uniform core
|
|
14
14
|
- `536`: dossier bridge, natural-density LCM analogue
|
|
15
15
|
- `856`: dossier bridge, harmonic-density LCM analogue
|
|
16
|
+
|
|
17
|
+
Deep route packets:
|
|
18
|
+
- `20` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`
|
|
19
|
+
- `857` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Problem 20 Agent Start
|
|
2
|
+
|
|
3
|
+
Start here:
|
|
4
|
+
- `erdos problem show 20`
|
|
5
|
+
- `erdos sunflower status 20`
|
|
6
|
+
- `erdos preflight`
|
|
7
|
+
- `erdos checkpoints sync`
|
|
8
|
+
|
|
9
|
+
Current framing:
|
|
10
|
+
- open problem: yes
|
|
11
|
+
- active route: `uniform_k3_frontier`
|
|
12
|
+
- route breakthrough: no
|
|
13
|
+
- problem solved: no
|
|
14
|
+
|
|
15
|
+
Keep the work honest:
|
|
16
|
+
- stay in the uniform-family language
|
|
17
|
+
- preserve every bridge back to `857`
|
|
18
|
+
- checkpoint any route breakthrough before widening the claim
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Problem 20 Checkpoint Packet
|
|
2
|
+
|
|
3
|
+
Checkpoint focus:
|
|
4
|
+
- keep the active route stated in uniform-family language
|
|
5
|
+
- record any bridge claim to `857` explicitly
|
|
6
|
+
- separate route progress from full strong-sunflower closure
|
|
7
|
+
|
|
8
|
+
Questions:
|
|
9
|
+
- what changed in the active uniform k=3 route?
|
|
10
|
+
- what is now reusable outside the immediate local proof step?
|
|
11
|
+
- what still blocks recurrence-facing transfer?
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Problem 20 Report Packet
|
|
2
|
+
|
|
3
|
+
Suggested report sections:
|
|
4
|
+
- active route snapshot
|
|
5
|
+
- current frontier obligation
|
|
6
|
+
- bridge notes to `857`
|
|
7
|
+
- verification hook
|
|
8
|
+
- next honest move
|
|
9
|
+
|
|
10
|
+
Do not collapse local route progress into a claim that the strong sunflower problem is solved.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
route_packet_id: strong20_uniform_k3_frontier_v1
|
|
2
|
+
route_id: uniform_k3_frontier
|
|
3
|
+
frontier_claim: Tighten the uniform k=3 sunflower lane into a recurrence-ready and transfer-ready packet that can honestly talk to problem 857.
|
|
4
|
+
theorem_module: sunflower-coda/repo/sunflower_lean/SunflowerLean/ErdosProblem20.lean
|
|
5
|
+
checkpoint_packet: CHECKPOINT_PACKET.md
|
|
6
|
+
report_packet: REPORT_PACKET.md
|
|
7
|
+
ready_prompts:
|
|
8
|
+
- Which uniform k=3 reduction is the next smallest honest step?
|
|
9
|
+
- Which reusable bridge would transfer directly back into the weak 857 program?
|
|
10
|
+
verification_hook:
|
|
11
|
+
- erdos sunflower status 20
|
|
12
|
+
- erdos problem artifacts 20 --json
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Problem 857 Agent Start
|
|
2
|
+
|
|
3
|
+
Start here:
|
|
4
|
+
- `erdos problem show 857`
|
|
5
|
+
- `erdos sunflower status 857`
|
|
6
|
+
- `erdos preflight`
|
|
7
|
+
- `erdos checkpoints sync`
|
|
8
|
+
|
|
9
|
+
Current framing:
|
|
10
|
+
- open problem: yes
|
|
11
|
+
- active route: `anchored_selector_linearization`
|
|
12
|
+
- route breakthrough: yes
|
|
13
|
+
- problem solved: no
|
|
14
|
+
|
|
15
|
+
Keep the work honest:
|
|
16
|
+
- preserve the distinction between active-route progress and full problem closure
|
|
17
|
+
- keep the recurrence-facing remainder terms explicit
|
|
18
|
+
- checkpoint every route breakthrough before selecting the next route
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Problem 857 Checkpoint Packet
|
|
2
|
+
|
|
3
|
+
Checkpoint focus:
|
|
4
|
+
- record the active route and the exact remainder/compression seam
|
|
5
|
+
- preserve open-problem versus active-route language
|
|
6
|
+
- keep reusable export and recurrence notes separate from speculative closure claims
|
|
7
|
+
|
|
8
|
+
Questions:
|
|
9
|
+
- what changed in the explicit O1a export package?
|
|
10
|
+
- which remainder term is still dominating?
|
|
11
|
+
- what is the next honest compression step?
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Problem 857 Report Packet
|
|
2
|
+
|
|
3
|
+
Suggested report sections:
|
|
4
|
+
- active route snapshot
|
|
5
|
+
- current export/compression frontier
|
|
6
|
+
- explicit remainder terms still alive
|
|
7
|
+
- verification hook
|
|
8
|
+
- next honest move
|
|
9
|
+
|
|
10
|
+
Do not phrase a route breakthrough as a solved weak sunflower problem.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
route_packet_id: weak857_export_compression_v1
|
|
2
|
+
route_id: anchored_selector_linearization
|
|
3
|
+
frontier_claim: Preserve the live export and compression frontier and keep pushing the explicit O1a remainder package toward a genuine recurrence-facing step.
|
|
4
|
+
theorem_module: sunflower-coda/repo/sunflower_lean/SunflowerLean/ObstructionGlobalBridge.lean
|
|
5
|
+
checkpoint_packet: CHECKPOINT_PACKET.md
|
|
6
|
+
report_packet: REPORT_PACKET.md
|
|
7
|
+
ready_prompts:
|
|
8
|
+
- Which explicit compression step is the next honest reduction on the active weak-sunflower route?
|
|
9
|
+
- Which exported remainder term is still dominating the recurrence-facing frontier?
|
|
10
|
+
verification_hook:
|
|
11
|
+
- erdos sunflower status 857
|
|
12
|
+
- erdos problem artifacts 857 --json
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Agent Start
|
|
2
|
+
|
|
3
|
+
Fast start:
|
|
4
|
+
- `erdos problem show 1`
|
|
5
|
+
- `erdos workspace show`
|
|
6
|
+
- `erdos preflight`
|
|
7
|
+
- `erdos continuation use route`
|
|
8
|
+
- `erdos checkpoints sync`
|
|
9
|
+
|
|
10
|
+
Working assumptions:
|
|
11
|
+
- Open problem: yes
|
|
12
|
+
- Active route: seed_route_pending
|
|
13
|
+
- Repo status: cataloged
|
|
14
|
+
- Harness depth: dossier
|
|
15
|
+
|
|
16
|
+
First honest move:
|
|
17
|
+
- tighten the local dossier for problem 1 against its pull bundle, references, and upstream provenance before widening claims.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Checkpoint Notes
|
|
2
|
+
|
|
3
|
+
- Problem: 1
|
|
4
|
+
- Repo status: cataloged
|
|
5
|
+
- Harness depth: dossier
|
|
6
|
+
|
|
7
|
+
Checkpoint prompts:
|
|
8
|
+
- What changed in the active route since the last honest checkpoint?
|
|
9
|
+
- Which claim level is justified right now: Exact, Verified, Heuristic, or Conjecture?
|
|
10
|
+
- Which upstream/public truth changed, if any?
|
|
11
|
+
- Which artifact or literature bundle should the next agent read first?
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Evidence
|
|
2
|
+
|
|
3
|
+
- This dossier was seeded for Erdos Problem #1 from a pull bundle.
|
|
4
|
+
- Upstream record included: yes
|
|
5
|
+
- Site snapshot included: yes
|
|
6
|
+
- Repo status at seed time: cataloged
|
|
7
|
+
- Harness depth at seed time: dossier
|
|
8
|
+
|
|
9
|
+
Next maintainer step:
|
|
10
|
+
- replace the seed placeholders with a curated statement, references, evidence notes, and formalization plan.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# References
|
|
2
|
+
|
|
3
|
+
- Public problem page:
|
|
4
|
+
- <https://www.erdosproblems.com/1>
|
|
5
|
+
- Upstream structured data:
|
|
6
|
+
- <https://github.com/teorth/erdosproblems>
|
|
7
|
+
- `data/problems.yaml`
|
|
8
|
+
- Site summary snapshot was present in the pull bundle at seed time.
|
|
9
|
+
- A literature lane bundle was available during seeding.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Routes
|
|
2
|
+
|
|
3
|
+
## Status Ladder
|
|
4
|
+
|
|
5
|
+
- Open problem: yes
|
|
6
|
+
- Active route: seed_route_pending
|
|
7
|
+
- Route breakthrough: no
|
|
8
|
+
- Problem solved: no
|
|
9
|
+
|
|
10
|
+
## Starter route notes
|
|
11
|
+
|
|
12
|
+
- Current seeded route placeholder for problem 1: `seed_route_pending`
|
|
13
|
+
- Treat this as a workspace-level route marker until a curated route tree is written.
|
|
14
|
+
- Keep route progress separate from global problem status.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Problem 1 Statement
|
|
2
|
+
|
|
3
|
+
Source: <https://www.erdosproblems.com/1>
|
|
4
|
+
|
|
5
|
+
Normalized focus:
|
|
6
|
+
- If $A\subseteq \{1,\ldots,N\}$ with $\lvert A\rvert=n$ is such that the subset sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$ then\[N \gg 2^{n}.\]
|
|
7
|
+
- Seeded with filtered statement candidates from the public site snapshot
|
|
8
|
+
|
|
9
|
+
Statement candidates:
|
|
10
|
+
- If $A\subseteq \{1,\ldots,N\}$ with $\lvert A\rvert=n$ is such that the subset sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$ then\[N \gg 2^{n}.\]
|
|
11
|
+
- Erdős called this 'perhaps my first serious problem' (in [Er98] he dates it to 1931). The powers of $2$ show that $2^n$ would be best possible here. The trivial lower bound is $N \gg 2^{n}/n$, since all $2^n$ distinct subset sums must lie in $[0,Nn)$. Erdős and Moser [Er56] proved\[ N\geq (\tfrac{1}{4}-o(1))\frac{2^n}{\sqrt{n}}.\](In [Er85c] Erdős offered \$100 for any improvement of the constant $1/4$ here.)
|
|
12
|
+
- A number of improvements of the constant have been given (see [St23] for a history), with the current record $\sqrt{2/\pi}$ first proved in unpublished work of Elkies and Gleason. Two proofs achieving this constant are provided by Dubroff, Fox, and Xu [DFX21] , who in fact prove the exact bound $N\geq \binom{n}{\lfloor n/2\rfloor}$.
|
|
13
|
+
- In [Er73] and [ErGr80] the generalisation where $A\subseteq (0,N]$ is a set of real numbers such that the subset sums all differ by at least $1$ is proposed, with the same conjectured bound. (The second proof of [DFX21] applies also to this generalisation.) This generalisation seems to have first appeared in [Gr71] .
|
|
14
|
+
|
|
15
|
+
Public-site preview:
|
|
16
|
+
- OPEN
|
|
17
|
+
- This is open, and cannot be resolved with a finite computation.
|
|
18
|
+
- - $500
|
|
19
|
+
- If $A\subseteq \{1,\ldots,N\}$ with $\lvert A\rvert=n$ is such that the subset sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$ then\[N \gg 2^{n}.\]
|
|
20
|
+
- #1 : [Er56] [Er57] [Er59] [Er61] [Er65b] [Er69] [Er70b] [Er70c] [Er73] [BeEr74,p.619] [ErSp74] [Er75b] [Er77c] [ErGr80,p.59] [Er81] [Er82e] [Er85c] [Er90] [Er91] [Er92b] [Er95,p.165] [Er97c] [Er98] [Va99,1.20]
|
|
21
|
+
- number theory |
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
problem_id: "1"
|
|
2
|
+
display_name: "Erdos Problem #1"
|
|
3
|
+
title: "Erdos Problem #1"
|
|
4
|
+
source:
|
|
5
|
+
site: erdosproblems.com
|
|
6
|
+
url: https://www.erdosproblems.com/1
|
|
7
|
+
external_id: "1"
|
|
8
|
+
upstream:
|
|
9
|
+
repo: https://github.com/teorth/erdosproblems
|
|
10
|
+
data_file: data/problems.yaml
|
|
11
|
+
number: "1"
|
|
12
|
+
provenance:
|
|
13
|
+
seeded_at: 2026-03-26T04:41:24.787Z
|
|
14
|
+
seeded_from:
|
|
15
|
+
kind: pull_bundle
|
|
16
|
+
upstream_record_included: true
|
|
17
|
+
site_snapshot_included: true
|
|
18
|
+
status:
|
|
19
|
+
site_status: open
|
|
20
|
+
site_badge: OPEN
|
|
21
|
+
repo_status: cataloged
|
|
22
|
+
upstream_status: open
|
|
23
|
+
upstream_last_update: 2025-08-31
|
|
24
|
+
cluster: number-theory
|
|
25
|
+
prize:
|
|
26
|
+
display: $500
|
|
27
|
+
related_problems: []
|
|
28
|
+
family_tags:
|
|
29
|
+
- number-theory
|
|
30
|
+
- additive-combinatorics
|
|
31
|
+
harness:
|
|
32
|
+
depth: dossier
|
|
33
|
+
statement:
|
|
34
|
+
short: If $A\subseteq \{1,\ldots,N\}$ with $\lvert A\rvert=n$ is such that the
|
|
35
|
+
subset sums $\sum_{a\in S}a$ are distinct for all $S\subseteq A$ then\[N \gg
|
|
36
|
+
2^{n}.\]
|
|
37
|
+
normalized_md_path: STATEMENT.md
|
|
38
|
+
references_path: REFERENCES.md
|
|
39
|
+
evidence_path: EVIDENCE.md
|
|
40
|
+
formalization_path: FORMALIZATION.md
|
|
41
|
+
formalization:
|
|
42
|
+
status: planned
|
|
43
|
+
upstream_state: yes
|
|
44
|
+
upstream_last_update: 2025-08-31
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Agent Start
|
|
2
|
+
|
|
3
|
+
Fast start:
|
|
4
|
+
- `erdos problem show 19`
|
|
5
|
+
- `erdos workspace show`
|
|
6
|
+
- `erdos preflight`
|
|
7
|
+
- `erdos continuation use route`
|
|
8
|
+
- `erdos checkpoints sync`
|
|
9
|
+
|
|
10
|
+
Working assumptions:
|
|
11
|
+
- Open problem: yes
|
|
12
|
+
- Active route: seed_route_pending
|
|
13
|
+
- Repo status: cataloged
|
|
14
|
+
- Harness depth: dossier
|
|
15
|
+
|
|
16
|
+
First honest move:
|
|
17
|
+
- tighten the local dossier for problem 19 against its pull bundle, references, and upstream provenance before widening claims.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Checkpoint Notes
|
|
2
|
+
|
|
3
|
+
- Problem: 19
|
|
4
|
+
- Repo status: cataloged
|
|
5
|
+
- Harness depth: dossier
|
|
6
|
+
|
|
7
|
+
Checkpoint prompts:
|
|
8
|
+
- What changed in the active route since the last honest checkpoint?
|
|
9
|
+
- Which claim level is justified right now: Exact, Verified, Heuristic, or Conjecture?
|
|
10
|
+
- Which upstream/public truth changed, if any?
|
|
11
|
+
- Which artifact or literature bundle should the next agent read first?
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Evidence
|
|
2
|
+
|
|
3
|
+
- This dossier was seeded for Erdos Problem #19 from a pull bundle.
|
|
4
|
+
- Upstream record included: yes
|
|
5
|
+
- Site snapshot included: yes
|
|
6
|
+
- Repo status at seed time: cataloged
|
|
7
|
+
- Harness depth at seed time: dossier
|
|
8
|
+
|
|
9
|
+
Next maintainer step:
|
|
10
|
+
- replace the seed placeholders with a curated statement, references, evidence notes, and formalization plan.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# References
|
|
2
|
+
|
|
3
|
+
- Public problem page:
|
|
4
|
+
- <https://www.erdosproblems.com/19>
|
|
5
|
+
- Upstream structured data:
|
|
6
|
+
- <https://github.com/teorth/erdosproblems>
|
|
7
|
+
- `data/problems.yaml`
|
|
8
|
+
- Site summary snapshot was present in the pull bundle at seed time.
|
|
9
|
+
- A literature lane bundle was available during seeding.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Routes
|
|
2
|
+
|
|
3
|
+
## Status Ladder
|
|
4
|
+
|
|
5
|
+
- Open problem: yes
|
|
6
|
+
- Active route: seed_route_pending
|
|
7
|
+
- Route breakthrough: no
|
|
8
|
+
- Problem solved: no
|
|
9
|
+
|
|
10
|
+
## Starter route notes
|
|
11
|
+
|
|
12
|
+
- Current seeded route placeholder for problem 19: `seed_route_pending`
|
|
13
|
+
- Treat this as a workspace-level route marker until a curated route tree is written.
|
|
14
|
+
- Keep route progress separate from global problem status.
|