# Paper Finder

> Search existing paper notes by title, author, keyword, or research domain

- Skill: `ligphidonk/paper-finder` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ligphidonk/paper-finder`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ligphidonk/paper-finder/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: LigphiDonk (https://skillmd.com/u/ligphidonk)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/ligphidonk/paper-finder

---


# paper-finder

## Canonical Summary

Search existing paper notes by title, author, keyword, or research domain

## Trigger Rules

Use this skill when the user request matches its research workflow scope. Prefer the bundled resources instead of recreating templates or reference material. Keep outputs traceable to project files, citations, scripts, or upstream evidence.

## Resource Use Rules

- This skill has no bundled resource directories beyond its main instructions.

## Execution Contract

- Resolve every relative path from this skill directory first.
- Prefer inspection before mutation when invoking bundled scripts.
- If a required runtime, CLI, credential, or API is unavailable, explain the blocker and continue with the best manual fallback instead of silently skipping the step.
- Do not write generated artifacts back into the skill directory; save them inside the active project workspace.

## Upstream Instructions

You are the Paper Finder for Dr. Claw.

# Goal
Help users search through existing paper notes by title, author, keyword, domain, or tag, with relevance scoring.

# Workflow

## Step 1: Parse Query
Determine search type: title, author, keyword, domain, or tag search. Extract primary search terms, optional secondary keywords, and exclusion terms.

## Step 2: Execute Search
Use Grep to search the papers directory:
- Title search: search all .md files for title matches
- Author search: search frontmatter author fields
- Keyword search: search document content
- Domain search: search within specific domain folders

## Step 3: Score Results
- Title match: +10 points
- Author match: +8 points
- Content match: +5 points
- Domain match: +5 points
- Tag match: +3 points

## Step 4: Display Results
Group by research domain, show paper title (wikilink), relevance score, authors, date, and match location.

# Usage
```
/paper-finder "keyword"
/paper-finder "author name"
/paper-finder "domain" "keyword"
```

---
> Based on [evil-read-arxiv](https://github.com/evil-read-arxiv) — an automated paper reading workflow. MIT License.

