New to Claude Skills? Learn how to install them →

wanshuiyin on GitHub

Patent Novelty Check

Free

Evaluate patentability with a structured analysis.

Get this skill

Free · Opens the source repo

What Patent Novelty Check does

The Patent Novelty Check skill is designed to assist inventors and patent professionals in assessing the patentability of inventions by evaluating their novelty and non-obviousness against existing prior art. This skill is particularly useful for individuals or teams engaged in the patent application process, as it provides a systematic approach to determining whether an invention meets the legal standards for patentability. By using this tool, users can save time and effort in their research and analysis, leading to more informed decisions regarding patent filings.

The skill operates through a series of defined steps that guide the user through the patent evaluation process. Initially, it extracts key claim elements from the provided invention description, identifying both novel and known features. This is followed by a thorough anticipation analysis, where each claim is tested against prior art references to determine if any single reference discloses all the claim elements. If the invention is deemed novel, the skill then conducts an obviousness analysis, examining whether combinations of prior art could render the claims obvious to a person skilled in the art.

After completing these analyses, the skill leverages a dedicated Codex reviewer agent to provide a rigorous examination of the invention's patentability. This includes an assessment of anticipation, obviousness, and the overall scope of the claims. The output is a comprehensive report that summarizes the findings, highlights risk factors, and suggests potential amendments to claims if necessary. This structured approach ensures that users have a clear understanding of their invention's patentability status and the steps needed to strengthen their application.

Ultimately, the Patent Novelty Check skill is an invaluable resource for patent attorneys, inventors, and R&D teams who need to navigate the complexities of patent law efficiently. By providing a clear framework for evaluating patentability, this skill helps users make informed decisions and enhances their chances of successfully obtaining patent protection.

When to use it

Use this skill when you need to assess the patentability of an invention and understand its novelty and non-obviousness.

When not to use it

This skill is not suitable for assessing general research novelty or for cases where detailed legal advice is required beyond the scope of patent analysis.

What you can build with it

Assessing a New Invention

Use the skill to evaluate the patentability of a new invention before filing a patent application.

Prior Art Review

Leverage the skill to analyze prior art references and determine their impact on the novelty of your claims.

Claim Drafting Assistance

Utilize the skill to draft preliminary claims based on the key features identified in your invention description.

How to install Patent Novelty Check

View source

1. Install with the skills CLI

npx skills add wanshuiyin/auto-claude-code-research-in-sleep/patent-novelty-check --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

Patent Novelty and Non-Obviousness Check

Assess patentability of: $ARGUMENTS

Adapted from /novelty-check for patent legal standards. Research novelty is NOT the same as patent novelty.

Constants

  • REVIEWER_MODEL = gpt-5.6-sol — Fresh Codex examiner; same-family provisional in the base mirror
  • NOVELTY_STANDARD = patent — Always use legal patentability standard, not research contribution standard

Inputs

  1. Invention description from $ARGUMENTS
  2. patent/PRIOR_ART_REPORT.md (output of /prior-art-search)
  3. patent/INVENTION_BRIEF.md if exists

Shared References

Load ../shared-references/patent-writing-principles.md for novelty/non-obviousness standards. Load ../shared-references/patent-format-us.md for 102/103 analysis framework.

Workflow

Step 1: Define Claim Elements

From the invention description, extract the key claim elements that would define the invention's scope:

  1. List the technical features that make the invention novel
  2. Identify which features are known from prior art vs. inventive
  3. Draft preliminary claim language for 2-3 independent claims (method + system)

Step 2: Anticipation Analysis (Novelty)

For each preliminary claim, test against EACH prior art reference in PRIOR_ART_REPORT.md:

Single-reference test: Does any single reference disclose ALL claim elements?

Claim ElementRef 1Ref 2Ref 3...
Feature AYes/No + evidence
Feature BYes/No + evidence
Feature CYes/No + evidence
Feature DYes/No + evidence

Verdict per reference:

  • ANTICIPATED: One reference discloses every element → claim is not novel
  • NOT ANTICIPATED: At least one element missing from every single reference → claim is novel

Step 3: Obviousness Analysis (Inventive Step)

If the invention is novel (passes Step 2), test for obviousness:

Two/three-reference combination test: Can 2-3 references be combined to render the claim obvious?

For each combination of the top references:

  1. Primary reference: Which reference is closest to the claimed invention?
  2. Secondary reference(s): Which reference(s) teach the missing element(s)?
  3. Motivation to combine: Would a POSITA have reason to combine these references?
    • Explicit suggestion in the references themselves?
    • Same field, same problem?
    • Common design incentive?
    • Known technique for improving similar devices?

Format as a matrix:

CombinationPrimarySecondaryMissing ElementsMotivation to CombineObvious?
Ref1 + Ref2Ref1Ref2Feature DSame field, similar problemYes/No

Step 4: Fresh-Agent Examiner Verification (same-family provisional)

Call REVIEWER_MODEL via a dedicated Codex reviewer agent at xhigh reasoning:

spawn_agent:
  model: gpt-5.6-sol
  reasoning_effort: xhigh
  message: |
    You are a senior patent examiner at the [USPTO/CNIPA/EPO].
    Examine the following invention for patentability.

    INVENTION: [invention description + preliminary claims]

    PRIOR ART: [prior art references with key teachings]

    Please analyze:
    1. Anticipation (novelty): Does any single reference anticipate any claim?
    2. Obviousness: Can any combination of references render claims obvious?
    3. Claim scope: Are the claims broad enough to be valuable?
    4. Recommended amendments if any claim is rejected.
    Be rigorous and cite specific references.

Step 5: Jurisdiction-Specific Assessment

For each target jurisdiction, provide a patentability assessment:

Under 35 USC 102/103 (US):

  • Novelty: PASS / FAIL (cite specific reference if fail)
  • Non-obviousness: PASS / FAIL (cite combination if fail)

Under Article 22 CN Patent Law (CN):

  • 新颖性 (Novelty): 通过 / 未通过
  • 创造性 (Inventive Step): 通过 / 未通过

Under Article 54/56 EPC (EP):

  • Novelty: PASS / FAIL
  • Inventive step: PASS / FAIL (problem-solution approach)

Step 6: Output

Write patent/NOVELTY_ASSESSMENT.md:

## Patentability Assessment

### Invention Summary
[description]

### Overall Assessment
[PATENTABLE / PATENTABLE WITH AMENDMENTS / NOT PATENTABLE]

### Anticipation Analysis
[claim-by-claim matrix against each reference]

### Obviousness Analysis
[combination analysis with motivation to combine]

### Review-Independence Metadata
[summary of GPT-5.6-Sol examiner feedback]

### Recommended Claim Amendments
[If claims need modification to overcome prior art, suggest specific amendments]

### Risk Factors
[What could cause rejection during actual prosecution?]

Key Rules

  • Patent novelty is absolute: any public disclosure before the priority date counts as prior art, worldwide.
  • Research novelty ("has anyone published this?") is NOT the same as patent novelty ("does any single reference teach every claim element?").
  • Obviousness requires BOTH: (1) a combination of references AND (2) a motivation to combine them.
  • Never assume the invention is patentable just because no identical patent exists.
  • The assessment is advisory only -- actual prosecution may reveal different prior art.
  • If reviewer delegation is unavailable in the current Codex host, stop and ask the user to enable Codex agent support before continuing.

Frequently asked questions about Patent Novelty Check

Similar skills