← Back to Skills Marketplace
linkfox-ai

Zhihuiya Abstract Translated

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
84
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-zhihuiya-abstract-translated
Description
从智慧芽(PatSnap)专利数据库获取专利标题和摘要的翻译版本。当用户要求专利摘要翻译、专利标题翻译、翻译后的专利摘要、其他语言的专利内容、中文/英文/日文的专利摘要,或需要通过专利ID或公开号查询特定专利的摘要、标题、patent abstract translation, patent title tran...
README (SKILL.md)

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 Usage

This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, and response structure. You can also execute scripts/zhihuiya_abstract_translated.py directly to run queries.

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

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.

Usage Guidance
This skill appears to be a straightforward client for LinkFox's Zhihuiya translation API, but metadata omits the required API credential. Before installing or enabling: 1) verify you trust the domains tool-gateway.linkfox.com and skill-api.linkfox.com and the LinkFox owner (no homepage is provided); 2) confirm with the publisher why LINKFOXAGENT_API_KEY is not declared in the registry and what permissions that key grants; 3) if you proceed, create a scoped API key with minimal permissions and test with non-sensitive queries; 4) review the Feishu wiki URL in the docs to confirm official onboarding instructions; and 5) monitor network activity and rotate/revoke the key if anything unexpected occurs.
Capability Analysis
Type: OpenClaw Skill Name: linkfox-zhihuiya-abstract-translated Version: 1.0.0 The skill is designed to retrieve and translate patent abstracts from the Zhihuiya (PatSnap) database via the LinkFox API gateway. The Python script (zhihuiya_abstract_translated.py) safely handles API requests using standard libraries, and the instructions in SKILL.md are well-aligned with the stated functionality, including appropriate error handling and telemetry (feedback API) typical for this ecosystem.
Capability Assessment
Purpose & Capability
The skill's stated purpose (fetch translated patent titles/abstracts from Zhihuiya/PatSnap) matches the code and documentation: both the script and references/api.md call a LinkFox tool gateway API. However, the registry metadata claims no required environment variables or primary credential while the implementation requires LINKFOXAGENT_API_KEY for Authorization. The absence of a declared required credential in the metadata is an incoherence.
Instruction Scope
SKILL.md and references/api.md confine instructions to calling the LinkFox API endpoint and formatting results; the included script (scripts/zhihuiya_abstract_translated.py) only reads the provided JSON parameters and the LINKFOXAGENT_API_KEY, makes an HTTPS POST, and prints the JSON response. There are no instructions to read unrelated local files or environment variables beyond the API key.
Install Mechanism
No install spec is provided (instruction-only with an optional helper script). That is low-risk from an install perspective. The included Python script is runnable but nothing in the package performs arbitrary downloads or writes during installation.
Credentials
The implementation expects a single environment variable LINKFOXAGENT_API_KEY (used as an Authorization header) which is proportionate to calling a private API. However, the registry metadata incorrectly lists no required env vars/primary credential. This mismatch is a meaningful gap: the package will fail or prompt for a key at runtime, and the absent declaration prevents automated reviewers from knowing the skill requires a secret.
Persistence & Privilege
The skill does not request permanent presence (always=false) and does not attempt to modify other skills or system-wide configuration. It only makes outbound HTTPS calls to the documented endpoints when invoked.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-zhihuiya-abstract-translated
  3. After installation, invoke the skill by name or use /linkfox-zhihuiya-abstract-translated
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-zhihuiya-abstract-translated
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Zhihuiya Abstract Translated?

从智慧芽(PatSnap)专利数据库获取专利标题和摘要的翻译版本。当用户要求专利摘要翻译、专利标题翻译、翻译后的专利摘要、其他语言的专利内容、中文/英文/日文的专利摘要,或需要通过专利ID或公开号查询特定专利的摘要、标题、patent abstract translation, patent title tran... It is an AI Agent Skill for Claude Code / OpenClaw, with 84 downloads so far.

How do I install Zhihuiya Abstract Translated?

Run "/install linkfox-zhihuiya-abstract-translated" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Zhihuiya Abstract Translated free?

Yes, Zhihuiya Abstract Translated is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Zhihuiya Abstract Translated support?

Zhihuiya Abstract Translated is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Zhihuiya Abstract Translated?

It is built and maintained by linkfox-ai (@linkfox-ai); the current version is v1.0.0.

💬 Comments