$npx -y skills add WILLOSCAR/research-units-pipeline-skills --skill idea-shortlist-curatorConverge the screened direction pool into a small, discussion-ready shortlist, writing output/trace/IDEA_SHORTLIST.md. Trigger: idea shortlist, shortlist directions, brainstorm shortlist, 方向 shortlist. Use when: you already have a direction pool and screening table and
| 1 | # Idea Shortlist Curator |
| 2 | |
| 3 | ## Load Order |
| 4 | |
| 5 | Always read: |
| 6 | - `references/overview.md` |
| 7 | |
| 8 | Read by task: |
| 9 | - `references/ranking_rubric.md` when customizing risk notes or deferral reasons |
| 10 | - `assets/rationale_templates.json` when changing deterministic shortlist rationale wording or rule order |
| 11 | |
| 12 | ## Script Boundary |
| 13 | |
| 14 | Use `scripts/run.py` only for: |
| 15 | - diversity-aware greedy selection from screened rows |
| 16 | - deterministic ranking record assembly and JSONL/Markdown output |
| 17 | |
| 18 | Do not treat `run.py` as the place for: |
| 19 | - domain-specific risk narratives that should be inspectable from references |
| 20 | - reader-facing prose templates for the final memo (those belong in `idea-memo-writer`) |
| 21 | |
| 22 | Goal: turn a direction pool into a small shortlist that is: |
| 23 | - explicitly ranked with a real why-#1>#2>#3 argument, |
| 24 | - diverse in program shape rather than just cluster labels, |
| 25 | - specific about why deferred directions are not in the lead set, |
| 26 | |
| 27 | and remains: |
| 28 | - academically interesting, |
| 29 | - distinct enough to compare, |
| 30 | - grounded enough to discuss, |
| 31 | - and not yet overfrozen into project plans. |
| 32 | |
| 33 | ## Script |
| 34 | |
| 35 | ### Quick Start |
| 36 | |
| 37 | - `uv run python .codex/skills/idea-shortlist-curator/scripts/run.py --workspace <workspace>` |
| 38 | |
| 39 | ### All Options |
| 40 | |
| 41 | - `--workspace <dir>` (required) |
| 42 | - `--unit-id <U###>` |
| 43 | - `--inputs <semicolon-separated>` |
| 44 | - `--outputs <semicolon-separated>` |
| 45 | - `--checkpoint <C#>` |
| 46 | |
| 47 | ### Examples |
| 48 | |
| 49 | - Curate a shortlist for a brainstorm workspace: |
| 50 | - `uv run python .codex/skills/idea-shortlist-curator/scripts/run.py --workspace workspaces/brainstorm-llm-agents` |