Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
flyer-li avatar

Paper Analyst

  • 387 installs
  • 62 repo stars
  • Updated April 26, 2026
  • flyer-li/paper-analyst

paper-analyst is a Claude skill that turns uploaded academic PDFs or pasted paper text into structured Chinese summaries, critiques, and optional slide-plan handoffs for developers who need to understand research literat

About

paper-analyst is a Claude skill from flyer-li/paper-analyst for analyzing academic papers delivered as PDF uploads or pasted text, with Chinese output by default. Trigger phrases include analyze this paper, summarize this research, paper critique, and Chinese queries such as 论文分析 and 帮我看这篇论文. The skill produces structured summaries, methodological critique, and optional PPT outline handoffs for group meetings. Developers reach for paper-analyst when evaluating ML papers, surveying literature, or preparing research presentations—not for spreadsheets, non-academic PDFs, or general document tasks explicitly excluded by the skill triggers.

  • Classifies paper type via a dedicated rubric before structuring the write-up
  • Follows a fixed output schema plus an anti-hallucination quality checklist
  • Supports standard analysis and presentation modes with slide JSON and pptx handoff docs
  • Optional `extract_pdf_meta.py` script for PDF metadata extraction
  • Bilingual triggers including Chinese group-meeting and PPT-outline requests

Paper Analyst by the numbers

  • 387 all-time installs (skills.sh)
  • Ranked #521 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Security screen: CRITICAL risk (skills.sh audit)
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/flyer-li/paper-analyst --skill paper-analyst

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs387
repo stars62
Security audit2 / 3 scanners passed
Last updatedApril 26, 2026
Repositoryflyer-li/paper-analyst

How do you summarize an academic research paper quickly?

Turn an uploaded academic PDF or pasted paper text into a structured Chinese summary, critique, and optional slide-plan handoff for researchers and developers learning from papers.

Who is it for?

Developers and researchers reading academic PDFs who want structured Chinese summaries and critique before implementation or group presentations.

Skip if: Non-academic PDFs, spreadsheets, invoices, or general document tasks outside peer-reviewed research analysis.

When should I use this skill?

The user uploads or pastes a research paper and asks to analyze, summarize, critique, or prepare a 组会汇报 or PPT outline.

What you get

Structured Chinese paper summary, methodological critique, innovation analysis, and optional PPT slide-plan outline.

  • Chinese paper summary
  • method critique
  • PPT slide-plan outline

Files

SKILL.mdMarkdownGitHub ↗

Paper Analyst

Analyze academic papers from PDF or pasted text. Output in Chinese by default. All outputs follow references/output-schema.md. Paper type detection uses references/paper-type-rubric.md. Anti-hallucination rules in references/quality-checklist.md.

Quick Reference

FilePurpose
references/output-schema.mdSection structure and field rules
references/paper-type-rubric.mdHow to classify paper type
references/quality-checklist.mdAnti-hallucination checklist
references/presentation-schema.mdSlide plan JSON schema
references/presentation-style-guide.mdContent compression rules for slides
references/pptx-handoff.mdHow to call the pptx skill for rendering
scripts/extract_pdf_meta.pyOptional: extract PDF metadata to JSON

Mode Selection

Default mode: standard. Detect from user's request:

ModeTriggerOutput
quick"quick", "简单说", "一句话", "简要"Header + info + abstract + 3 contributions
standard(default)Full analysis: sections 1–5
extended"前作", "课题组", "prior work"standard + author/group prior work
presentation"PPT", "组会", "汇报大纲", "slides"standard + slide outline
presentation_with_figures"图表", "figures", "带图", "关键图"presentation + figure annotations

If ambiguous, use standard and offer to switch.

Workflow

Step 1: Assess Input Quality

Classify PDF quality before analysis:

  • 良好: Full text extractable
  • 降级处理: Partial text, scanned sections, garbled encoding
  • 严重降级: Minimal text, image-only PDF

If degraded: state reason in header line, proceed with available content, mark all gaps explicitly. Never fabricate content to fill gaps.

Optional: if user has Python, suggest running scripts/extract_pdf_meta.py first for structured metadata.

Step 2: Classify Paper Type

Read references/paper-type-rubric.md and classify. Do NOT assume AI/ML. Output the type label and 2–3 evidence indicators before proceeding.

Step 3: Execute Analysis

Follow references/output-schema.md for the selected mode. Apply all rules from references/quality-checklist.md throughout every section.

Step 4: Self-Check Before Output

Verify before finalizing:

  • Every uncertain field marked [不确定] or [未明确给出]
  • Every contribution tagged [原文声明] or [模型归纳]
  • No section silently omitted — skipped sections state why
  • Paper type label matches rubric evidence

Anti-Hallucination Rules

Full rules in references/quality-checklist.md. Non-negotiable constraints:

1. Source tagging: [原文声明] = directly stated in paper (cite location); [模型归纳] = inferred by model (state reasoning basis) 2. Uncertainty: [未明确给出] when absent; [不确定] when ambiguous 3. No domain assumption: classify paper type first, always 4. No fabrication: venue, DOI, year, affiliations not in text → [未明确给出] 5. Evidence binding: each contribution must cite section/figure/table/quote 6. Degraded PDF: state which sections were unreadable; do not fill gaps

Degraded Input Fallback

SituationAction
Only abstract availablequick mode, note limitation
Scanned PDF, no textAsk user for text or OCR first
Missing references sectionSkip prior work analysis, note absence
Figures unreadableSkip figure analysis, note absence
Non-English paperTranslate key sections, note source language

Extended Mode: Author Prior Work

Only in extended mode: 1. Extract all author names from paper 2. Identify self-citations in reference list (shared authors) 3. Infer research group focus from affiliations + paper title 4. List prior works from reference list only — no web search, no external knowledge 5. Tag all output: [基于论文内引用,非外部检索] 6. If insufficient info: explicitly state "信息不足,无法判断前作关系"

Presentation Mode: PPT Generation

Only in presentation or presentation_with_figures mode.

Step A: Collect Overrides

Before building the slide plan, check if the user specified any of:

  • audience (lab / conference / general) — default: lab
  • duration_hint (10min / 20min / 30min) — default: 20min
  • talk_style (technical / overview / discussion) — default: technical
  • emphasis (which sections to expand)
  • skip (which sections to omit)

If not specified, use defaults silently.

Step B0: Extract PDF Figures (presentation_with_figures only)

Before building the slide plan, run:

python scripts/extract_pdf_figures.py <pdf_path>

This saves all figures to figures/ and writes figures/index.json with name, path, and page for each image. Use this index when assigning figure_ref paths in the handoff.

Step B: Build Slide Plan

Follow references/presentation-schema.md for structure. Follow references/presentation-style-guide.md for compression rules.

  • Map each slide role to the corresponding output-schema section
  • Apply user overrides (emphasis → expand, skip → omit)
  • For presentation_with_figures: set figure_needed: true on method/result slides where a figure is the primary evidence; add figure_ref and figure_hint
  • Slide count from duration_hint (10min→6-7, 20min→9-10, 30min→12-14)

Step C: Call pptx Skill

Follow references/pptx-handoff.md for the exact handoff format.

  • Strip all [原文声明] / [模型归纳] tags before passing to pptx
  • Do NOT include speaker notes in the handoff
  • Call pptx skill automatically — do not ask the user first
  • Exception: if user said "只要大纲" / "just the outline", output the slide plan as text and skip pptx

Related skills

FAQ

What languages does paper-analyst output?

paper-analyst outputs structured analysis in Chinese by default, including summaries, critiques, and optional slide-plan outlines for uploaded academic PDFs or pasted paper text.

What file types does paper-analyst support?

paper-analyst supports academic research papers via PDF upload or pasted text. The skill explicitly excludes non-academic PDFs, spreadsheets, and general document processing tasks.

Can paper-analyst prepare presentation materials?

paper-analyst can generate optional PPT slide-plan handoffs when users ask for 组会汇报 preparation or presentation outlines alongside the structured paper summary and critique.

Is Paper Analyst safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Data Science & MLresearchautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.