erdos-problems 0.2.1 → 0.2.3

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.
Files changed (38) hide show
  1. package/README.md +218 -356
  2. package/docs/LAUNCH_KIT.md +84 -0
  3. package/package.json +13 -5
  4. package/packs/graph-theory/README.md +17 -0
  5. package/packs/graph-theory/problems/1008/CHECKPOINT_TEMPLATE.md +9 -0
  6. package/packs/graph-theory/problems/1008/CONTEXT.md +9 -0
  7. package/packs/graph-theory/problems/1008/FRONTIER_NOTE.md +8 -0
  8. package/packs/graph-theory/problems/1008/OPS_DETAILS.yaml +25 -0
  9. package/packs/graph-theory/problems/1008/REPORT_TEMPLATE.md +9 -0
  10. package/packs/graph-theory/problems/1008/ROUTE_HISTORY.md +5 -0
  11. package/packs/graph-theory/problems/1008/ROUTE_PACKET.yaml +13 -0
  12. package/packs/graph-theory/problems/1008/context.yaml +27 -0
  13. package/packs/graph-theory/problems/19/CHECKPOINT_TEMPLATE.md +9 -0
  14. package/packs/graph-theory/problems/19/CONTEXT.md +9 -0
  15. package/packs/graph-theory/problems/19/FRONTIER_NOTE.md +8 -0
  16. package/packs/graph-theory/problems/19/OPS_DETAILS.yaml +25 -0
  17. package/packs/graph-theory/problems/19/REPORT_TEMPLATE.md +9 -0
  18. package/packs/graph-theory/problems/19/ROUTE_HISTORY.md +5 -0
  19. package/packs/graph-theory/problems/19/ROUTE_PACKET.yaml +13 -0
  20. package/packs/graph-theory/problems/19/context.yaml +25 -0
  21. package/packs/graph-theory/problems/22/CHECKPOINT_TEMPLATE.md +9 -0
  22. package/packs/graph-theory/problems/22/CONTEXT.md +9 -0
  23. package/packs/graph-theory/problems/22/FRONTIER_NOTE.md +8 -0
  24. package/packs/graph-theory/problems/22/OPS_DETAILS.yaml +25 -0
  25. package/packs/graph-theory/problems/22/REPORT_TEMPLATE.md +9 -0
  26. package/packs/graph-theory/problems/22/ROUTE_HISTORY.md +5 -0
  27. package/packs/graph-theory/problems/22/ROUTE_PACKET.yaml +13 -0
  28. package/packs/graph-theory/problems/22/context.yaml +26 -0
  29. package/packs/number-theory/README.md +3 -0
  30. package/src/cli/index.js +15 -5
  31. package/src/commands/archive.js +10 -1
  32. package/src/commands/cluster.js +15 -1
  33. package/src/commands/graph-theory.js +180 -0
  34. package/src/commands/number-theory.js +107 -2
  35. package/src/commands/workspace.js +39 -1
  36. package/src/runtime/graph-theory.js +167 -0
  37. package/src/runtime/number-theory.js +60 -0
  38. package/src/runtime/state.js +31 -0
package/README.md CHANGED
@@ -1,162 +1,162 @@
1
1
  # erdos-problems
2
2
 
3
- CLI atlas and staged research harness for Paul Erdos problems.
3
+ > Research cockpit for Paul Erdos problems.
4
+ >
5
+ > Seed a problem. Hand it to an agent. Keep the public truth, local route truth, and verification truth sharply separated.
6
+
7
+ [![npm version](https://img.shields.io/npm/v/erdos-problems?color=111111&label=npm)](https://www.npmjs.com/package/erdos-problems)
8
+ [![npm downloads](https://img.shields.io/npm/dm/erdos-problems?color=111111&label=downloads)](https://www.npmjs.com/package/erdos-problems)
9
+ [![license](https://img.shields.io/npm/l/erdos-problems?color=111111&label=license)](./LICENSE)
10
+ [![node](https://img.shields.io/node/v/erdos-problems?color=111111&label=node)](https://www.npmjs.com/package/erdos-problems)
11
+
12
+ ```text
13
+ erdos-problems
14
+ atlas -> dossier -> pack -> checkpoint -> archive
15
+ ```
16
+
17
+ `erdos-problems` is a CLI atlas and staged research harness for Paul Erdos problems.
18
+ It is built for people who want more than a problem list and for agents that need a real starting surface on day one.
19
+
20
+ ## Why It Feels Different
21
+
22
+ Most open-problem repos stop at metadata.
4
23
 
5
- ## Install
24
+ `erdos-problems` goes further:
25
+ - it ships a canonical atlas of Erdős problems
26
+ - it creates agent-ready dossiers and workspace bundles
27
+ - it keeps upstream public status separate from local research state
28
+ - it adds pack-specific cockpits where deeper structure is honest
29
+ - it carries an ORP-governed loop so claims, checkpoints, and runs stay disciplined
30
+
31
+ ## Start In 60 Seconds
32
+
33
+ Install:
6
34
 
7
35
  ```bash
8
36
  npm install -g erdos-problems
9
37
  ```
10
38
 
11
- Official package:
12
- - `erdos-problems`
39
+ Bootstrap a flagship problem:
13
40
 
14
- Official binary:
15
- - `erdos`
41
+ ```bash
42
+ erdos bootstrap problem 857
43
+ erdos sunflower frontier 857
44
+ erdos sunflower ready 857
45
+ erdos workspace show --json
46
+ ```
16
47
 
17
- ## Current shape
48
+ Self-seed an unseeded problem into a fresh workspace:
18
49
 
19
- - atlas layer with canonical local `problems/<id>/problem.yaml` records
20
- - bundled upstream snapshot from `teorth/erdosproblems`
21
- - bundled ORP kit with protocol and templates for claim hygiene
22
- - workspace `.erdos/` state for active-problem selection, upstream refreshes, scaffolds, and pull bundles
23
- - sunflower cluster as the first deep harness pack
24
- - quartet-aware sunflower context for `20`, `536`, `856`, and `857`
25
- - packaged atomic/bridge board packets for the full sunflower quartet
26
- - packaged compute-lane metadata for deep sunflower problems, surfaced directly in the CLI
27
- - seeded atlas now includes open and solved problems beyond sunflower
28
- - unseeded problems can still be pulled into a workspace from the bundled upstream snapshot
50
+ ```bash
51
+ erdos seed problem 25 --cluster number-theory
52
+ erdos problem show 25
53
+ erdos checkpoints sync
54
+ ```
55
+
56
+ Archive a solved problem cleanly:
57
+
58
+ ```bash
59
+ erdos graph-theory status 1008
60
+ erdos archive scaffold 1008 --json
61
+ ```
62
+
63
+ ## What You Get
29
64
 
30
- Seeded problems:
65
+ | Layer | What it does |
66
+ | --- | --- |
67
+ | Atlas | canonical `problems/<id>/problem.yaml` records plus a bundled upstream snapshot |
68
+ | Dossiers | local case files with statement, references, evidence, and formalization paths |
69
+ | Workspaces | `.erdos/` state, checkpoints, ORP kit, pull bundles, runs, and archives |
70
+ | Packs | deeper family-specific cockpits for problem clusters that deserve them |
71
+ | Governance | ORP + `breakthroughs` + public-status review + structured run artifacts |
72
+
73
+ ## Coverage Right Now
74
+
75
+ | Surface | Coverage |
76
+ | --- | --- |
77
+ | Bundled upstream atlas | `1183` problems |
78
+ | Native packaged dossiers | `18` |
79
+ | Sunflower pack | `20`, `536`, `856`, `857` |
80
+ | Number-theory cockpit | `1`, `2` |
81
+ | Graph-theory archive cockpit | `19`, `22`, `1008` |
82
+ | Deep theorem-facing pack problems | `20`, `857` |
83
+
84
+ Seeded problems today:
31
85
  - `1`, `2`, `3`, `4`, `5`, `6`, `7`, `18`, `19`, `20`, `21`, `22`, `89`, `536`, `542`, `856`, `857`, `1008`
32
86
 
33
- Native dossier count:
34
- - `18`
87
+ ## Flavor
35
88
 
36
- Pack coverage:
37
- - sunflower pack: `4`
38
- - number-theory starter cockpit: `2`
89
+ The package is meant to feel like a research cockpit, not a bag of files.
39
90
 
40
- ## First-run flow
91
+ Example:
92
+
93
+ ```bash
94
+ $ erdos sunflower frontier 857
95
+ Erdos Problem #857 sunflower frontier
96
+ Active route: anchored_selector_linearization
97
+ Active ticket: T10
98
+ First ready atom: T10.G3.A2
99
+ Checkpoint focus: keep the board packet honest around T10 while preserving the open-problem / active-route / route-breakthrough ladder.
100
+ ```
101
+
102
+ ```bash
103
+ $ erdos graph-theory status 1008
104
+ Erdos Problem #1008 graph-theory harness
105
+ Family role: c4_free_lean_archive
106
+ Harness profile: lean_archive_cockpit
107
+ Archive mode: method_exemplar
108
+ Problem solved: yes
109
+ First ready atom: G1008.G1.A1 — Freeze the primary Lean-facing archive hook for the `C_4`-free density result
110
+ ```
111
+
112
+ ## Core Flows
113
+
114
+ ### 1. Bootstrap a seeded problem
41
115
 
42
116
  ```bash
43
- erdos problem list --cluster sunflower
44
117
  erdos bootstrap problem 857
45
118
  erdos problem artifacts 857 --json
46
- erdos sunflower status 857
47
- erdos sunflower board 857
48
- erdos sunflower frontier 857
49
- erdos sunflower routes 857
50
- erdos sunflower tickets 857
51
- erdos dossier show 857
52
- erdos number-theory status 1
119
+ erdos checkpoints sync
53
120
  ```
54
121
 
55
- For an unseeded problem, the one-step self-seeding flow is now:
122
+ What this does:
123
+ - sets the active workspace problem
124
+ - syncs the bundled ORP kit into `.erdos/orp/`
125
+ - scaffolds the dossier into `.erdos/scaffolds/<id>/`
126
+ - pulls in pack-specific context where available
127
+ - makes the workspace immediately usable by an agent
128
+
129
+ ### 2. Self-seed a new problem
56
130
 
57
131
  ```bash
58
132
  erdos seed problem 25 --cluster number-theory
59
- erdos problem show 25
60
- erdos workspace show
61
133
  ```
62
134
 
63
- What `bootstrap` does:
64
- - sets the active workspace problem
65
- - syncs the bundled ORP workspace kit into `.erdos/orp/`
66
- - scaffolds the canonical dossier files into `.erdos/scaffolds/<id>/`
67
- - includes the upstream record when a bundled or workspace snapshot is available
68
- - copies pack-specific context and compute packets when the problem has them
69
- - gives an agent a ready-to-read local artifact bundle immediately after install
70
-
71
- What `seed` does:
72
- - creates a pull bundle for any problem in the upstream snapshot
73
- - defaults to a live site snapshot plus a public-search review bundle
74
- - treats a problem as seed-admissible only when the public site says `open`, unless you intentionally pass `--allow-non-open`
75
- - promotes that bundle into `.erdos/seeded-problems/<id>/`
76
- - auto-selects the problem in the workspace
77
- - syncs the bundled ORP workspace kit into `.erdos/orp/`
78
- - syncs the staged research loop state and checkpoint shelf
79
- - makes the new dossier visible to the atlas commands immediately inside that workspace
80
- - writes richer starter artifacts:
81
- - `AGENT_START.md`
82
- - `ROUTES.md`
83
- - `CHECKPOINT_NOTES.md`
84
- - `PUBLIC_STATUS_REVIEW.md`
85
- - `AGENT_WEBSEARCH_BRIEF.md`
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
-
93
- ## Pull lanes
94
-
95
- For any problem number in the upstream snapshot, you can create a workspace bundle even if the problem is not yet seeded locally:
135
+ What this does:
136
+ - pulls upstream public metadata into a workspace bundle
137
+ - includes live site review and an agent-websearch brief by default
138
+ - seeds a local dossier into `.erdos/seeded-problems/<id>/`
139
+ - syncs state, checkpoints, and ORP automatically
140
+
141
+ ### 3. Pull artifacts without seeding
96
142
 
97
143
  ```bash
98
144
  erdos pull problem 857
99
- erdos pull artifacts 857
100
- erdos pull literature 857
101
- erdos pull literature 857 --json
102
- erdos pull literature 857 --include-crossref --include-openalex
103
- erdos pull problem 999 --include-site --include-public-search
104
- erdos pull problem 999 --refresh-upstream
145
+ erdos pull literature 857 --include-crossref --include-openalex --json
105
146
  ```
106
147
 
107
- What the pull lanes do:
108
- - `erdos pull problem <id>` creates `.erdos/pulls/<id>/` with:
109
- - a root pull manifest
110
- - `artifacts/`
111
- - `literature/`
112
- - `erdos pull artifacts <id>` creates only the artifact lane
113
- - `erdos pull literature <id>` creates only the literature lane
114
- - when a problem is locally seeded, the artifact lane includes the canonical dossier, pack context, and compute packets
115
- - when `--include-site` is used, the literature lane can include a live site snapshot and plain-text extract
116
- - when `--include-public-search` is used, the literature lane also includes:
117
- - `PUBLIC_STATUS_REVIEW.md`
118
- - `PUBLIC_STATUS_REVIEW.json`
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
127
-
128
- ## Maintainer seeding
129
-
130
- To turn a pulled bundle into a new canonical dossier in the repo:
148
+ Use this when you want a research bundle first and a canonical dossier later.
149
+
150
+ ### 4. Promote a pulled bundle into a canonical dossier
131
151
 
132
152
  ```bash
133
- erdos maintainer seed problem 25 \
134
- --from-pull .erdos/pulls/25 \
135
- --cluster number-theory
136
- erdos maintainer review problem 25 \
137
- --from-pull .erdos/pulls/25
153
+ erdos maintainer review problem 25 --from-pull .erdos/pulls/25
154
+ erdos maintainer seed problem 25 --from-pull .erdos/pulls/25 --cluster number-theory
138
155
  ```
139
156
 
140
- What maintainer seeding does:
141
- - reads the pull bundle provenance
142
- - generates a canonical `problems/<id>/` dossier
143
- - writes:
144
- - `problem.yaml`
145
- - `STATEMENT.md`
146
- - `REFERENCES.md`
147
- - `EVIDENCE.md`
148
- - `FORMALIZATION.md`
149
- - starter loop files:
150
- - `AGENT_START.md`
151
- - `ROUTES.md`
152
- - `CHECKPOINT_NOTES.md`
153
- - public-truth starter files:
154
- - `PUBLIC_STATUS_REVIEW.md`
155
- - `AGENT_WEBSEARCH_BRIEF.md`
156
- - preserves upstream/site provenance in the local record
157
- - `erdos maintainer review problem <id>` also creates a review checklist before promotion
158
-
159
- ## Sunflower pack
157
+ ## Packs
158
+
159
+ ### Sunflower Pack
160
160
 
161
161
  The first deep pack is the sunflower quartet:
162
162
  - `20`: strong / uniform sunflower core
@@ -164,293 +164,155 @@ The first deep pack is the sunflower quartet:
164
164
  - `536`: natural-density LCM analogue
165
165
  - `856`: harmonic-density LCM analogue
166
166
 
167
- Sunflower problems now ship pack packets:
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`
172
-
173
- Useful sunflower commands:
167
+ Useful commands:
174
168
 
175
169
  ```bash
176
- erdos cluster show sunflower
177
- erdos sunflower status 20
178
- erdos sunflower status 536
179
- erdos sunflower board 536
180
- erdos sunflower ready 857
181
- erdos sunflower ladder 20
170
+ erdos sunflower status 857
171
+ erdos sunflower board 857
182
172
  erdos sunflower frontier 857
183
173
  erdos sunflower routes 857
184
174
  erdos sunflower tickets 857
185
175
  erdos sunflower route 857 anchored_selector_linearization
186
- erdos sunflower ticket 20 T6
187
176
  erdos sunflower atom 857 T10.G3.A2
188
177
  erdos sunflower compute run 857
189
- erdos sunflower board 857
190
- erdos sunflower status 857 --json
191
178
  ```
192
179
 
193
- `erdos sunflower status` surfaces:
194
- - family role
195
- - harness profile
196
- - active route
197
- - route breakthrough state
198
- - problem-solved distinction
199
- - atomic board posture, active ticket, ready-atom count, and first ready atom when a board packet exists
200
- - compute posture when a packet exists
201
-
202
- `erdos sunflower board` surfaces:
203
- - mirrored lab atomic boards for `20` and `857`
204
- - lighter dossier-bridge boards for `536` and `856`
205
- - route status
206
- - ticket board summary
207
- - first-principles ladder
208
- - ready queue
209
-
210
- `erdos sunflower ready` surfaces:
211
- - the current dependency-satisfied ready queue for the active sunflower board
212
-
213
- `erdos sunflower ladder` surfaces:
214
- - the first-principles ladder for the active sunflower board
215
-
216
- `erdos sunflower routes` surfaces:
217
- - the strategic route table for the active sunflower board
218
- - loose and strict progress for every publicized route
219
- - which route is the currently active frontier
220
-
221
- `erdos sunflower tickets` surfaces:
222
- - the operational ticket table for the active sunflower board
223
- - the active ticket, leaf theorem, and gate/atom counts
224
- - which tickets are closed versus still honest live pressure
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:
180
+ What makes it special:
181
+ - mirrored public board packets
182
+ - route / ticket / atom cockpit views
183
+ - checkpoint and report packets
184
+ - governed local-scout compute posture
185
+
186
+ ### Number-Theory Starter Cockpit
187
+
188
+ The first lighter non-sunflower pack is number theory:
189
+ - `1`: open starter cockpit around a distinct-subset-sum route
190
+ - `2`: counterexample/archive cockpit
191
+
192
+ Useful commands:
251
193
 
252
194
  ```bash
253
195
  erdos number-theory status 1
254
196
  erdos number-theory frontier 1
255
197
  erdos number-theory routes 1
256
- erdos number-theory tickets 1
257
- erdos number-theory status 2 --json
198
+ erdos number-theory route 1 distinct_subset_sum_lower_bound
199
+ erdos number-theory ticket 1 N1
200
+ erdos number-theory atom 1 N1.G1.A1
258
201
  ```
259
202
 
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
203
+ ### Graph-Theory Archive Cockpit
264
204
 
265
- ## Archive mode
205
+ The first archive-first pack outside sunflower is graph theory:
206
+ - `19`: decision archive cockpit
207
+ - `22`: proof archive cockpit
208
+ - `1008`: Lean-facing proof archive cockpit
266
209
 
267
- Solved problems can now be treated as method exemplars instead of dead entries.
210
+ Useful commands:
268
211
 
269
212
  ```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
213
+ erdos graph-theory status 19
214
+ erdos graph-theory frontier 22
215
+ erdos graph-theory routes 1008
216
+ erdos graph-theory tickets 19
217
+ erdos archive scaffold 1008 --json
277
218
  ```
278
219
 
279
- Archive scaffolds land in:
280
- - `.erdos/archives/<id>/`
220
+ Design rule:
221
+ - no fake live frontier for solved or decided problems
222
+ - keep the archive usable as a method exemplar
223
+ - preserve public status discipline instead of inflating pressure where none exists
281
224
 
282
- and include:
283
- - `ARCHIVE.json`
284
- - `ARCHIVE_SUMMARY.md`
285
- - `METHOD_PACKET.md`
225
+ ## Built For Agents
226
+
227
+ If you are using Codex, Claude Code, or another agent harness, the package gives your agent:
228
+ - canonical dossier files
229
+ - upstream provenance
230
+ - pack-aware context when available
231
+ - `.erdos/` workspace state
232
+ - ORP templates and protocol guidance
233
+ - checkpoint shelves
234
+ - explicit next-honest-move framing
235
+ - machine-readable JSON on the important public surfaces
236
+
237
+ Especially useful commands for agent workflows:
238
+
239
+ ```bash
240
+ erdos problem artifacts 857 --json
241
+ erdos workspace show --json
242
+ erdos pull literature 857 --include-crossref --include-openalex --json
243
+ erdos upstream drift 857 --json
244
+ ```
286
245
 
287
- ## ORP
246
+ ## ORP And Truth Hygiene
288
247
 
289
- `erdos-problems` now ships a bundled Open Research Protocol kit:
248
+ `erdos-problems` ships a bundled Open Research Protocol kit:
290
249
  - `PROTOCOL.md`
291
250
  - `AGENT_INTEGRATION.md`
292
251
  - `templates/CLAIM.md`
293
252
  - `templates/VERIFICATION_RECORD.md`
294
253
  - `templates/FAILED_TOPIC.md`
295
254
 
296
- Workspace copy:
297
- - `.erdos/orp/PROTOCOL.md`
298
- - `.erdos/orp/AGENT_INTEGRATION.md`
299
- - `.erdos/orp/templates/`
255
+ The package is opinionated about a clean truth ladder:
256
+ - upstream public truth
257
+ - local canonical dossier truth
258
+ - workspace bundle truth
259
+ - pack-specific route / checkpoint / run truth
300
260
 
301
- Useful ORP commands:
261
+ That separation is one of the main product features.
302
262
 
303
- ```bash
304
- erdos orp show
305
- erdos orp sync
306
- ```
307
-
308
- ## CLI
263
+ ## Command Gallery
309
264
 
310
265
  ```bash
311
- erdos problem list
312
266
  erdos problem list --cluster sunflower
313
- erdos problem list --repo-status historical
314
- erdos problem list --harness-depth deep
315
- erdos problem list --site-status solved
316
- erdos problem use 857
317
- erdos problem show
318
- erdos problem artifacts 857
267
+ erdos problem show 857
319
268
  erdos problem artifacts 857 --json
320
- erdos cluster list
321
- erdos cluster show sunflower
322
- erdos cluster show number-theory
323
- erdos workspace show
324
- erdos orp show
325
- erdos orp sync
326
- erdos sunflower status 857
327
- erdos sunflower board 857
328
- erdos sunflower ready 857
329
- erdos sunflower ladder 857
269
+
270
+ erdos cluster list --json
271
+ erdos cluster show graph-theory
272
+
273
+ erdos workspace show --json
274
+ erdos checkpoints sync
275
+ erdos preflight
276
+
330
277
  erdos sunflower frontier 857
331
- erdos sunflower routes 857
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
278
+ erdos sunflower ready 857
336
279
  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
341
- erdos sunflower status --json
342
- erdos dossier show
343
- erdos upstream show
344
- erdos upstream sync
345
- erdos upstream diff
346
- erdos upstream drift
347
- erdos upstream drift 857 --json
348
- erdos scaffold problem 857
349
- erdos bootstrap problem 857
350
- erdos bootstrap problem 857 --sync-upstream
351
- erdos seed problem 25 --cluster number-theory
280
+
281
+ erdos number-theory route 1 distinct_subset_sum_lower_bound
282
+ erdos graph-theory status 1008
283
+
352
284
  erdos pull problem 857
353
- erdos pull artifacts 857
354
- erdos pull literature 857
355
- erdos pull literature 857 --json
356
- erdos pull literature 857 --include-crossref --include-openalex
285
+ erdos pull literature 857 --include-crossref --include-openalex --json
286
+
287
+ erdos seed problem 25 --cluster number-theory
357
288
  erdos maintainer review problem 25 --from-pull .erdos/pulls/25
358
- erdos maintainer seed problem 25 --from-pull .erdos/pulls/25 --cluster number-theory
359
- erdos archive show 1008
360
- erdos archive scaffold 1008
289
+ erdos archive scaffold 1008 --json
361
290
  ```
362
291
 
363
- ## Canonical sources
292
+ ## Canonical Sources
364
293
 
365
- - local atlas truth: `problems/<id>/problem.yaml`
294
+ - local dossier truth: `problems/<id>/problem.yaml`
366
295
  - bundled upstream snapshot: `data/upstream/erdosproblems/`
367
296
  - workspace upstream snapshot: `.erdos/upstream/erdosproblems/`
368
- - live upstream repo: `https://github.com/teorth/erdosproblems`
369
- - live public site: `https://www.erdosproblems.com/`
370
-
371
- ## Agent-facing artifact model
372
-
373
- For each seeded problem, the canonical local dossier lives in `problems/<id>/`:
374
- - `problem.yaml`
375
- - `STATEMENT.md`
376
- - `REFERENCES.md`
377
- - `EVIDENCE.md`
378
- - `FORMALIZATION.md`
379
-
380
- Many seeded dossiers now also carry starter-loop artifacts:
381
- - `AGENT_START.md`
382
- - `ROUTES.md`
383
- - `CHECKPOINT_NOTES.md`
384
- - `PUBLIC_STATUS_REVIEW.md`
385
- - `AGENT_WEBSEARCH_BRIEF.md`
386
-
387
- The CLI can surface these directly:
388
- - `erdos problem artifacts <id>` shows the canonical inventory
389
- - `erdos problem artifacts <id> --json` emits machine-readable inventory
390
- - `erdos scaffold problem <id>` copies the seeded dossier into the active workspace
391
- - `erdos bootstrap problem <id>` selects the problem and creates the scaffold in one step
392
- - `erdos seed problem <id>` self-seeds an unseeded problem into `.erdos/seeded-problems/` and syncs the loop
393
- - `erdos pull problem <id>` creates a workspace bundle for any problem in the upstream snapshot
394
- - `erdos maintainer seed problem <id>` promotes a pull bundle into a canonical local dossier
395
-
396
- For sunflower problems, the CLI also surfaces pack-specific artifacts:
397
- - pack README context
398
- - per-problem context files under `packs/sunflower/problems/<id>/`
399
- - route packets, checkpoint/report packets, and board packets for the full sunflower quartet
400
- - compute packets under `packs/sunflower/compute/<id>/` when available
401
- - compute-governance evaluation under `breakthroughs`, surfaced through `erdos sunflower status`
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
-
409
- ## Notes
410
-
411
- - `erdos-problems` is the canonical npm package name.
412
- - The compact unscoped alias `erdosproblems` is not publishable because npm rejects it as too similar to `erdos-problems`.
297
+ - live upstream repo: <https://github.com/teorth/erdosproblems>
298
+ - live public site: <https://www.erdosproblems.com/>
413
299
 
414
300
  ## Docs
415
301
 
416
302
  - `docs/ERDOS_PROBLEMS_REPO_SPEC.md`
417
303
  - `docs/ERDOS_PROBLEMS_PROBLEM_SCHEMA.md`
418
304
  - `docs/ERDOS_SUNFLOWER_CLUSTER_SEED_PLAN.md`
305
+ - `docs/RESEARCH_LOOP.md`
306
+ - `docs/LAUNCH_KIT.md`
419
307
 
420
- ## Research loop
308
+ ## Launch Assets
421
309
 
422
- `erdos-problems` now carries the staged loop we defined in the sunflower lab and the `.gpd`-style harness work:
310
+ If you are about to push the public GitHub launch, start here:
311
+ - [docs/LAUNCH_KIT.md](docs/LAUNCH_KIT.md)
312
+ - `assets/social-card.svg`
423
313
 
424
- ```bash
425
- erdos problem use 857
426
- erdos state sync
427
- erdos preflight
428
- erdos continuation use route
429
- erdos checkpoints sync
430
- erdos workspace show
431
- ```
314
+ ## Notes
432
315
 
433
- This runtime writes:
434
- - `.erdos/config.json`
435
- - `.erdos/state.json`
436
- - `.erdos/STATE.md`
437
- - `.erdos/QUESTION-LEDGER.md`
438
- - `.erdos/checkpoints/CHECKPOINTS.md`
439
- - `.erdos/checkpoints/CHECKPOINTS.json`
440
- - `.erdos/orp/PROTOCOL.md`
441
- - `.erdos/orp/AGENT_INTEGRATION.md`
442
- - `.erdos/orp/templates/`
443
- - `.erdos/registry/preflight/`
444
-
445
- The public package uses the same status ladder we settled on in the lab:
446
- - open problem
447
- - active route
448
- - route breakthrough
449
- - problem solved
450
-
451
- That means a fresh install now supports two clean research starts:
452
- - `erdos bootstrap problem <seeded-id>` for native packaged dossiers
453
- - `erdos seed problem <unseeded-id>` for workspace-local self-seeding with the same loop
454
-
455
- See also:
456
- - `docs/RESEARCH_LOOP.md`
316
+ - `erdos-problems` is the canonical npm package name.
317
+ - the package is already live on npm
318
+ - the compact unscoped alias `erdosproblems` is not publishable because npm rejects it as too similar to `erdos-problems`