name: linkfox-eureka-abstract-translated description: 通過Eureka專利資料平臺獲取專利標題和摘要的翻譯版本。當用戶要求專利摘要翻譯、專利標題翻譯、翻譯後的專利摘要、其他語言的專利內容、中文/英文/日文的專利摘要,或需要通過專利ID或公開號查詢特定專利的摘要、標題、Eureka專利摘要、patent abstract translation, patent title translation, Eureka patent, patent translation, abstract lookup時觸發此技能。當用戶提到Eureka或專利摘要查詢時也應觸發,即使未明確說"翻譯"。
This skill guides you on how to retrieve translated patent titles and abstracts from the Eureka patent data platform, supporting Chinese, English, and Japanese translations.
Eureka is a professional patent data 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 identifier) or a patentNumber (public publication/announcement number such as US20200012345A1 or CN112345678A). If both are provided, the patent ID takes priority.
7w4.net小蔥技能站收錄全網優質技能,值得收藏。
Family patent fallback: When the original patent has no abstract available, you can optionally substitute the abstract from a related family patent by setting replaceByRelated to 1.
| Parameter | Type | Required | Description |
|---|---|---|---|
| patentId | string | At least one of patentId or patentNumber | Internal patent ID. Separate multiple IDs with commas. Up to 100 patents per request. |
| patentNumber | string | At least one of patentId or patentNumber | Publication (announcement) number. Separate multiple numbers with commas. Up to 100 patents per request. |
| 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. |
patentId or patentNumber (or both). If both are supplied, patentId takes priority.en.replaceByRelated to 1 only when the user explicitly wants a substitute abstract from a family patent if the original is missing.| 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[].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 |
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"
5. Translate to Chinese with family patent fallback enabled
查詢專利CN112345678A的中文摘要,如果沒有就用同族專利替代。
Parameters: patentNumber = "CN112345678A", lang = "cn", replaceByRelated = 1
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.POST /tool-eureka/abstractDataTranslated(完整引數/響應/錯誤碼見 references/api.md)python scripts/eureka_abstract_translated.py '<JSON 引數>' [--inline]輸出策略(指令碼預設行為):
- 始終將完整響應寫入 <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-eureka-abstract-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 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:
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.
這是一款專業實用的專利翻譯工具,能快速查詢專利標題和摘要的中英日三種語言版本,批次查詢支援一次處理上百條,文件說明詳細且標註了已知風險。不足之處是觸發描述略顯囉嗦,部分專業術語對普通使用者不夠友好,批次查詢超過100條時需要手動分批操作。總體質量良好,適合有專利翻譯需求的使用者使用。