arxiv-summarizer-orchestrator

arxiv-summarizer-orchestrator is a skill for Codex from InternLM/WildClawBench. It costs 75 tokens per session (1,335 once invoked), scanned A, original, MIT.

An end-to-end workflow for finding research papers on arXiv, an online repository for scientific preprints, and turning them into reports. It combines paper collection, processing, and batch reporting with language and parallel-processing options.

In plain words
What is it for?
Use it to collect papers about a topic, process several papers at once or one by one, and produce reports in a chosen language.
Why use it?
It organizes the work of searching, selecting, processing, and reporting on papers so the stages follow a repeatable order. It also supports retrying the search when the first results do not provide enough relevance or coverage.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions subagents; built for openclaw.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 arxiv-paper-processor/scripts/download_papers_batch.py \.

Good fit Use it to collect papers about a topic, process several papers at once or one by one, and produce reports in a chosen language.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/InternLM/WildClawBench
agentmods
npx agentmods add skills/internlm/wildclawbench/arxiv-summarizer-orchestrator

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arxiv-summarizer-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator/github.svg)](https://agentmods.dev/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator"><img src="https://agentmods.dev/badge/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for arxiv-summarizer-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator"><img src="https://agentmods.dev/badge/skills/internlm/wildclawbench/arxiv-summarizer-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,335 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.01335
Opus 5 $0.00037 $0.00668
Sonnet 5 $0.00015 $0.00267
Haiku 4.5 $0.00007 $0.00134

Measured 11d ago against content hash 372b7b0a0375, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

arxiv-summarizer-orchestrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/1/arxiv-summarizer-orchestrator/SKILL.md · 127 lines

How it starts

The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ArXiv Summarizer Orchestrator

Run the full pipeline by composing three sub-skills.

Sub-skill Order

  1. arxiv-search-collector
  2. arxiv-paper-processor
  3. arxiv-batch-reporter

Workflow Parameters

  • language: manual language parameter used by all stages. Default is English when omitted.
  • paper_processing_mode: subagent_parallel or serial.
  • max_parallel_papers: default 5 when paper_processing_mode=subagent_parallel.

Workflow

Stage A: Collection Setup + Query Retrieval

  1. Initialize one run with arxiv-search-collector/scripts/init_collection_run.py.
  2. Model generates multiple focused queries from original topic and writes a minimal query_plan.json (label + query only).
  3. Run arxiv-search-collector/scripts/fetch_queries_batch.py with the plan file (recommended).
  4. (Optional fallback) call arxiv-search-collector/scripts/fetch_query_metadata.py manually for one-by-one fetch.
  5. Model reads each indexed query list and decides keep indexes.
  6. Merge selected items with arxiv-search-collector/scripts/merge_selected_papers.py.
  7. If relevance/coverage is still not good, iterate Stage A:
    • generate another query plan with new labels,
    • fetch again,
    • re-merge with --incremental and updated selection-json.
    • set weak labels to empty keep list ([]) to explicitly drop them.

Pass --language <LANG> to collector scripts so all generated markdown files in Stage A follow the selected language. Use serial query fetch in Stage A with conservative controls (for example --min-interval-sec 5, --retry-max 4). Default collector settings already include retries/backoff and run-local throttle state (<run_dir>/.runtime/arxiv_api_state.json), so manual tuning is usually unnecessary. Prefer cache reuse (no --force) unless query parameters changed or data refresh is required.

Output: one run directory with per-paper metadata subdirectories.

Stage B: Per-paper Artifact Download + Manual Summary

For each paper directory, invoke sub-skill arxiv-paper-processor once and let that skill produce <paper_dir>/summary.md.

Read the full file on GitHub · 127 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 127 lines · 75 tokens per session scan A 372b7b0a0375

Subscribe to this mod's changes

arxiv-summarizer-orchestrator is a skill published in the GitHub repository InternLM/WildClawBench (519 stars, last pushed 24d ago), licensed MIT. It adds 75 tokens to every session and 1,335 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

papyrus-writing

Base skill for the Papyrus writing assistant — the conduct, paper-quality principles, and LaTeX house style that every Papyrus editing task builds on. Load this first when working on a .tex paper in Papyrus. For the mechanics of a specific task, also load papyrus-latex-comments, papyrus-latex-suggestions…

kirodotdev/KiroCrew · 88 tokens

arithmetic-evaluator

Evaluate arithmetic expressions and return numeric results. Use when a user asks an arithmetic question, requests calculation, or provides a math expression involving numbers, parentheses, and arithmetic operators.

JetBrains/koog · 39 tokens

swmm-end-to-end

Top-level orchestration skill for agentic SWMM modelling. Use when an agent needs one entrypoint that decides which module tools to run, in what order, and when to stop, for example to build, run, QA, and optionally calibrate a SWMM case from prepared or partially prepared inputs.

Zhonghao1995/agentic-swmm-workflow · 67 tokens

swmm-calibration

Calibration and validation scaffold for EPA SWMM. Use when an agent needs to (1) compare simulated vs observed flow, (2) evaluate candidate parameter sets, (3) rank explicit candidates by an objective, (4) run a bounded random / LHS / adaptive search for the best-fitting parameters, (5) run a publication-grade SCE-UA…

Zhonghao1995/agentic-swmm-workflow · 146 tokens

swmm-gis

GIS/DEM preprocessing for SWMM experiments using the user's own QGIS/GRASS layers. Use when the user asks to (1) delineate subcatchments through QGIS/GRASS (standard or entropy-guided), (2) preprocess QGIS-derived subcatchment polygons into builder-ready CSV, (3) identify high-entropy hotspot subcatchments, or (4)…

Zhonghao1995/agentic-swmm-workflow · 130 tokens

swmm-uncertainty

Parameter and forcing uncertainty for EPA SWMM. Without observed flow, call propagateparameterranges (global ranges, one SWMM run per sample, peak spread); the Morris/OAT/Sobol tools need an observed series. Use when an agent needs to (1) propagate parameter uncertainty through SWMM (fuzzy alpha-cut or Monte Carlo)…

Zhonghao1995/agentic-swmm-workflow · 182 tokens