Eureka-專利說明書翻譯

👤 linkfox-ai 📦 v1.0.4 ⭐ 4.5 ⬇️ 817 下載
💼 行業專業 免費 🔑 需 API Key

📖 技能介紹


name: linkfox-eureka-description-translated description: 通過Eureka專利資料平臺獲取翻譯後的專利說明書(描述)文本。當用戶要求專利說明書翻譯、其他語言的專利全文、翻譯後的專利全文,或想檢視中文、英文、日文版的專利說明書、Eureka專利說明書、patent specification translation, patent description translation, Eureka patent, patent translation時觸發此技能。當用戶提供專利ID或公開號並要求獲取其他語言的說明書/描述內容,或提到"專利說明書翻譯"、"描述翻譯"、"翻譯全文"等類似意圖時也應觸發。


Eureka Patent Description Translation

This skill guides you on how to retrieve translated patent description (specification) text via the Eureka patent data platform. It supports translation into Chinese, English, or Japanese, and can look up patents by patent ID or publication number.

Core Concepts

A patent description (also called "specification") is the full technical text of a patent document. This tool fetches the translated version of that text from the Eureka patent database, supporting three target languages: Chinese (cn), English (en), and Japanese (jp).

When a patent's description is unavailable, the tool can optionally substitute it with a description from a patent family member (a related patent filed in another jurisdiction covering the same invention).

Parameter Guide

Parameter Type Required Description
patentId string Conditionally Patent ID. At least one of patentId or patentNumber must be provided. If both are given, patentId takes priority. Multiple values separated by commas; max 100.
patentNumber string Conditionally Publication (announcement) number. At least one of patentId or patentNumber must be provided. Multiple values separated by commas; max 100.
lang string No Target translation language. Supported values: en (English, default), cn (Chinese), jp (Japanese).
replaceByRelated integer No Whether to substitute with a patent family member's description when the original is unavailable. 1 = yes, 0 = no (default).

Key Rules

  1. At least one identifier required: Either patentId or patentNumber must be provided. If the user gives a publication number like "US10123456B2", use patentNumber. If they give a numeric patent ID, use patentId.
  2. Priority: When both identifiers are supplied, patentId takes precedence.
  3. Batch queries: Up to 100 patents can be queried at once by passing comma-separated values.
  4. Default language: If the user does not specify a language, default to en (English).

Response Fields

Field Description
total Number of patent records returned
data Array of patent objects (see below)
data[].patentId Internal patent ID
data[].pn Publication (announcement) number
data[].description Translated patent description text
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. Get English translation of a patent description by publication number

Get the English description for patent US10123456B2.

Parameters: patentNumber = "US10123456B2", lang = "en"

2. Get Chinese translation of a patent description by patent ID

Get the Chinese translation of description for patent ID abc123def.

Parameters: patentId = "abc123def", lang = "cn"

3. Batch query with family member fallback

Get English descriptions for US10123456B2, EP3456789A1, CN112345678A. Use family patents if unavailable.

Parameters: patentNumber = "US10123456B2,EP3456789A1,CN112345678A", lang = "en", replaceByRelated = 1

4. Japanese translation of a specific patent

Translate the description of JP2021012345A to Japanese.

Parameters: patentNumber = "JP2021012345A", lang = "jp"

5. Chinese translation with family fallback

查詢專利US10123456B2的中文說明書,如果沒有就用同族專利替代。

Parameters: patentNumber = "US10123456B2", lang = "cn", replaceByRelated = 1

Display Rules

  1. Present the translated text clearly: Show the patent description text directly. For long descriptions, present a summary or the first section and inform the user the full text is available.
  2. Identify substitutions: When pnRelated is present in the response, clearly inform the user that the description was sourced from a family member patent and show the related publication number.
  3. Batch results: When multiple patents are returned, present them in a structured list with clear separation between each patent's description.
  4. Error handling: When a query fails, explain the reason based on the response and suggest checking the patent ID or publication number for correctness.
  5. No fabrication: Never invent or paraphrase patent text. Only display what the API returns.

呼叫方式

  • API 端點POST /tool-eureka/descriptionDataTranslated(完整引數/響應/錯誤碼見 references/api.md
  • Python 指令碼python scripts/eureka_description_translated.py '<JSON 引數>' [--inline]
  • 成本約束:本工具會消耗積分;同一會話同一引數組合預設只調用一次,指令碼帶 24h 本地快取。失敗/空結果不得自動換關鍵詞、翻頁或改郵編連續試探;需要繼續檢索時先向使用者說明會產生額外消耗。

輸出策略(指令碼預設行為): - 始終將完整響應寫入 <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-eureka-description-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.
  • Description only: This tool returns only the description/specification text, not titles, abstracts, or claims.
  • Family replacement is optional: The substitute family patent description is only provided when explicitly requested via replaceByRelated = 1.
  • Batch limit: A maximum of 100 patents per request.

User Expression & Scenario Quick Reference

Applicable -- Patent description/specification translation queries:

User Says Scenario
"Translate this patent description to English" Single patent translation
"I need the Chinese version of patent US10123456" Specific language translation
"Get me the specification text for these patents" Batch patent description retrieval
"What does patent CN112345678A describe?" Patent description lookup
"Show me the Japanese translation of this patent's full text" Japanese translation
"The description is missing, can you try a family member?" Family member fallback

Not applicable -- Needs beyond patent description translation:

  • Patent search or discovery (finding patents by keyword/topic)
  • Patent claim analysis or claim chart generation
  • Patent legal status or prosecution history
  • Patent citation or reference analysis
  • Patent portfolio analytics or statistics

Boundary -- Edge cases:

  • If the user asks for "patent full text" without specifying, clarify whether they want description, claims, or abstract.
  • If the user provides more than 100 patents, split into multiple batches.

積分消耗規則

按動態規則計費:消耗積分 = 81 × max(返回條數, 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

本技能來自小蔥技能站7w4.net。

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, visit LinkFox Skills.

🤖 AI 評測

這個Skill功能定位明確,專門用於獲取翻譯後的專利說明書,支援中英日三種語言,文件示例豐富,使用指南詳細。指令碼能自動快取結果、大檔案智慧摘要,方便實用。主要缺點是某些功能描述與實際程式碼行為存在細微不一致,可能導致使用者困惑。另外批次查詢時費用可能較高,需要使用者留意。整體而言,這是一個功能實用、文件詳盡的專業級專利翻譯工具,適合有專利翻譯需求的使用者使用。

📊 多維度評分

適應性4.6
規範性4.1
有效性4.4
可靠性4.7
可信度5

📁 包含檔案 (5 個)

📄 SKILL.md 10 KB
📄 _meta.json 156 B
📄 references/api.md 4.2 KB
📄 scripts/eureka_description_translated.py 12.8 KB
📄 skill-card.md 2.6 KB