literature-triage-matrix

literature-triage-matrix is a skill for Claude Code from WenyuChiou/research-hub. It costs 162 tokens per session (1,552 once invoked), scanned A, original, MIT.

A research tool that turns a group of academic papers into one comparison table. It compares papers by methods, data, claims, limitations, and their importance to a review.

In plain words
What is it for?
Use it with papers from Zotero, Obsidian, or a manually supplied list. It writes a literature matrix to `.research/literaturematrix.md` to help decide which papers need close attention.
Why use it?
It makes similarities and differences visible at once, so you do not have to compare separate paper summaries by hand.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: built for hermes-agent.

Part of the research-workspace plugin — 13 skills, 1 MCP server shipped together

Good fit Use it with papers from Zotero, Obsidian, or a manually supplied list. It writes a literature matrix to .research/literaturematrix.md to help decide which papers need close attention.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wenyuchiou/research-hub/literature-triage-matrix
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 WenyuChiou/research-hub --skill literature-triage-matrix
Clone the repo
git clone --depth 1 https://github.com/WenyuChiou/research-hub

Made for: Claude Code.

Or install research-workspace, the plugin that ships this one along with the rest of its 13 skills, 1 MCP server.

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 literature-triage-matrix

README.md
[![agentmods](https://agentmods.dev/badge/skills/wenyuchiou/research-hub/literature-triage-matrix/github.svg)](https://agentmods.dev/skills/wenyuchiou/research-hub/literature-triage-matrix)
Your own site
<a href="https://agentmods.dev/skills/wenyuchiou/research-hub/literature-triage-matrix"><img src="https://agentmods.dev/badge/skills/wenyuchiou/research-hub/literature-triage-matrix/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 literature-triage-matrix

Your own site · 80×15
<a href="https://agentmods.dev/skills/wenyuchiou/research-hub/literature-triage-matrix"><img src="https://agentmods.dev/badge/skills/wenyuchiou/research-hub/literature-triage-matrix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 162 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,552 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.00162 $0.01552
Opus 5 $0.00081 $0.00776
Sonnet 5 $0.00032 $0.00310
Haiku 4.5 $0.00016 $0.00155

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

Security

Grade A, and why

literature-triage-matrix 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 13d 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/literature-triage-matrix/SKILL.md · 129 lines

How it starts

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

literature-triage-matrix

Produce a single comparison table over a set of papers, optimized for review-writing decisions. The matrix lets the user (or a downstream writing skill) see at a glance which papers cluster together by method, which carry the load on a particular claim, and which can be cited in passing vs deeply engaged.

This skill avoids the common AI failure mode of "give me a summary of each paper" — which produces N independent bullet lists that the user then has to manually compare.

When to use

Trigger phrases:

  • "Make a literature matrix for these papers."
  • "Compare these papers by method, data, claims, and limitations."
  • "Help me decide which papers are central to my review."
  • "Build a triage table over my Zotero collection / Obsidian cluster."

Not for:

  • A 5-page narrative literature review — that's a writing task.
  • Citation formatting — Zotero and the writing skill handle that.
  • Single-paper deep dive — use paper-memory-builder.

Inputs

In priority order (cheapest to most expensive):

  1. Manual paper list — a Markdown bullet list of titles + DOIs (or arXiv IDs) the user pastes directly into the chat. Lowest-friction entry; works without any other research-hub setup. Treat each line as one row in the matrix; fill cells from your own knowledge

    • DOI lookup if the title is famous, otherwise mark ? and ask the user.

    Example minimal input:

    - "Memory enables ToM-like behaviour in LLM poker agents", arXiv:2604.04157
    - "Multi-agent LLM social learning", arXiv:2604.02677
    - "Triadic Loop alignment framework", arXiv:2604.18850
    
  2. .research/literature_matrix.md — if it already exists, parse it first. Append-only by convention; only re-emit a row if the underlying paper changed materially.

  3. Obsidian cluster notes under raw/<cluster>/*.md — these have structured frontmatter (title, authors, year, doi) plus research-hub-generated Summary / Key Findings / Methodology / Relevance sections. Read these first; they're cheaper than PDFs.

  4. Zotero collection metadata via local API (fast) — add child note contents only if Obsidian doesn't have the paper.

  5. NotebookLM downloaded briefs under .research_hub/artifacts/ — if the user has already generated a brief on the cluster, mine it for cross-paper comparisons.

  6. Raw PDFs — only as last resort, and only the abstract + first 2 pages + conclusion. PDFs are token-expensive.

Read the full file on GitHub · 129 lines

Files

What ships with it

1 file 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. 13d ago First seen · 129 lines · 162 tokens per session scan A a437f44253b5

Subscribe to this mod's changes

literature-triage-matrix is a skill published in the GitHub repository WenyuChiou/research-hub (54 stars, last pushed 4d ago), licensed MIT. It adds 162 tokens to every session and 1,552 once invoked, about $0.0008 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

migrate-v0-to-v1

Migrate a Scraps wiki from v0 to v1. Use this whenever the user asks to upgrade Scraps, migrate v0 wiki syntax/config, convert implicit tags to explicit #[[tag]], move from scraps-writer to scraps, or audit a wiki for v1 readiness. This skill is designed for one-pass LLM-led migrations that discover the latest v0 and…

boykush/scraps · 105 tokens

remem

Use when the user asks Codex to recall prior project context, save durable decisions or bug fixes, inspect remem memory health, or activate remem automatic memory hooks from the Codex plugin.

majiayu000/remem · 42 tokens

ingest

Create a new scrap from a source (prompt, URL, or arbitrary markdown), update cross-links in related scraps, and run a sanity check. Use this when the user wants to add a scrap, summarize an article, save synthesized content to the wiki, or file back a Q&A result.

boykush/scraps · 62 tokens

query

Answer questions about the wiki by searching, reading, and synthesizing relevant scraps with [[Title]] citations. Use this when the user wants to query the wiki, ask what they have written about a topic, compare scraps, find related notes, or pull a synthesized overview from existing scraps.

boykush/scraps · 61 tokens

planning-with-scratchpad

Use when user explicitly requests planning with a scratchpad, or asks for persistent tracking of a complex task that the human can browse visually. Backs planning files with the scratch CLI so a pad's files are registered and viewable.

NikiforovAll/scratchpad · 54 tokens

scratch

Organize knowledge from an agent session into a scratchpad — a folder of files plus a scratchpad.json manifest. Use when a task generates notes, snippets, command output, diagrams, or artifacts worth keeping together for a session/activity.

NikiforovAll/scratchpad · 49 tokens