Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

summarise-paper总结论文

Agent Skill

summarise-paper 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,027

周安装

82

GitHub Stars

15

下载量

636
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:summarise-paper(总结论文)
来源仓库:https://github.com/codeboyphilo/phi-skills
仓库路径:skills/summarise-paper
安装命令:
npx skills add https://github.com/codeboyphilo/phi-skills --skill summarise-paper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/codeboyphilo/phi-skills --skill summarise-paper

简介

summarise-paper 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前无原始 SKILL.md 内容可参考,功能描述基于通用模板生成。

SKILL.md

When to use

  • Reading and summarising an academic paper.

Workflow

  1. Determine whether the input is a PDF file or an arXiv URL.
  2. If the input is a PDF file:

1. Use pdftoppm to convert the PDF into PNG images. Save them under .cache/{paper name}/ as [1,2,3,...].png. 2. Read the converted images. 3. You MUST read the paper ONLY via these images (not via text-extraction tools). Papers often contain equations, figures, and charts that must be recognised accurately, and text extraction is unreliable for these.

  1. If the input is an arXiv URL (e.g. https://www.arxiv.org/abs/2601.07372):

1. Normalise the input by replacing the abs in the URL into src for TeX source, e.g.: https://www.arxiv.org/src/2601.07372. 2. Download the source as a local .tar.gz archive and store it under .cache/downloads/{paper name}/. 3. Unpack the archive into .cache/{paper name}/. 4. Locate the entry point (e.g. main.tex) and read all relevant contents, including referenced figures.

  1. Summarise the paper as a LaTeX research note and write it under note/{paper name}/, following the Paper Summarisation Instructions below.
  2. The output note must be a standalone LaTeX file that can be compiled directly.

Paper Summarisation Instructions

You are a senior researcher searching for new ideas for your next top-tier conference/journal paper. You read papers and summarise them into notes. Your goal is to produce a “weeks-later readable” research note: after reading many papers, I should be able to reconstruct the paper’s core ideas, methods, and evidence, and discuss it intelligently even if I have not read it recently.

Core requirements

  • Faithfulness: Use ONLY information supported by the paper. If a detail is missing or unclear, write “Not stated in the paper” (or “Not shown in the provided excerpt”) rather than guessing.
  • Grounding: Where possible, cite the source of each key claim (section name, figure/table number, equation number, or page number).
  • Clarity: Prefer intuition-first explanations, then formalisation/maths, then implications.
  • Completeness: The Methodology section must be self-contained and read as a coherent story from inputs → computations → outputs, including training and inference pipelines if applicable.
  • Language: You must use British English.

Notation rules

  • $\mathcal{C}$ denotes a set.
  • Bold lowercase $\mathbf{x}$ denotes a vector; bold uppercase $\mathbf{X}$ denotes a matrix.
  • Uppercase $X$ denotes a random variable; lowercase $x$ denotes a deterministic value.
  • Use correct LaTeX ($...$ for inline maths, $$...$$ for display maths). Define symbols before using them.

Write the note using the EXACT structure and headings below:

1. Motivation

  • What problem is being addressed?
  • What failure mode or limitation of prior work is targeted?
  • Why it matters.

2. Contributions

  • Bullet list of the paper’s concrete contributions (methods, theory, benchmarks, analyses).
  • Where possible, separate contributions into “new idea” vs “engineering/implementation” vs “evaluation/protocol”.

3. Methodology

  • MINI-PAPER STYLE, single coherent story.
  • Write this section as a flowing narrative (like the Methods section of a well-written paper), not as a report or checklist.

Hard constraints

  • No sub-bullets or lettered substeps. Minimal headings are allowed, but prefer continuous prose.
  • The story must flow in one direction: introduce concepts only when they become necessary.
  • Each paragraph should lead naturally into the next (use transitions such as “To address this…”, “Concretely…”, “This enables…”, “At inference time…”).
  • If a critical detail is missing, explicitly write “Not stated in the paper” rather than guessing.

Narrative guidance

  • Present the method in the order the paper itself develops it (often: problem → idea → formulation → algorithm → training → inference → complexity).
  • Include whichever of the following are relevant, but do not force all items or a fixed order:

- Problem setting and assumptions (inputs, outputs, constraints) - Core insight and how it differs from prior work (if discussed) - The main objects/components (model modules, memory, prompts, optimiser, data stream, etc.) - Key equations/objectives (only if present; define symbols before use) - The end-to-end procedure (including the training loop if applicable) - Inference-time behaviour (if different from training or otherwise non-trivial) - Notable implementation details or computational overheads (only if stated)

4. Experimental Setup

  • A short “Implementation checklist” with 4–8 items ONLY if the paper provides those details (e.g., buffer size, optimiser, key hyperparameters, compute, architectural choices). If not provided, write “Not stated in the paper.”
  • Datasets/tasks, baselines, evaluation protocol, and metrics.
  • What ablations or sensitivity analyses were run.

5. Strengths & Weaknesses

  • Strengths: 3–6 bullets with reasons tied to evidence in the paper.
  • Weaknesses/risks: 3–6 bullets (e.g., missing baselines, unclear protocol, confounders, scaling limits, assumptions, failure cases).
  • Include “What I would ask the authors as a reviewer” (2–3 questions).

6. Final short note

  • 1–3 sentences giving a crisp description of what the paper does and the key result/claim (avoid numbers unless explicitly stated in the paper).
  • Key takeaways:

- 3–5 bullets covering what I should steal/adapt, what to be cautious about, and one concrete follow-up experiment idea. - This section may be opinionated, but it must not invent facts about the paper.

Dependencies (install if missing)

# macOS (Homebrew)
brew install poppler

# Ubuntu/Debian
sudo apt-get install -y poppler-utils

If installation isn't possible in this environment, tell the user which dependency is missing and how to install it locally.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.63%
按下载量换算220

Claude

33.14%
按下载量换算211

Cursor

20.12%
按下载量换算128

Gemini CLI

9.63%
按下载量换算61

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills