erdos-problems 0.2.10 → 0.3.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 +220 -23
- package/data/upstream/erdosproblems/SYNC_MANIFEST.json +4 -4
- package/docs/CANONICAL_REPO_MIGRATION_PLAN.md +279 -0
- package/docs/DEEP_RESEARCH_BUNDLE_SPEC.md +129 -0
- package/docs/ERDOS_PROBLEMS_PROBLEM_SCHEMA.md +27 -20
- package/docs/ERDOS_PROBLEMS_REPO_SPEC.md +22 -13
- package/docs/PAPER_WRITER_MODE.md +118 -0
- package/package.json +1 -1
- package/problems/1/AGENT_START.md +1 -1
- package/problems/1/EVIDENCE.md +1 -1
- package/problems/1/FORMALIZATION.md +2 -2
- package/problems/1/problem.yaml +6 -6
- package/problems/1008/problem.yaml +5 -5
- package/problems/18/problem.yaml +5 -5
- package/problems/19/AGENT_START.md +1 -1
- package/problems/19/EVIDENCE.md +1 -1
- package/problems/19/FORMALIZATION.md +2 -2
- package/problems/19/problem.yaml +6 -6
- package/problems/2/AGENT_START.md +1 -1
- package/problems/2/EVIDENCE.md +1 -1
- package/problems/2/FORMALIZATION.md +2 -2
- package/problems/2/problem.yaml +6 -6
- package/problems/20/problem.yaml +5 -5
- package/problems/21/AGENT_START.md +1 -1
- package/problems/21/EVIDENCE.md +1 -1
- package/problems/21/FORMALIZATION.md +2 -2
- package/problems/21/problem.yaml +6 -6
- package/problems/22/AGENT_START.md +1 -1
- package/problems/22/EVIDENCE.md +1 -1
- package/problems/22/FORMALIZATION.md +2 -2
- package/problems/22/problem.yaml +6 -6
- package/problems/3/AGENT_START.md +1 -1
- package/problems/3/EVIDENCE.md +1 -1
- package/problems/3/FORMALIZATION.md +2 -2
- package/problems/3/problem.yaml +6 -6
- package/problems/4/AGENT_START.md +1 -1
- package/problems/4/EVIDENCE.md +1 -1
- package/problems/4/FORMALIZATION.md +2 -2
- package/problems/4/problem.yaml +6 -6
- package/problems/5/AGENT_START.md +1 -1
- package/problems/5/EVIDENCE.md +1 -1
- package/problems/5/FORMALIZATION.md +2 -2
- package/problems/5/problem.yaml +6 -6
- package/problems/536/problem.yaml +5 -5
- package/problems/542/problem.yaml +5 -5
- package/problems/6/AGENT_START.md +1 -1
- package/problems/6/EVIDENCE.md +1 -1
- package/problems/6/FORMALIZATION.md +2 -2
- package/problems/6/problem.yaml +6 -6
- package/problems/7/AGENT_START.md +1 -1
- package/problems/7/EVIDENCE.md +1 -1
- package/problems/7/FORMALIZATION.md +2 -2
- package/problems/7/problem.yaml +6 -6
- package/problems/856/problem.yaml +5 -5
- package/problems/857/problem.yaml +5 -5
- package/problems/89/problem.yaml +5 -5
- package/src/atlas/catalog.js +6 -5
- package/src/cli/index.js +10 -5
- package/src/commands/bootstrap.js +1 -1
- package/src/commands/dossier.js +1 -1
- package/src/commands/maintainer.js +2 -2
- package/src/commands/paper.js +147 -0
- package/src/commands/problem.js +9 -9
- package/src/commands/pull.js +8 -8
- package/src/commands/scaffold.js +1 -1
- package/src/commands/seed.js +1 -1
- package/src/commands/upstream.js +27 -24
- package/src/runtime/maintainer-seed.js +12 -12
- package/src/runtime/paper.js +720 -0
- package/src/runtime/paths.js +16 -0
- package/src/runtime/problem-artifacts.js +2 -2
- package/src/runtime/state.js +1 -1
- package/src/upstream/sync.js +18 -18
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Deep Research Bundle Spec
|
|
2
|
+
|
|
3
|
+
Last updated: 2026-03-30
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
This document defines how `SproutSeeds/erdos-problems` can hold the full public research archive without forcing all of it into the npm package.
|
|
8
|
+
|
|
9
|
+
The package should keep a two-speed model:
|
|
10
|
+
|
|
11
|
+
- fast install and immediate dossier/pack handoff through npm
|
|
12
|
+
- deeper public research bundles through the GitHub repo
|
|
13
|
+
|
|
14
|
+
## Repo-only directories
|
|
15
|
+
|
|
16
|
+
These directories are intended to live in the GitHub repo but stay out of the npm tarball:
|
|
17
|
+
|
|
18
|
+
- `research/`
|
|
19
|
+
- `formal/`
|
|
20
|
+
- `paper/`
|
|
21
|
+
- `imports/`
|
|
22
|
+
- `analysis/`
|
|
23
|
+
|
|
24
|
+
They remain repo-only by staying outside the `package.json` `files` list.
|
|
25
|
+
|
|
26
|
+
## Recommended layout
|
|
27
|
+
|
|
28
|
+
```text
|
|
29
|
+
research/
|
|
30
|
+
problems/<id>/
|
|
31
|
+
README.md
|
|
32
|
+
boards/
|
|
33
|
+
checkpoints/
|
|
34
|
+
notes/
|
|
35
|
+
wave-history/
|
|
36
|
+
|
|
37
|
+
formal/
|
|
38
|
+
lean/
|
|
39
|
+
README.md
|
|
40
|
+
SunflowerLean/
|
|
41
|
+
|
|
42
|
+
paper/
|
|
43
|
+
README.md
|
|
44
|
+
problems/<id>/
|
|
45
|
+
references/
|
|
46
|
+
|
|
47
|
+
imports/
|
|
48
|
+
README.md
|
|
49
|
+
external-atlas/
|
|
50
|
+
public-site/
|
|
51
|
+
|
|
52
|
+
analysis/
|
|
53
|
+
README.md
|
|
54
|
+
problem20/
|
|
55
|
+
problem857/
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Problem handoff model
|
|
59
|
+
|
|
60
|
+
Every serious problem should eventually have three public layers:
|
|
61
|
+
|
|
62
|
+
### 1. Canonical dossier
|
|
63
|
+
|
|
64
|
+
Lives in `problems/<id>/`.
|
|
65
|
+
|
|
66
|
+
Use for:
|
|
67
|
+
- source page
|
|
68
|
+
- canonical local status
|
|
69
|
+
- short statement
|
|
70
|
+
- references
|
|
71
|
+
- evidence ledger
|
|
72
|
+
- formalization posture
|
|
73
|
+
|
|
74
|
+
### 2. Public pack packet
|
|
75
|
+
|
|
76
|
+
Lives in `packs/<family>/problems/<id>/`.
|
|
77
|
+
|
|
78
|
+
Use for:
|
|
79
|
+
- active route
|
|
80
|
+
- current frontier
|
|
81
|
+
- ready queue
|
|
82
|
+
- checkpoint/report templates
|
|
83
|
+
- concise operational handoff
|
|
84
|
+
|
|
85
|
+
### 3. Deep research bundle
|
|
86
|
+
|
|
87
|
+
Lives in `research/problems/<id>/`.
|
|
88
|
+
|
|
89
|
+
Use for:
|
|
90
|
+
- long-form notes
|
|
91
|
+
- board exports
|
|
92
|
+
- route decompositions
|
|
93
|
+
- wave histories
|
|
94
|
+
- intermediate artifacts
|
|
95
|
+
- deeper public context not needed in the npm install
|
|
96
|
+
|
|
97
|
+
## Formal bundle
|
|
98
|
+
|
|
99
|
+
Formalization source should live under `formal/lean/` or another clearly scoped formal directory inside this repo.
|
|
100
|
+
|
|
101
|
+
Pack packets may point into those repo-local formal files, but should not point back out to `sunflower-coda` once the migration is complete.
|
|
102
|
+
|
|
103
|
+
## Paper bundle
|
|
104
|
+
|
|
105
|
+
Paper drafts, publication notes, and public reference-reading order should live under `paper/`.
|
|
106
|
+
|
|
107
|
+
The npm install does not need all of this by default, but the repo should be able to present it as part of the canonical public archive.
|
|
108
|
+
|
|
109
|
+
For problem-specific writing, prefer `paper/problems/<id>/` bundles created by `erdos paper init <id>`.
|
|
110
|
+
|
|
111
|
+
## Import bundle
|
|
112
|
+
|
|
113
|
+
External imports should live under `imports/` when they are intentionally retained in the repo.
|
|
114
|
+
|
|
115
|
+
These are not canonical dossier truth. They are imported provenance and reconciliation material.
|
|
116
|
+
|
|
117
|
+
## Migration order
|
|
118
|
+
|
|
119
|
+
1. store this directory contract in the repo
|
|
120
|
+
2. create the repo-only directories with READMEs
|
|
121
|
+
3. migrate flagship public materials for `20` and `857`
|
|
122
|
+
4. update pack references from `sunflower-coda/...` to repo-local paths
|
|
123
|
+
5. add CLI affordances for pointing users at the deeper repo-held bundles
|
|
124
|
+
|
|
125
|
+
## Success criteria
|
|
126
|
+
|
|
127
|
+
- the GitHub repo can hold the full public archive
|
|
128
|
+
- npm remains focused on install-critical assets
|
|
129
|
+
- a user can understand the shallow-to-deep handoff without guessing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Erdos Problems Problem Schema
|
|
2
2
|
|
|
3
|
-
Last updated: 2026-03-
|
|
3
|
+
Last updated: 2026-03-30
|
|
4
4
|
|
|
5
5
|
## Purpose
|
|
6
6
|
|
|
@@ -8,9 +8,9 @@ This schema defines the canonical local dossier record for each seeded problem i
|
|
|
8
8
|
|
|
9
9
|
Goals:
|
|
10
10
|
- every Erdős problem has a consistent local home
|
|
11
|
-
- local dossier truth stays separate from
|
|
11
|
+
- local dossier truth stays separate from imported public truth
|
|
12
12
|
- agents can bootstrap from canonical artifacts immediately after install
|
|
13
|
-
- pulled
|
|
13
|
+
- pulled import/site bundles can be promoted into canonical dossiers without losing provenance
|
|
14
14
|
|
|
15
15
|
## Canonical files
|
|
16
16
|
|
|
@@ -21,7 +21,7 @@ Each seeded problem should have:
|
|
|
21
21
|
- `problems/<id>/EVIDENCE.md`
|
|
22
22
|
- `problems/<id>/FORMALIZATION.md`
|
|
23
23
|
|
|
24
|
-
Bundled
|
|
24
|
+
Bundled import snapshot artifacts live in:
|
|
25
25
|
- `data/upstream/erdosproblems/problems.yaml`
|
|
26
26
|
- `data/upstream/erdosproblems/PROBLEMS_INDEX.json`
|
|
27
27
|
- `data/upstream/erdosproblems/SYNC_MANIFEST.json`
|
|
@@ -40,15 +40,16 @@ Workspace-generated artifacts may live in:
|
|
|
40
40
|
|
|
41
41
|
## Canonical truth split
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
- upstream structured repo: `teorth/erdosproblems`
|
|
46
|
-
- public presentation site: `erdosproblems.com`
|
|
47
|
-
|
|
48
|
-
Local atlas truth:
|
|
43
|
+
Canonical repo truth:
|
|
44
|
+
- `SproutSeeds/erdos-problems`
|
|
49
45
|
- `problems/<id>/problem.yaml`
|
|
50
46
|
- dossier markdown files beside it
|
|
51
47
|
|
|
48
|
+
External imported public truth:
|
|
49
|
+
- tracked, not silently rewritten
|
|
50
|
+
- external structured repo: `teorth/erdosproblems`
|
|
51
|
+
- public presentation site: `erdosproblems.com`
|
|
52
|
+
|
|
52
53
|
Local harness truth:
|
|
53
54
|
- route state
|
|
54
55
|
- evidence notes
|
|
@@ -67,7 +68,7 @@ source:
|
|
|
67
68
|
site: "erdosproblems.com"
|
|
68
69
|
url: "https://www.erdosproblems.com/857"
|
|
69
70
|
external_id: "857"
|
|
70
|
-
|
|
71
|
+
external_source:
|
|
71
72
|
repo: "https://github.com/teorth/erdosproblems"
|
|
72
73
|
data_file: "data/problems.yaml"
|
|
73
74
|
number: "857"
|
|
@@ -75,8 +76,8 @@ status:
|
|
|
75
76
|
site_status: "open"
|
|
76
77
|
site_badge: "OPEN"
|
|
77
78
|
repo_status: "active"
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
imported_status: "open"
|
|
80
|
+
imported_last_update: "2025-08-31"
|
|
80
81
|
cluster: "sunflower"
|
|
81
82
|
prize:
|
|
82
83
|
display: "no"
|
|
@@ -97,8 +98,8 @@ evidence_path: "EVIDENCE.md"
|
|
|
97
98
|
formalization_path: "FORMALIZATION.md"
|
|
98
99
|
formalization:
|
|
99
100
|
status: "active"
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
imported_state: "no"
|
|
102
|
+
imported_last_update: "2025-08-31"
|
|
102
103
|
research_state:
|
|
103
104
|
open_problem: true
|
|
104
105
|
active_route: "anchored_selector_linearization"
|
|
@@ -115,7 +116,7 @@ provenance:
|
|
|
115
116
|
seeded_at: "2026-03-25T..."
|
|
116
117
|
seeded_from:
|
|
117
118
|
kind: "pull_bundle"
|
|
118
|
-
|
|
119
|
+
imported_record_included: true
|
|
119
120
|
site_snapshot_included: false
|
|
120
121
|
```
|
|
121
122
|
|
|
@@ -125,7 +126,7 @@ provenance:
|
|
|
125
126
|
- `display_name`
|
|
126
127
|
- `title`
|
|
127
128
|
- `source`
|
|
128
|
-
- `
|
|
129
|
+
- `external_source`
|
|
129
130
|
- `status`
|
|
130
131
|
- `cluster`
|
|
131
132
|
- `family_tags`
|
|
@@ -171,12 +172,18 @@ Repo-local examples:
|
|
|
171
172
|
- `site-proved-lean`
|
|
172
173
|
- `unstarted`
|
|
173
174
|
|
|
175
|
+
## Legacy compatibility
|
|
176
|
+
|
|
177
|
+
During migration, older dossiers may still use an `upstream` block instead of `external_source`.
|
|
178
|
+
|
|
179
|
+
That legacy spelling should be treated as imported external provenance, not as a statement that another repo outranks the canonical local dossier.
|
|
180
|
+
|
|
174
181
|
## Scaffold contract
|
|
175
182
|
|
|
176
183
|
`erdos scaffold problem <id>` should create a workspace-ready bundle containing:
|
|
177
184
|
- copied canonical dossier files
|
|
178
185
|
- `problem.yaml`
|
|
179
|
-
-
|
|
186
|
+
- imported record snapshot when available
|
|
180
187
|
- pack README context when available
|
|
181
188
|
- per-problem pack context when available
|
|
182
189
|
- compute packets when available
|
|
@@ -188,7 +195,7 @@ Repo-local examples:
|
|
|
188
195
|
- a root pull manifest
|
|
189
196
|
- an `artifacts/` lane
|
|
190
197
|
- a `literature/` lane
|
|
191
|
-
-
|
|
198
|
+
- imported record snapshot when available
|
|
192
199
|
- local dossier artifacts when the problem is already seeded locally
|
|
193
200
|
- optional live site snapshot and extracted text when `--include-site` is used
|
|
194
201
|
|
|
@@ -201,4 +208,4 @@ Repo-local examples:
|
|
|
201
208
|
- `EVIDENCE.md`
|
|
202
209
|
- `FORMALIZATION.md`
|
|
203
210
|
|
|
204
|
-
The resulting dossier should preserve
|
|
211
|
+
The resulting dossier should preserve imported provenance and site provenance and be safe for later manual curation.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Erdos Problems Repo Spec
|
|
2
2
|
|
|
3
|
-
Last updated: 2026-03-
|
|
3
|
+
Last updated: 2026-03-30
|
|
4
4
|
|
|
5
5
|
## Purpose
|
|
6
6
|
|
|
@@ -26,7 +26,7 @@ Targets:
|
|
|
26
26
|
It is not:
|
|
27
27
|
- a raw mirror of `sunflower-coda`
|
|
28
28
|
- a generic research framework
|
|
29
|
-
- a place where local route state silently overwrites public
|
|
29
|
+
- a place where local route state silently overwrites imported public evidence
|
|
30
30
|
|
|
31
31
|
## Core model
|
|
32
32
|
|
|
@@ -36,9 +36,9 @@ The repo has three layers.
|
|
|
36
36
|
|
|
37
37
|
All seeded Erdős problems live here with canonical local dossiers.
|
|
38
38
|
|
|
39
|
-
### 2.
|
|
39
|
+
### 2. External import layer
|
|
40
40
|
|
|
41
|
-
The package
|
|
41
|
+
The package can carry a bundled external atlas snapshot and refresh a workspace-local import snapshot for reconciliation and seeding.
|
|
42
42
|
|
|
43
43
|
### 3. Harness layer
|
|
44
44
|
|
|
@@ -56,9 +56,10 @@ The GitHub repo is the central public collaboration space.
|
|
|
56
56
|
|
|
57
57
|
The npm package is the installable distribution channel, not the only collaboration surface.
|
|
58
58
|
|
|
59
|
-
- the package ships the CLI, bundled
|
|
59
|
+
- the package ships the CLI, bundled external import snapshot, canonical dossiers, and packaged pack assets
|
|
60
|
+
- repo-only directories such as `research/`, `formal/`, `paper/`, `imports/`, and `analysis/` may hold deeper public material without shipping in npm
|
|
60
61
|
- the public repo may also contain contribution guides, issue templates, maintainer notes, and other repo-only collaboration files that do not need to ship in the npm tarball
|
|
61
|
-
- workspace-local
|
|
62
|
+
- workspace-local external imports should be explicit and inspectable
|
|
62
63
|
|
|
63
64
|
## Repository shape
|
|
64
65
|
|
|
@@ -81,6 +82,13 @@ erdos-problems/
|
|
|
81
82
|
README.md
|
|
82
83
|
problems/<id>/
|
|
83
84
|
compute/<id>/
|
|
85
|
+
research/
|
|
86
|
+
problems/<id>/
|
|
87
|
+
formal/
|
|
88
|
+
lean/
|
|
89
|
+
paper/
|
|
90
|
+
imports/
|
|
91
|
+
analysis/
|
|
84
92
|
data/upstream/erdosproblems/
|
|
85
93
|
docs/
|
|
86
94
|
```
|
|
@@ -123,8 +131,8 @@ Each canonical seeded dossier contains:
|
|
|
123
131
|
`erdos maintainer seed problem <id>` promotes a pulled bundle into a canonical local dossier.
|
|
124
132
|
|
|
125
133
|
This is the disciplined bridge from:
|
|
126
|
-
- public
|
|
127
|
-
- to local
|
|
134
|
+
- imported public site / atlas evidence
|
|
135
|
+
- to canonical local dossier truth
|
|
128
136
|
|
|
129
137
|
## Sunflower pack model
|
|
130
138
|
|
|
@@ -175,15 +183,16 @@ erdos sunflower status 857 --json
|
|
|
175
183
|
|
|
176
184
|
## Canonical truth split
|
|
177
185
|
|
|
178
|
-
|
|
186
|
+
Canonical repo truth:
|
|
187
|
+
- `SproutSeeds/erdos-problems`
|
|
188
|
+
- `problems/<id>/problem.yaml`
|
|
189
|
+
- dossier markdown files beside it
|
|
190
|
+
|
|
191
|
+
External import sources:
|
|
179
192
|
- `teorth/erdosproblems`
|
|
180
193
|
- `data/problems.yaml`
|
|
181
194
|
- `erdosproblems.com`
|
|
182
195
|
|
|
183
|
-
Local atlas truth:
|
|
184
|
-
- `problems/<id>/problem.yaml`
|
|
185
|
-
- dossier markdown files beside it
|
|
186
|
-
|
|
187
196
|
Local harness truth:
|
|
188
197
|
- research state
|
|
189
198
|
- checkpoints
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# Paper Writer Mode
|
|
2
|
+
|
|
3
|
+
Last updated: 2026-03-30
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
`erdos paper init <id>` creates or resumes a paper bundle for a problem.
|
|
8
|
+
|
|
9
|
+
The goal is to make paper writing:
|
|
10
|
+
|
|
11
|
+
- public-safe
|
|
12
|
+
- claim-safe
|
|
13
|
+
- citation-safe
|
|
14
|
+
- resumable
|
|
15
|
+
- legible to both humans and agents
|
|
16
|
+
|
|
17
|
+
## Commands
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
erdos paper init [<id>] [--dest <path>] [--json]
|
|
21
|
+
erdos paper show [<id>] [--dest <path>] [--json]
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Behavior:
|
|
25
|
+
|
|
26
|
+
- if run inside `SproutSeeds/erdos-problems`, the default bundle destination is `paper/problems/<id>/`
|
|
27
|
+
- otherwise the default bundle destination is `.erdos/papers/<id>/`
|
|
28
|
+
- rerunning `erdos paper init` updates the machine-readable indexes and fills missing files without overwriting existing section drafts
|
|
29
|
+
|
|
30
|
+
## Bundle Contract
|
|
31
|
+
|
|
32
|
+
Every initialized bundle includes:
|
|
33
|
+
|
|
34
|
+
- `MANIFEST.json`
|
|
35
|
+
- `PUBLIC_EVIDENCE_INDEX.json`
|
|
36
|
+
- `SECTION_INDEX.json`
|
|
37
|
+
- `README.md`
|
|
38
|
+
- `WRITER_BRIEF.md`
|
|
39
|
+
- `SECTION_STATUS.md`
|
|
40
|
+
- `OUTLINE.md`
|
|
41
|
+
- `STYLE_GUIDE.md`
|
|
42
|
+
- `PRIVACY_REVIEW.md`
|
|
43
|
+
- `CITATION_LEDGER.md`
|
|
44
|
+
- section draft files
|
|
45
|
+
|
|
46
|
+
Current section draft set:
|
|
47
|
+
|
|
48
|
+
- `ABSTRACT.md`
|
|
49
|
+
- `INTRODUCTION.md`
|
|
50
|
+
- `PRELIMINARIES.md`
|
|
51
|
+
- `RELATED_WORK.md`
|
|
52
|
+
- `MAIN_RESULTS.md`
|
|
53
|
+
- `PROOF_OVERVIEW.md`
|
|
54
|
+
- `PROOF_DETAILS.md`
|
|
55
|
+
- `COMPUTATIONAL_AND_FORMAL_EVIDENCE.md`
|
|
56
|
+
- `LIMITATIONS_AND_OPEN_PROBLEMS.md`
|
|
57
|
+
|
|
58
|
+
## Safety Model
|
|
59
|
+
|
|
60
|
+
### Privacy
|
|
61
|
+
|
|
62
|
+
The generated bundle should be safe to commit to the public repo.
|
|
63
|
+
|
|
64
|
+
Rules:
|
|
65
|
+
|
|
66
|
+
- no secrets
|
|
67
|
+
- no credentials
|
|
68
|
+
- no private correspondence
|
|
69
|
+
- no local absolute filesystem paths
|
|
70
|
+
- no unpublished private notes treated as paper evidence
|
|
71
|
+
|
|
72
|
+
To support this, the generated indexes store repo-relative paths whenever possible and omit local-only paths from the committed data model.
|
|
73
|
+
|
|
74
|
+
### Claim Safety
|
|
75
|
+
|
|
76
|
+
The bundle assumes the paper may describe an open route rather than a finished proof.
|
|
77
|
+
|
|
78
|
+
Rules:
|
|
79
|
+
|
|
80
|
+
- theorem language only for claims actually supported by the current public record
|
|
81
|
+
- computational evidence stays computational
|
|
82
|
+
- formalization posture stays distinct from proof posture
|
|
83
|
+
- open seams stay visible
|
|
84
|
+
- unresolved tasks must land in `LIMITATIONS_AND_OPEN_PROBLEMS.md`
|
|
85
|
+
|
|
86
|
+
### Citation Discipline
|
|
87
|
+
|
|
88
|
+
External claims should enter the paper only through `CITATION_LEDGER.md`.
|
|
89
|
+
|
|
90
|
+
Rules:
|
|
91
|
+
|
|
92
|
+
- log the source before relying on it in prose
|
|
93
|
+
- use exact identifiers whenever possible
|
|
94
|
+
- treat imported atlas records as provenance, not canonical authority
|
|
95
|
+
|
|
96
|
+
## Agent Workflow
|
|
97
|
+
|
|
98
|
+
Recommended loop:
|
|
99
|
+
|
|
100
|
+
1. Read `MANIFEST.json`.
|
|
101
|
+
2. Read `PUBLIC_EVIDENCE_INDEX.json`.
|
|
102
|
+
3. Read `SECTION_INDEX.json`.
|
|
103
|
+
4. Update `OUTLINE.md` and `SECTION_STATUS.md`.
|
|
104
|
+
5. Add external sources to `CITATION_LEDGER.md`.
|
|
105
|
+
6. Draft or refine one section file at a time.
|
|
106
|
+
7. Run the checklist in `PRIVACY_REVIEW.md` before release.
|
|
107
|
+
|
|
108
|
+
## Current Scope
|
|
109
|
+
|
|
110
|
+
This first slice gives the repo a structured paper-writing surface.
|
|
111
|
+
|
|
112
|
+
It does not yet:
|
|
113
|
+
|
|
114
|
+
- auto-import the full deep paper archive from `sunflower-coda`
|
|
115
|
+
- auto-resolve literature citations from external databases into final bibliography form
|
|
116
|
+
- emit a final LaTeX source tree or journal-targeted template
|
|
117
|
+
|
|
118
|
+
Those are natural next steps once the deeper public research migration is in place.
|
package/package.json
CHANGED
|
@@ -14,4 +14,4 @@ Working assumptions:
|
|
|
14
14
|
- Harness depth: dossier
|
|
15
15
|
|
|
16
16
|
First honest move:
|
|
17
|
-
- tighten the local dossier for problem 1 against its pull bundle, references, and
|
|
17
|
+
- tighten the local dossier for problem 1 against its pull bundle, references, and import provenance before widening claims.
|
package/problems/1/EVIDENCE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Formalization
|
|
2
2
|
|
|
3
3
|
- Local status: planned
|
|
4
|
-
-
|
|
5
|
-
-
|
|
4
|
+
- Imported formalized state: yes
|
|
5
|
+
- Imported formalized last update: 2025-08-31
|
|
6
6
|
|
|
7
7
|
Seed note:
|
|
8
8
|
- this file was created automatically from a pull bundle and should be upgraded as local formal work begins.
|
package/problems/1/problem.yaml
CHANGED
|
@@ -5,7 +5,7 @@ source:
|
|
|
5
5
|
site: erdosproblems.com
|
|
6
6
|
url: https://www.erdosproblems.com/1
|
|
7
7
|
external_id: "1"
|
|
8
|
-
|
|
8
|
+
external_source:
|
|
9
9
|
repo: https://github.com/teorth/erdosproblems
|
|
10
10
|
data_file: data/problems.yaml
|
|
11
11
|
number: "1"
|
|
@@ -13,14 +13,14 @@ provenance:
|
|
|
13
13
|
seeded_at: 2026-03-26T04:41:24.787Z
|
|
14
14
|
seeded_from:
|
|
15
15
|
kind: pull_bundle
|
|
16
|
-
|
|
16
|
+
imported_record_included: true
|
|
17
17
|
site_snapshot_included: true
|
|
18
18
|
status:
|
|
19
19
|
site_status: open
|
|
20
20
|
site_badge: OPEN
|
|
21
21
|
repo_status: cataloged
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
imported_status: open
|
|
23
|
+
imported_last_update: 2025-08-31
|
|
24
24
|
cluster: number-theory
|
|
25
25
|
prize:
|
|
26
26
|
display: $500
|
|
@@ -40,5 +40,5 @@ evidence_path: EVIDENCE.md
|
|
|
40
40
|
formalization_path: FORMALIZATION.md
|
|
41
41
|
formalization:
|
|
42
42
|
status: planned
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
imported_state: yes
|
|
44
|
+
imported_last_update: 2025-08-31
|
|
@@ -5,7 +5,7 @@ source:
|
|
|
5
5
|
site: erdosproblems.com
|
|
6
6
|
url: https://www.erdosproblems.com/1008
|
|
7
7
|
external_id: "1008"
|
|
8
|
-
|
|
8
|
+
external_source:
|
|
9
9
|
repo: https://github.com/teorth/erdosproblems
|
|
10
10
|
data_file: data/problems.yaml
|
|
11
11
|
number: "1008"
|
|
@@ -13,8 +13,8 @@ status:
|
|
|
13
13
|
site_status: solved
|
|
14
14
|
site_badge: PROVED (LEAN)
|
|
15
15
|
repo_status: historical
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
imported_status: proved (Lean)
|
|
17
|
+
imported_last_update: 2026-01-17
|
|
18
18
|
cluster: graph-theory
|
|
19
19
|
prize:
|
|
20
20
|
display: no
|
|
@@ -33,5 +33,5 @@ evidence_path: EVIDENCE.md
|
|
|
33
33
|
formalization_path: FORMALIZATION.md
|
|
34
34
|
formalization:
|
|
35
35
|
status: site-proved-lean
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
imported_state: no
|
|
37
|
+
imported_last_update: 2025-09-10
|
package/problems/18/problem.yaml
CHANGED
|
@@ -5,7 +5,7 @@ source:
|
|
|
5
5
|
site: erdosproblems.com
|
|
6
6
|
url: https://www.erdosproblems.com/18
|
|
7
7
|
external_id: "18"
|
|
8
|
-
|
|
8
|
+
external_source:
|
|
9
9
|
repo: https://github.com/teorth/erdosproblems
|
|
10
10
|
data_file: data/problems.yaml
|
|
11
11
|
number: "18"
|
|
@@ -13,8 +13,8 @@ status:
|
|
|
13
13
|
site_status: open
|
|
14
14
|
site_badge: OPEN
|
|
15
15
|
repo_status: cataloged
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
imported_status: open
|
|
17
|
+
imported_last_update: 2025-08-31
|
|
18
18
|
cluster: number-theory
|
|
19
19
|
prize:
|
|
20
20
|
display: no
|
|
@@ -34,5 +34,5 @@ evidence_path: EVIDENCE.md
|
|
|
34
34
|
formalization_path: FORMALIZATION.md
|
|
35
35
|
formalization:
|
|
36
36
|
status: statement-formalized
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
imported_state: yes
|
|
38
|
+
imported_last_update: 2026-03-15
|
|
@@ -14,4 +14,4 @@ Working assumptions:
|
|
|
14
14
|
- Harness depth: dossier
|
|
15
15
|
|
|
16
16
|
First honest move:
|
|
17
|
-
- tighten the local dossier for problem 19 against its pull bundle, references, and
|
|
17
|
+
- tighten the local dossier for problem 19 against its pull bundle, references, and import provenance before widening claims.
|
package/problems/19/EVIDENCE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Formalization
|
|
2
2
|
|
|
3
3
|
- Local status: planned
|
|
4
|
-
-
|
|
5
|
-
-
|
|
4
|
+
- Imported formalized state: no
|
|
5
|
+
- Imported formalized last update: 2025-08-31
|
|
6
6
|
|
|
7
7
|
Seed note:
|
|
8
8
|
- this file was created automatically from a pull bundle and should be upgraded as local formal work begins.
|
package/problems/19/problem.yaml
CHANGED
|
@@ -5,7 +5,7 @@ source:
|
|
|
5
5
|
site: erdosproblems.com
|
|
6
6
|
url: https://www.erdosproblems.com/19
|
|
7
7
|
external_id: "19"
|
|
8
|
-
|
|
8
|
+
external_source:
|
|
9
9
|
repo: https://github.com/teorth/erdosproblems
|
|
10
10
|
data_file: data/problems.yaml
|
|
11
11
|
number: "19"
|
|
@@ -13,14 +13,14 @@ provenance:
|
|
|
13
13
|
seeded_at: 2026-03-26T04:41:26.625Z
|
|
14
14
|
seeded_from:
|
|
15
15
|
kind: pull_bundle
|
|
16
|
-
|
|
16
|
+
imported_record_included: true
|
|
17
17
|
site_snapshot_included: true
|
|
18
18
|
status:
|
|
19
19
|
site_status: decidable
|
|
20
20
|
site_badge: DECIDABLE
|
|
21
21
|
repo_status: cataloged
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
imported_status: decidable
|
|
23
|
+
imported_last_update: 2025-08-31
|
|
24
24
|
cluster: graph-theory
|
|
25
25
|
prize:
|
|
26
26
|
display: $500
|
|
@@ -38,5 +38,5 @@ evidence_path: EVIDENCE.md
|
|
|
38
38
|
formalization_path: FORMALIZATION.md
|
|
39
39
|
formalization:
|
|
40
40
|
status: planned
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
imported_state: no
|
|
42
|
+
imported_last_update: 2025-08-31
|
|
@@ -14,4 +14,4 @@ Working assumptions:
|
|
|
14
14
|
- Harness depth: dossier
|
|
15
15
|
|
|
16
16
|
First honest move:
|
|
17
|
-
- tighten the local dossier for problem 2 against its pull bundle, references, and
|
|
17
|
+
- tighten the local dossier for problem 2 against its pull bundle, references, and import provenance before widening claims.
|
package/problems/2/EVIDENCE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Formalization
|
|
2
2
|
|
|
3
3
|
- Local status: planned
|
|
4
|
-
-
|
|
5
|
-
-
|
|
4
|
+
- Imported formalized state: no
|
|
5
|
+
- Imported formalized last update: 2025-08-31
|
|
6
6
|
|
|
7
7
|
Seed note:
|
|
8
8
|
- this file was created automatically from a pull bundle and should be upgraded as local formal work begins.
|