plugins/utopia-azraq-engagement/skills/patent-search/SKILL.md
Search 100M+ patents using BigQuery (fast, zero setup) or PatentsView API (US patents with rich metadata).
npx skillsauth add The-Utopia-Studio/skills patent-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Two powerful patent search methods:
FOR CLAUDE: All files and dependencies installed.
.claude/skills/patent-search/bigquery_search.py# 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
# 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
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
When user requests patent searches:
| Method | Patents | Coverage | Speed | Cost | Storage | |--------|---------|----------|-------|------|---------| | BigQuery | 100M+ | Worldwide | 3-4s | Free* | 0GB | | PatentsView | 9.2M | US only | 1-3s | Free | 0GB |
*Free tier: 1TB queries/month
python bigquery_search.py search "query" <limit>
python bigquery_search.py get <PATENT-NUMBER>
python bigquery_search.py cpc <CODE> <limit>
| Code | Technology | |------|-----------| | G10L | Speech analysis/synthesis | | G10L15 | Speech recognition | | G10L17 | Speaker recognition/verification | | G06F21 | Security arrangements | | G06N | Computing models |
FOR CLAUDE: Only run diagnostics if Quick Test fails.
| Problem | Solution |
|---------|----------|
| BigQuery auth fails | gcloud auth application-default login |
| No module google.cloud | pip install google-cloud-bigquery db-dtypes |
| Zero results | Simplify query (2-3 keywords max) |
| Patent get fails | Use hyphenated format: US-XXXXX-XX |
| PatentsView 403 | Set API key environment variable |
| Rate limit (429) | Wait 60 seconds (PatentsView: 45 req/min) |
development
Create professional equity research earnings update reports (8-12 pages, 3,000-5,000 words) analyzing quarterly results for companies already under coverage. Fast-turnaround format focusing on beat/miss analysis, key metrics, updated estimates, and revised thesis. Includes 1-3 summary tables and 8-12 charts. Use when user requests "earnings update", "quarterly update", "earnings analysis", "Q1/Q2/Q3/Q4 results", or post-earnings report.
development
Updates a presentation with new numbers — quarterly refreshes, earnings updates, comp rolls, rebased market data. Use whenever the user asks to "update the deck with Q4 numbers", "refresh the comps", "roll this forward", "swap in the new earnings", "change all the $485M to $512M", or any request to swap figures across an existing deck without rebuilding it.
development
Real DCF (Discounted Cash Flow) model creation for equity valuation. Retrieves financial data from SEC filings and analyst reports, builds comprehensive cash flow projections with proper WACC calculations, performs sensitivity analysis, and outputs professional Excel models with executive summaries. Use when users need to value a company using DCF methodology, request intrinsic value analysis, or ask for detailed financial modeling with growth projections and terminal value calculations.
tools
Build professional financial services data packs from various sources including CIMs, offering memorandums, SEC filings, web search, or MCP servers. Extract, normalize, and standardize financial data into investment committee-ready Excel workbooks with consistent structure, proper formatting, and documented assumptions. Use for M&A due diligence, private equity analysis, investment committee materials, and standardizing financial reporting across portfolio companies. Do not use for simple financial calculations or working with already-completed data packs.