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

paper-to-skill纸到技能

Agent Skill

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

总安装

897

周安装

37

GitHub Stars

216

下载量

293
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill paper-to-skill

简介

paper-to-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源线索进行信息检索与筛选。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Paper-to-Skill Pipeline

Transform research papers into production-grade skill packages. The pipeline extracts the actionable methodology from a paper, structures it as a skill specification, and feeds it through co-evolutionary refinement to produce a validated package.

This closes the loop between research and practice: a paper published today can become an executable skill tomorrow, without manual authoring.

Reference Files

FileContentsLoad When
references/extraction-patterns.mdPatterns for extracting methodology from papersAlways

Prerequisites

  • The to-markdown skill (for PDF/document conversion)
  • The research-critique skill (for paper analysis)
  • The test-engineer agent (for co-evolutionary skill generation)

Workflow

Phase 1: Paper Intake

Accept the paper in any supported format:

Input FormatAction
arXiv ID (e.g., 2604.01687)Fetch via https://arxiv.org/abs/<id>, convert PDF
arXiv URLExtract ID, fetch and convert
PDF file pathConvert using to-markdown skill
URL to paperFetch via WebFetch, convert if PDF
Pasted textUse directly

For PDF conversion, invoke the to-markdown skill:

Convert this PDF to clean markdown, preserving section structure, tables, equations, and algorithm pseudocode. Drop references section but keep inline citations.

Phase 2: Critical Analysis

Invoke the research-critique skill on the converted paper:

Analyze this paper focusing on: 1. Core contribution: what is the novel methodology? 2. Algorithm description: extract the step-by-step procedure 3. Input/output specification: what goes in, what comes out? 4. Key parameters and their valid ranges 5. Claimed results and the evidence supporting them 6. Failure modes and limitations acknowledged by the authors 7. Prerequisites and dependencies (tools, data, compute)

The critique output becomes the foundation for the skill specification.

Phase 3: Skill Specification Extraction

From the critique output, build a structured skill specification:

specification:
  name: <kebab-case derived from paper's methodology name>
  domain: <paper's application domain>
  source_paper:
    title: <paper title>
    arxiv_id: <if available>
    url: <paper URL>
    authors: <first author et al.>
    date: <publication date>

  capabilities:
    - <capability 1 derived from the methodology>
    - <capability 2>
    - <capability 3>

  input_format: <what the skill accepts>
  output_format: <what the skill produces>

  algorithm_steps:
    - step: 1
      description: <from paper's algorithm>
      parameters: [<key params with ranges>]
    - step: 2
      description: <next step>

  failure_modes:
    - <from paper's limitations section>

  example_tasks:
    - <task 1 the methodology would solve>
    - <task 2>
    - <task 3>

Extraction rules:

  • Prefer the paper's own algorithm pseudocode over prose descriptions
  • Include parameter ranges from the paper's experiments (e.g., "learning rate: 0.001-0.01")
  • Map the paper's terminology to armory conventions (e.g., "module" → "skill", "pipeline" → "workflow")
  • If the paper describes multiple variants, extract the best-performing one

See references/extraction-patterns.md for patterns specific to common paper types.

Phase 4: Skill Generation

Hand off the specification to the test-engineer agent for co-evolutionary generation:

Evolve a skill for: [specification.domain] Capabilities: [specification.capabilities] Algorithm: [specification.algorithm_steps] Input: [specification.input_format] Output: [specification.output_format] Failure modes: [specification.failure_modes] Example tasks: [specification.example_tasks] Source: [specification.source_paper.title] ([specification.source_paper.url])

The test-engineer runs its full co-evolutionary loop (generate → verify → oracle → refine) using the specification as the task description.

Phase 5: Attribution and Finalization

Ensure the generated skill properly attributes the source paper:

  1. Frontmatter: Add source: <paper_url> to the metadata
  2. Body: Include an attribution section at the end of SKILL.md: ## Attribution This skill implements the methodology from: > <paper title> > <authors> > <venue/arxiv, date> > <URL>
  3. References: If the paper has supplementary materials (code, datasets), create a source materials reference file in the generated skill's references/ directory linking to them
  4. Verify the skill name does not conflict with existing packages in manifest.yaml

Output

The complete skill package at skills/<name>/:

  • SKILL.md with attribution and paper-derived workflow
  • evals/cases.yaml with assertions generated by the co-evolutionary loop
  • references/ with extraction patterns and source materials
  • evals/evolution-log.yaml from the test-engineer's refinement process

Error Handling

ErrorResolution
Paper has no clear algorithmExtract the methodology from the experiments section
Paper is purely theoreticalReport: no actionable methodology; suggest literature-review instead
PDF conversion failsTry alternative: fetch HTML version or request user paste text
Paper methodology requires data/computeNote in skill's prerequisites; skill may be a workflow template only
test-engineer budget exhaustedReturn best-scoring iteration with manual review warning

Limitations

  • Cannot extract visual methodologies (circuit diagrams, neural architecture figures) — works on textual algorithm descriptions only
  • Papers with multiple interdependent contributions may produce overly complex skills — consider splitting into multiple skills
  • Non-English papers require translation before processing
  • The generated skill's quality depends on the paper's clarity of methodology description

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.63%
按下载量换算113

Claude

28.72%
按下载量换算84

Cursor

20.65%
按下载量换算61

Gemini CLI

8.86%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills