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

paper-finder寻纸器

Agent Skill

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

总安装

380

周安装

16

GitHub Stars

202

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bchao1/paper-finder --skill paper-finder

简介

用于机器学习与自然语言领域论文的发现与知识图谱构建。

  • 适用于按主题分类存储摘要、作者关系与跨论文引用连接。
  • 每个搜索话题独立文件夹管理,便于长期追踪与复习回顾。
  • 安装后可在 Codex、Claude、Cursor、Gemini CLI 中发起定向文献检索请求。
  • 建议定期清理过期论文条目以保持知识库时效性与准确性。

SKILL.md

Paper Finder

Research paper discovery and organization agent. Find relevant ML/AI/CV/NLP papers, organize them into a persistent knowledge base, and connect them across topics.

Directory Structure

Each search/topic gets its own folder. The folder name should be a short, descriptive kebab-case name for the search topic (e.g., mixed-resolution-diffusion/, video-generation-efficiency/). The user may also specify a custom folder name. Create on first use:

<topic-name>/
  memory-bank.md        # Master list of all discovered papers
  mind-graph.md         # Topic-paper connection graph
  summaries/            # Per-paper .md files (via research-paper-analyst skill)
  references.bib        # Combined BibTeX for all papers
  pdfs/                 # Downloaded PDFs (only when user asks)
  discussions/          # Paper comparison logs

If the user references an existing folder (e.g., @mixed-resolution-diffusion/), operate within that folder. If starting a new search without a specified folder, derive a descriptive name from the search query.

Searching for Papers

Web search is mandatory

Use WebSearch and WebFetch for every search. Training knowledge alone misses recent papers (2024-2025+). If web tools are denied, retry once, then tell the user you need web access and explain what you'd search for.

Search strategy

Run 2-3 parallel searches per query:

  1. Semantic Scholar API via WebFetch: https://api.semanticscholar.org/graph/v1/paper/search?query=<query>&limit=20&fields=title,authors,year,venue,abstract,externalIds,citationCount,url
  2. WebSearch with queries like <topic> paper <venue> <year> — good for Google Scholar results
  3. Venue-specific when relevant: <topic> CVPR 2025, <topic> site:openreview.net
  4. Follow citations on Semantic Scholar for highly relevant papers

Relevant venues by field: CV (CVPR, ECCV, ICCV, WACV), ML (NeurIPS, ICML, ICLR, COLM, AAAI), NLP (ACL, EMNLP, NAACL), Graphics (SIGGRAPH, SIGGRAPH Asia, 3DV), Robotics (CoRL, RSS, ICRA), Medical (MICCAI), Preprints (arXiv cs.CV/CL/LG/AI).

Multi-angle search (mandatory)

A single concept can be described using very different vocabulary depending on the angle. After the initial direct-concept searches, you MUST run at least one additional search round covering these three angles. Skipping these is the #1 cause of missed papers.

  1. Cross-domain synonyms: The same idea often has established names in adjacent fields. Before searching, brainstorm 2-3 alternative terms from related domains (graphics, neuroscience, signal processing, HCI, information theory, etc.). For example, "mixed-resolution spatial tokens" in ML maps to "foveated rendering" in graphics, "saliency-driven attention" in neuroscience, or "non-uniform sampling" in signal processing. Search using these alternative vocabularies.
  2. Enabling mechanisms / building blocks: Search for the specific technical components needed to *implement* the concept — not just the concept itself. Every novel representation requires changes to attention, positional encodings, loss functions, normalization, etc. For example, mixed-resolution tokens require modified RoPE/positional embeddings, cross-resolution attention alignment, and boundary handling. Search for these mechanism-level terms (e.g., "positional encoding mixed resolution," "RoPE phase alignment multi-scale").
  3. Motivating applications / problem framing: Papers solving the same technical problem may frame it as a different goal. Search from the perspective of *why* someone would build this (efficiency, speed, perceptual quality, hardware constraints). For example, "spatial acceleration diffusion" and "latent upsampling" lead to mixed-resolution tokens as a solution, but would never surface from searches for "mixed-resolution tokens" directly.

After initial results come in, also follow the citation graph: fetch the related-work section of 1-2 top-relevance papers and scan for references you haven't found yet.

Understand the concept precisely

Before searching, understand the exact technical distinction the user cares about. If they describe a specific mechanism (e.g., "tokens of different spatial sizes within a single image"), search for that literal property — don't broaden to superficially similar but technically different work (e.g., cascaded pipelines, super-resolution).

Filtering

  • Prioritize algorithmic contributions over architecture/engineering/systems papers
  • Prioritize recent work (2024-2025+) — skip well-known basics (DiT, VQGAN, etc.) unless directly relevant
  • Note citation counts when available
  • Tier results by relevance to the user's specific concept

Memory Bank (memory-bank.md)

Master record of all discovered papers. Append new entries, never overwrite. Read existing file before searching to avoid duplicates.

# Paper Memory Bank
Last updated: YYYY-MM-DD

### [short-id] Paper Title
- **Authors**: Author list
- **Venue**: Conference/Journal, Year
- **URL**: Link to paper
- **Citations**: N (if known)
- **Status**: discovered | summarized | analyzed
- **Topics**: topic1, topic2
- **Abstract**: 1-2 sentence description
- **Notes**: Relevance observations
---

Mind Graph (mind-graph.md)

Topic-centric hierarchy — NOT pairwise paper comparisons. Each topic has 1-3 umbrella/landmark papers plus other relevant work.

# Mind Graph
Last updated: YYYY-MM-DD

### Topic Name
- **Description**: One-line description
- **Related topics**: [other topic], [other topic]
- **Key papers**:
  - [short-id] Paper Title (Venue Year) — why it's key for this topic
- **Other relevant papers**:
  - [short-id] Paper Title — one-line note

BibTeX (references.bib)

Write a single combined references.bib file with all papers. Use @inproceedings for conferences, @article for journals, @misc for arXiv preprints. Citation key = short-id.

Paper Summaries and Comparisons

  • Summaries: Invoke research-paper-analyst skill. Save to summaries/<short-id>.md. Only when user explicitly asks — don't auto-summarize.
  • Comparisons: Read existing summaries first (create if missing via research-paper-analyst), save discussion to discussions/<descriptive-name>.md.
  • References to known papers: Search summaries and memory bank first. Only re-read the original paper if the user explicitly asks.

PDF Management

Do NOT download PDFs unless the user explicitly asks. When asked:

  1. Read references.bib to extract the arXiv eprint ID or URL for each paper. This is the canonical source — do NOT read memory-bank.md or other files just to find download URLs.
  2. Construct the PDF URL from the arXiv ID: https://arxiv.org/pdf/<eprint-id>
  3. Download via curl/WebFetch and save to pdfs/<short-id>.pdf
  4. Only fall back to memory-bank.md or web search if a paper has no entry in references.bib.

Interaction Flow

  1. Search: Run parallel web searches, present ranked list (title, venue, year, citations, one-line description)
  2. Record: Add papers to memory-bank.md, update mind-graph.md, write references.bib
  3. Ask: Whether user wants deeper analysis of any specific papers

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.15%
按下载量换算45

Claude

28%
按下载量换算37

Cursor

18.82%
按下载量换算25

Gemini CLI

9.62%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills