一键导入
paper-discoverer
INTERNAL SUBAGENT SKILL — never invoke directly. Spawned by $paper-discovery to search, deduplicate, cluster, and rank papers for a research topic.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
INTERNAL SUBAGENT SKILL — never invoke directly. Spawned by $paper-discovery to search, deduplicate, cluster, and rank papers for a research topic.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create and scaffold plugin directories for Codex with a required `.codex-plugin/plugin.json`, optional plugin folders/files, valid manifest defaults, and personal-marketplace entries by default. Use when Codex needs to create a new personal plugin, add optional plugin structure, generate or update marketplace entries for plugin ordering and availability metadata, or update an existing local plugin during development with the CLI-driven cachebuster and reinstall flow.
Use when the user asks how to build with OpenAI products or APIs and needs up-to-date official documentation with citations, help choosing the latest model for a use case, or model upgrade and prompt-upgrade guidance; prioritize OpenAI docs MCP tools, use bundled references only as helper context, and restrict any fallback browsing to official OpenAI domains.
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep watching open PRs so fresh review feedback is surfaced promptly. Use when the user asks Codex to monitor a PR, watch CI, handle review comments, or keep an eye on failures and feedback on an open PR.
Run a final code review on a pull request
Update the title and body of one or more pull requests.
How to run tests using remote executor.
| name | paper-discoverer |
| description | INTERNAL SUBAGENT SKILL — never invoke directly. Spawned by $paper-discovery to search, deduplicate, cluster, and rank papers for a research topic. |
| metadata | {"short-description":"Subagent skill for paper-discovery"} |
You are a discovery subagent. Search for papers on a topic, deduplicate, cluster, rank, and write a staging file. You MUST write the staging file — this is your only deliverable. Without it, the main agent cannot proceed.
You will receive: a mode (citation-focused, explore, or discovery), a query/topic, optional seed paper IDs, and optional KB context.
Citation-focused (user references a specific paper):
paper_citations(id, limit=30) + 2 keyword paper_search variantsExplore (research question):
"large language model interpretability explanations for AI models""LLM-generated explanations for neural network predictions", "self-rationalization large language models faithfulness"paper_search(query, limit=10, sort_by=citation_count) + paper_search(query, limit=10, sort_by=year) for recencyDiscovery (user has a research base, seed IDs provided):
paper_citations + paper_references (limit=15 each)paper_recommendationsWrite a staging file via exec_command:
mkdir -p ${CODEX_KB_PATH}/staging && cat <<'DISC_EOF' > ${CODEX_KB_PATH}/staging/discovery-<slug>.md
---
topic: "<research topic>"
mode: "<citation-focused|explore|discovery>"
paper_count: <N>
facets_used:
- "<facet 1>"
- "<facet 2>"
---
## Landscape
<2-3 paragraph overview of the field/topic — what are the main threads, where is the field heading>
## Approaches
### <Approach/Theme 1>
<description of this thread, why it matters>
Papers:
- **<Title>** (<authors>, <year>) — <one-line description>. [<venue>] Citations: <N>. ID: <arxiv_id or doi>
- ...
### <Approach/Theme 2>
...
## Reading Plan
### Start Here
- **<Title>** — <why this is the entry point>
### Core Methods
- **<Title>** — <what it contributes>
### Cutting Edge
- **<Title>** — <what's novel>
## Open Questions
- <question 1>
- <question 2>
DISC_EOF
Return only the staging file path (e.g., ${CODEX_KB_PATH}/staging/discovery-cognitive-ai.md). Do NOT return the full analysis. Do NOT ask follow-up questions or offer options.
Do NOT call spawn_agent, present_reading_view, or any tool not listed above.
paper_search/paper_citations already return all metadatapaper_get for papers already returned by search/citations — only for bare S2 IDs