name: linkfox-eureka-description-translated description: 通過Eureka專利資料平臺獲取翻譯後的專利說明書(描述)文本。當用戶要求專利說明書翻譯、其他語言的專利全文、翻譯後的專利全文,或想檢視中文、英文、日文版的專利說明書、Eureka專利說明書、patent specification translation, patent description translation, Eureka patent, patent translation時觸發此技能。當用戶提供專利ID或公開號並要求獲取其他語言的說明書/描述內容,或提到"專利說明書翻譯"、"描述翻譯"、"翻譯全文"等類似意圖時也應觸發。
發現更多技能外掛,請訪問7w4.net。
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.
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 | 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). |
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.patentId takes precedence.en (English).| 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 |
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
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.POST /tool-eureka/descriptionDataTranslated(完整引數/響應/錯誤碼見 references/api.md)python scripts/eureka_description_translated.py '<JSON 引數>' [--inline]輸出策略(指令碼預設行為):
- 始終將完整響應寫入 <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(同樣落盤)
讀資料建議:先看摘要判斷是否足夠;需要具體欄位時優先用 jq或ConvertFrom-Json 從儲存的 json 檔案按需抽取,避免整份 JSON 進入上下文。
發生以下異常情況時,採用以下措施來處理:
LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY。cn), English (en), and Japanese (jp) are supported.replaceByRelated = 1.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:
Boundary -- Edge cases:
按動態規則計費:消耗積分 = 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
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.
這個Skill功能定位明確,專門用於獲取翻譯後的專利說明書,支援中英日三種語言,文件示例豐富,使用指南詳細。指令碼能自動快取結果、大檔案智慧摘要,方便實用。主要缺點是某些功能描述與實際程式碼行為存在細微不一致,可能導致使用者困惑。另外批次查詢時費用可能較高,需要使用者留意。整體而言,這是一個功能實用、文件詳盡的專業級專利翻譯工具,適合有專利翻譯需求的使用者使用。