erdos-problems 0.2.6 → 0.2.8

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 (30) hide show
  1. package/README.md +29 -5
  2. package/docs/RESEARCH_LOOP.md +1 -1
  3. package/package.json +1 -1
  4. package/packs/graph-theory/README.md +6 -6
  5. package/packs/graph-theory/problems/1008/CONTEXT.md +1 -1
  6. package/packs/graph-theory/problems/1008/OPS_DETAILS.yaml +1 -1
  7. package/packs/graph-theory/problems/1008/ROUTE_HISTORY.md +1 -1
  8. package/packs/graph-theory/problems/1008/context.yaml +1 -1
  9. package/packs/graph-theory/problems/19/CONTEXT.md +1 -1
  10. package/packs/graph-theory/problems/19/FRONTIER_NOTE.md +1 -1
  11. package/packs/graph-theory/problems/19/OPS_DETAILS.yaml +1 -1
  12. package/packs/graph-theory/problems/19/ROUTE_HISTORY.md +1 -1
  13. package/packs/graph-theory/problems/19/context.yaml +2 -2
  14. package/packs/graph-theory/problems/22/CONTEXT.md +1 -1
  15. package/packs/graph-theory/problems/22/OPS_DETAILS.yaml +1 -1
  16. package/packs/graph-theory/problems/22/ROUTE_HISTORY.md +1 -1
  17. package/packs/graph-theory/problems/22/context.yaml +3 -3
  18. package/packs/number-theory/README.md +4 -4
  19. package/packs/number-theory/problems/1/FRONTIER_NOTE.md +1 -1
  20. package/packs/number-theory/problems/1/OPS_DETAILS.yaml +4 -4
  21. package/packs/number-theory/problems/1/ROUTE_HISTORY.md +1 -1
  22. package/packs/number-theory/problems/1/context.yaml +2 -2
  23. package/packs/number-theory/problems/2/FRONTIER_NOTE.md +1 -1
  24. package/packs/number-theory/problems/2/OPS_DETAILS.yaml +1 -1
  25. package/packs/number-theory/problems/2/ROUTE_HISTORY.md +1 -1
  26. package/packs/number-theory/problems/2/context.yaml +2 -2
  27. package/src/commands/cluster.js +5 -5
  28. package/src/runtime/archive.js +1 -1
  29. package/src/runtime/graph-theory.js +1 -1
  30. package/src/runtime/number-theory.js +1 -1
package/README.md CHANGED
@@ -98,7 +98,7 @@ Checkpoint focus: keep the board packet honest around T10 while preserving the o
98
98
  $ erdos graph-theory status 1008
99
99
  Erdos Problem #1008 graph-theory harness
100
100
  Family role: c4_free_lean_archive
101
- Harness profile: lean_archive_cockpit
101
+ Harness profile: lean_archive_workspace
102
102
  Archive mode: method_exemplar
103
103
  Problem solved: yes
104
104
  First ready atom: G1008.G1.A1 — Freeze the primary Lean-facing archive hook for the `C_4`-free density result
@@ -305,8 +305,32 @@ If you are preparing a public post, start here:
305
305
  - `assets/social-card.svg`
306
306
  - `assets/terminal-demo.gif`
307
307
 
308
- ## Notes
308
+ ## FAQ
309
309
 
310
- - `erdos-problems` is the canonical npm package name.
311
- - the package is already live on npm.
312
- - the compact unscoped alias `erdosproblems` is not publishable because npm rejects it as too similar to `erdos-problems`.
310
+ ### What is the difference between this and erdosproblems.com?
311
+
312
+ `erdosproblems.com` is a public problem atlas. `erdos-problems` uses that public record, but adds local dossiers, workspace scaffolding, checkpoints, and pack-specific views for the problems that already have more structure here.
313
+
314
+ ### Can I use this with Codex, Claude Code, or another agent?
315
+
316
+ Yes. The package can scaffold a local `.erdos/` workspace, expose machine-readable JSON on the main public surfaces, and keep public status, local route state, and verification records separate.
317
+
318
+ ### Which problems are most developed right now?
319
+
320
+ The sunflower pack is currently the most developed. Problems `20` and `857` have the deepest public pack surface. Problems `536` and `856` are included as bridge-oriented sunflower dossiers. The number-theory and graph-theory packs are lighter.
321
+
322
+ ### Does it only cover open problems?
323
+
324
+ No. The bundled upstream atlas covers open, solved, and decided problems. Open problems can be seeded into active workspaces. Solved or decided problems can be scaffolded in archive mode and used as method exemplars.
325
+
326
+ ### What is a dossier?
327
+
328
+ A dossier is the local canonical folder for one problem. It usually includes `problem.yaml`, `STATEMENT.md`, `REFERENCES.md`, `EVIDENCE.md`, and `FORMALIZATION.md`.
329
+
330
+ ### Do I need Lean or ORP to start using it?
331
+
332
+ No. You can start with `erdos bootstrap problem <id>` or `erdos seed problem <id>`. ORP files are bundled into the workspace for structured claims and checkpoints, and some packs include formalization-specific surfaces, but the first step does not require Lean.
333
+
334
+ ### Why is the npm package called `erdos-problems` and not `erdosproblems`?
335
+
336
+ `erdos-problems` is the canonical npm package name and it is already live on npm. The compact unscoped alias `erdosproblems` is not publishable because npm rejects it as too similar to `erdos-problems`.
@@ -75,7 +75,7 @@ For sunflower compute lanes, ORP sits above `breakthroughs`:
75
75
  - `erdos sunflower board <id>` exposes the packaged atomic or bridge board for the active sunflower problem
76
76
  - `erdos sunflower ready <id>` exposes the dependency-satisfied ready queue for the packaged board
77
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
78
+ - `erdos sunflower frontier <id>` exposes the compressed frontier view for the active board
79
79
  - `erdos sunflower routes <id>` exposes the public route table for the packaged board
80
80
  - `erdos sunflower tickets <id>` exposes the ticket table for the packaged board
81
81
  - `erdos sunflower route <id> <route-id>` exposes the deeper public route packet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "erdos-problems",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "CLI atlas and workspace tools for Paul Erdos problems.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,11 +1,11 @@
1
1
  # Graph-Theory Pack
2
2
 
3
- Archive and decision cockpit for graph-theory problems in `erdos-problems`.
3
+ Archive and decision workspace for graph-theory problems in `erdos-problems`.
4
4
 
5
- Current seeded cockpit problems:
6
- - `19`: decision/archive cockpit around the chromatic-number record
7
- - `22`: proof archive cockpit around the Ramsey-Turan `K_4` construction record
8
- - `1008`: Lean-facing proof archive cockpit for the `C_4`-free density problem
5
+ Current seeded pack problems:
6
+ - `19`: decision/archive workspace around the chromatic-number record
7
+ - `22`: proof archive workspace around the Ramsey-Turan `K_4` construction record
8
+ - `1008`: Lean-facing proof archive workspace for the `C_4`-free density problem
9
9
 
10
10
  Useful commands:
11
11
  - `erdos graph-theory status 19`
@@ -14,4 +14,4 @@ Useful commands:
14
14
  - `erdos graph-theory tickets 1008`
15
15
 
16
16
  Design rule:
17
- - keep this pack honest as an archive/decision cockpit until a real open graph-theory frontier earns deeper gated flow
17
+ - keep this pack honest as an archive/decision workspace until a real open graph-theory frontier earns deeper gated flow
@@ -2,7 +2,7 @@
2
2
 
3
3
  Role in pack:
4
4
  - Lean-facing proof archive for the `C_4`-free density problem
5
- - solved graph-theory cockpit rather than a live open frontier
5
+ - solved graph-theory workspace rather than a live open frontier
6
6
 
7
7
  Bootstrap focus:
8
8
  - preserve the solved status and Lean-facing badge
@@ -1,5 +1,5 @@
1
1
  packet_id: gt1008_ops_details_v1
2
- summary: Lean-facing proof archive cockpit packet for the `C_4`-free density result.
2
+ summary: Lean-facing proof archive workspace packet for the `C_4`-free density result.
3
3
  routes:
4
4
  - route_id: c4_free_lean_archive
5
5
  title: "`C_4`-Free Lean Proof Archive"
@@ -1,5 +1,5 @@
1
1
  # Problem 1008 Route History
2
2
 
3
- - Initial public pack lift: moved the dossier into a graph-theory Lean archive cockpit.
3
+ - Initial public pack lift: moved the dossier into a graph-theory Lean archive workspace.
4
4
  - Current route: `c4_free_lean_archive`.
5
5
  - Honest next improvement: freeze the best Lean-facing source hook and checkpoint the archive packet.
@@ -1,6 +1,6 @@
1
1
  problem_id: "1008"
2
2
  family_role: c4_free_lean_archive
3
- harness_profile: lean_archive_cockpit
3
+ harness_profile: lean_archive_workspace
4
4
  default_active_route: c4_free_lean_archive
5
5
  bootstrap_focus: Freeze the `C_4`-free density result as a Lean-facing archive packet and keep the solved status synchronized with the public dossier.
6
6
  route_story: Problem 1008 is a formalization-flavored proof archive. The public job is to preserve the solved record, the Lean-facing posture, and the core extremal-graph framing without re-opening a closed problem.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Role in pack:
4
4
  - chromatic-number decision archive
5
- - graph-theory archive cockpit rather than a live theorem frontier today
5
+ - graph-theory archive workspace rather than a live theorem frontier today
6
6
 
7
7
  Bootstrap focus:
8
8
  - keep the public decision posture explicit
@@ -5,4 +5,4 @@ This is an archive-facing graph-theory packet.
5
5
  Current honest posture:
6
6
  - preserve the public decision status
7
7
  - keep the chromatic-number framing explicit
8
- - do not re-inflate the dossier into an open-problem cockpit
8
+ - do not re-inflate the dossier into an open-problem workspace
@@ -1,5 +1,5 @@
1
1
  packet_id: gt19_ops_details_v1
2
- summary: Decision/archive cockpit packet for the chromatic-number record.
2
+ summary: Decision/archive workspace packet for the chromatic-number record.
3
3
  routes:
4
4
  - route_id: chromatic_decision_record
5
5
  title: Chromatic Decision Record
@@ -1,5 +1,5 @@
1
1
  # Problem 19 Route History
2
2
 
3
- - Initial public pack lift: moved the dossier into a graph-theory decision archive cockpit.
3
+ - Initial public pack lift: moved the dossier into a graph-theory decision archive workspace.
4
4
  - Current route: `chromatic_decision_record`.
5
5
  - Honest next improvement: freeze the best source explaining the decision posture and checkpoint it.
@@ -1,9 +1,9 @@
1
1
  problem_id: "19"
2
2
  family_role: chromatic_number_decision_archive
3
- harness_profile: decision_archive_cockpit
3
+ harness_profile: decision_archive_workspace
4
4
  default_active_route: chromatic_decision_record
5
5
  bootstrap_focus: Freeze the exact chromatic-number decision posture, the dossier provenance, and the archive packet without drifting back into open-problem language.
6
- route_story: Problem 19 is currently best treated as a decision/archive cockpit. The public job is to preserve the decision record and its references cleanly enough that future agents do not mis-handle it as a live open frontier.
6
+ route_story: Problem 19 is currently best treated as a decision/archive workspace. The public job is to preserve the decision record and its references cleanly enough that future agents do not mis-handle it as a live open frontier.
7
7
  frontier_label: chromatic_decision_record
8
8
  frontier_detail: Keep the decision posture and the primary chromatic-number source trail explicit.
9
9
  checkpoint_focus: Synchronize the public decision status, archive packet, and primary references every time this dossier is touched.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Role in pack:
4
4
  - Ramsey-Turan proof archive
5
- - solved graph-theory cockpit rather than a live open frontier
5
+ - solved graph-theory workspace rather than a live open frontier
6
6
 
7
7
  Bootstrap focus:
8
8
  - preserve the solved status cleanly
@@ -1,5 +1,5 @@
1
1
  packet_id: gt22_ops_details_v1
2
- summary: Proof archive cockpit packet for the Ramsey-Turan `K_4` record.
2
+ summary: Proof archive workspace packet for the Ramsey-Turan `K_4` record.
3
3
  routes:
4
4
  - route_id: ramsey_turan_k4_archive
5
5
  title: Ramsey-Turan `K_4` Proof Archive
@@ -1,5 +1,5 @@
1
1
  # Problem 22 Route History
2
2
 
3
- - Initial public pack lift: moved the dossier into a graph-theory proof archive cockpit.
3
+ - Initial public pack lift: moved the dossier into a graph-theory proof archive workspace.
4
4
  - Current route: `ramsey_turan_k4_archive`.
5
5
  - Honest next improvement: freeze the best source trail and keep the solved wording maximally clear.
@@ -1,9 +1,9 @@
1
1
  problem_id: "22"
2
2
  family_role: ramsey_turan_proof_archive
3
- harness_profile: proof_archive_cockpit
3
+ harness_profile: proof_archive_workspace
4
4
  default_active_route: ramsey_turan_k4_archive
5
5
  bootstrap_focus: Freeze the solved Ramsey-Turan `K_4` record as a proof archive and keep its dossier wording aligned with the public solved status.
6
- route_story: Problem 22 is a proof archive cockpit. The public job is to preserve the solved status, the Ramsey-Turan framing, and the main source trail without pretending there is a live frontier here.
6
+ route_story: Problem 22 is a proof archive workspace. The public job is to preserve the solved status, the Ramsey-Turan framing, and the main source trail without pretending there is a live frontier here.
7
7
  frontier_label: ramsey_turan_k4_archive
8
8
  frontier_detail: Preserve the affirmative proof posture and the extremal graph framing without blurring it into an open program.
9
9
  checkpoint_focus: Keep the proof archive wording, the public solved status, and the main source trail synchronized.
@@ -20,7 +20,7 @@ question_ledger:
20
20
  open_questions:
21
21
  - Which exact reference should anchor the proof archive packet first?
22
22
  active_route_notes:
23
- - Treat Problem 22 as a proof archive, not as a live open cockpit.
23
+ - Treat Problem 22 as a proof archive, not as a live open workspace.
24
24
  route_breakthroughs: []
25
25
  problem_solved:
26
26
  - The public site marks this problem as proved.
@@ -1,10 +1,10 @@
1
1
  # Number Theory Pack
2
2
 
3
- Light starter cockpit for number-theory problems in `erdos-problems`.
3
+ Light starter workspace for number-theory problems in `erdos-problems`.
4
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
5
+ Current seeded pack problems:
6
+ - `1`: open starter workspace around a distinct-subset-sum lower-bound route
7
+ - `2`: counterexample/archive workspace for a disproved covering-systems problem
8
8
 
9
9
  Useful commands:
10
10
  - `erdos number-theory status 1`
@@ -1,6 +1,6 @@
1
1
  # Problem 1 Frontier Note
2
2
 
3
- This is a starter cockpit, not a deep theorem board.
3
+ This is a starter workspace, not a deep theorem board.
4
4
 
5
5
  The honest live route is the distinct-subset-sum lower-bound route:
6
6
  - keep the problem statement exact
@@ -1,18 +1,18 @@
1
1
  packet_id: nt1_ops_details_v1
2
- summary: Starter cockpit packet for the distinct-subset-sum lower-bound route.
2
+ summary: Starter workspace packet for the distinct-subset-sum lower-bound route.
3
3
  routes:
4
4
  - route_id: distinct_subset_sum_lower_bound
5
5
  title: Distinct Subset-Sum Lower Bound
6
6
  status: active
7
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.
8
+ why_now: This is the smallest honest route that turns the dossier into a real workspace.
9
9
  next_move: Freeze the first exact reduction and connect it to the canonical references.
10
10
  tickets:
11
11
  - ticket_id: N1
12
12
  title: Freeze the lower-bound route note
13
13
  route_id: distinct_subset_sum_lower_bound
14
14
  status: active
15
- summary: Turn the starter dossier into a stable lower-bound cockpit.
15
+ summary: Turn the starter dossier into a stable lower-bound workspace.
16
16
  current_blocker: The first exact reduction and evidence stack are not yet frozen together.
17
17
  next_move: Close `N1.G1.A1`.
18
18
  atoms:
@@ -21,5 +21,5 @@ atoms:
21
21
  route_id: distinct_subset_sum_lower_bound
22
22
  ticket_id: N1
23
23
  status: ready
24
- summary: This is the smallest honest move that upgrades the dossier into a route-aware cockpit.
24
+ summary: This is the smallest honest move that upgrades the dossier into a route-aware workspace.
25
25
  next_move: Record the first reduction and checkpoint it without overclaiming theorem progress.
@@ -1,5 +1,5 @@
1
1
  # Problem 1 Route History
2
2
 
3
3
  - Initial public pack posture: dossier-first seed.
4
- - Current public pack posture: starter cockpit around the distinct-subset-sum lower-bound route.
4
+ - Current public pack posture: starter workspace around the distinct-subset-sum lower-bound route.
5
5
  - Next maturity threshold: freeze the first exact reduction or historical lower-bound checkpoint before adding deeper pack machinery.
@@ -1,9 +1,9 @@
1
1
  problem_id: "1"
2
2
  family_role: additive_number_theory_seed
3
- harness_profile: starter_cockpit
3
+ harness_profile: starter_workspace
4
4
  default_active_route: distinct_subset_sum_lower_bound
5
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.
6
+ route_story: This problem now has a starter workspace whose job is to keep the lower-bound route explicit without pretending we already have a deep theorem engine.
7
7
  frontier_label: distinct_subset_sum_lower_bound
8
8
  frontier_detail: Keep the problem anchored to the binary-growth lower-bound route and freeze the exact first reduction before widening claims.
9
9
  checkpoint_focus: Preserve provenance, the exact lower-bound route, and the open-problem boundary in every checkpoint.
@@ -5,4 +5,4 @@ This is not a live open-problem frontier.
5
5
  The honest posture is:
6
6
  - preserve the disproval cleanly
7
7
  - keep the references synchronized
8
- - package the problem as a counterexample/method archive instead of a live cockpit
8
+ - package the problem as a counterexample/method archive instead of a live workspace
@@ -1,5 +1,5 @@
1
1
  packet_id: nt2_ops_details_v1
2
- summary: Archive cockpit packet for the disproved covering-systems problem.
2
+ summary: Archive workspace packet for the disproved covering-systems problem.
3
3
  routes:
4
4
  - route_id: counterexample_archive
5
5
  title: Counterexample Archive
@@ -1,5 +1,5 @@
1
1
  # Problem 2 Route History
2
2
 
3
3
  - Initial pack posture: dossier-first seed.
4
- - Current pack posture: archive cockpit around the counterexample/disproval record.
4
+ - Current pack posture: archive workspace around the counterexample/disproval record.
5
5
  - Next maturity threshold: freeze the best archive packet rather than inventing open-frontier pressure.
@@ -1,6 +1,6 @@
1
1
  problem_id: "2"
2
2
  family_role: covering_systems_counterexample_archive
3
- harness_profile: archive_cockpit
3
+ harness_profile: archive_workspace
4
4
  default_active_route: counterexample_archive
5
5
  bootstrap_focus: Freeze the exact disproval record, the dossier provenance, and the counterexample-facing archive packet.
6
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.
@@ -20,6 +20,6 @@ question_ledger:
20
20
  open_questions:
21
21
  - Which exact disproval or counterexample references should be frozen first in the archive packet?
22
22
  active_route_notes:
23
- - Treat this as an archive cockpit, not a live open-problem route.
23
+ - Treat this as an archive workspace, not a live open-problem route.
24
24
  route_breakthroughs: []
25
25
  problem_solved: []
@@ -11,13 +11,13 @@ function printCluster(cluster) {
11
11
  console.log(' Strong sunflower sibling: 20');
12
12
  console.log(' Related analogues: 536, 856');
13
13
  } else if (cluster.name === 'number-theory') {
14
- console.log(' Open starter cockpit: 1');
15
- console.log(' Counterexample/archive cockpit: 2');
14
+ console.log(' Open starter workspace: 1');
15
+ console.log(' Counterexample/archive workspace: 2');
16
16
  console.log(' Additional dossier seeds: 3, 4, 5, 6, 7, 18, 542');
17
17
  } else if (cluster.name === 'graph-theory') {
18
- console.log(' Decision archive cockpit: 19');
19
- console.log(' Proof archive cockpit: 22');
20
- console.log(' Lean proof archive cockpit: 1008');
18
+ console.log(' Decision archive workspace: 19');
19
+ console.log(' Proof archive workspace: 22');
20
+ console.log(' Lean proof archive workspace: 1008');
21
21
  }
22
22
  }
23
23
 
@@ -23,7 +23,7 @@ export function getArchiveView(problemId) {
23
23
  solved: isSolved(problem),
24
24
  archiveMode: isSolved(problem) ? 'method_exemplar' : 'inactive',
25
25
  nextMove: isSolved(problem)
26
- ? 'Extract reusable methods, references, and formalization hooks without treating this as an open-problem cockpit.'
26
+ ? 'Extract reusable methods, references, and formalization hooks without treating this as an open-problem workspace.'
27
27
  : 'This problem is not currently in solved archival mode.',
28
28
  };
29
29
  }
@@ -121,7 +121,7 @@ export function buildGraphTheoryStatusSnapshot(problem) {
121
121
  title: problem.title,
122
122
  cluster: problem.cluster,
123
123
  familyRole: context.family_role ?? 'graph_theory_pack',
124
- harnessProfile: context.harness_profile ?? 'starter_cockpit',
124
+ harnessProfile: context.harness_profile ?? 'starter_workspace',
125
125
  activeRoute,
126
126
  routeBreakthrough,
127
127
  problemSolved,
@@ -144,7 +144,7 @@ export function buildNumberTheoryStatusSnapshot(problem) {
144
144
  title: problem.title,
145
145
  cluster: problem.cluster,
146
146
  familyRole: context.family_role ?? 'number_theory_pack',
147
- harnessProfile: context.harness_profile ?? 'starter_cockpit',
147
+ harnessProfile: context.harness_profile ?? 'starter_workspace',
148
148
  activeRoute,
149
149
  routeBreakthrough,
150
150
  problemSolved,