name: linkfox-zhihuiya-description-data-translated description: 從智慧芽獲取翻譯後的專利說明書(描述)文本。當用戶要求專利說明書翻譯、其他語言的專利全文、翻譯後的專利全文,或想檢視中文、英文、日文版的專利說明書、patent specification translation, patent description translation, PatSnap, patent translation時觸發此技能。當用戶提供專利ID或公開號並要求獲取其他語言的說明書/描述內容,或提到"專利說明書翻譯"、"描述翻譯"、"翻譯全文"等類似意圖時也應觸發。
This skill guides you on how to retrieve translated patent description (specification) text via the Zhihuiya data service. It supports translation into Chinese, English, or Japanese, and can look up patents by patent ID or publication number.
本技能來自小蔥技能站7w4.net。
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 Zhihuiya 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).POST /zhihuiya/descriptionDataTranslated(完整引數/響應/錯誤碼見 references/api.md)python scripts/zhihuiya_description_translated.py '<JSON 引數>' [--inline]輸出策略(指令碼預設行為):
- 始終將完整響應寫入 <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-zhihuiya-description-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 進入上下文。
發生以下異常情況時,採用以下措施來處理:
LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY。1. Get English translation of a patent description by publication number
patentNumber: "US10123456B2"
lang: "en"
2. Get Chinese translation of a patent description by patent ID
patentId: "abc123def"
lang: "cn"
3. Batch query with family member fallback
patentNumber: "US10123456B2,EP3456789A1,CN112345678A"
lang: "en"
replaceByRelated: 1
4. Japanese translation of a specific patent
patentNumber: "JP2021012345A"
lang: "jp"
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.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
按動態規則計費:消耗積分 = 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.
這個 Skill 質量不錯,文件齊全、使用說明清晰,能自動處理大量專利翻譯結果併合理控制輸出。它對積分消耗、認證失敗等異常情況有完善的處理機制,降低了使用風險。翻譯支援中英日三種語言,批次查詢也很方便。美中不足的是缺乏示例資料,新使用者可能需要實際呼叫才能理解返回結果。另外嚴重依賴 LinkFox 平臺環境,在其他環境下無法獨立使用。