triage-paper

triage-paper is a skill for Claude Code from pantheon-org/tekhne. It costs 90 tokens per session (1,874 once invoked), scanned A, original, MIT.

A workflow for reviewing an academic paper and recording a structured reference summary in a research repository.

In plain words
What is it for?
Use it with an arXiv identifier, DOI, paper URL, or PDF to check relevance and document the paper's main points and evidence.
Why use it?
It creates a consistent first assessment of a paper before committing to a deeper analysis or adding it permanently to the repository.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it with an arXiv identifier, DOI, paper URL, or PDF to check relevance and document the paper's main points and evidence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pantheon-org/tekhne/triage-paper
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pantheon-org/tekhne --skill triage-paper
Clone the repo
git clone --depth 1 https://github.com/pantheon-org/tekhne

Made for: Claude Code.

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 triage-paper

README.md
[![agentmods](https://agentmods.dev/badge/skills/pantheon-org/tekhne/triage-paper/github.svg)](https://agentmods.dev/skills/pantheon-org/tekhne/triage-paper)
Your own site
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/triage-paper"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/triage-paper/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 triage-paper

Your own site · 80×15
<a href="https://agentmods.dev/skills/pantheon-org/tekhne/triage-paper"><img src="https://agentmods.dev/badge/skills/pantheon-org/tekhne/triage-paper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,874 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 170
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00090 $0.01874
Opus 5 $0.00045 $0.00937
Sonnet 5 $0.00018 $0.00375
Haiku 4.5 $0.00009 $0.00187

Measured 9d ago against content hash d39ab339ca7a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

triage-paper scanned grade A with 1 finding 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 9d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/validate-analysis-paper.sh, scripts/validate-reference-paper.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://arxiv.org/abs/<id>"
skills/documentation/research/triage-paper/SKILL.md · 182 lines

How it starts

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

Triage Paper

Add a new academic paper to the research repo as a structured reference summary.

When to Use

  • User provides an arxiv ID (e.g. 2310.08560), arxiv URL, or paper PDF path
  • User says "triage this paper", "add this paper", or "analyse this paper"
  • Evaluating whether a paper belongs in the repo

When Not to Use

  • The paper has already been triaged (check REVIEWED.md first)
  • The paper is clearly out of scope (not related to the research domain)
  • User wants a full deep-dive analysis — use triage-paper first, then promote to ANALYSIS-*.md

When available, prefer these MCPs over WebFetch for paper discovery and metadata resolution — they return structured data and avoid HTML scraping.

{
  "mcpServers": {
    "semantic-scholar": {
      "type": "stdio",
      "command": "uvx",
      "args": ["semantic-scholar-fastmcp"]
    },
    "google-scholar": {
      "type": "stdio",
      "command": "uvx",
      "args": ["google_scholar_mcp_server"]
    }
  }
}

Use semantic-scholar as the primary source (open, structured, covers most CS/ML papers). Fall back to google-scholar for papers not indexed there. Fall back to WebFetch (arxiv abstract page) only when neither MCP is configured or returns results.

Mindset

Triage is a quality gate, not a data-entry task. The goal is a scannable, honest record.

  1. Evidence first: quote what the paper reports; never infer or embellish claims.
  2. Triage-then-promote: every paper enters via REVIEWED.md; promotion to ANALYSIS-*.md requires a deliberate user decision — never automatic.
  3. Scope over completeness: a well-reasoned rejection is as valuable as a full summary. If the paper is tangentially related, triage it and flag it; don't silently skip it.

Workflow

1. Resolve the source

  • If given an arxiv ID or URL: use the semantic-scholar MCP to resolve metadata (title, authors, date, abstract, DOI). If not configured, fall back to WebFetch on the arxiv abstract page.
  • If given a DOI: prefer semantic-scholar or google-scholar MCP over a raw HTTP fetch.
  • If given a PDF path, read it to extract the same fields.
  • Derive a stable slug: <firstauthor-surname>-<2-3-word-topic> (e.g. jiang-llmlingua, press-longchat).

Read the full file on GitHub · 182 lines

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. 9d ago First seen · 182 lines · 90 tokens per session scan A d39ab339ca7a

Subscribe to this mod's changes

triage-paper is a skill published in the GitHub repository pantheon-org/tekhne (10 stars, last pushed yesterday), licensed MIT. It adds 90 tokens to every session and 1,874 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

calculator

Evaluate mathematical expressions and unit conversions. Handles arithmetic, percentages, exponents, and common unit conversions (temperature, distance, weight). No external dependencies.

NVIDIA/SkillEvaluator · 32 tokens

figure-rhetoric

Evaluate whether figures and plots in a manuscript effectively communicate the claims they support. Audits chart-type fit, axis design, visual hierarchy, data density, caption interpretation, perceptual accuracy, and narrative arc across 8 dimensions. Triggers on: "do my figures work", "check my plots", "are my graphs…

Mathews-Tom/armory · 123 tokens

manuscript-provenance

Computational provenance audit verifying every number, table, and figure in a manuscript derives from code, not manual entry. Triggers on: "check provenance", "verify reproducibility", "audit my pipeline", "are my numbers from code", "provenance audit". Companion to manuscript-review (prose audit).

Mathews-Tom/armory · 70 tokens

arxiv-package

Package a TeX/LaTeX project into a clean tarball or zip for arXiv upload: file selection, build-artifact exclusion, 00README.XXX generation, ancillary file organization, archive validation. Triggers on: "package for arXiv", "create arXiv tarball", "bundle submission", "zip for arXiv", "prepare arXiv upload", "arXiv…

Mathews-Tom/armory · 105 tokens

paper-planning

Guides pre-writing planning for academic papers with 4 structured steps: story design (task-challenge-insight-contribution-advantage), experiment planning (comparisons + ablations), figure design (pipeline + teaser), and 4-week timeline management. Includes counterintuitive planning tactics (write a mock rejection…

EvoScientist/EvoSkills · 166 tokens

iterate-ml-experiment

Owns the iteration loop on top of an ML workspace: the journal/JOURNAL.md index and the per-experiment journal/NNshortname.md design notes that must be drafted and approved by the user before experiments/NNshortname.py is created. Drives the propose → iterate → approve → implement → record loop; dispatches to…

probabl-ai/skills · 422 tokens