一键导入
research-internet
Conduct structured internet research and write `research/research_internet.md`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Conduct structured internet research and write `research/research_internet.md`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactively register one or more project metrics in meta/metrics/, grounded in project/description.md. Use during project setup or any time a new measurement needs to be tracked across tasks.
Create a new not-started task folder with task.json and task_description.md. Use when any skill or workflow needs to create a new task.
Run an interactive brainstorming session to review state and choose next actions.
One-shot interactive onboarding for a newly forked Glite ARF template. Shows the safety acknowledgement, installs dependencies, runs doctor.py, chains into create-project-description, provisions the paid services the project declared, then invokes the four meta/ sub-skills. Use once per fork, right after cloning.
Interactively scaffold a new asset type under meta/asset_types/, grounded in project/description.md. Creates a specification.md stub patterned on the built-in asset types. Use during project setup when a custom asset kind is needed; accept "none for now" to skip.
Interactively add one or more entries to meta/categories/, grounded in project/description.md. Use during project setup or any time a new cross-cutting tag is needed.
| name | research-internet |
| description | Conduct structured internet research and write `research/research_internet.md`. |
| model | claude-sonnet-4-6 |
Version: 4
Conduct comprehensive internet research to extract all available human knowledge relevant to the
current task, discover new papers, add them to the project, and produce a structured
research_internet.md.
$TASK_ID — the task folder name (e.g., t0003_baseline_wsd_with_bert)Read before starting:
project/description.md — project goals and scope (defines search boundaries)
tasks/$TASK_ID/task.json — understand the task objective
tasks/$TASK_ID/research/research_papers.md — identify gaps and context
arf/specifications/research_internet_specification.md — authoritative format specification for
research_internet.md
arf/styleguide/markdown_styleguide.md — formatting rules (100-char lines, * bullets, heading
hierarchy)
Read tasks/$TASK_ID/task.json and extract the task objective. If it contains
long_description_file, also read the referenced markdown file.
Read tasks/$TASK_ID/research/research_papers.md. Extract:
Formulate two lists:
research_papers.mdExecute a structured, multi-pass search strategy.
Define search parameters before searching:
Target sources: Google Scholar, Semantic Scholar, arXiv, ACL Anthology, GitHub, Hugging Face, Papers With Code, relevant blogs, documentation sites, Stack Overflow, Reddit, Twitter/X threads, conference workshops
Keywords with synonyms and Boolean operators
Date range and inclusion/exclusion criteria
Minimum 8 distinct search queries
Pass 1 — Gap-targeted queries using WebSearch:
Pass 2 — Broadening queries using WebSearch:
Pass 3 — Snowball queries based on findings from passes 1-2:
Deep-read promising sources using WebFetch:
Record every query — exact text and source. Do not paraphrase.
Deliverable-first rule: Write research/research_internet.md including the
## Discovered Papers section. If context is running low, prioritize completing the research
document — the Discovered Papers section is enough for the orchestrator to add papers later.
List ALL relevant papers in the ## Discovered Papers section — not just papers about the narrow
task topic, but any paper relevant to the broader project. A paper referenced in search results,
cited by other papers, or appearing in related work sections counts. If research_papers.md cites a
paper that is not yet in the corpus, list it. The goal is to grow the project's paper corpus
comprehensively.
Compile all papers encountered during search into the ## Discovered Papers section of
research_internet.md using the format from
arf/specifications/research_internet_specification.md. Include:
research_papers.md that are not yet in the corpusRun the paper aggregator to get existing papers with titles and DOIs:
uv run python -u -m arf.scripts.aggregators.aggregate_papers \
--format json --detail short
Cross-reference discovered papers against the existing corpus by comparing DOIs, normalized titles (lowercase, stripped punctuation), and author+year combinations. Remove duplicates.
Write all new papers into the ## Discovered Papers section of research_internet.md. Do NOT
invoke /add-paper or /download_paper. The orchestrator handles paper addition after this
skill completes.
Organize all findings by topic, not by source. Each topic becomes a ### subsection under
## Key Findings.
For every gap from research_papers.md, determine resolution status: Resolved, Partially
resolved, or Unresolved.
Write the full research_internet.md following the format in
arf/specifications/research_internet_specification.md:
YAML frontmatter with all required fields
All 8 mandatory sections: Task Objective, Gaps Addressed, Search Strategy, Key Findings, Methodology Insights, Discovered Papers, Recommendations for This Task, Source Index
Additional sections wherever the task demands deeper treatment (e.g., Tool and Library Landscape, Benchmark Comparison, Implementation Patterns, Community Discussions, Dataset Availability)
Ensure every factual claim has an inline [SourceKey] citation.
Ensure every Source Index entry is cited at least once, and vice versa.
Distinguish peer-reviewed from non-peer-reviewed sources in the text.
Include specific numbers everywhere. Reject vague claims like "performs well" — replace with actual metrics.
Extract and explicitly state:
Run the verificator:
uv run python -u -m arf.scripts.verificators.verify_research_internet $TASK_ID
Fix all errors. Address warnings unless there is a documented reason to skip them.
Re-run until zero errors.
## Discovered Papers section of research_internet.mdtasks/$TASK_ID/research/research_internet.md exists and follows the specificationresearch_papers.md has a resolution status[SourceKey] has a Source Index entry and vice versaNEVER run prestep or poststep — the orchestrator handles the step lifecycle
NEVER commit — the orchestrator handles all commits
NEVER modify step_tracker.json — the orchestrator manages step state
NEVER write step_log.md — the orchestrator writes it after this skill completes
NEVER fabricate sources, URLs, or metrics. If a search yields nothing, say so.
NEVER paraphrase search queries — record the exact text used.
NEVER skip the gap analysis from research_papers.md.
NEVER cite non-peer-reviewed sources without noting their reliability.
NEVER add papers without checking the aggregator for duplicates first.
NEVER invoke /add-paper or /download_paper — paper addition is the orchestrator's
responsibility
NEVER skip listing a paper just because it is not "about" the narrow task topic. If a paper is relevant to the project's research area, list it in Discovered Papers.
NEVER claim "no new papers to list" without verifying that every paper cited in
research_papers.md and every paper encountered in search results already exists in the corpus.