erdos-problems 0.1.13 → 0.2.1
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/README.md +117 -4
- package/docs/RESEARCH_LOOP.md +21 -2
- package/package.json +1 -1
- package/packs/number-theory/README.md +17 -0
- package/packs/number-theory/problems/1/CHECKPOINT_TEMPLATE.md +7 -0
- package/packs/number-theory/problems/1/CONTEXT.md +8 -0
- package/packs/number-theory/problems/1/FRONTIER_NOTE.md +8 -0
- package/packs/number-theory/problems/1/OPS_DETAILS.yaml +25 -0
- package/packs/number-theory/problems/1/REPORT_TEMPLATE.md +7 -0
- package/packs/number-theory/problems/1/ROUTE_HISTORY.md +5 -0
- package/packs/number-theory/problems/1/ROUTE_PACKET.yaml +13 -0
- package/packs/number-theory/problems/1/context.yaml +25 -0
- package/packs/number-theory/problems/2/CHECKPOINT_TEMPLATE.md +7 -0
- package/packs/number-theory/problems/2/CONTEXT.md +8 -0
- package/packs/number-theory/problems/2/FRONTIER_NOTE.md +8 -0
- package/packs/number-theory/problems/2/OPS_DETAILS.yaml +25 -0
- package/packs/number-theory/problems/2/REPORT_TEMPLATE.md +7 -0
- package/packs/number-theory/problems/2/ROUTE_HISTORY.md +5 -0
- package/packs/number-theory/problems/2/ROUTE_PACKET.yaml +13 -0
- package/packs/number-theory/problems/2/context.yaml +25 -0
- package/packs/sunflower/README.md +17 -4
- package/packs/sunflower/problems/20/CHECKPOINT_TEMPLATE.md +29 -0
- package/packs/sunflower/problems/20/FRONTIER_NOTE.md +13 -0
- package/packs/sunflower/problems/20/OPS_DETAILS.yaml +44 -0
- package/packs/sunflower/problems/20/REPORT_TEMPLATE.md +23 -0
- package/packs/sunflower/problems/20/ROUTE_HISTORY.md +18 -0
- package/packs/sunflower/problems/536/CHECKPOINT_TEMPLATE.md +7 -0
- package/packs/sunflower/problems/536/FRONTIER_NOTE.md +8 -0
- package/packs/sunflower/problems/536/OPS_DETAILS.yaml +39 -0
- package/packs/sunflower/problems/536/REPORT_TEMPLATE.md +7 -0
- package/packs/sunflower/problems/536/ROUTE_HISTORY.md +5 -0
- package/packs/sunflower/problems/856/CHECKPOINT_TEMPLATE.md +7 -0
- package/packs/sunflower/problems/856/FRONTIER_NOTE.md +8 -0
- package/packs/sunflower/problems/856/OPS_DETAILS.yaml +39 -0
- package/packs/sunflower/problems/856/REPORT_TEMPLATE.md +7 -0
- package/packs/sunflower/problems/856/ROUTE_HISTORY.md +5 -0
- package/packs/sunflower/problems/857/CHECKPOINT_TEMPLATE.md +32 -0
- package/packs/sunflower/problems/857/FRONTIER_NOTE.md +18 -0
- package/packs/sunflower/problems/857/OPS_DETAILS.yaml +65 -0
- package/packs/sunflower/problems/857/REPORT_TEMPLATE.md +26 -0
- package/packs/sunflower/problems/857/ROUTE_HISTORY.md +25 -0
- package/src/cli/index.js +22 -3
- package/src/commands/archive.js +46 -0
- package/src/commands/cluster.js +4 -0
- package/src/commands/maintainer.js +20 -2
- package/src/commands/number-theory.js +199 -0
- package/src/commands/problem.js +3 -0
- package/src/commands/pull.js +180 -5
- package/src/commands/sunflower.js +290 -12
- package/src/commands/upstream.js +129 -0
- package/src/commands/workspace.js +20 -0
- package/src/runtime/archive.js +87 -0
- package/src/runtime/checkpoints.js +27 -0
- package/src/runtime/maintainer-seed.js +70 -0
- package/src/runtime/number-theory.js +169 -0
- package/src/runtime/paths.js +16 -0
- package/src/runtime/state.js +63 -3
- package/src/runtime/sunflower.js +329 -2
- package/src/runtime/workspace.js +4 -0
- package/src/upstream/literature.js +83 -0
package/README.md
CHANGED
|
@@ -33,6 +33,10 @@ Seeded problems:
|
|
|
33
33
|
Native dossier count:
|
|
34
34
|
- `18`
|
|
35
35
|
|
|
36
|
+
Pack coverage:
|
|
37
|
+
- sunflower pack: `4`
|
|
38
|
+
- number-theory starter cockpit: `2`
|
|
39
|
+
|
|
36
40
|
## First-run flow
|
|
37
41
|
|
|
38
42
|
```bash
|
|
@@ -41,9 +45,11 @@ erdos bootstrap problem 857
|
|
|
41
45
|
erdos problem artifacts 857 --json
|
|
42
46
|
erdos sunflower status 857
|
|
43
47
|
erdos sunflower board 857
|
|
48
|
+
erdos sunflower frontier 857
|
|
44
49
|
erdos sunflower routes 857
|
|
45
50
|
erdos sunflower tickets 857
|
|
46
51
|
erdos dossier show 857
|
|
52
|
+
erdos number-theory status 1
|
|
47
53
|
```
|
|
48
54
|
|
|
49
55
|
For an unseeded problem, the one-step self-seeding flow is now:
|
|
@@ -78,6 +84,12 @@ What `seed` does:
|
|
|
78
84
|
- `PUBLIC_STATUS_REVIEW.md`
|
|
79
85
|
- `AGENT_WEBSEARCH_BRIEF.md`
|
|
80
86
|
|
|
87
|
+
The seeded workspace also now has a clearer runtime shape:
|
|
88
|
+
- `.erdos/runs/`
|
|
89
|
+
- `.erdos/archives/`
|
|
90
|
+
- `.erdos/checkpoints/`
|
|
91
|
+
- `.erdos/orp/`
|
|
92
|
+
|
|
81
93
|
## Pull lanes
|
|
82
94
|
|
|
83
95
|
For any problem number in the upstream snapshot, you can create a workspace bundle even if the problem is not yet seeded locally:
|
|
@@ -86,6 +98,8 @@ For any problem number in the upstream snapshot, you can create a workspace bund
|
|
|
86
98
|
erdos pull problem 857
|
|
87
99
|
erdos pull artifacts 857
|
|
88
100
|
erdos pull literature 857
|
|
101
|
+
erdos pull literature 857 --json
|
|
102
|
+
erdos pull literature 857 --include-crossref --include-openalex
|
|
89
103
|
erdos pull problem 999 --include-site --include-public-search
|
|
90
104
|
erdos pull problem 999 --refresh-upstream
|
|
91
105
|
```
|
|
@@ -103,6 +117,13 @@ What the pull lanes do:
|
|
|
103
117
|
- `PUBLIC_STATUS_REVIEW.md`
|
|
104
118
|
- `PUBLIC_STATUS_REVIEW.json`
|
|
105
119
|
- `AGENT_WEBSEARCH_BRIEF.md`
|
|
120
|
+
- when `--include-crossref` is used, the literature lane also includes:
|
|
121
|
+
- `CROSSREF_RESULTS.json`
|
|
122
|
+
- `CROSSREF_RESULTS.md`
|
|
123
|
+
- when `--include-openalex` is used, the literature lane also includes:
|
|
124
|
+
- `OPENALEX_RESULTS.json`
|
|
125
|
+
- `OPENALEX_RESULTS.md`
|
|
126
|
+
- when `--json` is used, the pull command emits an agent-friendly machine summary instead of prose
|
|
106
127
|
|
|
107
128
|
## Maintainer seeding
|
|
108
129
|
|
|
@@ -112,6 +133,8 @@ To turn a pulled bundle into a new canonical dossier in the repo:
|
|
|
112
133
|
erdos maintainer seed problem 25 \
|
|
113
134
|
--from-pull .erdos/pulls/25 \
|
|
114
135
|
--cluster number-theory
|
|
136
|
+
erdos maintainer review problem 25 \
|
|
137
|
+
--from-pull .erdos/pulls/25
|
|
115
138
|
```
|
|
116
139
|
|
|
117
140
|
What maintainer seeding does:
|
|
@@ -131,6 +154,7 @@ What maintainer seeding does:
|
|
|
131
154
|
- `PUBLIC_STATUS_REVIEW.md`
|
|
132
155
|
- `AGENT_WEBSEARCH_BRIEF.md`
|
|
133
156
|
- preserves upstream/site provenance in the local record
|
|
157
|
+
- `erdos maintainer review problem <id>` also creates a review checklist before promotion
|
|
134
158
|
|
|
135
159
|
## Sunflower pack
|
|
136
160
|
|
|
@@ -141,10 +165,10 @@ The first deep pack is the sunflower quartet:
|
|
|
141
165
|
- `856`: harmonic-density LCM analogue
|
|
142
166
|
|
|
143
167
|
Sunflower problems now ship pack packets:
|
|
144
|
-
- `20`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
145
|
-
- `857`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
146
|
-
- `536`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
147
|
-
- `856`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
168
|
+
- `20`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
169
|
+
- `857`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
170
|
+
- `536`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
171
|
+
- `856`: `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
148
172
|
|
|
149
173
|
Useful sunflower commands:
|
|
150
174
|
|
|
@@ -155,8 +179,13 @@ erdos sunflower status 536
|
|
|
155
179
|
erdos sunflower board 536
|
|
156
180
|
erdos sunflower ready 857
|
|
157
181
|
erdos sunflower ladder 20
|
|
182
|
+
erdos sunflower frontier 857
|
|
158
183
|
erdos sunflower routes 857
|
|
159
184
|
erdos sunflower tickets 857
|
|
185
|
+
erdos sunflower route 857 anchored_selector_linearization
|
|
186
|
+
erdos sunflower ticket 20 T6
|
|
187
|
+
erdos sunflower atom 857 T10.G3.A2
|
|
188
|
+
erdos sunflower compute run 857
|
|
160
189
|
erdos sunflower board 857
|
|
161
190
|
erdos sunflower status 857 --json
|
|
162
191
|
```
|
|
@@ -194,6 +223,67 @@ erdos sunflower status 857 --json
|
|
|
194
223
|
- the active ticket, leaf theorem, and gate/atom counts
|
|
195
224
|
- which tickets are closed versus still honest live pressure
|
|
196
225
|
|
|
226
|
+
`erdos sunflower frontier` surfaces:
|
|
227
|
+
- the compressed cockpit view:
|
|
228
|
+
- active route
|
|
229
|
+
- active ticket
|
|
230
|
+
- first ready atom
|
|
231
|
+
- checkpoint focus
|
|
232
|
+
- compute posture
|
|
233
|
+
|
|
234
|
+
`erdos sunflower route|ticket|atom` surfaces:
|
|
235
|
+
- the deeper public drill-down packet for a specific route, ticket, or atom
|
|
236
|
+
- live summary, blocker, next move, and source paths when available
|
|
237
|
+
|
|
238
|
+
`erdos sunflower compute run` surfaces:
|
|
239
|
+
- a governed local-scout run bundle only when the packaged compute posture admits a local scout
|
|
240
|
+
- writes reproducible run artifacts into `.erdos/runs/<run-id>/`
|
|
241
|
+
- records governance and ORP-facing packet context
|
|
242
|
+
- does not silently escalate into paid or unbounded compute
|
|
243
|
+
|
|
244
|
+
## Number-theory starter cockpit
|
|
245
|
+
|
|
246
|
+
The first non-sunflower pack is now a light but real cockpit for two number-theory problems:
|
|
247
|
+
- `1`: open starter cockpit around a distinct-subset-sum lower-bound route
|
|
248
|
+
- `2`: archive cockpit around a disproved / counterexample-facing record
|
|
249
|
+
|
|
250
|
+
Useful number-theory commands:
|
|
251
|
+
|
|
252
|
+
```bash
|
|
253
|
+
erdos number-theory status 1
|
|
254
|
+
erdos number-theory frontier 1
|
|
255
|
+
erdos number-theory routes 1
|
|
256
|
+
erdos number-theory tickets 1
|
|
257
|
+
erdos number-theory status 2 --json
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
The number-theory pack is intentionally lighter than sunflower:
|
|
261
|
+
- no mirrored theorem board yet
|
|
262
|
+
- explicit route/frontier/ticket packet layer
|
|
263
|
+
- honest archive posture for disproved problems
|
|
264
|
+
|
|
265
|
+
## Archive mode
|
|
266
|
+
|
|
267
|
+
Solved problems can now be treated as method exemplars instead of dead entries.
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
erdos problem show 1008
|
|
271
|
+
erdos archive show 1008
|
|
272
|
+
erdos archive scaffold 1008
|
|
273
|
+
erdos number-theory status 1
|
|
274
|
+
erdos number-theory frontier 1
|
|
275
|
+
erdos number-theory routes 1
|
|
276
|
+
erdos number-theory tickets 1
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
Archive scaffolds land in:
|
|
280
|
+
- `.erdos/archives/<id>/`
|
|
281
|
+
|
|
282
|
+
and include:
|
|
283
|
+
- `ARCHIVE.json`
|
|
284
|
+
- `ARCHIVE_SUMMARY.md`
|
|
285
|
+
- `METHOD_PACKET.md`
|
|
286
|
+
|
|
197
287
|
## ORP
|
|
198
288
|
|
|
199
289
|
`erdos-problems` now ships a bundled Open Research Protocol kit:
|
|
@@ -229,6 +319,7 @@ erdos problem artifacts 857
|
|
|
229
319
|
erdos problem artifacts 857 --json
|
|
230
320
|
erdos cluster list
|
|
231
321
|
erdos cluster show sunflower
|
|
322
|
+
erdos cluster show number-theory
|
|
232
323
|
erdos workspace show
|
|
233
324
|
erdos orp show
|
|
234
325
|
erdos orp sync
|
|
@@ -236,13 +327,24 @@ erdos sunflower status 857
|
|
|
236
327
|
erdos sunflower board 857
|
|
237
328
|
erdos sunflower ready 857
|
|
238
329
|
erdos sunflower ladder 857
|
|
330
|
+
erdos sunflower frontier 857
|
|
239
331
|
erdos sunflower routes 857
|
|
240
332
|
erdos sunflower tickets 857
|
|
333
|
+
erdos sunflower route 857 anchored_selector_linearization
|
|
334
|
+
erdos sunflower ticket 857 T10
|
|
335
|
+
erdos sunflower atom 857 T10.G3.A2
|
|
336
|
+
erdos sunflower compute run 857
|
|
337
|
+
erdos number-theory status 1
|
|
338
|
+
erdos number-theory frontier 1
|
|
339
|
+
erdos number-theory routes 1
|
|
340
|
+
erdos number-theory tickets 1
|
|
241
341
|
erdos sunflower status --json
|
|
242
342
|
erdos dossier show
|
|
243
343
|
erdos upstream show
|
|
244
344
|
erdos upstream sync
|
|
245
345
|
erdos upstream diff
|
|
346
|
+
erdos upstream drift
|
|
347
|
+
erdos upstream drift 857 --json
|
|
246
348
|
erdos scaffold problem 857
|
|
247
349
|
erdos bootstrap problem 857
|
|
248
350
|
erdos bootstrap problem 857 --sync-upstream
|
|
@@ -250,7 +352,12 @@ erdos seed problem 25 --cluster number-theory
|
|
|
250
352
|
erdos pull problem 857
|
|
251
353
|
erdos pull artifacts 857
|
|
252
354
|
erdos pull literature 857
|
|
355
|
+
erdos pull literature 857 --json
|
|
356
|
+
erdos pull literature 857 --include-crossref --include-openalex
|
|
357
|
+
erdos maintainer review problem 25 --from-pull .erdos/pulls/25
|
|
253
358
|
erdos maintainer seed problem 25 --from-pull .erdos/pulls/25 --cluster number-theory
|
|
359
|
+
erdos archive show 1008
|
|
360
|
+
erdos archive scaffold 1008
|
|
254
361
|
```
|
|
255
362
|
|
|
256
363
|
## Canonical sources
|
|
@@ -293,6 +400,12 @@ For sunflower problems, the CLI also surfaces pack-specific artifacts:
|
|
|
293
400
|
- compute packets under `packs/sunflower/compute/<id>/` when available
|
|
294
401
|
- compute-governance evaluation under `breakthroughs`, surfaced through `erdos sunflower status`
|
|
295
402
|
|
|
403
|
+
For number-theory starter-cockpit problems, the CLI now also surfaces:
|
|
404
|
+
- pack README context
|
|
405
|
+
- per-problem context files under `packs/number-theory/problems/<id>/`
|
|
406
|
+
- route packets, frontier notes, route histories, checkpoint/report templates, and ops-detail packets
|
|
407
|
+
- archive posture for disproved problems through `erdos number-theory status`
|
|
408
|
+
|
|
296
409
|
## Notes
|
|
297
410
|
|
|
298
411
|
- `erdos-problems` is the canonical npm package name.
|
package/docs/RESEARCH_LOOP.md
CHANGED
|
@@ -11,6 +11,8 @@ Workspace runtime files live under `.erdos/`:
|
|
|
11
11
|
- `QUESTION-LEDGER.md`
|
|
12
12
|
- `checkpoints/CHECKPOINTS.md`
|
|
13
13
|
- `checkpoints/CHECKPOINTS.json`
|
|
14
|
+
- `runs/<run-id>/`
|
|
15
|
+
- `archives/<id>/`
|
|
14
16
|
- `orp/PROTOCOL.md`
|
|
15
17
|
- `orp/AGENT_INTEGRATION.md`
|
|
16
18
|
- `orp/templates/`
|
|
@@ -28,7 +30,8 @@ Workspace runtime files live under `.erdos/`:
|
|
|
28
30
|
7. Pull or scaffold artifacts.
|
|
29
31
|
8. Review public status and agent websearch brief if the problem was freshly seeded.
|
|
30
32
|
9. Work the active route.
|
|
31
|
-
10.
|
|
33
|
+
10. If the pack admits a local scout, run it intentionally and checkpoint the artifact.
|
|
34
|
+
11. Sync checkpoints again at honest boundaries.
|
|
32
35
|
|
|
33
36
|
## Commands
|
|
34
37
|
|
|
@@ -72,10 +75,26 @@ For sunflower compute lanes, ORP now sits above `breakthroughs`:
|
|
|
72
75
|
- `erdos sunflower board <id>` exposes the packaged atomic or bridge board for the active sunflower problem
|
|
73
76
|
- `erdos sunflower ready <id>` exposes the dependency-satisfied ready queue for the packaged board
|
|
74
77
|
- `erdos sunflower ladder <id>` exposes the first-principles ladder for the packaged board
|
|
78
|
+
- `erdos sunflower frontier <id>` exposes the compressed cockpit view for the active board
|
|
75
79
|
- `erdos sunflower routes <id>` exposes the public route table for the packaged board
|
|
76
80
|
- `erdos sunflower tickets <id>` exposes the ticket table for the packaged board
|
|
81
|
+
- `erdos sunflower route <id> <route-id>` exposes the deeper public route packet
|
|
82
|
+
- `erdos sunflower ticket <id> <ticket-id>` exposes the deeper public ticket packet
|
|
83
|
+
- `erdos sunflower atom <id> <atom-id>` exposes the deeper public atom packet
|
|
84
|
+
- `erdos sunflower compute run <id>` writes a governed local-scout bundle when the packet admits it
|
|
77
85
|
- the CLI surfaces the selected rung, dispatch action, and the reason compute is admissible
|
|
78
|
-
- this is compute governance and traceability, not an automatic compute launch
|
|
86
|
+
- this is compute governance and traceability, not an automatic paid or unbounded compute launch
|
|
87
|
+
|
|
88
|
+
For number-theory starter-cockpit problems:
|
|
89
|
+
- `erdos number-theory status <id>` exposes the current route/frontier posture
|
|
90
|
+
- `erdos number-theory frontier <id>` compresses the honest next move
|
|
91
|
+
- `erdos number-theory routes <id>` exposes the small route table
|
|
92
|
+
- `erdos number-theory tickets <id>` exposes the current ticket/archive packet
|
|
93
|
+
- this is deliberately lighter than the sunflower pack and should stay honest about that
|
|
94
|
+
|
|
95
|
+
For solved problems:
|
|
96
|
+
- `erdos archive show <id>` exposes archival posture
|
|
97
|
+
- `erdos archive scaffold <id>` creates a method-exemplar bundle under `.erdos/archives/<id>/`
|
|
79
98
|
|
|
80
99
|
## Status ladder
|
|
81
100
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Number Theory Pack
|
|
2
|
+
|
|
3
|
+
Light starter cockpit for number-theory problems in `erdos-problems`.
|
|
4
|
+
|
|
5
|
+
Current seeded cockpit problems:
|
|
6
|
+
- `1`: open starter cockpit around a distinct-subset-sum lower-bound route
|
|
7
|
+
- `2`: counterexample/archive cockpit for a disproved covering-systems problem
|
|
8
|
+
|
|
9
|
+
Useful commands:
|
|
10
|
+
- `erdos number-theory status 1`
|
|
11
|
+
- `erdos number-theory frontier 1`
|
|
12
|
+
- `erdos number-theory routes 1`
|
|
13
|
+
- `erdos number-theory tickets 1`
|
|
14
|
+
- `erdos number-theory status 2 --json`
|
|
15
|
+
|
|
16
|
+
Design rule:
|
|
17
|
+
- keep this pack lighter than sunflower until a deeper theorem-board frontier is honestly earned
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Problem 1 Number Theory Pack Context
|
|
2
|
+
|
|
3
|
+
- Family role: additive_number_theory_seed
|
|
4
|
+
- Harness profile: dossier_seed_pack
|
|
5
|
+
- Active route posture: additive_structure_seed
|
|
6
|
+
|
|
7
|
+
This problem is intentionally lighter than the sunflower pack.
|
|
8
|
+
The point is to give number theory a clean pack home before we move any deep gated flow over.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Problem 1 Frontier Note
|
|
2
|
+
|
|
3
|
+
This is a starter cockpit, not a deep theorem board.
|
|
4
|
+
|
|
5
|
+
The honest live route is the distinct-subset-sum lower-bound route:
|
|
6
|
+
- keep the problem statement exact
|
|
7
|
+
- keep the additive lower-bound framing explicit
|
|
8
|
+
- do not widen this into a generic additive-combinatorics program
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
packet_id: nt1_ops_details_v1
|
|
2
|
+
summary: Starter cockpit packet for the distinct-subset-sum lower-bound route.
|
|
3
|
+
routes:
|
|
4
|
+
- route_id: distinct_subset_sum_lower_bound
|
|
5
|
+
title: Distinct Subset-Sum Lower Bound
|
|
6
|
+
status: active
|
|
7
|
+
summary: Keep the problem centered on the exponential-growth lower-bound route implied by distinct subset sums.
|
|
8
|
+
why_now: This is the smallest honest route that turns the dossier into a real cockpit.
|
|
9
|
+
next_move: Freeze the first exact reduction and connect it to the canonical references.
|
|
10
|
+
tickets:
|
|
11
|
+
- ticket_id: N1
|
|
12
|
+
title: Freeze the lower-bound route note
|
|
13
|
+
route_id: distinct_subset_sum_lower_bound
|
|
14
|
+
status: active
|
|
15
|
+
summary: Turn the starter dossier into a stable lower-bound cockpit.
|
|
16
|
+
current_blocker: The first exact reduction and evidence stack are not yet frozen together.
|
|
17
|
+
next_move: Close `N1.G1.A1`.
|
|
18
|
+
atoms:
|
|
19
|
+
- atom_id: N1.G1.A1
|
|
20
|
+
title: Freeze the first exact lower-bound reduction and its reference hook
|
|
21
|
+
route_id: distinct_subset_sum_lower_bound
|
|
22
|
+
ticket_id: N1
|
|
23
|
+
status: ready
|
|
24
|
+
summary: This is the smallest honest move that upgrades the dossier into a route-aware cockpit.
|
|
25
|
+
next_move: Record the first reduction and checkpoint it without overclaiming theorem progress.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Problem 1 Route History
|
|
2
|
+
|
|
3
|
+
- Initial public pack posture: dossier-first seed.
|
|
4
|
+
- Current public pack posture: starter cockpit around the distinct-subset-sum lower-bound route.
|
|
5
|
+
- Next maturity threshold: freeze the first exact reduction or historical lower-bound checkpoint before adding deeper pack machinery.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
route_packet_id: nt1_distinct_subset_sum_lower_bound_v1
|
|
2
|
+
route_id: distinct_subset_sum_lower_bound
|
|
3
|
+
frontier_claim: Preserve the exponential-growth lower-bound route for distinct subset sums and keep the first honest reduction explicit.
|
|
4
|
+
theorem_module: ""
|
|
5
|
+
checkpoint_packet: CHECKPOINT_TEMPLATE.md
|
|
6
|
+
report_packet: REPORT_TEMPLATE.md
|
|
7
|
+
ready_prompts:
|
|
8
|
+
- Which exact lower-bound reduction should be frozen first for the distinct-subset-sum route?
|
|
9
|
+
- Which reference or historical bound is still missing from the canonical dossier?
|
|
10
|
+
verification_hook:
|
|
11
|
+
- erdos number-theory status 1
|
|
12
|
+
- erdos number-theory routes 1
|
|
13
|
+
- erdos problem artifacts 1 --json
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
problem_id: "1"
|
|
2
|
+
family_role: additive_number_theory_seed
|
|
3
|
+
harness_profile: starter_cockpit
|
|
4
|
+
default_active_route: distinct_subset_sum_lower_bound
|
|
5
|
+
bootstrap_focus: Freeze the exact problem statement, the local dossier, and the first honest lower-bound route for distinct subset sums.
|
|
6
|
+
route_story: This problem now has a starter cockpit whose job is to keep the lower-bound route explicit without pretending we already have a deep theorem engine.
|
|
7
|
+
frontier_label: distinct_subset_sum_lower_bound
|
|
8
|
+
frontier_detail: Keep the problem anchored to the binary-growth lower-bound route and freeze the exact first reduction before widening claims.
|
|
9
|
+
checkpoint_focus: Preserve provenance, the exact lower-bound route, and the open-problem boundary in every checkpoint.
|
|
10
|
+
next_honest_move: Freeze the first additive lower-bound route note and tighten the evidence stack around the distinct-subset-sum hypothesis.
|
|
11
|
+
related_core_problems: []
|
|
12
|
+
literature_focus:
|
|
13
|
+
- additive number theory
|
|
14
|
+
- extremal sets
|
|
15
|
+
artifact_focus:
|
|
16
|
+
- STATEMENT.md
|
|
17
|
+
- REFERENCES.md
|
|
18
|
+
- EVIDENCE.md
|
|
19
|
+
question_ledger:
|
|
20
|
+
open_questions:
|
|
21
|
+
- What is the first exact lower-bound reduction worth freezing for the distinct-subset-sum route?
|
|
22
|
+
active_route_notes:
|
|
23
|
+
- Keep the active route tied to distinct subset sums and exponential-growth pressure, not generic additive chatter.
|
|
24
|
+
route_breakthroughs: []
|
|
25
|
+
problem_solved: []
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Problem 2 Number Theory Pack Context
|
|
2
|
+
|
|
3
|
+
- Family role: additive_number_theory_seed
|
|
4
|
+
- Harness profile: dossier_seed_pack
|
|
5
|
+
- Active route posture: additive_structure_seed
|
|
6
|
+
|
|
7
|
+
This is a light pack context packet.
|
|
8
|
+
It exists so the next family pack can grow inside the same architecture without forcing sunflower-style machinery prematurely.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
packet_id: nt2_ops_details_v1
|
|
2
|
+
summary: Archive cockpit packet for the disproved covering-systems problem.
|
|
3
|
+
routes:
|
|
4
|
+
- route_id: counterexample_archive
|
|
5
|
+
title: Counterexample Archive
|
|
6
|
+
status: archival
|
|
7
|
+
summary: Keep the problem packaged as a disproval archive rather than a live open frontier.
|
|
8
|
+
why_now: This is the honest public posture for a disproved problem.
|
|
9
|
+
next_move: Freeze the strongest disproval/counterexample references in the archive packet.
|
|
10
|
+
tickets:
|
|
11
|
+
- ticket_id: N2
|
|
12
|
+
title: Tighten the disproval archive packet
|
|
13
|
+
route_id: counterexample_archive
|
|
14
|
+
status: active
|
|
15
|
+
summary: Package the disproval cleanly enough that future agents cannot mistake this for an open problem.
|
|
16
|
+
current_blocker: The archive packet still needs a sharper reference-centered summary.
|
|
17
|
+
next_move: Close `N2.G1.A1`.
|
|
18
|
+
atoms:
|
|
19
|
+
- atom_id: N2.G1.A1
|
|
20
|
+
title: Freeze the primary disproval reference and method note
|
|
21
|
+
route_id: counterexample_archive
|
|
22
|
+
ticket_id: N2
|
|
23
|
+
status: ready
|
|
24
|
+
summary: This is the smallest archive improvement that meaningfully clarifies the public dossier.
|
|
25
|
+
next_move: Record the best disproval reference and checkpoint the archive packet.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
route_packet_id: nt2_counterexample_archive_v1
|
|
2
|
+
route_id: counterexample_archive
|
|
3
|
+
frontier_claim: Preserve the disproval and counterexample-facing references cleanly so the problem remains useful as a method exemplar.
|
|
4
|
+
theorem_module: ""
|
|
5
|
+
checkpoint_packet: CHECKPOINT_TEMPLATE.md
|
|
6
|
+
report_packet: REPORT_TEMPLATE.md
|
|
7
|
+
ready_prompts:
|
|
8
|
+
- Which exact disproval reference should be frozen first in the archive packet?
|
|
9
|
+
- Which method lesson from the counterexample should be made explicit for future number-theory dossiers?
|
|
10
|
+
verification_hook:
|
|
11
|
+
- erdos number-theory status 2
|
|
12
|
+
- erdos number-theory routes 2
|
|
13
|
+
- erdos problem show 2
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
problem_id: "2"
|
|
2
|
+
family_role: covering_systems_counterexample_archive
|
|
3
|
+
harness_profile: archive_cockpit
|
|
4
|
+
default_active_route: counterexample_archive
|
|
5
|
+
bootstrap_focus: Freeze the exact disproval record, the dossier provenance, and the counterexample-facing archive packet.
|
|
6
|
+
route_story: This problem is not a live open frontier; the honest public job is to preserve the disproval and keep it usable as a method/counterexample exemplar.
|
|
7
|
+
frontier_label: counterexample_archive
|
|
8
|
+
frontier_detail: Preserve the counterexample/archive posture cleanly and avoid drifting back into open-problem language.
|
|
9
|
+
checkpoint_focus: Keep the disproval record, references, and archive packet synchronized.
|
|
10
|
+
next_honest_move: Tighten the counterexample archive note and make the public references impossible to misread as an open frontier.
|
|
11
|
+
related_core_problems: []
|
|
12
|
+
literature_focus:
|
|
13
|
+
- additive number theory
|
|
14
|
+
- extremal sequences
|
|
15
|
+
artifact_focus:
|
|
16
|
+
- STATEMENT.md
|
|
17
|
+
- REFERENCES.md
|
|
18
|
+
- EVIDENCE.md
|
|
19
|
+
question_ledger:
|
|
20
|
+
open_questions:
|
|
21
|
+
- Which exact disproval or counterexample references should be frozen first in the archive packet?
|
|
22
|
+
active_route_notes:
|
|
23
|
+
- Treat this as an archive cockpit, not a live open-problem route.
|
|
24
|
+
route_breakthroughs: []
|
|
25
|
+
problem_solved: []
|
|
@@ -15,9 +15,22 @@ Profiles:
|
|
|
15
15
|
- `856`: dossier bridge, harmonic-density LCM analogue
|
|
16
16
|
|
|
17
17
|
Deep route packets:
|
|
18
|
-
- `20` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
19
|
-
- `857` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
18
|
+
- `20` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
19
|
+
- `857` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
20
20
|
|
|
21
21
|
Bridge packets:
|
|
22
|
-
- `536` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
23
|
-
- `856` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`
|
|
22
|
+
- `536` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
23
|
+
- `856` ships `AGENT_START.md`, `ROUTE_PACKET.yaml`, `CHECKPOINT_PACKET.md`, `REPORT_PACKET.md`, `ATOMIC_BOARD.yaml`, `ATOMIC_BOARD.md`, `FRONTIER_NOTE.md`, `ROUTE_HISTORY.md`, `CHECKPOINT_TEMPLATE.md`, `REPORT_TEMPLATE.md`, `OPS_DETAILS.yaml`
|
|
24
|
+
|
|
25
|
+
Public cockpit commands:
|
|
26
|
+
- `erdos sunflower status <id>`
|
|
27
|
+
- `erdos sunflower board <id>`
|
|
28
|
+
- `erdos sunflower ready <id>`
|
|
29
|
+
- `erdos sunflower ladder <id>`
|
|
30
|
+
- `erdos sunflower frontier <id>`
|
|
31
|
+
- `erdos sunflower routes <id>`
|
|
32
|
+
- `erdos sunflower tickets <id>`
|
|
33
|
+
- `erdos sunflower route <id> <route-id>`
|
|
34
|
+
- `erdos sunflower ticket <id> <ticket-id>`
|
|
35
|
+
- `erdos sunflower atom <id> <atom-id>`
|
|
36
|
+
- `erdos sunflower compute run <id>`
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Problem 20 Checkpoint Template
|
|
2
|
+
|
|
3
|
+
## Status Ladder
|
|
4
|
+
|
|
5
|
+
- Open problem:
|
|
6
|
+
- Active route:
|
|
7
|
+
- Route breakthrough:
|
|
8
|
+
- Problem solved:
|
|
9
|
+
|
|
10
|
+
## Board posture
|
|
11
|
+
|
|
12
|
+
- Active ticket:
|
|
13
|
+
- Ready atoms:
|
|
14
|
+
- Ladder summary:
|
|
15
|
+
|
|
16
|
+
## Support lane
|
|
17
|
+
|
|
18
|
+
- What remains open in the support lane:
|
|
19
|
+
- What was only historical support:
|
|
20
|
+
|
|
21
|
+
## Verification
|
|
22
|
+
|
|
23
|
+
- Claim level:
|
|
24
|
+
- Verification hook:
|
|
25
|
+
- Verification record:
|
|
26
|
+
|
|
27
|
+
## Next move
|
|
28
|
+
|
|
29
|
+
- Next honest move:
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Problem 20 Frontier Note
|
|
2
|
+
|
|
3
|
+
- Open problem: yes
|
|
4
|
+
- Active route: `uniform_k3_frontier`
|
|
5
|
+
- Active ticket: `T6`
|
|
6
|
+
- Ready atoms: `0`
|
|
7
|
+
- Route breakthrough: yes
|
|
8
|
+
- Problem solved: no
|
|
9
|
+
|
|
10
|
+
Current honest framing:
|
|
11
|
+
- the mirrored final `k=3` route is closed in the public board
|
|
12
|
+
- the support lane remains open
|
|
13
|
+
- there is no dependency-satisfied ready atom right now, so the next move is checkpoint/report discipline rather than forcing fake atomic urgency
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
packet_id: strong20_ops_details_v1
|
|
2
|
+
summary: Public drill-down packet for the strong sunflower k=3 frontier.
|
|
3
|
+
routes:
|
|
4
|
+
- route_id: uniform_k3_frontier
|
|
5
|
+
title: Uniform K=3 Frontier
|
|
6
|
+
status: active
|
|
7
|
+
theorem_module: sunflower-coda/repo/sunflower_lean/SunflowerLean/ErdosProblem20.lean
|
|
8
|
+
summary: Keep the public strong-sunflower pack aligned with the closed k=3 route and the still-open support lane.
|
|
9
|
+
why_now: This is the honest public route posture after the mirrored closure board.
|
|
10
|
+
next_move: Work the support lane carefully and checkpoint any real change before widening claims.
|
|
11
|
+
ticket_ids: [T6]
|
|
12
|
+
source_paths:
|
|
13
|
+
- packs/sunflower/problems/20/ATOMIC_BOARD.yaml
|
|
14
|
+
- packs/sunflower/problems/20/FRONTIER_NOTE.md
|
|
15
|
+
- route_id: uniform_prize_final_k3
|
|
16
|
+
title: Uniform Prize Final K=3
|
|
17
|
+
status: strict_closed
|
|
18
|
+
theorem_module: sunflower-coda/repo/sunflower_lean/SunflowerLean/ErdosProblem20.lean
|
|
19
|
+
summary: Closed mirrored route for the public k=3 lane.
|
|
20
|
+
why_now: It is important support context, but it is not the current support-lane frontier.
|
|
21
|
+
next_move: Treat it as closed historical support.
|
|
22
|
+
ticket_ids: [T5]
|
|
23
|
+
tickets:
|
|
24
|
+
- ticket_id: T6
|
|
25
|
+
title: "Support Lane T6: UniformK3From7 Base/Step Witness Construction"
|
|
26
|
+
route_id: uniform_k3_frontier
|
|
27
|
+
route_leaf: UniformK3From7BaseRangeHyp
|
|
28
|
+
status: active
|
|
29
|
+
summary: The support lane remains open even though the final mirrored k=3 route is closed.
|
|
30
|
+
gate_story: Gate counts are closed but there is no currently dependency-satisfied ready atom.
|
|
31
|
+
current_blocker: The public pack does not yet have a genuine next atom; the correct move is checkpoint/report discipline and support-lane clarification.
|
|
32
|
+
next_move: Preserve the support-lane context and avoid inventing urgency that the board does not justify.
|
|
33
|
+
atom_ids: []
|
|
34
|
+
- ticket_id: T5
|
|
35
|
+
title: "Closure Lane T5: UniformK3EnvelopeFrom7WithPolySlack"
|
|
36
|
+
route_id: uniform_prize_final_k3
|
|
37
|
+
route_leaf: UniformK3EnvelopeFrom7WithPolySlack
|
|
38
|
+
status: closed
|
|
39
|
+
summary: Closed mirrored route ticket for the public k=3 closure lane.
|
|
40
|
+
gate_story: This ticket is historical support and should remain visible as such.
|
|
41
|
+
current_blocker: none
|
|
42
|
+
next_move: Keep as closure context only.
|
|
43
|
+
atom_ids: []
|
|
44
|
+
atoms: []
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Problem 20 Report Template
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
- Route worked:
|
|
6
|
+
- Ticket worked:
|
|
7
|
+
- Why the support lane matters:
|
|
8
|
+
|
|
9
|
+
## Artifacts
|
|
10
|
+
|
|
11
|
+
- Mirrored board artifacts:
|
|
12
|
+
- Checkpoint updates:
|
|
13
|
+
- Any compute/scout artifacts:
|
|
14
|
+
|
|
15
|
+
## Frontier shift
|
|
16
|
+
|
|
17
|
+
- Did the ready queue change?
|
|
18
|
+
- Did the support lane meaningfully tighten?
|
|
19
|
+
|
|
20
|
+
## Honesty check
|
|
21
|
+
|
|
22
|
+
- What remains open in problem 20?
|
|
23
|
+
- What closed route should not be mistaken for a full solution?
|