智慧芽-專利標題與摘要翻譯

👤 linkfox-ai 📦 v1.0.4 ⭐ 4.5 ⬇️ 402 下載
📚 知識管理 免費 🔑 需 API Key

📖 技能介紹


name: linkfox-zhihuiya-abstract-data-translated description: 從智慧芽(PatSnap)專利資料庫獲取專利標題和摘要的翻譯版本。當用戶要求專利摘要翻譯、專利標題翻譯、翻譯後的專利摘要、其他語言的專利內容、中文/英文/日文的專利摘要,或需要通過專利ID或公開號查詢特定專利的摘要、標題、patent abstract translation, patent title translation, PatSnap, patent translation, abstract lookup時觸發此技能。當用戶提到智慧芽、PatSnap或專利摘要查詢時也應觸發,即使未明確說"翻譯"。


Zhihuiya Patent Abstract (Translated)

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.

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.

Parameter Guide

Parameter Type Required Description
patentId string At least one of patentId or patentNumber Zhihuiya internal patent ID. Separate multiple IDs with commas. Max length 60,000 characters.
patentNumber string At least one of patentId or patentNumber Publication (announcement) number. Separate multiple numbers with commas. Max length 60,000 characters.
replaceByRelated integer No Whether to substitute a family patent abstract when the original is unavailable. 1 = yes, 0 = no. Default 0.
lang string No Target translation language. en = English (default), cn = Chinese, jp = Japanese.

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.

Response Fields

Field Description
total Number of patent records returned
data Array of patent objects (see below)
data[].patentId Zhihuiya internal patent ID
data[].pn Publication (announcement) number
data[].title Translated patent title
data[].abstractText Translated patent abstract
data[].pnRelated Publication number of the substitute family patent (only present when family replacement was used)
costToken Tokens consumed by this request

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"

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.

呼叫方式

  • 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(同樣落盤)

讀資料建議:先看摘要判斷是否足夠;需要具體欄位時優先用 jqConvertFrom-Json 從儲存的 json 檔案按需抽取,避免整份 JSON 進入上下文。

解決認證和積分問題

發生以下異常情況時,採用以下措施來處理:

異常情況

  • 未配置API Key:環境變數未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 響應401或402狀態碼
  • 響應提示積分或餘額不足:訊息含"積分餘額不足/計費不足/餘額不足/quota exceeded/insufficient balance/套餐到期/需充值/請充值",或類似含義的內容。

措施

  • 優先採用skill內的 onboarding.md 引導解決問題。
  • 如找不到 onboarding.md 檔案,則載入 /linkfox-onboarding 這個skill並根據它的引導來處理。如未安裝請先安裝:
    • 下載 https://agent-files.linkfox.com/skills/linkfox-onboarding/release.zip,解壓後安裝這個skill。如需使用者授權才可下載,要詢問使用者獲得授權,你不能自己放棄下載。
  • 兜底措施:僅當前面兩個措施經過所有努力都走不通時,才提示使用者依據 https://skill.linkfox.com/linkfoxskills/guide.htm 指引獲取API Key,或去 https://os.linkfox.com/ 補充積分。

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.

User Expression & Scenario Quick Reference

Applicable -- Patent abstract and title translation queries:

User Says Scenario
"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

積分消耗規則

按動態規則計費:消耗積分 = 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.

小蔥技能站7w4.net,專業的AI技能分享平臺。


For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.

🤖 AI 評測

這是一款質量可靠的專利摘要翻譯工具,支援中英日三種語言,能快速獲取專利標題和摘要的翻譯結果。文件說明詳細,錯誤提示充分,積分消耗規則透明。但使用時會消耗積分,批次查詢需注意成本,且僅支援通過專利號或ID查詢,不支援關鍵詞搜尋。使用前建議確認所需專利已在智慧芽資料庫中收錄。

📊 多維度評分

適應性4.8
規範性4.3
有效性4.5
可靠性4.4
可信度5

📁 包含檔案 (5 個)

📄 SKILL.md 9.6 KB
📄 _meta.json 160 B
📄 references/api.md 4 KB
📄 scripts/zhihuiya_abstract_translated.py 12.8 KB
📄 skill-card.md 2.9 KB