linkfox-zhihuiya-patent-forward-citation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent Forward Citation

智慧芽(PatSnap)专利前向引用查询

This skill guides you on how to query patent forward citation data from the Zhihuiya patent database, helping users discover the patents and non-patent literature cited by specific patents during their application process.
本技能将指导您如何从智慧芽(PatSnap)专利数据库查询专利前向引用数据,帮助用户发现特定专利在申请过程中引用的专利和非专利文献。

Core Concepts

核心概念

Forward citation refers to the patents and non-patent literature that a given patent has cited in its application documents. This is a fundamental aspect of patent analysis — understanding what prior art a patent references helps assess its novelty, scope, and technological lineage.
  • Patent citations (
    citedPatents
    ): Other patents referenced by the queried patent.
  • Non-patent literature citations (
    citedOthers
    ): Academic papers, technical reports, and other non-patent documents referenced by the queried patent.
Forward citation指的是某一专利在其申请文件中引用的专利和非专利文献。这是专利分析的基础环节——了解某一专利引用的在先技术有助于评估其新颖性、保护范围和技术传承。
  • 专利引用 (
    citedPatents
    ):被查询专利引用的其他专利。
  • 非专利文献引用 (
    citedOthers
    ):被查询专利引用的学术论文、技术报告及其他非专利文档。

Parameter Guide

参数指南

You must provide at least one of the following two parameters. If both are provided,
patentId
takes priority.
ParameterTypeRequiredDescription
patentIdstringConditionallyPatent ID(s). Multiple values separated by commas. Maximum 100 entries.
patentNumberstringConditionallyPublication/announcement number(s). Multiple values separated by commas. Maximum 100 entries.
Rules:
  1. At least one of
    patentId
    or
    patentNumber
    must be provided.
  2. If both are present,
    patentId
    is used preferentially.
  3. Multiple values are separated by commas (English commas).
  4. Each parameter supports up to 100 entries per request.
您必须提供以下两个参数中的至少一个。若同时提供,
patentId
优先级更高。
参数类型是否必填描述
patentIdstring可选(二选一必填)专利ID,多个值用英文逗号分隔,最多支持100条。
patentNumberstring可选(二选一必填)专利公开/公告号,多个值用英文逗号分隔,最多支持100条。
规则
  1. 必须提供
    patentId
    patentNumber
    中的至少一个。
  2. 若两者都提供,优先使用
    patentId
  3. 多个值用英文逗号分隔。
  4. 每个参数单次请求最多支持100条数据。

Response Fields

响应字段

FieldTypeDescription
totalintegerTotal number of records returned
dataarrayList of patent citation results
data[].patentIdstringPatent ID of the queried patent
data[].pnstringPublication/announcement number
data[].citedPatentsarrayList of cited patent documents
data[].citedOthersarrayList of cited non-patent literature
columnsarrayColumn definitions for rendering
costTokenintegerTokens consumed by the query
typestringRendering style hint
字段类型描述
totalinteger返回的记录总数
dataarray专利引用结果列表
data[].patentIdstring被查询专利的ID
data[].pnstring专利公开/公告号
data[].citedPatentsarray被引用的专利文档列表
data[].citedOthersarray被引用的非专利文献列表
columnsarray用于渲染的列定义
costTokeninteger查询消耗的积分
typestring渲染样式提示

调用方式

调用方式

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

Usage Examples

使用示例

1. Query forward citations by publication number
Look up the forward citations for patent US10000000B2.
Parameters:
{"patentNumber": "US10000000B2"}
2. Query forward citations for multiple patents
Find all citations for patents US10000000B2, US9876543B1, and EP3456789A1.
Parameters:
{"patentNumber": "US10000000B2,US9876543B1,EP3456789A1"}
3. Query forward citations by patent ID
Retrieve the cited references for patent ID 12345678.
Parameters:
{"patentId": "12345678"}
4. Query forward citations using both identifiers
Look up citations for patent ID 12345678 (publication number US10000000B2).
Parameters:
{"patentId": "12345678", "patentNumber": "US10000000B2"}
(patentId takes priority)
1. 通过公开号查询前向引用
Look up the forward citations for patent US10000000B2.
参数:
{"patentNumber": "US10000000B2"}
2. 查询多个专利的前向引用
Find all citations for patents US10000000B2, US9876543B1, and EP3456789A1.
参数:
{"patentNumber": "US10000000B2,US9876543B1,EP3456789A1"}
3. 通过专利ID查询前向引用
Retrieve the cited references for patent ID 12345678.
参数:
{"patentId": "12345678"}
4. 同时使用两种标识查询前向引用
Look up citations for patent ID 12345678 (publication number US10000000B2).
参数:
{"patentId": "12345678", "patentNumber": "US10000000B2"}
patentId
优先级更高)

Display Rules

展示规则

  1. Present data clearly: Show citation results in well-structured tables, separating patent citations from non-patent literature citations.
  2. Summarize counts: Always state the total number of cited patents and cited non-patent literature items.
  3. No fabrication: Only display data returned by the API. Do not infer or fabricate citation details.
  4. Error handling: When a query fails, explain the reason based on the error response and suggest the user verify their patent ID or publication number.
  5. Batch results: When querying multiple patents, organize results by patent so each patent's citations are clearly grouped.
  6. Empty results: If a patent has no citations, explicitly inform the user rather than showing an empty table.
  1. 清晰呈现数据:将引用结果以结构清晰的表格展示,区分专利引用和非专利文献引用。
  2. 汇总计数:务必说明被引用专利和被引用非专利文献的总数。
  3. 禁止编造:仅展示API返回的数据,不得推断或编造引用详情。
  4. 错误处理:查询失败时,根据错误响应解释原因,并建议用户验证专利ID或公开号。
  5. 批量结果处理:查询多个专利时,按专利分组整理结果,确保每个专利的引用信息清晰区分。
  6. 空结果处理:若某专利无引用记录,需明确告知用户,而非展示空表格。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent citation queries:
User SaysScenario
"What patents does XX cite"Forward citation lookup
"Show me the references for patent XX"Citation detail retrieval
"What prior art is cited by XX"Prior art reference query
"List the cited literature for XX"Non-patent literature lookup
"Citation analysis for patent XX"Combined patent + literature citation
"What documents does patent XX reference"General citation query
Not applicable -- Needs beyond forward citation data:
  • Backward/reverse citations (who cites this patent)
  • Patent validity or legal status
  • Patent family analysis
  • Patent full-text search
  • Patent classification or landscape analysis
适用场景 -- 专利引用查询:
用户表述场景
"XX专利引用了哪些专利"前向引用查询
"展示XX专利的参考文献"引用详情检索
"XX专利引用了哪些在先技术"在先技术引用查询
"列出XX专利引用的文献"非专利文献查询
"对XX专利进行引用分析"专利+文献综合引用分析
"XX专利参考了哪些文档"通用引用查询
不适用场景 -- 超出前向引用数据范围的需求:
  • 反向引用(哪些专利引用了本专利)
  • 专利有效性或法律状态
  • 专利族分析
  • 专利全文检索
  • 专利分类或技术格局分析

积分消耗规则

积分消耗规则

按动态规则计费:消耗积分 = 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条专利引证文献结果
重要提示:本技能的服务按倍数动态计算积分消耗,可能一次性消耗大量积分,必须提前提醒用户,由用户决定是否继续。

反馈

当出现以下任意情况时,通过反馈API自动检测并提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果不符合用户意图
  3. 用户表达了对本技能的不满或赞扬
  4. 任何您认为可以改进的内容
请按照
references/api.md
中的指定方式调用反馈API,不得打断用户的操作流程。

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