Best for
- Search for prior art patents
- Find patents in a specific technology area
- Search by CPC classification code
RobThePCGuy/Claude-Patent-Creator/skills/bigquery-patent-search/SKILL.md
Fast, cloud-based patent searching across 100 million+ worldwide patents using Google BigQuery - keyword search, CPC classification, patent details retrieval
Decision brief
Fast, cloud-based patent searching across 100 million+ worldwide patents using Google BigQuery.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/RobThePCGuy/Claude-Patent-Creator --skill "skills/bigquery-patent-search"Inspect the Agent Skill "bigquery-patent-search" from https://github.com/RobThePCGuy/Claude-Patent-Creator/blob/f8c09337ea208671f0a5d1c36ef94c5c7d89b0d2/skills/bigquery-patent-search/SKILL.md at commit f8c09337ea208671f0a5d1c36ef94c5c7d89b0d2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
This skill requires Google Cloud authentication:
When this skill is invoked:
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
Provides access to Google's public patent dataset:
Review the “Install Google Cloud SDK (if not installed)” section in the pinned source before continuing.
Permission review
The documentation includes network, browsing, or remote request actions.
# Visit: https://cloud.google.com/sdk/docs/installEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 176 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Fast, cloud-based patent searching across 100 million+ worldwide patents using Google BigQuery.
Invoke this skill when users ask to:
Provides access to Google's public patent dataset:
Keyword Search across 100M+ patents:
CPC Classification Search:
Patent Details Retrieval:
This skill requires Google Cloud authentication:
Prerequisites:
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
When this skill is invoked:
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()
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
)
Search by CPC code:
results = searcher.search_by_cpc(
cpc_code="G06F16/", # CPC prefix
limit=20,
country="US"
)
Get patent details:
patent = searcher.get_patent(
patent_number="US10123456B2" # Publication number
)
Uses patents-public-data.patents on Google BigQuery:
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 claimsdescription: Complete description sectionpriority_date: Earliest priority datefamily_id: Patent family IDPresent 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)
...
Boolean Operators in queries:
Phrase Search:
CPC Code Hierarchies:
If BigQuery is not configured:
google-cloud-bigquery is installedgcloud auth application-default loginGOOGLE_CLOUD_PROJECTpython scripts/test_bigquery.pyBigQuery pricing:
PATENT_BIGQUERY_MAX_BYTES_BILLED (default 350 GiB)Frequently asked questions
Fast, cloud-based patent searching across 100 million+ worldwide patents using Google BigQuery.
The source record exposes this install command: npx skills add https://github.com/RobThePCGuy/Claude-Patent-Creator --skill "skills/bigquery-patent-search". Inspect the command and pinned source before running it.
Static rules flagged network in the source; the page lists the matching lines and excerpts.