Section Mapper
Triggers & routing
- Trigger: section mapper, mapping.tsv, coverage, paper-to-section mapping, 论文映射, 覆盖率.
- Use when: structure 阶段(C2),已有
papers/core_set.csv + outline/outline.yml,需要确保每小节有足够支持论文再进入 evidence/writing。
Create a paper→subsection map that supports evidence building and later synthesis.
Good mapping is relevant, diverse, and explainable. Corpus-wide topic words and repeated outline boilerplate are not evidence of subsection relevance.
When to use
- You have
outline/outline.yml and a papers/core_set.csv and need coverage per subsection.
- You want to identify weak-signal subsections early (so you can adjust scope or add papers).
Inputs
papers/core_set.csv
outline/outline.yml
Outputs
outline/mapping.tsv
outline/mapping_report.md (diagnostics: reuse hotspots, weak-signal subsections)
outline/mapping_gap_candidates.tsv (read-only repair candidates from the deduplicated pool when the core set cannot meet a subsection target)
Freeze marker (explicit)
To prevent accidental overwrites after you refine mapping rationales:
- Create
outline/mapping.refined.ok.
The marker is valid only while it is newer than the mapping, core set, outline, query contract, and mapper implementation. Any upstream change invalidates it.
If you rerun the script without this marker, it will back up the previous mapping to a timestamped file:
outline/mapping.tsv.bak.<timestamp>
Workflow (heuristic)
- Start from the outline subsections (each subsection should be “mappable”).
- For each subsection, pick enough papers to support evidence-first writing (A150++ default: 28; smaller runs: ~12–20; lightweight: ~3–6) that are:
- representative (canonical / frequently-cited)
- complementary (different design choices, different eval setups)
- not overly reused elsewhere unless truly foundational
- supported by section-specific concepts, not only corpus-wide words such as the overall topic name
- Fill
why with a short semantic rationale (one line is enough), e.g.:
- mechanism: “decouples planner/executor; tool calling API”
- evaluation: “interactive web tasks; strong tool error analysis”
- safety: “agentic jailbreak surface; mitigation study”
- After initial mapping, scan for:
- subsections with <3 papers → either broaden, merge, or expand retrieval
- a few papers mapped everywhere → diversify; reserve “foundational” papers for only the truly relevant parts
- unfilled targets → treat them as evidence gaps; do not fill them with unrelated papers merely to satisfy a row count
Quality checklist
Helper script (optional)
Quick Start
uv run python .codex/skills/section-mapper/scripts/run.py --help
uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 28
All Options
--per-subsection <n>: target mapped papers per subsection
--diversity-penalty <int>: penalize repeated reuse of the same paper across many subsections
--soft-limit <n> / --hard-limit <n>: caps for per-paper reuse (0 = auto)
--minimum-score <n>: automatic relevance floor (default: 3); lower only when the resulting mappings will be reviewed manually
Examples
- Higher diversity (reduce over-reuse):
uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 4 --diversity-penalty 5
- Tighter reuse caps:
uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 3 --soft-limit 6 --hard-limit 10
Notes
- Writes
outline/mapping_report.md diagnostics.
- Writes
outline/mapping_gap_candidates.tsv instead of silently mutating papers/core_set.csv; a human or curation step remains responsible for changing the frozen core set.
- Removes corpus-common and outline-common terms before scoring, weights subsection-title alignment, and refuses candidates without enough section-specific evidence.
- Optional
assets/domain_packs/*.json rules can tighten ambiguous subsection labels for an explicitly detected domain; these rules constrain mapping rather than changing the core set.
- In
pipeline.py --strict, mapping may be blocked until generic why rationales are replaced with semantic ones.
Troubleshooting
Common Issues
Issue: outline/mapping.tsv is empty or low-coverage
Symptom:
- Mapping has few rows, or many subsections have <3 papers.
Causes:
- Core set is too small or outline is too fine-grained.
Solutions:
- Increase core set size (rerun
dedupe-rank with larger --core-size).
- Merge weak-signal subsections or broaden the scope/queries.
Issue: Mapping over-reuses the same papers
Symptom:
- Quality gate reports repeated papers across many unrelated subsections.
Causes:
- Diversity penalty too low; limited core set.
Solutions:
- Raise
--diversity-penalty and/or set tighter --soft-limit/--hard-limit.
- Manually diversify mappings for unrelated sections.
Recovery Checklist
1---2name: section-mapper3description: Map papers from the core set to each outline subsection and write `outline/mapping.tsv` with coverage tracking.4---56# Section Mapper78## Triggers & routing910- **Trigger**: section mapper, mapping.tsv, coverage, paper-to-section mapping, 论文映射, 覆盖率.11- **Use when**: structure 阶段(C2),已有 `papers/core_set.csv` + `outline/outline.yml`,需要确保每小节有足够支持论文再进入 evidence/writing。121314Create a paper→subsection map that supports evidence building and later synthesis.1516Good mapping is **relevant**, **diverse**, and **explainable**. Corpus-wide topic words and repeated outline boilerplate are not evidence of subsection relevance.1718## When to use1920- You have `outline/outline.yml` and a `papers/core_set.csv` and need coverage per subsection.21- You want to identify weak-signal subsections early (so you can adjust scope or add papers).2223## Inputs2425- `papers/core_set.csv`26- `outline/outline.yml`2728## Outputs2930- `outline/mapping.tsv`31- `outline/mapping_report.md` (diagnostics: reuse hotspots, weak-signal subsections)32- `outline/mapping_gap_candidates.tsv` (read-only repair candidates from the deduplicated pool when the core set cannot meet a subsection target)3334## Freeze marker (explicit)3536To prevent accidental overwrites after you refine mapping rationales:3738- Create `outline/mapping.refined.ok`.3940The marker is valid only while it is newer than the mapping, core set, outline, query contract, and mapper implementation. Any upstream change invalidates it.4142If you rerun the script without this marker, it will back up the previous mapping to a timestamped file:4344- `outline/mapping.tsv.bak.<timestamp>`4546## Workflow (heuristic)47481. Start from the outline subsections (each subsection should be “mappable”).492. For each subsection, pick enough papers to support evidence-first writing (A150++ default: 28; smaller runs: ~12–20; lightweight: ~3–6) that are:50 - representative (canonical / frequently-cited)51 - complementary (different design choices, different eval setups)52 - not overly reused elsewhere unless truly foundational53 - supported by section-specific concepts, not only corpus-wide words such as the overall topic name543. Fill `why` with a short semantic rationale (one line is enough), e.g.:55 - mechanism: “decouples planner/executor; tool calling API”56 - evaluation: “interactive web tasks; strong tool error analysis”57 - safety: “agentic jailbreak surface; mitigation study”584. After initial mapping, scan for:59 - subsections with <3 papers → either broaden, merge, or expand retrieval60 - a few papers mapped everywhere → diversify; reserve “foundational” papers for only the truly relevant parts61 - unfilled targets → treat them as evidence gaps; do not fill them with unrelated papers merely to satisfy a row count6263## Quality checklist6465- [ ] `outline/mapping.tsv` exists and is non-empty.66- [ ] Most subsections have ≥3 mapped papers (or a clear exception noted in `why`).67- [ ] `why` is semantic (not just `matched_terms=...`).68- [ ] No single paper dominates unrelated subsections.69- [ ] No low-confidence filler row is used to hide an evidence gap.7071## Helper script (optional)7273### Quick Start7475- `uv run python .codex/skills/section-mapper/scripts/run.py --help`76- `uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 28`7778### All Options7980- `--per-subsection <n>`: target mapped papers per subsection81- `--diversity-penalty <int>`: penalize repeated reuse of the same paper across many subsections82- `--soft-limit <n>` / `--hard-limit <n>`: caps for per-paper reuse (0 = auto)83- `--minimum-score <n>`: automatic relevance floor (default: 3); lower only when the resulting mappings will be reviewed manually8485### Examples8687- Higher diversity (reduce over-reuse):88 - `uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 4 --diversity-penalty 5`89- Tighter reuse caps:90 - `uv run python .codex/skills/section-mapper/scripts/run.py --workspace <workspace> --per-subsection 3 --soft-limit 6 --hard-limit 10`9192### Notes9394- Writes `outline/mapping_report.md` diagnostics.95- Writes `outline/mapping_gap_candidates.tsv` instead of silently mutating `papers/core_set.csv`; a human or curation step remains responsible for changing the frozen core set.96- Removes corpus-common and outline-common terms before scoring, weights subsection-title alignment, and refuses candidates without enough section-specific evidence.97- Optional `assets/domain_packs/*.json` rules can tighten ambiguous subsection labels for an explicitly detected domain; these rules constrain mapping rather than changing the core set.98- In `pipeline.py --strict`, mapping may be blocked until generic `why` rationales are replaced with semantic ones.99100## Troubleshooting101102### Common Issues103104#### Issue: `outline/mapping.tsv` is empty or low-coverage105106**Symptom**:107- Mapping has few rows, or many subsections have <3 papers.108109**Causes**:110- Core set is too small or outline is too fine-grained.111112**Solutions**:113- Increase core set size (rerun `dedupe-rank` with larger `--core-size`).114- Merge weak-signal subsections or broaden the scope/queries.115116#### Issue: Mapping over-reuses the same papers117118**Symptom**:119- Quality gate reports repeated papers across many unrelated subsections.120121**Causes**:122- Diversity penalty too low; limited core set.123124**Solutions**:125- Raise `--diversity-penalty` and/or set tighter `--soft-limit/--hard-limit`.126- Manually diversify mappings for unrelated sections.127128### Recovery Checklist129130- [ ] Each subsection has ≥3 mapped papers (target).131- [ ] `why` column contains semantic rationale (not just token overlap).