erdos-problems 0.2.2 → 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 (3) hide show
  1. package/README.md +201 -384
  2. package/docs/LAUNCH_KIT.md +84 -0
  3. package/package.json +13 -5
package/README.md CHANGED
@@ -1,166 +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
- - number-theory starter cockpit as the first lighter non-sunflower pack
26
- - graph-theory archive cockpit as the first archive/decision pack outside sunflower
27
- - packaged atomic/bridge board packets for the full sunflower quartet
28
- - packaged compute-lane metadata for deep sunflower problems, surfaced directly in the CLI
29
- - seeded atlas now includes open and solved problems beyond sunflower
30
- - 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
+ ```
31
62
 
32
- Seeded problems:
63
+ ## What You Get
64
+
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:
33
85
  - `1`, `2`, `3`, `4`, `5`, `6`, `7`, `18`, `19`, `20`, `21`, `22`, `89`, `536`, `542`, `856`, `857`, `1008`
34
86
 
35
- Native dossier count:
36
- - `18`
87
+ ## Flavor
37
88
 
38
- Pack coverage:
39
- - sunflower pack: `4`
40
- - number-theory starter cockpit: `2`
41
- - graph-theory archive cockpit: `3`
89
+ The package is meant to feel like a research cockpit, not a bag of files.
42
90
 
43
- ## 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
44
115
 
45
116
  ```bash
46
- erdos problem list --cluster sunflower
47
117
  erdos bootstrap problem 857
48
118
  erdos problem artifacts 857 --json
49
- erdos sunflower status 857
50
- erdos sunflower board 857
51
- erdos sunflower frontier 857
52
- erdos sunflower routes 857
53
- erdos sunflower tickets 857
54
- erdos dossier show 857
55
- erdos number-theory status 1
56
- erdos graph-theory status 1008
119
+ erdos checkpoints sync
57
120
  ```
58
121
 
59
- 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
60
130
 
61
131
  ```bash
62
132
  erdos seed problem 25 --cluster number-theory
63
- erdos problem show 25
64
- erdos workspace show
65
133
  ```
66
134
 
67
- What `bootstrap` does:
68
- - sets the active workspace problem
69
- - syncs the bundled ORP workspace kit into `.erdos/orp/`
70
- - scaffolds the canonical dossier files into `.erdos/scaffolds/<id>/`
71
- - includes the upstream record when a bundled or workspace snapshot is available
72
- - copies pack-specific context and compute packets when the problem has them
73
- - gives an agent a ready-to-read local artifact bundle immediately after install
74
-
75
- What `seed` does:
76
- - creates a pull bundle for any problem in the upstream snapshot
77
- - defaults to a live site snapshot plus a public-search review bundle
78
- - treats a problem as seed-admissible only when the public site says `open`, unless you intentionally pass `--allow-non-open`
79
- - promotes that bundle into `.erdos/seeded-problems/<id>/`
80
- - auto-selects the problem in the workspace
81
- - syncs the bundled ORP workspace kit into `.erdos/orp/`
82
- - syncs the staged research loop state and checkpoint shelf
83
- - makes the new dossier visible to the atlas commands immediately inside that workspace
84
- - writes richer starter artifacts:
85
- - `AGENT_START.md`
86
- - `ROUTES.md`
87
- - `CHECKPOINT_NOTES.md`
88
- - `PUBLIC_STATUS_REVIEW.md`
89
- - `AGENT_WEBSEARCH_BRIEF.md`
90
-
91
- The seeded workspace also now has a clearer runtime shape:
92
- - `.erdos/runs/`
93
- - `.erdos/archives/`
94
- - `.erdos/checkpoints/`
95
- - `.erdos/orp/`
96
-
97
- ## Pull lanes
98
-
99
- 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
100
142
 
101
143
  ```bash
102
144
  erdos pull problem 857
103
- erdos pull artifacts 857
104
- erdos pull literature 857
105
- erdos pull literature 857 --json
106
- erdos pull literature 857 --include-crossref --include-openalex
107
- erdos pull problem 999 --include-site --include-public-search
108
- erdos pull problem 999 --refresh-upstream
145
+ erdos pull literature 857 --include-crossref --include-openalex --json
109
146
  ```
110
147
 
111
- What the pull lanes do:
112
- - `erdos pull problem <id>` creates `.erdos/pulls/<id>/` with:
113
- - a root pull manifest
114
- - `artifacts/`
115
- - `literature/`
116
- - `erdos pull artifacts <id>` creates only the artifact lane
117
- - `erdos pull literature <id>` creates only the literature lane
118
- - when a problem is locally seeded, the artifact lane includes the canonical dossier, pack context, and compute packets
119
- - when `--include-site` is used, the literature lane can include a live site snapshot and plain-text extract
120
- - when `--include-public-search` is used, the literature lane also includes:
121
- - `PUBLIC_STATUS_REVIEW.md`
122
- - `PUBLIC_STATUS_REVIEW.json`
123
- - `AGENT_WEBSEARCH_BRIEF.md`
124
- - when `--include-crossref` is used, the literature lane also includes:
125
- - `CROSSREF_RESULTS.json`
126
- - `CROSSREF_RESULTS.md`
127
- - when `--include-openalex` is used, the literature lane also includes:
128
- - `OPENALEX_RESULTS.json`
129
- - `OPENALEX_RESULTS.md`
130
- - when `--json` is used, the pull command emits an agent-friendly machine summary instead of prose
131
-
132
- ## Maintainer seeding
133
-
134
- 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
135
151
 
136
152
  ```bash
137
- erdos maintainer seed problem 25 \
138
- --from-pull .erdos/pulls/25 \
139
- --cluster number-theory
140
- erdos maintainer review problem 25 \
141
- --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
142
155
  ```
143
156
 
144
- What maintainer seeding does:
145
- - reads the pull bundle provenance
146
- - generates a canonical `problems/<id>/` dossier
147
- - writes:
148
- - `problem.yaml`
149
- - `STATEMENT.md`
150
- - `REFERENCES.md`
151
- - `EVIDENCE.md`
152
- - `FORMALIZATION.md`
153
- - starter loop files:
154
- - `AGENT_START.md`
155
- - `ROUTES.md`
156
- - `CHECKPOINT_NOTES.md`
157
- - public-truth starter files:
158
- - `PUBLIC_STATUS_REVIEW.md`
159
- - `AGENT_WEBSEARCH_BRIEF.md`
160
- - preserves upstream/site provenance in the local record
161
- - `erdos maintainer review problem <id>` also creates a review checklist before promotion
162
-
163
- ## Sunflower pack
157
+ ## Packs
158
+
159
+ ### Sunflower Pack
164
160
 
165
161
  The first deep pack is the sunflower quartet:
166
162
  - `20`: strong / uniform sunflower core
@@ -168,334 +164,155 @@ The first deep pack is the sunflower quartet:
168
164
  - `536`: natural-density LCM analogue
169
165
  - `856`: harmonic-density LCM analogue
170
166
 
171
- Sunflower problems now ship pack packets:
172
- - `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`
173
- - `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`
174
- - `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`
175
- - `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`
176
-
177
- Useful sunflower commands:
167
+ Useful commands:
178
168
 
179
169
  ```bash
180
- erdos cluster show sunflower
181
- erdos sunflower status 20
182
- erdos sunflower status 536
183
- erdos sunflower board 536
184
- erdos sunflower ready 857
185
- erdos sunflower ladder 20
170
+ erdos sunflower status 857
171
+ erdos sunflower board 857
186
172
  erdos sunflower frontier 857
187
173
  erdos sunflower routes 857
188
174
  erdos sunflower tickets 857
189
175
  erdos sunflower route 857 anchored_selector_linearization
190
- erdos sunflower ticket 20 T6
191
176
  erdos sunflower atom 857 T10.G3.A2
192
177
  erdos sunflower compute run 857
193
- erdos sunflower board 857
194
- erdos sunflower status 857 --json
195
178
  ```
196
179
 
197
- `erdos sunflower status` surfaces:
198
- - family role
199
- - harness profile
200
- - active route
201
- - route breakthrough state
202
- - problem-solved distinction
203
- - atomic board posture, active ticket, ready-atom count, and first ready atom when a board packet exists
204
- - compute posture when a packet exists
205
-
206
- `erdos sunflower board` surfaces:
207
- - mirrored lab atomic boards for `20` and `857`
208
- - lighter dossier-bridge boards for `536` and `856`
209
- - route status
210
- - ticket board summary
211
- - first-principles ladder
212
- - ready queue
213
-
214
- `erdos sunflower ready` surfaces:
215
- - the current dependency-satisfied ready queue for the active sunflower board
216
-
217
- `erdos sunflower ladder` surfaces:
218
- - the first-principles ladder for the active sunflower board
219
-
220
- `erdos sunflower routes` surfaces:
221
- - the strategic route table for the active sunflower board
222
- - loose and strict progress for every publicized route
223
- - which route is the currently active frontier
224
-
225
- `erdos sunflower tickets` surfaces:
226
- - the operational ticket table for the active sunflower board
227
- - the active ticket, leaf theorem, and gate/atom counts
228
- - which tickets are closed versus still honest live pressure
229
-
230
- `erdos sunflower frontier` surfaces:
231
- - the compressed cockpit view:
232
- - active route
233
- - active ticket
234
- - first ready atom
235
- - checkpoint focus
236
- - compute posture
237
-
238
- `erdos sunflower route|ticket|atom` surfaces:
239
- - the deeper public drill-down packet for a specific route, ticket, or atom
240
- - live summary, blocker, next move, and source paths when available
241
-
242
- `erdos sunflower compute run` surfaces:
243
- - a governed local-scout run bundle only when the packaged compute posture admits a local scout
244
- - writes reproducible run artifacts into `.erdos/runs/<run-id>/`
245
- - records governance and ORP-facing packet context
246
- - does not silently escalate into paid or unbounded compute
247
-
248
- ## Number-theory starter cockpit
249
-
250
- The first non-sunflower pack is now a light but real cockpit for two number-theory problems:
251
- - `1`: open starter cockpit around a distinct-subset-sum lower-bound route
252
- - `2`: archive cockpit around a disproved / counterexample-facing record
253
-
254
- 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:
255
193
 
256
194
  ```bash
257
195
  erdos number-theory status 1
258
196
  erdos number-theory frontier 1
259
197
  erdos number-theory routes 1
260
- erdos number-theory tickets 1
261
198
  erdos number-theory route 1 distinct_subset_sum_lower_bound
262
199
  erdos number-theory ticket 1 N1
263
200
  erdos number-theory atom 1 N1.G1.A1
264
- erdos number-theory status 2 --json
265
201
  ```
266
202
 
267
- The number-theory pack is intentionally lighter than sunflower:
268
- - no mirrored theorem board yet
269
- - explicit route/frontier/ticket packet layer
270
- - honest archive posture for disproved problems
203
+ ### Graph-Theory Archive Cockpit
271
204
 
272
- ## Graph-theory archive cockpit
273
-
274
- The next family pack is a deliberately honest archive/decision cockpit for seeded graph-theory problems:
205
+ The first archive-first pack outside sunflower is graph theory:
275
206
  - `19`: decision archive cockpit
276
207
  - `22`: proof archive cockpit
277
208
  - `1008`: Lean-facing proof archive cockpit
278
209
 
279
- Useful graph-theory commands:
210
+ Useful commands:
280
211
 
281
212
  ```bash
282
213
  erdos graph-theory status 19
283
214
  erdos graph-theory frontier 22
284
215
  erdos graph-theory routes 1008
285
- erdos graph-theory tickets 1008
286
- erdos graph-theory status 1008 --json
216
+ erdos graph-theory tickets 19
217
+ erdos archive scaffold 1008 --json
287
218
  ```
288
219
 
289
- The graph-theory pack is intentionally archive-first:
290
- - no fake open frontier for solved or decided problems
291
- - route/ticket packets exist to preserve archive discipline, not to cosplay theorem pressure
292
- - the public job is to keep solved/decided records reusable as method exemplars and clean references
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
293
224
 
294
- ## Archive mode
225
+ ## Built For Agents
295
226
 
296
- Solved problems can now be treated as method exemplars instead of dead entries.
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:
297
238
 
298
239
  ```bash
299
- erdos problem show 1008
300
- erdos archive show 1008
301
- erdos archive scaffold 1008
302
- erdos number-theory status 1
303
- erdos number-theory frontier 1
304
- erdos number-theory routes 1
305
- erdos number-theory tickets 1
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
306
244
  ```
307
245
 
308
- Archive scaffolds land in:
309
- - `.erdos/archives/<id>/`
310
-
311
- and include:
312
- - `ARCHIVE.json`
313
- - `ARCHIVE_SUMMARY.md`
314
- - `METHOD_PACKET.md`
246
+ ## ORP And Truth Hygiene
315
247
 
316
- ## ORP
317
-
318
- `erdos-problems` now ships a bundled Open Research Protocol kit:
248
+ `erdos-problems` ships a bundled Open Research Protocol kit:
319
249
  - `PROTOCOL.md`
320
250
  - `AGENT_INTEGRATION.md`
321
251
  - `templates/CLAIM.md`
322
252
  - `templates/VERIFICATION_RECORD.md`
323
253
  - `templates/FAILED_TOPIC.md`
324
254
 
325
- Workspace copy:
326
- - `.erdos/orp/PROTOCOL.md`
327
- - `.erdos/orp/AGENT_INTEGRATION.md`
328
- - `.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
329
260
 
330
- Useful ORP commands:
261
+ That separation is one of the main product features.
331
262
 
332
- ```bash
333
- erdos orp show
334
- erdos orp sync
335
- ```
336
-
337
- ## CLI
263
+ ## Command Gallery
338
264
 
339
265
  ```bash
340
- erdos problem list
341
266
  erdos problem list --cluster sunflower
342
- erdos problem list --repo-status historical
343
- erdos problem list --harness-depth deep
344
- erdos problem list --site-status solved
345
- erdos problem use 857
346
- erdos problem show
347
- erdos problem artifacts 857
267
+ erdos problem show 857
348
268
  erdos problem artifacts 857 --json
349
- erdos cluster list
350
- erdos cluster show sunflower
351
- erdos cluster show number-theory
269
+
270
+ erdos cluster list --json
352
271
  erdos cluster show graph-theory
353
- erdos workspace show
272
+
354
273
  erdos workspace show --json
355
- erdos orp show
356
- erdos orp sync
357
- erdos sunflower status 857
358
- erdos sunflower board 857
359
- erdos sunflower ready 857
360
- erdos sunflower ladder 857
274
+ erdos checkpoints sync
275
+ erdos preflight
276
+
361
277
  erdos sunflower frontier 857
362
- erdos sunflower routes 857
363
- erdos sunflower tickets 857
364
- erdos sunflower route 857 anchored_selector_linearization
365
- erdos sunflower ticket 857 T10
366
- erdos sunflower atom 857 T10.G3.A2
278
+ erdos sunflower ready 857
367
279
  erdos sunflower compute run 857
368
- erdos number-theory status 1
369
- erdos number-theory frontier 1
370
- erdos number-theory routes 1
371
- erdos number-theory tickets 1
280
+
372
281
  erdos number-theory route 1 distinct_subset_sum_lower_bound
373
- erdos number-theory ticket 1 N1
374
- erdos number-theory atom 1 N1.G1.A1
375
282
  erdos graph-theory status 1008
376
- erdos graph-theory frontier 22
377
- erdos graph-theory routes 1008
378
- erdos graph-theory tickets 19
379
- erdos sunflower status --json
380
- erdos dossier show
381
- erdos upstream show
382
- erdos upstream sync
383
- erdos upstream diff
384
- erdos upstream drift
385
- erdos upstream drift 857 --json
386
- erdos scaffold problem 857
387
- erdos bootstrap problem 857
388
- erdos bootstrap problem 857 --sync-upstream
389
- erdos seed problem 25 --cluster number-theory
283
+
390
284
  erdos pull problem 857
391
- erdos pull artifacts 857
392
- erdos pull literature 857
393
- erdos pull literature 857 --json
394
- 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
395
288
  erdos maintainer review problem 25 --from-pull .erdos/pulls/25
396
- erdos maintainer seed problem 25 --from-pull .erdos/pulls/25 --cluster number-theory
397
- erdos archive show 1008
398
- erdos archive scaffold 1008
289
+ erdos archive scaffold 1008 --json
399
290
  ```
400
291
 
401
- ## Canonical sources
292
+ ## Canonical Sources
402
293
 
403
- - local atlas truth: `problems/<id>/problem.yaml`
294
+ - local dossier truth: `problems/<id>/problem.yaml`
404
295
  - bundled upstream snapshot: `data/upstream/erdosproblems/`
405
296
  - workspace upstream snapshot: `.erdos/upstream/erdosproblems/`
406
- - live upstream repo: `https://github.com/teorth/erdosproblems`
407
- - live public site: `https://www.erdosproblems.com/`
408
-
409
- ## Agent-facing artifact model
410
-
411
- For each seeded problem, the canonical local dossier lives in `problems/<id>/`:
412
- - `problem.yaml`
413
- - `STATEMENT.md`
414
- - `REFERENCES.md`
415
- - `EVIDENCE.md`
416
- - `FORMALIZATION.md`
417
-
418
- Many seeded dossiers now also carry starter-loop artifacts:
419
- - `AGENT_START.md`
420
- - `ROUTES.md`
421
- - `CHECKPOINT_NOTES.md`
422
- - `PUBLIC_STATUS_REVIEW.md`
423
- - `AGENT_WEBSEARCH_BRIEF.md`
424
-
425
- The CLI can surface these directly:
426
- - `erdos problem artifacts <id>` shows the canonical inventory
427
- - `erdos problem artifacts <id> --json` emits machine-readable inventory
428
- - `erdos scaffold problem <id>` copies the seeded dossier into the active workspace
429
- - `erdos bootstrap problem <id>` selects the problem and creates the scaffold in one step
430
- - `erdos seed problem <id>` self-seeds an unseeded problem into `.erdos/seeded-problems/` and syncs the loop
431
- - `erdos pull problem <id>` creates a workspace bundle for any problem in the upstream snapshot
432
- - `erdos maintainer seed problem <id>` promotes a pull bundle into a canonical local dossier
433
-
434
- For sunflower problems, the CLI also surfaces pack-specific artifacts:
435
- - pack README context
436
- - per-problem context files under `packs/sunflower/problems/<id>/`
437
- - route packets, checkpoint/report packets, and board packets for the full sunflower quartet
438
- - compute packets under `packs/sunflower/compute/<id>/` when available
439
- - compute-governance evaluation under `breakthroughs`, surfaced through `erdos sunflower status`
440
-
441
- For number-theory starter-cockpit problems, the CLI now also surfaces:
442
- - pack README context
443
- - per-problem context files under `packs/number-theory/problems/<id>/`
444
- - route packets, frontier notes, route histories, checkpoint/report templates, and ops-detail packets
445
- - route/ticket/atom drill-down packets through `erdos number-theory route|ticket|atom`
446
- - archive posture for disproved problems through `erdos number-theory status`
447
-
448
- For graph-theory archive-cockpit problems, the CLI now also surfaces:
449
- - pack README context
450
- - per-problem context files under `packs/graph-theory/problems/<id>/`
451
- - route packets, frontier notes, route histories, checkpoint/report templates, and ops-detail packets
452
- - archive and decision posture through `erdos graph-theory status|frontier|routes|tickets`
453
-
454
- ## Notes
455
-
456
- - `erdos-problems` is the canonical npm package name.
457
- - 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/>
458
299
 
459
300
  ## Docs
460
301
 
461
302
  - `docs/ERDOS_PROBLEMS_REPO_SPEC.md`
462
303
  - `docs/ERDOS_PROBLEMS_PROBLEM_SCHEMA.md`
463
304
  - `docs/ERDOS_SUNFLOWER_CLUSTER_SEED_PLAN.md`
305
+ - `docs/RESEARCH_LOOP.md`
306
+ - `docs/LAUNCH_KIT.md`
464
307
 
465
- ## Research loop
308
+ ## Launch Assets
466
309
 
467
- `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`
468
313
 
469
- ```bash
470
- erdos problem use 857
471
- erdos state sync
472
- erdos preflight
473
- erdos continuation use route
474
- erdos checkpoints sync
475
- erdos workspace show
476
- ```
314
+ ## Notes
477
315
 
478
- This runtime writes:
479
- - `.erdos/config.json`
480
- - `.erdos/state.json`
481
- - `.erdos/STATE.md`
482
- - `.erdos/QUESTION-LEDGER.md`
483
- - `.erdos/checkpoints/CHECKPOINTS.md`
484
- - `.erdos/checkpoints/CHECKPOINTS.json`
485
- - `.erdos/orp/PROTOCOL.md`
486
- - `.erdos/orp/AGENT_INTEGRATION.md`
487
- - `.erdos/orp/templates/`
488
- - `.erdos/registry/preflight/`
489
-
490
- The public package uses the same status ladder we settled on in the lab:
491
- - open problem
492
- - active route
493
- - route breakthrough
494
- - problem solved
495
-
496
- That means a fresh install now supports two clean research starts:
497
- - `erdos bootstrap problem <seeded-id>` for native packaged dossiers
498
- - `erdos seed problem <unseeded-id>` for workspace-local self-seeding with the same loop
499
-
500
- See also:
501
- - `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`
@@ -0,0 +1,84 @@
1
+ # Launch Kit
2
+
3
+ ## Positioning
4
+
5
+ Short version:
6
+ - `erdos-problems` is a research cockpit for Paul Erdos problems.
7
+
8
+ Medium version:
9
+ - `erdos-problems` is a CLI atlas and agent-ready research harness for Paul Erdos problems. It goes beyond a problem list by shipping dossiers, pack-specific cockpits, ORP-governed workspaces, and structured pull/seed flows that let humans and agents start real research immediately.
10
+
11
+ Long version:
12
+ - `erdos-problems` is built for serious open-problem work. It packages the public Erdős problem atlas, preserves canonical dossier truth, scaffolds agent-ready workspaces, and adds deeper family-specific cockpits where the problem structure is rich enough to justify them. The result is a clean research loop that can move from atlas -> dossier -> route -> checkpoint -> archive without blurring public status, local route pressure, or verification truth.
13
+
14
+ ## Launch Copy
15
+
16
+ ### One-liner
17
+ - Research cockpit for Paul Erdos problems.
18
+
19
+ ### Short post
20
+ - I just released `erdos-problems`: a CLI atlas and agent-ready research harness for Paul Erdos problems. It ships canonical dossiers, ORP-governed workspaces, self-seeding flows, and deeper cockpits for the sunflower family. Install with `npm install -g erdos-problems`.
21
+
22
+ ### Longer post
23
+ - I just released `erdos-problems`, a CLI atlas and staged research harness for Paul Erdos problems. The goal is not just to list problems, but to make them operational for real research. The package bundles upstream problem data, creates canonical dossiers, scaffolds ORP-governed workspaces, supports one-step self-seeding for new problems, and already includes deeper family-specific cockpits for sunflower, number theory, and graph-theory archive work. It is designed so a person or agent can install it at night and start honest, structured work immediately.
24
+
25
+ ## Demo Flow
26
+
27
+ ```bash
28
+ npm install -g erdos-problems
29
+ erdos bootstrap problem 857
30
+ erdos sunflower frontier 857
31
+ erdos problem artifacts 857 --json
32
+ ```
33
+
34
+ Backup demo flow:
35
+
36
+ ```bash
37
+ erdos seed problem 25 --cluster number-theory
38
+ erdos workspace show --json
39
+ ```
40
+
41
+ Archive demo flow:
42
+
43
+ ```bash
44
+ erdos graph-theory status 1008
45
+ erdos archive scaffold 1008 --json
46
+ ```
47
+
48
+ ## What To Emphasize
49
+
50
+ - It is not just a metadata dump.
51
+ - It is agent-ready out of the box.
52
+ - It preserves truth hygiene.
53
+ - It supports both open and solved problems.
54
+ - It already has a deep sunflower cockpit.
55
+
56
+ ## GitHub Presentation Notes
57
+
58
+ Recommended repo tagline:
59
+ - Research cockpit for Paul Erdos problems.
60
+
61
+ Recommended social preview:
62
+ - `assets/social-card.svg`
63
+ - export a PNG from it for GitHub social preview if GitHub wants raster upload
64
+
65
+ Recommended pinned bullets:
66
+ - atlas + dossiers
67
+ - ORP-governed workspaces
68
+ - self-seeding from public sources
69
+ - sunflower family cockpit
70
+
71
+ ## npm Presentation Notes
72
+
73
+ Recommended lead screenshot substitute:
74
+ - use the README's command-output sections
75
+ - keep the top fast and cinematic
76
+ - lead with install + immediate payoff
77
+
78
+ ## Suggested Release Checklist
79
+
80
+ - publish npm package
81
+ - set GitHub social preview image
82
+ - add repo description/tagline
83
+ - pin a short demo GIF or screenshot later if desired
84
+ - post the one-liner + short post copy
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "erdos-problems",
3
- "version": "0.2.2",
4
- "description": "CLI atlas and staged research harness for Paul Erdos problems.",
3
+ "version": "0.2.3",
4
+ "description": "Research cockpit and agent-ready CLI atlas for Paul Erdos problems.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "erdos": "bin/erdos"
@@ -25,14 +25,22 @@
25
25
  },
26
26
  "keywords": [
27
27
  "erdos",
28
- "combinatorics",
29
- "open-problems",
30
28
  "research",
29
+ "cli",
30
+ "open-problems",
31
+ "combinatorics",
32
+ "number-theory",
33
+ "graph-theory",
34
+ "theorem-proving",
35
+ "agents",
31
36
  "sunflower"
32
37
  ],
33
38
  "dependencies": {
34
39
  "breakthroughs": "^0.1.1",
35
40
  "yaml": "^2.8.3"
36
41
  },
37
- "license": "MIT"
42
+ "license": "MIT",
43
+ "engines": {
44
+ "node": ">=20"
45
+ }
38
46
  }