Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

patent-review专利审查

Agent Skill

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

总安装

783

周安装

32

GitHub Stars

7,816

下载量

253
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wanshuiyin/auto-claude-code-research-in-sleep --skill patent-review

简介

用于查找、检索和筛选相关信息。patent-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在专利评审或质量检查中定位相关内容。
  • 通过 GitHub 安装,支持主流 AI 开发环境。
  • 建议在使用前核实来源仓库的维护情况。
  • 注意可能触发的网络请求或外部依赖。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Patent Examiner Review via Codex MCP (xhigh reasoning)

Get a multi-round patent examiner review of the patent application based on: $ARGUMENTS

Adapted from /research-review. The reviewer persona is a patent examiner, not a paper reviewer.

Constants

  • REVIEWER_MODEL = gpt-5.4 — Model used via Codex MCP
  • REVIEW_ROUNDS = 2 — Number of review rounds
  • EXAMINER_PERSONA = "patent-examiner" — GPT-5.4 persona

Prerequisites

  • Codex MCP Server configured: claude mcp add codex -s user -- codex mcp-server

Inputs

  1. patent/CLAIMS.md — all drafted claims
  2. patent/specification/ — all specification sections
  3. patent/figures/numeral_index.md — reference numeral mapping
  4. patent/PRIOR_ART_REPORT.md — known prior art
  5. patent/INVENTION_DISCLOSURE.md — invention structure

Workflow

Step 1: Gather Patent Context

Before calling the external reviewer, compile a comprehensive briefing:

  1. Read all claims (independent + dependent)
  2. Read specification sections (at least summary and detailed description)
  3. Read prior art report for context
  4. Identify: core inventive concept, claim scope, known prior art, target jurisdiction

Step 2: Round 1 — Full Examiner Review

Send to REVIEWER_MODEL via mcp__codex__codex with xhigh reasoning:

mcp__codex__codex:
  config: {"model_reasoning_effort": "xhigh"}
  prompt: |
    You are a senior patent examiner at the [USPTO/CNIPA/EPO].
    Examine this patent application and issue a detailed office action.

    CLAIMS:
    [all claims]

    SPECIFICATION SUMMARY:
    [key sections: title, technical field, background, summary, abstract]

    PRIOR ART KNOWN:
    [prior art references]

    PATENTABILITY STANDARDS TO APPLY:
    [US: 35 USC 101/102/103/112 | CN: Articles 22, 26 | EP: Articles 54, 56, 83, 84]

    Please issue an office action covering:

    1. CLAIM CLARITY (112(b)/Art 84):
       - Are all terms definite?
       - Any indefinite functional language?
       - Antecedent basis issues?

    2. WRITTEN DESCRIPTION (112(a)/Art 83 first para):
       - Does the spec support ALL claim scope?
       - Any claim elements without spec support?

    3. ENABLEMENT (112(a)/Art 83):
       - Can a POSITA practice the invention?
       - Any missing algorithm/structure for functional claims?

    4. NOVELTY (102/Art 54):
       - Would any known reference anticipate any claim?
       - Identify the closest single reference.

    5. NON-OBVIOUSNESS (103/Art 56):
       - Would any combination render claims obvious?
       - What is the motivation to combine?

    6. CLAIM SCOPE:
       - Are independent claims broad enough to be commercially valuable?
       - Do dependent claims provide meaningful fallback positions?
       - Any claims that are too broad (likely rejected) or too narrow (not valuable)?

    7. SPECIFICATION QUALITY:
       - Language issues (subjective terms, relative terms, result-to-be-achieved)
       - Reference numeral consistency
       - Missing embodiments

    Format your response as a formal office action with:
    - GROUNDS OF REJECTION for each issue (cite statute)
    - SUGGESTED AMENDMENTS for each issue
    - OVERALL PATENTABILITY SCORE: 1-10

    Be rigorous and specific. This is a real examination.

Step 3: Implement Fixes (Round 1)

Based on the examiner's office action:

  1. CRITICAL issues (102 rejection, 112 indefiniteness, missing enablement):

- Must be fixed before proceeding - Amend claims or add specification support

  1. MAJOR issues (103 obviousness, weak claim scope, missing support):

- Should be fixed or argued - Consider claim amendments or specification additions

  1. MINOR issues (language quality, numeral consistency, formatting):

- Fix if time permits - Document in output for later cleanup

For each fix:

  • Show the specific change (old claim -> new claim)
  • Explain how the fix addresses the examiner's concern

Step 4: Round 2 — Follow-Up Review

Use mcp__codex__codex with the threadId from Round 1:

mcp__codex__codex:
  threadId: [from Round 1]
  prompt: |
    Here is the revised patent application after addressing your office action.

    CHANGES MADE:
    [list of all changes with rationale]

    REVISED CLAIMS:
    [updated claims]

    REVISED SPECIFICATION EXCERPTS:
    [changed sections]

    Please re-examine:
    1. Are the previous rejections overcome?
    2. Are there new issues introduced by the amendments?
    3. What is the updated patentability score?
    4. Any remaining grounds for rejection?

Step 5: Generate Improvement Report

Write patent/PATENT_REVIEW.md:

## Patent Review Report

### Application Summary
[Title, claims count, jurisdiction]

### Review Round 1
#### Office Action Summary
[Key findings from examiner]

#### Issues Found
| # | Type | Severity | Claim/Section | Issue | Citation | Fix Applied |
|---|------|----------|--------------|-------|----------|-------------|
| 1 | Clarity | CRITICAL | Claim 3 | Indefinite term "rapid" | 112(b) | Defined in spec |
| 2 | Novelty | MAJOR | Claim 1 | Ref X anticipates element C | 102 | Amended claim |

#### Score After Round 1: [X]/10

### Review Round 2
#### Follow-Up Assessment
[Are previous rejections overcome?]

#### Remaining Issues
[Any issues still outstanding]

#### Score After Round 2: [X]/10

### Recommendations
[Final recommendations before proceeding to jurisdiction formatting]
- [ ] All CRITICAL issues resolved
- [ ] All MAJOR issues resolved or argued
- [ ] Specification supports all claim amendments
- [ ] Ready for jurisdiction formatting

Key Rules

  • The reviewer persona must be a patent examiner, not a paper reviewer or academic.
  • Always use model_reasoning_effort: "xhigh" for maximum analysis depth.
  • Address CRITICAL and MAJOR issues before proceeding to the next phase.
  • Document all changes in the review report for traceability.
  • If the patentability score is below 5/10 after Round 2, recommend significant rework before filing.
  • The review is advisory -- actual prosecution may proceed differently.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.72%
按下载量换算93

Claude

26.84%
按下载量换算68

Cursor

18.45%
按下载量换算47

Gemini CLI

8.54%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills