Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

bigquery-patent-searchbigquery 专利检索

Agent Skill

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

总安装

1,151

周安装

47

GitHub Stars

96

下载量

372
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

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

简介

用于查找、检索和筛选相关信息,支持关键词与任务场景定位。

  • 适合快速获取专利数据与自由-to-operate 搜索结果。
  • 使用时需确认来源仓库与安装命令,核验具体用法。
  • 建议检查权限与维护状态,避免触发未授权操作。
  • bigquery-patent-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

BigQuery Patent Search Skill

Fast, cloud-based patent searching across 76 million+ worldwide patents using Google BigQuery.

When to Use

Invoke this skill when users ask to:

  • Search for prior art patents
  • Find patents in a specific technology area
  • Search by CPC classification code
  • Look up patent details by publication number
  • Conduct freedom-to-operate searches
  • Research patent landscapes

What This Skill Does

Provides access to Google's public patent dataset:

  1. Keyword Search across 100M+ patents:

- Full-text search of titles, abstracts, claims - Filter by country (US, EP, JP, CN, etc.) - Filter by filing/grant date ranges - Fast cloud-based queries (< 5 seconds)

  1. CPC Classification Search:

- Search by CPC code (e.g., "G06F16/", "H04L29/06") - Browse patent classifications - Find patents in specific technical domains

  1. Patent Details Retrieval:

- Get full patent text by publication number - Access title, abstract, claims, description - View CPC codes, inventors, assignees - See filing and grant dates

Required Setup

This skill requires Google Cloud authentication:

Prerequisites:

  1. Google Cloud Project (free to create)
  2. BigQuery API enabled (free for reasonable usage)
  3. Application Default Credentials configured

Setup Commands:

# Install Google Cloud SDK (if not installed)
# Visit: https://cloud.google.com/sdk/docs/install

# Authenticate
gcloud auth application-default login

# Set project (get ID from console.cloud.google.com)
export GOOGLE_CLOUD_PROJECT=your-project-id

Environment Variable: Set in .env file: GOOGLE_CLOUD_PROJECT=your-project-id

How to Use

When this skill is invoked:

  1. Initialize BigQuery searcher: import sys sys.path.insert(0, os.path.join(os.environ.get('CLAUDE_PLUGIN_ROOT', '.'), 'python')) from python.bigquery_search import BigQueryPatentSearch searcher = BigQueryPatentSearch()
  2. Search by keywords: results = searcher.search_patents(query="blockchain authentication", limit=20, country="US", # Optional: filter by country start_year=2020, # Optional: filter by year end_year=2024)
  3. Search by CPC code: results = searcher.search_by_cpc(cpc_code="G06F16/", # CPC prefix limit=20, country="US")
  4. Get patent details: patent = searcher.get_patent(patent_number="US10123456B2" # Publication number)

BigQuery Dataset

Uses patents-public-data.patents on Google BigQuery:

  • 100M+ worldwide patents
  • 12M+ US patents with full text
  • Updated weekly
  • Free to query (no billing for reasonable usage)

Search Result Format

Each result includes:

{
    "publication_number": "US10123456B2",
    "title": "Method and system for...",
    "abstract": "A system for...",
    "filing_date": "2019-01-15",
    "grant_date": "2020-06-30",
    "country": "US",
    "cpc_codes": ["G06F16/245", "H04L29/06"],
    "inventors": ["John Doe", "Jane Smith"],
    "assignee": "Example Corp"
}

Full patent details also include:

  • claims: Full text of all claims
  • description: Complete description section
  • priority_date: Earliest priority date
  • family_id: Patent family ID

Presentation Format

Present search results as:

PATENT SEARCH RESULTS
====================

Query: "blockchain authentication"
Found: 247 patents (showing top 20)
Date Range: 2020-2024
Country: US

[1] US10123456B2 - System for blockchain-based authentication
    Assignee: Example Corp
    Filed: 2019-01-15 | Granted: 2020-06-30
    CPC: G06F16/245, H04L29/06

    Abstract: A system for authenticating users using blockchain
    technology with distributed ledger verification...

[2] US10234567B1 - Method of secure authentication using blockchain
    ...

---

Top 5 Most Relevant:
1. US10123456B2 (95% relevance)
2. US10234567B1 (92% relevance)
...

Advanced Search Techniques

  1. Boolean Operators in queries:

- "blockchain AND authentication" - "encryption OR cryptography" - "(mobile OR wireless) AND security"

  1. Phrase Search:

- "distributed ledger technology" - "public key infrastructure"

  1. CPC Code Hierarchies:

- "G06F" = Computing - "G06F16/" = Information retrieval - "G06F16/245" = Structured query language

Common CPC Codes

  • G06F: Computing, calculating, counting
  • H04L: Digital communication
  • G06Q: Business methods
  • H04W: Wireless communication
  • G06N: Computer systems based on specific models
  • G06T: Image processing

Error Handling

If BigQuery is not configured:

  1. Check if google-cloud-bigquery is installed
  2. Verify authentication: gcloud auth application-default login
  3. Confirm project ID in environment: GOOGLE_CLOUD_PROJECT
  4. Test with: python scripts/test_bigquery.py

Cost Considerations

BigQuery pricing:

  • First 1TB/month: FREE
  • After 1TB: $5 per TB queried
  • Typical query: 10-50 MB per search
  • ~20,000 searches free per month

Tools Available

  • Bash: To run Python BigQuery searches
  • Read: To load saved search results
  • Write: To save patent search results
  • Grep: To search through saved results

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.92%
按下载量换算104

OpenCode

22.52%
按下载量换算84

Gemini CLI

20.11%
按下载量换算75

windsurf

13.13%
按下载量换算49

Antigravity

7.64%
按下载量换算28

trae

3.5%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills