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

patent-search专利检索

Agent Skill

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

总安装

594

周安装

25

GitHub Stars

96

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/robthepcguy/claude-patent-creator --skill patent-search

简介

patent-search 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前分类为研究检索,暂无更多功能细节。

SKILL.md

Patent Search Skill

Two powerful patent search methods:

  1. BigQuery Search (Recommended) - 100M+ worldwide patents, zero local storage
  2. PatentsView API - Detailed US patent metadata (inventors, assignees, classifications, citations)

FOR CLAUDE: All files and dependencies installed.

  • Go directly to Quick Test section
  • Script at: .claude/skills/patent-search/bigquery_search.py
  • Run from skill directory
  • Windows: Use cmd syntax (dir, set, &&)

Quick Test

# Windows
cd ".claude\skills\patent-search"
set GOOGLE_APPLICATION_CREDENTIALS=%APPDATA%\\gcloud\\application_default_credentials.json
python bigquery_search.py search "voice biometric" 5

# Linux/macOS
cd .claude/skills/patent-search
export GOOGLE_APPLICATION_CREDENTIALS="$HOME/.config/gcloud/application_default_credentials.json"
python bigquery_search.py search "voice biometric" 5

Expected: 5 patent results in ~4 seconds

Quick Start

BigQuery Search

# Keyword search (2-3 keywords for best results)
python bigquery_search.py search "voice biometric authentication" 20

# Get specific patent (hyphenated format: US-XXXXXXX-XX)
python bigquery_search.py get US-12424224-B2

# CPC classification search
python bigquery_search.py cpc G10L 15

PatentsView API

Choosing the Right Method

Use BigQuery When:

  • Quick keyword search needed
  • Worldwide patents (not just US)
  • Fast results (3-4 seconds)
  • Zero local storage
  • CPC classification search
  • Budget-conscious (free tier: 1TB/month)

Use PatentsView When:

  • Need detailed US patent metadata
  • Searching by inventor/assignee
  • Citation analysis required
  • Complex boolean queries
  • Exact field matching
  • Patent family analysis

Combined Workflow

  1. Start with BigQuery (broad keyword search)
  2. Identify relevant patents and CPC codes
  3. Switch to PatentsView (detailed metadata/citations)
  4. Export final results

Example:

# Step 1: BigQuery broad search
python bigquery_search.py search "voice biometric authentication" 20

# Step 2: Found CPC G10L17, search more
python bigquery_search.py cpc G10L17 50

# Step 3: Use PatentsView for inventor/assignee analysis

Instructions for Claude

When user requests patent searches:

  1. Understand Goal: Technology, time period, prior art vs competitive analysis, US vs worldwide
  2. Check Dependencies: Verify BigQuery/PatentsView setup
  3. Choose Method: Default BigQuery for broad, PatentsView for detailed
  4. Optimize Queries:

- BigQuery: 2-3 keywords, simplify if zero results, use CPC codes - PatentsView: Verify API key, construct JSON queries, handle pagination

  1. Present Results: Parse JSON, highlight key info, provide Google Patents URLs
  2. Offer Next Steps: Suggest refinements, related classifications, citation analysis

Common Use Cases

Prior Art Search

  1. BigQuery keyword search
  2. Identify CPC codes
  3. BigQuery CPC search
  4. PatentsView citation analysis
  5. Document findings

Competitive Intelligence

  1. PatentsView search by assignee
  2. Filter by date range
  3. Group by CPC
  4. Identify key inventors
  5. Trend report

Technology Landscape

  1. BigQuery CPC search worldwide
  2. Analyze by country/date
  3. Identify patent families
  4. PatentsView US details
  5. Summary report

Freedom to Operate

  1. BigQuery keyword + CPC search
  2. Filter by jurisdiction/active status
  3. PatentsView claim analysis
  4. Review forward citations
  5. Risk assessment

Performance & Coverage

MethodPatentsCoverageSpeedCostStorage
BigQuery100M+Worldwide3-4sFree*0GB
PatentsView9.2MUS only1-3sFree0GB

*Free tier: 1TB queries/month

Quick Reference

BigQuery Commands

python bigquery_search.py search "query" <limit>
python bigquery_search.py get <PATENT-NUMBER>
python bigquery_search.py cpc <CODE> <limit>

Common CPC Codes

CodeTechnology
G10LSpeech analysis/synthesis
G10L15Speech recognition
G10L17Speaker recognition/verification
G06F21Security arrangements
G06NComputing models

Troubleshooting

FOR CLAUDE: Only run diagnostics if Quick Test fails.

ProblemSolution
BigQuery auth failsgcloud auth application-default login
No module google.cloudpip install google-cloud-bigquery db-dtypes
Zero resultsSimplify query (2-3 keywords max)
Patent get failsUse hyphenated format: US-XXXXX-XX
PatentsView 403Set API key environment variable
Rate limit (429)Wait 60 seconds (PatentsView: 45 req/min)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.45%
按下载量换算72

Claude

28.3%
按下载量换算59

Cursor

18.94%
按下载量换算39

Gemini CLI

8.75%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills