원클릭으로
search-literature
Run a targeted literature search on specific findings or questions that emerged during theory development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run a targeted literature search on specific findings or questions that emerged during theory development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Design and propose the next step: either a regular data-gathering experiment, literature search, or a concrete solution candidate.
Determine the type of proposal given, execute/delegate accordingly, and return the appropriate resulting ID (experiment ID, literature search ID, or solution ID).
Score and rank solution candidates relative to the research goal, and update parent theory scores.
Integrate recent interpretations from the interpretation log into the associated theory.
Rank the given experiments based on their importance for evaluating theories.
Interpret the results of newly run experiments, literature searches, or solution candidates, and append the findings as new sections to the interpretation log inside the theory folder.
SOC 직업 분류 기준
| name | search-literature |
| description | Run a targeted literature search on specific findings or questions that emerged during theory development |
| argument-hint | specific findings, questions, or phenomena to investigate |
You are working on finding literature as part of a broader research effort. Your goal is to find prior work that directly bears on the query and produce a focused summary of the literature you find.
Arguments: $ARGUMENTS
The arguments describe the findings or questions to investigate.
Set up an output folder for your artifacts:
OUTPUT_DIR: mktemp -d -p ./tmp search-literature-output-XXXX
mkdir -p "<OUTPUT_DIR>/papers"
<OUTPUT_DIR>/papers/ — downloaded papers (TeX source or PDF) go here<OUTPUT_DIR>/summary.md — your final structured summary (required filename)Because the query is specific, run fewer but sharper searches than a generic review:
Target arXiv specifically (include arxiv or site:arxiv.org in queries). Google Scholar is acceptable too.
Your summary.md file must follow this structure:
# Targeted Literature Search: [one-line restatement of the query]
## Query
[The specific finding or question you investigated, in 1–3 sentences. Include any background context the caller provided.]
## Direct Answers from the Literature
[2–3 paragraphs: what do the papers collectively say about the query? Lead with the most load-bearing finding. Call out confirming, disconfirming, and partial results separately.]
## Papers
### [Paper Title] (arXiv:XXXX.XXXXX)
- **Authors**: [author list]
- **Year**: [year]
- **Full paper**: papers/XXXX.XXXXX.pdf or papers/XXXX.XXXXX/XXX.tex
- **Relevance to query**: [the one or two specific reasons this paper bears on the query]
- **Key excerpted finding**: [the specific result, bound, or mechanism the paper contributes to this query — not a general summary of the paper]
- **Methods/setup**: [only the parts relevant to the query]
- **Caveats**: [assumptions or scope limits that could restrict the finding's applicability]
### [Next Paper Title] ...
...
## Open Questions
[What does the literature *not* resolve about the query? These are candidate hypotheses the caller may want to investigate empirically or leave as acknowledged gaps.]
WebSearch queries following the strategy above. Identify candidate papers.WebFetch. Keep only papers that directly address the query. Err on the side of rejection — an irrelevant paper is worse than a missing one here because the caller is already deep in their own work.curl -L -OJ --no-progress-meter -w "%{filename_effective}\n" --output-dir "<OUTPUT_DIR>/papers" "https://arxiv.org/src/XXXX.XXXXX"
# If .tar.gz was downloaded:
mkdir "<OUTPUT_DIR>/papers/XXXX.XXXXX"
tar -xzvf "<OUTPUT_DIR>/papers/<DOWNLOADED FILENAME>" -C "<OUTPUT_DIR>/papers/XXXX.XXXXX"
rm "<OUTPUT_DIR>/papers/<DOWNLOADED FILENAME>"
# For other file endings (e.g. .gz), use the appropriate tool to extract it to "<OUTPUT_DIR>/papers/XXXX.XXXXX/"
Look for the main .tex filename in the tar output to reference it in your summary.
ONLY IF the TeX source is not available for a particular paper, download the PDF instead:
curl -L --no-progress-meter "https://arxiv.org/pdf/XXXX.XXXXX.pdf" -o "<OUTPUT_DIR>/papers/XXXX.XXXXX.pdf"
ALWAYS TRY to obtain a TeX source first for each paper. TeX is easier for downstream agents to process than PDF files.<OUTPUT_DIR>/summary.md per the format above. Frame the synthesis around the query, not as a general landscape survey.uv run python <SKILL_BASE_DIR>/scripts/context_manager.py store_results --from_agent_type search-literature --from_folder <OUTPUT_DIR>
Note down the returned literature ID (e.g. L_20260416_143052_a1b2c3) as the result of this skill and continue with any remaining steps in your current workflow.