linkfox-zhihuiya-abstract-data-translated

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent Abstract (Translated)

智慧芽(PatSnap)专利摘要(翻译版)

This skill guides you on how to retrieve translated patent titles and abstracts from the Zhihuiya (PatSnap) patent database, supporting Chinese, English, and Japanese translations.
本技能将指导您如何从智慧芽(PatSnap)专利数据库获取翻译后的专利标题和摘要,支持中文、英文和日文翻译。

Core Concepts

核心概念

Zhihuiya (PatSnap) is a leading patent intelligence platform. This tool queries its database to return translated titles and abstracts for one or more patents. You can look up patents by patent ID or publication (announcement) number, and receive translations in Chinese, English, or Japanese.
Patent identification: Each patent can be identified by either a
patentId
(internal Zhihuiya identifier) or a
patentNumber
(public publication/announcement number such as
US20200012345A1
or
CN112345678A
). If both are provided, the patent ID takes priority.
Family patent fallback: When the original patent has no abstract available, you can optionally substitute the abstract from a related family patent by enabling the replacement option.
智慧芽(PatSnap)是领先的专利情报平台。本工具可查询其数据库,返回一项或多项专利的翻译后标题和摘要。您可以通过专利ID公开(公告)号查询专利,并获取中文、英文或日文的翻译结果。
专利标识:每项专利可通过
patentId
(智慧芽内部标识)或
patentNumber
(公开公告号,如
US20200012345A1
CN112345678A
)进行标识。若同时提供两者,将优先使用专利ID。
同族专利 fallback:当原始专利无摘要可用时,您可启用替换选项,选择使用相关同族专利的摘要替代。

Parameter Guide

参数指南

ParameterTypeRequiredDescription
patentIdstringAt least one of patentId or patentNumberZhihuiya internal patent ID. Separate multiple IDs with commas. Max length 60,000 characters.
patentNumberstringAt least one of patentId or patentNumberPublication (announcement) number. Separate multiple numbers with commas. Max length 60,000 characters.
replaceByRelatedintegerNoWhether to substitute a family patent abstract when the original is unavailable.
1
= yes,
0
= no. Default
0
.
langstringNoTarget translation language.
en
= English (default),
cn
= Chinese,
jp
= Japanese.
参数类型是否必填说明
patentIdstringpatentId或patentNumber至少填一个智慧芽内部专利ID。多个ID用逗号分隔。最大长度60,000字符。
patentNumberstringpatentId或patentNumber至少填一个公开(公告)号。多个编号用逗号分隔。最大长度60,000字符。
replaceByRelatedinteger当原始专利无摘要时,是否使用同族专利摘要替代。
1
=是,
0
=否。默认值
0
langstring目标翻译语言。
en
=英文(默认),
cn
=中文,
jp
=日文。

Key Rules

关键规则

  1. At least one identifier is required: You must provide either
    patentId
    or
    patentNumber
    (or both). If both are supplied,
    patentId
    takes priority.
  2. Batch queries: Multiple patents can be queried at once by separating values with commas.
  3. Default language is English: When the user does not specify a language, use
    en
    .
  4. Family fallback: Set
    replaceByRelated
    to
    1
    only when the user explicitly wants a substitute abstract from a family patent if the original is missing.
  1. 至少需提供一个标识:您必须提供
    patentId
    patentNumber
    (或两者都提供)。若同时提供,
    patentId
    优先。
  2. 批量查询:可通过逗号分隔值,一次性查询多项专利。
  3. 默认语言为英文:当用户未指定语言时,使用
    en
  4. 同族专利 fallback:仅当用户明确要求在原始专利摘要缺失时使用同族专利替代时,才将
    replaceByRelated
    设为
    1

Response Fields

响应字段

FieldDescription
totalNumber of patent records returned
dataArray of patent objects (see below)
data[].patentIdZhihuiya internal patent ID
data[].pnPublication (announcement) number
data[].titleTranslated patent title
data[].abstractTextTranslated patent abstract
data[].pnRelatedPublication number of the substitute family patent (only present when family replacement was used)
costTokenTokens consumed by this request
字段说明
total返回的专利记录数量
data专利对象数组(详见下文)
data[].patentId智慧芽内部专利ID
data[].pn公开(公告)号
data[].title翻译后的专利标题
data[].abstractText翻译后的专利摘要
data[].pnRelated替代同族专利的公开号(仅当使用同族专利替换时存在)
costToken本次请求消耗的积分

Usage Examples

使用示例

1. Translate a single patent abstract to English by publication number
Look up patent number US20200012345A1 and give me the English abstract.
Parameters:
patentNumber = "US20200012345A1"
,
lang = "en"
2. Translate multiple patents to Chinese
Get the Chinese translation of abstracts for patents CN112345678A and US20200067890A1.
Parameters:
patentNumber = "CN112345678A,US20200067890A1"
,
lang = "cn"
3. Look up by patent ID with family fallback
Get the Japanese abstract for patent ID 12345678. If the abstract is unavailable, use a family patent instead.
Parameters:
patentId = "12345678"
,
lang = "jp"
,
replaceByRelated = 1
4. Batch query by patent IDs
Translate the titles and abstracts for these patent IDs: 111111, 222222, 333333.
Parameters:
patentId = "111111,222222,333333"
,
lang = "en"
1. 通过公开号将单个专利摘要翻译成英文
Look up patent number US20200012345A1 and give me the English abstract.
参数:
patentNumber = "US20200012345A1"
,
lang = "en"
2. 将多项专利翻译成中文
Get the Chinese translation of abstracts for patents CN112345678A and US20200067890A1.
参数:
patentNumber = "CN112345678A,US20200067890A1"
,
lang = "cn"
3. 通过专利ID查询并启用同族专利 fallback
Get the Japanese abstract for patent ID 12345678. If the abstract is unavailable, use a family patent instead.
参数:
patentId = "12345678"
,
lang = "jp"
,
replaceByRelated = 1
4. 通过专利ID批量查询
Translate the titles and abstracts for these patent IDs: 111111, 222222, 333333.
参数:
patentId = "111111,222222,333333"
,
lang = "en"

Display Rules

显示规则

  1. Present data clearly: Show results in a well-structured table with patent number, title, and abstract.
  2. Indicate language: Mention the translation language in the output header so users know which language the results are in.
  3. Family patent notice: If
    pnRelated
    is present in any result, explicitly inform the user that the abstract was sourced from a family patent and show the substitute publication number.
  4. Long abstracts: For very long abstracts, display the full text without truncation so users can review the complete content.
  5. Error handling: When a query fails or returns no results, explain the likely cause (e.g., invalid patent number, patent not found in database) and suggest corrections.
  6. No subjective commentary: Present the translated text as-is without adding interpretation or legal analysis of the patent content.
  1. 清晰呈现数据:将结果显示在结构清晰的表格中,包含专利号、标题和摘要。
  2. 标注语言:在输出头部注明翻译语言,让用户知晓结果的语言类型。
  3. 同族专利提示:若任何结果中存在
    pnRelated
    ,需明确告知用户该摘要来源于同族专利,并显示替代的公开号。
  4. 长摘要处理:对于极长的摘要,完整显示文本,不截断,以便用户查看全部内容。
  5. 错误处理:当查询失败或无结果返回时,解释可能的原因(如无效专利号、数据库中未找到该专利)并建议修正方案。
  6. 无主观评论:原样呈现翻译文本,不添加对专利内容的解读或法律分析。

调用方式

调用方式

  • API 端点
    POST /zhihuiya/abstractDataTranslated
    (完整参数/响应/错误码见
    references/api.md
  • Python 脚本
    python scripts/zhihuiya_abstract_translated.py '<JSON 参数>' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。
输出策略(脚本默认行为)
  • 始终将完整响应写入
    <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-zhihuiya-abstract-data-translated-<timestamp>.json
    <cwd>
    为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;
    <session>
    取自环境变量
    SESSION_ID
    ,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如
    total
    /
    costToken
    、最大列表字段的长度 + 前 3 条样本)
  • --inline
    强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用
jq
ConvertFrom-Json
从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
  • API 端点
    POST /zhihuiya/abstractDataTranslated
    (完整参数/响应/错误码详见
    references/api.md
  • Python 脚本
    python scripts/zhihuiya_abstract_translated.py '<JSON 参数>' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认仅调用一次,脚本带有24小时本地缓存。失败/空结果不得自动更换关键词、翻页或修改邮编连续试探;需要继续检索时,需先向用户说明会产生额外消耗。
输出策略(脚本默认行为)
  • 始终将完整响应写入
    <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-zhihuiya-abstract-data-translated-<timestamp>.json
    <cwd>
    为脚本执行时的工作目录,在Claude Code中即当前项目目录;
    <session>
    取自环境变量
    SESSION_ID
    ,按用户任务自动聚合;禁止写入/tmp,若当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后将完整JSON打印到stdout
  • 响应体 > 8 KB:落盘后stdout仅输出摘要信息(顶层字段、常见计数如
    total
    /
    costToken
    、最大列表字段的长度 + 前3条样本)
  • 添加
    --inline
    参数可强制将全量内容打印到stdout(同样会落盘)
读数据建议:先查看摘要判断是否满足需求;需要具体字段时,优先使用
jq
ConvertFrom-Json
从保存的JSON文件中按需抽取,避免将整份JSON带入上下文。

解决认证和积分问题

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
发生以下异常情况时,采用
references/onboarding.md
中的指引解决问题:

异常情况

异常情况

  • 未配置API Key:环境变量未配置
    LINKFOX_AGENT_API_KEY
    ,也未配置
    LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。
  • 未配置API Key:环境变量未配置
    LINKFOX_AGENT_API_KEY
    ,也未配置
    LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息包含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

Important Limitations

重要限制

  • Identifier required: At least one of patent ID or publication number must be provided; the tool cannot perform keyword-based searches.
  • Translation languages: Only Chinese (
    cn
    ), English (
    en
    ), and Japanese (
    jp
    ) are supported.
  • No full-text retrieval: This tool returns only titles and abstracts, not full patent claims or descriptions.
  • Family replacement is optional: The substitute family patent abstract is only provided when explicitly requested via
    replaceByRelated = 1
    .
  • 必须提供标识:至少需提供专利ID或公开号中的一个;本工具不支持基于关键词的搜索。
  • 翻译语言:仅支持中文(
    cn
    )、英文(
    en
    )和日文(
    jp
    )。
  • 无全文检索:本工具仅返回标题和摘要,不返回完整的专利权利要求书或说明书。
  • 同族专利替换为可选功能:仅当通过
    replaceByRelated = 1
    明确请求时,才会提供同族专利的替代摘要。

User Expression & Scenario Quick Reference

用户表达与场景速查

Applicable -- Patent abstract and title translation queries:
User SaysScenario
"Translate this patent abstract"Single patent translation
"What does patent XX say / what is it about"Abstract lookup
"Get the Chinese/Japanese version of this patent"Specific language translation
"Look up the abstract for patent number XX"Publication number lookup
"Translate these patents in batch"Batch translation
"The abstract is missing, try a family patent"Family patent fallback
Not applicable -- Needs beyond abstract translation:
  • Full patent text, claims, or description retrieval
  • Patent search by keyword, classification, or applicant
  • Patent legal status, citation analysis, or landscape reports
  • Patent valuation or infringement analysis
适用场景 -- 专利摘要和标题翻译查询:
用户表述场景
"Translate this patent abstract"单个专利翻译
"What does patent XX say / what is it about"摘要查询
"Get the Chinese/Japanese version of this patent"指定语言翻译
"Look up the abstract for patent number XX"公开号查询
"Translate these patents in batch"批量翻译
"The abstract is missing, try a family patent"同族专利 fallback
不适用场景 -- 超出摘要翻译的需求:
  • 完整专利文本、权利要求书或说明书检索
  • 通过关键词、分类或申请人进行专利搜索
  • 专利法律状态、引用分析或态势报告
  • 专利估值或侵权分析

积分消耗规则

积分消耗规则

按动态规则计费:消耗积分 = 81 × 返回data条数。每条为 1 条专利摘要翻译结果
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
按动态规则计费:消耗积分 = 81 × 返回data条数。每条为 1 条专利摘要翻译结果
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills