New to Claude Skills? Learn how to install them →

wanshuiyin on GitHub

Prior Art Search

Free

Streamline your patent and literature research process.

Get this skill

Free · Opens the source repo

What Prior Art Search does

Prior Art Search is a specialized tool designed for developers, inventors, and researchers who need to conduct thorough investigations into existing patents and academic literature related to their inventions. This skill is particularly useful when you are exploring whether your invention is novel or if it overlaps with existing technologies. By automating the search process, it saves significant time and effort compared to manual searches.

The skill operates by extracting key concepts from your invention description, such as the core inventive concept, the technical problem it addresses, and relevant technical features. It then utilizes various patent databases, including Google Patents and Espacenet, to find pertinent patents. Additionally, it searches academic literature through platforms like Google Scholar and arXiv, ensuring a comprehensive review of both patent and non-patent literature.

The results are organized into a structured report that includes details about each found patent and paper, such as titles, abstracts, and relevance assessments. This not only helps in identifying potential overlaps but also provides insights into the existing landscape of technology related to your invention. The skill also offers a preliminary freedom-to-operate assessment, highlighting patents that may pose risks to your invention’s claims.

This tool is ideal for inventors preparing to file patents, researchers conducting literature reviews, and businesses assessing the novelty of their technologies. By leveraging this skill, users can make informed decisions based on a robust analysis of existing prior art, ultimately enhancing their innovation strategies.

When to use it

Use this skill when you need to evaluate the novelty of an invention or assess potential overlaps with existing patents and literature.

When not to use it

This skill may not be suitable for casual inquiries or when a detailed legal analysis is required, as it provides only a preliminary assessment of freedom-to-operate.

What you can build with it

Assessing Invention Novelty

When preparing to file a patent, use this skill to ensure your invention is novel by searching existing patents and literature.

Conducting Literature Reviews

Researchers can utilize this skill to gather relevant academic papers and patents related to their field of study.

Evaluating Competitive Technologies

Businesses can assess existing patents in their technology area to identify potential overlaps and inform their innovation strategy.

How to install Prior Art Search

View source

1. Install with the skills CLI

npx skills add wanshuiyin/auto-claude-code-research-in-sleep/prior-art-search --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by wanshuiyin

Prior Art Search

Search patents and literature for prior art relevant to: $ARGUMENTS

Adapted from /research-lit for patent-specific searching.

Constants

  • MAX_PATENT_RESULTS = 20 — Maximum patent documents to analyze in detail
  • MAX_PAPER_RESULTS = 15 — Maximum academic papers to analyze in detail
  • SEARCH_YEARS = 10 — How many years back to search
  • PATENT_DATABASES = "google-patents, espacenet" — Patent databases to search

Inputs

Read the invention description from:

  1. $ARGUMENTS if it contains technical details
  2. patent/INVENTION_BRIEF.md if it exists
  3. INVENTION_BRIEF.md if it exists at project root

Shared References

Load ../shared-references/prior-art-databases.md for search strategy templates and IPC/CPC classification guidance.

Workflow

Step 1: Extract Search Concepts

From the invention description, identify:

  1. Core inventive concept: The primary technical contribution (1-2 sentences)
  2. Technical problem: What problem it solves
  3. Key technical features: 4-6 specific technical elements that define the invention
  4. IPC/CPC classes: Predict relevant classification codes (e.g., G06N, G06F)

Step 2: Patent Search

For EACH search concept, search via:

Google Patents (via WebSearch):

WebSearch: "site:patents.google.com [keywords]"
WebSearch: "[keywords] patent"
  • Try primary keywords + technical problem keywords
  • Search in English regardless of target jurisdiction
  • For CN inventions, also search Chinese keywords via WebSearch

Espacenet (via WebFetch):

  • WebFetch worldwide.espacenet.com/search results for key queries
  • Search by predicted IPC/CPC classes

Assignee/Inventor Search:

  • If known companies/universities work in this area, search their patent portfolios
  • WebSearch: "[assignee name] patent [technical area]"

For each potentially relevant patent found:

  • WebFetch the patent page to extract: title, abstract, representative claims, filing date, assignee, current status
  • Record IPC/CPC classification codes

Step 3: Academic Literature Search

Search the same concepts in academic databases:

  1. Google Scholar (via WebSearch): WebSearch "[keywords] site:scholar.google.com"
  2. arXiv (via /arxiv if available, or WebSearch): Search for preprints
  3. Semantic Scholar (via /semantic-scholar if API key set, or WebSearch)

For each relevant paper found:

  • Extract title, authors, venue, year, key contribution

Step 4: Classification and Analysis

For each reference found, assess:

  1. Relevance: How closely does it relate to the invention?
  2. Overlap Risk: Does it disclose the same or similar technical solution?
    • HIGH: Anticipates one or more claim elements
    • MEDIUM: Discloses a related but different approach
    • LOW: Same general field, different approach
  3. Relationship: Is it anticipating, relevant, or merely background?

Organize results by IPC/CPC classification to see the technical landscape.

Step 5: Freedom-to-Operate Assessment (Preliminary)

Based on the search results:

  • Identify patents with claims that potentially cover the invention
  • Note any expired patents (public domain)
  • Flag areas where claim scope overlap is significant

Disclaimer: This is a preliminary assessment only. A professional freedom-to-operate analysis by a patent attorney is recommended before filing.

Step 6: Output

Write patent/PRIOR_ART_REPORT.md with:

## Prior Art Search Report

### Invention Summary
[1-2 sentence description of the searched invention]

### Search Strategy
- Keywords used: [...]
- IPC/CPC classes searched: [...]
- Databases searched: Google Patents, Espacenet, Google Scholar, arXiv
- Date range: [year] to present

### Patent References Found

| # | Patent No. | Title | Date | Assignee | IPC/CPC | Key Teaching | Overlap Risk |
|---|-----------|-------|------|----------|---------|-------------|-------------|
| 1 | CN... / US... | [title] | [date] | [assignee] | [codes] | [2-3 sentences] | HIGH/MEDIUM/LOW |

### Non-Patent Literature Found

| # | Reference | Title | Authors/Venue | Year | Key Contribution | Relevance |
|---|-----------|-------|--------------|------|-----------------|-----------|
| 1 | [DOI/link] | [title] | [authors] | [year] | [1-2 sentences] | HIGH/MEDIUM/LOW |

### Prior Art Landscape
[Organized by technical approach or IPC class, not just chronological]

### Freedom-to-Operate Preliminary Assessment
[Which existing patents might block the invention? What is the risk level?]

### Recommendations
- Suggested claim scope adjustments based on prior art
- Areas where novelty appears strongest
- References to watch during prosecution

Key Rules

  • Never fabricate patent numbers or citations. Mark uncertain references with [VERIFY].
  • Search in English AND the target jurisdiction language (Chinese for CN).
  • Patent prior art includes everything published before the priority date, not just patents.
  • Academic papers are valid prior art for both novelty and inventive step.
  • Include expired patents -- they are public domain but still relevant for novelty.

Frequently asked questions about Prior Art Search

Similar skills