linkfox-google-patent-search
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseGoogle Patents Search
Google Patents 检索
This skill searches the public Google Patents database, returning matching patents with publication numbers, titles, inventors, assignees, dates, CPC classifications, and PDF links. Useful for cross-border sellers doing freedom-to-operate (FTO) checks, prior-art searches, and patent-infringement risk screening before listing a product.
本技能可检索公开的Google Patents数据库,返回匹配专利的公开号、标题、发明人、受让人、日期、CPC分类及PDF链接。适用于跨境卖家在上架产品前进行自由实施(FTO)排查、现有技术检索以及专利侵权风险筛查。
Core Concepts
核心概念
Google Patents Search runs a query () against the public Google Patents corpus. The query supports Google Patents' native advanced syntax (e.g. , , date ranges). Results are returned as a ranked list of patents (and optionally Google Scholar articles).
qowner:"company"inventor:"name"This skill returns a list of patents with bibliographic fields. To retrieve detailed bibliographic data, full text, legal status, family, or images for a specific patent found here, feed the returned / into the corresponding / / skills.
patentIdpublicationNumberlinkfox-zhihuiya-bibliographylinkfox-zhihuiya-legal-statuslinkfox-zhihuiya-patent-familyGoogle Patents检索会针对公开的Google Patents语料库执行查询(参数)。查询支持Google Patents原生的高级语法(例如、、日期范围)。结果以排序后的专利列表形式返回(可选择包含Google Scholar文章)。
qowner:"company"inventor:"name"本技能仅返回专利的著录字段列表。若要获取此处找到的特定专利的详细著录数据、全文、法律状态、专利族或图片,请将返回的/传入对应的//技能。
patentIdpublicationNumberlinkfox-zhihuiya-bibliographylinkfox-zhihuiya-legal-statuslinkfox-zhihuiya-patent-familyData Fields
数据字段
Each item (one matching patent):
organicResults[]| Field | Description |
|---|---|
| publicationNumber | Publication (announcement) number |
| patentId | Patent ID |
| title | Patent (or Scholar article) title |
| snippet | Result snippet / abstract |
| inventor | Inventor(s) |
| assignee | Assignee(s) |
| filingDate | Filing date |
| publicationDate | Publication / issue date |
| grantDate | Grant date |
| priorityDate | Priority date |
| language | Patent language |
| cpc | Cooperative Patent Classification (only when clustered) |
| cpcDescription | CPC description |
| countryStatus | Per-country legal status map |
| position | Search result position |
| rank | Result rank (may differ from position when clustered) |
| patentLink | Google Patents link |
| Patent PDF link | |
| thumbnail | Patent thumbnail |
| figures | Figure list ( |
| scholar | Whether this is a Google Scholar result |
| scholarId / scholarLink / author / authorEtal / publicationVenue / urlHostname | Scholar-article fields (present when |
| serpapiLink | Result detail-API link |
Top-level fields:
| Field | Description |
|---|---|
| organicResults | Patent search result list |
| searchParameters | Echoed query parameters |
| searchInformation | Search metadata (total results, time, etc.) |
| pagination / serpapiPagination | Pagination info |
| summary | Result summary |
| costToken | Token cost for this query |
| message | Provider info message (may appear when query succeeds but yields no results) |
每个条目(对应一项匹配专利):
organicResults[]| Field | Description |
|---|---|
| publicationNumber | 公开号 |
| patentId | 专利ID |
| title | 专利(或Scholar文章)标题 |
| snippet | 结果片段/摘要 |
| inventor | 发明人 |
| assignee | 受让人 |
| filingDate | 申请日 |
| publicationDate | 公开/授权日 |
| grantDate | 授权日 |
| priorityDate | 优先权日 |
| language | 专利语言 |
| cpc | 合作专利分类(仅聚类时返回) |
| cpcDescription | CPC分类描述 |
| countryStatus | 各国法律状态映射 |
| position | 搜索结果位置 |
| rank | 结果排名(聚类时可能与位置不同) |
| patentLink | Google Patents链接 |
| 专利PDF链接 | |
| thumbnail | 专利缩略图 |
| figures | 附图列表( |
| scholar | 是否为Google Scholar结果 |
| scholarId / scholarLink / author / authorEtal / publicationVenue / urlHostname | Scholar文章字段(仅当 |
| serpapiLink | 结果详情API链接 |
顶层字段:
| Field | Description |
|---|---|
| organicResults | 专利搜索结果列表 |
| searchParameters | 回显的查询参数 |
| searchInformation | 搜索元数据(总结果数、耗时等) |
| pagination / serpapiPagination | 分页信息 |
| summary | 结果摘要 |
| costToken | 本次查询的积分消耗 |
| message | 服务商信息提示(查询成功但无结果时可能出现) |
调用方式
调用方式
- API 端点:(完整参数/响应/错误码见
POST /googlePatent/search)references/api.md - Python 脚本:
python scripts/google_patent_search.py '<JSON 参数>' [--inline] - 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索或翻页时先向用户说明会产生额外消耗。
输出策略(脚本默认行为):
- 始终将完整响应写入 (
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-google-patent-search-<timestamp>.json为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<cwd>取自环境变量<session>,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)SESSION_ID - 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
- 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 /
total、最大列表字段的长度 + 前 3 条样本)costToken - 加 强制全量打印到 stdout(同样落盘)
--inline
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 或 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
jqConvertFrom-Json- API 端点:(完整参数/响应/错误码见
POST /googlePatent/search)references/api.md - Python 脚本:
python scripts/google_patent_search.py '<JSON 参数>' [--inline] - 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索或翻页时先向用户说明会产生额外消耗。
输出策略(脚本默认行为):
- 始终将完整响应写入 (
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-google-patent-search-<timestamp>.json为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<cwd>取自环境变量<session>,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)SESSION_ID - 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
- 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 /
total、最大列表字段的长度 + 前 3 条样本)costToken - 加 强制全量打印到 stdout(同样落盘)
--inline
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 或 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
jqConvertFrom-Json解决认证和积分问题
解决认证和积分问题
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
异常情况
异常情况
- 未配置API Key:环境变量未配置 ,也未配置
LINKFOX_AGENT_API_KEY。LINKFOXAGENT_API_KEY - 响应401或402状态码
- 响应提示积分或权限不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/No permission/API package quota/套餐到期/需充值/请充值",或类似含义的内容。
- 未配置API Key:环境变量未配置 ,也未配置
LINKFOX_AGENT_API_KEY。LINKFOXAGENT_API_KEY - 响应401或402状态码
- 响应提示积分或权限不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/No permission/API package quota/套餐到期/需充值/请充值",或类似含义的内容。
Parameter Guide
参数指南
| Parameter | Required | Default | Description |
|---|---|---|---|
| q | Yes | - | Google Patents search query, supports native advanced syntax (e.g. |
| num | No | 10 | Results per page, range 10–100 |
| page | No | 1 | Page number, starting from 1 |
| country | No | - | Country codes, comma-separated (e.g. |
| language | No | - | Languages, comma-separated (Google Patents official language values) |
| before | No | - | Max date, format `priority |
| after | No | - | Min date, same format as |
| sort | No | - | |
| type | No | - | Result type: |
| status | No | - | Patent status: |
| patents | No | true | Whether to include patent results |
| scholar | No | false | Whether to include Google Scholar results |
| litigation | No | - | Litigation status: |
| inventor | No | - | Inventor(s), comma-separated |
| assignee | No | - | Assignee(s), comma-separated |
| clustered | No | - | Cluster by classification; provider currently only supports |
| dups | No | - | Dedup mode; default = by patent family, |
| Parameter | Required | Default | Description |
|---|---|---|---|
| q | Yes | - | Google Patents搜索查询语句,支持原生高级语法(例如 |
| num | No | 10 | 每页结果数,范围10–100 |
| page | No | 1 | 页码,从1开始 |
| country | No | - | 国家代码,逗号分隔(例如 |
| language | No | - | 语言,逗号分隔(使用Google Patents官方语言值) |
| before | No | - | 最晚日期,格式为`priority |
| after | No | - | 最早日期,格式与 |
| sort | No | - | |
| type | No | - | 结果类型: |
| status | No | - | 专利状态: |
| patents | No | true | 是否包含专利结果 |
| scholar | No | false | 是否包含Google Scholar结果 |
| litigation | No | - | 涉诉状态: |
| inventor | No | - | 发明人,逗号分隔 |
| assignee | No | - | 受让人,逗号分隔 |
| clustered | No | - | 按分类聚类;服务商当前仅支持 |
| dups | No | - | 去重模式;默认按专利族去重, |
Query syntax
查询语法
q| Operator | Meaning |
|---|---|
| Full-text / general keyword |
| Assignee/owner match |
| Inventor match |
| Date bounds (also passable as |
q| Operator | Meaning |
|---|---|
| 全文/通用关键词 |
| 受让人/所有人匹配 |
| 发明人匹配 |
| 日期范围(也可通过 |
Usage Examples
使用示例
1. Basic keyword search
在 Google Patents 检索 wireless earbuds 相关专利,返回 10 条Action:
{"q": "wireless earbuds", "num": 10}2. Filter by country + status
检索美国授权的 wireless earbuds 专利Action:
{"q": "wireless earbuds", "country": "US", "status": "GRANT"}3. Date range + sort newest
检索 2024 年至今公开的 wireless earbuds 专利,按最新排序Action:
{"q": "wireless earbuds", "after": "publication:20240101", "sort": "new"}4. Assignee search
检索受让人 Apple 的专利Action:
{"q": "owner:\"Apple\"", "assignee": "Apple"}5. Paginate
继续检索 wireless earbuds,查看第 2 页,每页 20 条Action:
{"q": "wireless earbuds", "page": 2, "num": 20}1. 基础关键词检索
在 Google Patents 检索 wireless earbuds 相关专利,返回 10 条Action:
{"q": "wireless earbuds", "num": 10}2. 按国家+状态筛选
检索美国授权的 wireless earbuds 专利Action:
{"q": "wireless earbuds", "country": "US", "status": "GRANT"}3. 日期范围+按最新排序
检索 2024 年至今公开的 wireless earbuds 专利,按最新排序Action:
{"q": "wireless earbuds", "after": "publication:20240101", "sort": "new"}4. 受让人检索
检索受让人 Apple 的专利Action:
{"q": "owner:\"Apple\"", "assignee": "Apple"}5. 分页检索
继续检索 wireless earbuds,查看第 2 页,每页 20 条Action:
{"q": "wireless earbuds", "page": 2, "num": 20}Display Rules
展示规则
- Present results as a table: show ,
publicationNumber,title,inventor,assignee/publicationDateper item.grantDate - Show totals: always state the total hit count from /
searchInformationand the current page range.pagination - Date formatting: render /
filingDate/publicationDate/grantDateas readable dates.priorityDate - Links: surface and
patentLinkso the user can open the patent directly.pdf - Scholar results: when , visually distinguish Scholar articles from patents.
scholar=true - Large result sets: present a summary table first, note the total, and offer to expand specific patents.
- Expand via sibling skills: to get full bibliographic/legal/family detail for a found patent, direct the user to /
linkfox-zhihuiya-bibliography; do not re-query this search skill for details.linkfox-zhihuiya-legal-status - No fabrication: only display fields actually present in the response; never invent titles, dates, or assignees not returned.
- 以表格形式展示结果:每条结果显示、
publicationNumber、title、inventor、assignee/publicationDate字段。grantDate - 显示总数:始终说明/
searchInformation中的总命中数及当前页码范围。pagination - 日期格式化:将/
filingDate/publicationDate/grantDate格式化为易读的日期格式。priorityDate - 链接展示:显示和
patentLink链接,方便用户直接打开专利。pdf - Scholar结果区分:当时,在视觉上区分Scholar文章与专利。
scholar=true - 大结果集处理:先展示摘要表格,说明总数,并提供展开特定专利的选项。
- 通过关联技能获取详情:若要获取已找到专利的完整著录/法律状态/专利族详情,请引导用户使用/
linkfox-zhihuiya-bibliography技能;请勿重新调用本检索技能获取详情。linkfox-zhihuiya-legal-status - 禁止编造内容:仅展示响应中实际存在的字段;不得编造未返回的标题、日期或受让人信息。
Important Limitations
重要限制
- is the primary search input: a query without
qyields no meaningful results.q - range 10–100; values outside the range are rejected.
num - List-only output: this skill returns bibliographic list fields. Full text, legal status, family, and images must be fetched via dedicated skills.
linkfox-zhihuiya-* - No auto-retry on empty/error: if the query returns no hits or an error, do not automatically swap keywords or rewrite the query; confirm with the user first (each call costs credits).
- currently only supports
clusteredper the upstream provider.true - Date params use the form, not bare dates.
priority|filing|publication:YYYYMMDD
- 是核心检索输入:未提供
q参数的查询无法返回有意义的结果。q - 参数范围为10–100;超出范围的值会被拒绝。
num - 仅返回列表:本技能仅返回著录字段列表。全文、法律状态、专利族和图片必须通过专用的技能获取。
linkfox-zhihuiya-* - 空结果/错误时不自动重试:若查询无结果或返回错误,请勿自动更换关键词或重写查询;需先与用户确认(每次调用都会消耗积分)。
- 上游服务商当前仅支持。
clustered=true - 日期参数需使用格式,不能仅传入日期。
priority|filing|publication:YYYYMMDD
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable — Discover patents on Google Patents:
| User Says | Scenario |
|---|---|
| "检索 wireless earbuds 的专利" | Basic keyword search |
| "查谷歌专利" / "Google Patents 搜一下" | General patent search |
| "美国授权的 XX 专利" | Country + status filter |
| "2024 年至今公开的 XX 专利" | Date range filter |
| "受让人是 Apple 的专利" | Assignee search |
| "翻到第 2 页" | Pagination |
Not applicable — Needs beyond Google Patents list search:
- Bibliographic detail / full text / legal status of a known patent number (use etc.)
linkfox-zhihuiya-bibliography - Image-based patent search (use )
linkfox-zhihuiya-patent-image-search - Zhihuiya Analytics expression search with field-scoped boolean syntax (use )
linkfox-zhihuiya-retrieval-patent-search
Boundary judgment: When the user wants to discover patents by keyword/inventor/assignee/country/date on the public Google Patents corpus → this skill. When they have a patent number and want its detailed metadata → the skills.
linkfox-zhihuiya-*适用场景 — 在Google Patents上检索专利:
| User Says | Scenario |
|---|---|
| "检索 wireless earbuds 的专利" | 基础关键词检索 |
| "查谷歌专利" / "Google Patents 搜一下" | 通用专利检索 |
| "美国授权的 XX 专利" | 按国家+状态筛选 |
| "2024 年至今公开的 XX 专利" | 按日期范围筛选 |
| "受让人是 Apple 的专利" | 受让人检索 |
| "翻到第 2 页" | 分页检索 |
不适用场景 — 超出Google Patents列表检索的需求:
- 已知专利号的著录详情/全文/法律状态(使用等技能)
linkfox-zhihuiya-bibliography - 基于图片的专利检索(使用技能)
linkfox-zhihuiya-patent-image-search - 使用字段范围布尔语法的智汇芽分析表达式检索(使用技能)
linkfox-zhihuiya-retrieval-patent-search
边界判断:当用户希望通过关键词/发明人/受让人/国家/日期在公开的Google Patents语料库中发现专利时→使用本技能。当用户已有专利号并希望获取其详细元数据时→使用系列技能。
linkfox-zhihuiya-*积分消耗规则
积分消耗规则
消耗 8 积分。
用户会因积分消耗而支付费用。请充分评估:当需要高频调用本技能,或用户对积分消耗量预期不足时,务必提醒用户,由用户决定是否继续。
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
消耗 8 积分。
用户会因积分消耗而支付费用。请充分评估:当需要高频调用本技能,或用户对积分消耗量预期不足时,务必提醒用户,由用户决定是否继续。
反馈机制:
出现以下任一情况时,自动通过反馈API检测并上报反馈:
- 本技能描述的功能或用途与实际行为不符
- 本技能的结果不符合用户意图
- 用户对本技能表达不满或赞赏
- 任何你认为可以改进的内容
按照中的说明调用反馈API,请勿打断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。