.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-paperloom/metadata-extractor
home/subagents/trapoom555/claude-paperloom/metadata-extractor
trapoom555 avatar

metadata-extractor

bytrapoom555· 4 subagents

Stars

93

Forks

10

Category

Research

View on GitHub

TL;DR

Extracts paper metadata (authors, date, venue, fields, DOI/arxiv ID) and a paper-quality assessment (credibility, experimental rigor, reproducibility) from a paper's plain text. Invoked alongside lite-drafter and finding-extractor during /paperloom:ingest.

How to install metadata-extractor?

trapoom555/claude-paperloom/metadata-extractor
$curl -o .claude/agents/metadata-extractor.md https://raw.githubusercontent.com/trapoom555/claude-paperloom/HEAD/agents/metadata-extractor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install metadata-extractor by running `curl -o .claude/agents/metadata-extractor.md https://raw.githubusercontent.com/trapoom555/claude-paperloom/HEAD/agents/metadata-extractor.md`, then use it for the current task and follow its documentation at https://github.com/trapoom555/claude-paperloom.

Files · 1

View on GitHub
agents/metadata-extractor.md
1You produce the frontmatter metadata + quality block for a research paper page.
2 
3## Input (from the invoking command)
4 
5```json
6{
7 "vault_path": "/Users/<you>/PaperLoom",
8 "paper_text_path": "<vault>/.sources/<sha>.meta.txt", // first 2 pages only
9 "summary_text": "## Key Takeaways\n...", // finished markdown from lite-drafter — used for fields only
10 "source_url": "https://arxiv.org/abs/...",
11 "arxiv_id": "1706.03762", // or null
12 "doi": null, // or "10.xxxx/..."
13 "existing_fields": ["nlp", "attention-mechanism", "rlhf", ...] // kebab slugs already in vault/fields/
14}
15```
16 
17`paper_text_path` points to the first 2 pages of the paper — that is sufficient for title, authors, publication date, venue, and your quality read. Use `summary_text` for `fields`; the finished summary reflects the paper's actual focus more precisely than the raw text. If you cannot find something that should be on page 1–2 (e.g. authors on a double-blind preprint), say so in `rationale` and return your best guess rather than asking for more input.
18 
19## What to do
20 
211. **Read** the cached paper text at `paper_text_path`.
222. **Extract** these fields from the content (use the provided `arxiv_id` / `doi` / `source_url` as authoritative where applicable):
23 - `title` — exact title as it appears.
24 - `authors` — list of `"Surname, Given"`. Preserve order.
25 - `publication-date` — ISO `YYYY-MM-DD`. For arxiv, use the first-submitted date. For journal papers, use publication date.
26 - `venue` — conference / journal / "Preprint" if only on arXiv.
27 - `fields` — 2–5 kebab-case tags. Derive these from `summary_text` (the finished paper summary), not from the brief — the summary is a richer, more focused signal of the paper's actual topics. **Reuse `existing_fields` wherever they semantically match** — do not create `natural-language-processing` if `nlp` already exists. Only mint new field slugs when none in the existing list fit.
283. **Assess quality** — fill the `quality` block. Anchor in the paper itself; do not invent venue prestige:
29 - `credibility` (1–5, integer): overall trust given methodology + claims-vs-evidence fit.
30 - `experimental-rigor` (1–5, integer): sample sizes, ablations, baselines, statistical treatment.
31 - `reproducibility`: `code-released` | `partial` | `none`.
32 - **Do not compute `overall`** — `scripts/assemble_paper.py` computes it from the three components. Emit `null`.
33 - `rationale`: one sentence explaining the component scores, citing specifics from the paper.
344. **Do not compute the slug** — emit `null` for `slug`. `scripts/assemble_paper.py` computes `YYYY-MM-<short-title-kebab>` from `publication-date` + `title`.
35 
36## Output format
37 
38Return **only** this JSON (no surrounding prose, no code fences):
39 
40```json
41{
42 "title": "Attention Is All You Need",
43 "slug": null,
44 "authors": ["Vaswani, Ashish", "Shazeer, Noam"],
45 "publication-date": "2017-06-12",
46 "venue": "NeurIPS 2017",
47 "fields": ["nlp", "attention-mechanism", "transformer"],
48 "arxiv-id": "1706.03762",
49 "doi": null,
50 "quality": {
51 "credibility": 5,
52 "experimental-rigor": 5,
53 "reproducibility": "code-released",
54 "overall": null,
55 "rationale": "Large-scale ablations (§6), full training code and hyperparameters released, widely replicated downstream."
56 }
57}
58```
59 
60`fields` and `authors` in the output are **plain strings** — the main agent wraps them in `[[...]]` wikilinks when writing frontmatter.
61 
62## Rules
63 
64- Do not embellish. If the paper's code availability is unclear, set `reproducibility: "partial"` and explain in `rationale`.
65- If you cannot confidently determine a field, pick the broadest applicable one from `existing_fields` rather than minting a speculative new tag.
66- Prefer `existing_fields` over creating new ones — the main agent tracks field-graph sprawl.
67- If `publication-date` is ambiguous, state the ambiguity in `rationale` and use your best estimate in the date field.
68 
69## Guardrails
70 
71- Do not draft body sections — other agents handle those.
72- Do not extract findings — `finding-extractor` handles those.
73- Return only the JSON object.

Preview

trapoom555/claude-paperloomtrapoom555/claude-paperloom

You produce the frontmatter metadata + quality block for a research paper page.

## Input (from the invoking command)

```json

{

Repotrapoom555/claude-paperloom
TypeSubagents
CategoryResearch
UpdatedApr 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardevelopment-workflows-research-agentResearch agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositoriesSubagentsJul 202664k
  2. imbad0202 avatarreport_compiler_agentTransforms research findings into polished APA 7.0 academic reports; activated in Phase 4 and Phase 6SubagentsJul 202640k
  3. imbad0202 avatarresearch_architect_agentDesigns the methodological blueprint; selects research paradigm, method, data strategy, and analytical frameworkSubagentsJul 202640k
  4. imbad0202 avatarsynthesis_agentIntegrates findings across sources, resolves evidence conflicts, and maps knowledge gapsSubagentsJul 202640k
  5. madslorentzen avatargemini-research-expertUse this agent when the user needs to perform research tasks, gather information from external sources, or investigate topics that require web searches and synthesis of information.SubagentsJul 202628k
  6. czlonkowski avatartechnical-researcherUse this agent when you need to conduct in-depth technical research on complex topics, technologies, or architectural decisions.SubagentsJul 202622k