← Back to Skills Marketplace
linkfox-ai

Eureka Description

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
60
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-eureka-description
Description
通过Eureka专利数据平台获取专利说明书(描述)数据。当用户提到专利说明书、专利全文、专利技术描述、专利实施方式详情、Eureka说明书数据、patent specification, patent full text, technical description, embodiment details, Eu...
README (SKILL.md)

Eureka Patent Description Data

This skill guides you on how to query patent description (specification) data from the Eureka patent data platform, helping users retrieve the full-text description content of specific patents.

Core Concepts

A patent description (also called the specification) is the detailed technical document that accompanies a patent filing. It discloses how the invention works, preferred embodiments, and other technical details required by patent law. This tool queries the Eureka platform to return description data for one or more patents identified by their internal patent ID or public publication number.

Identifier priority: When both a patent ID and a publication number are provided for the same query, the patent ID takes precedence.

Family substitution: If the description for a given patent is unavailable, the tool can optionally return the description from a related family member patent instead.

Parameters

Parameter Type Required Description
patentId string Conditionally Internal patent ID. At least one of patentId or patentNumber must be provided. 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.
replaceByRelated string No Whether to substitute a family patent's description when the target patent's description is unavailable. 1 = yes, 0 = no.

Response Fields

Field Type Description
total integer Number of patent records returned
data array List of patent description objects
data[].patentId string Patent ID
data[].pn string Publication number
data[].pnRelated string Publication number of the substitute family patent (only present when family substitution is used)
data[].description array Description / specification content sections
columns array Column definitions for rendering
costToken integer Tokens consumed by the query
type string Rendering style hint

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/eureka_description.py directly to run queries.

How to Build Queries

Querying by Publication Number

When users provide a patent publication number (e.g., CN115099012A, US20230012345A1), pass it via the patentNumber parameter:

patentNumber: "CN115099012A"

Querying by Patent ID

When users provide internal patent IDs, pass them via the patentId parameter:

patentId: "abc123def456"

Batch Queries

Both patentId and patentNumber accept comma-separated values for batch lookups (up to 100):

patentNumber: "CN115099012A,US20230012345A1,EP4123456A1"

Family Substitution

When a patent's description is not available in the database and the user still wants content, enable family substitution:

patentNumber: "CN115099012A"
replaceByRelated: "1"

Usage Examples

1. Look up a single patent description by publication number

patentNumber: "CN115099012A"

2. Look up descriptions for multiple patents at once

patentNumber: "CN115099012A,US20230012345A1"

3. Look up with family substitution enabled

patentNumber: "CN115099012A"
replaceByRelated: "1"

4. Look up by patent ID

patentId: "some-patent-id"

Display Rules

  1. Present data faithfully: Show the returned description content clearly without altering technical details or adding subjective interpretation.
  2. Structured output: When the description contains multiple sections (background, summary, detailed description, claims, etc.), present them with clear headings for readability.
  3. Family substitution notice: If the response includes a pnRelated field, explicitly inform the user that the description was sourced from a related family patent and state the substitute publication number.
  4. Batch results: When multiple patents are returned, clearly separate each patent's content with its publication number as a heading.
  5. Error handling: When a query fails or returns no data, explain the reason and suggest the user verify the patent ID or publication number.

Important Limitations

  • Identifier requirement: At least one of patentId or patentNumber must be provided; the tool cannot search by keyword or applicant name.
  • Batch limit: A maximum of 100 patents can be queried in a single request.
  • Availability: Not all patents have descriptions available in the database. Use replaceByRelated: "1" to attempt family substitution when needed.
  • Priority rule: If both patentId and patentNumber are supplied, patentId takes precedence.

User Expression & Scenario Quick Reference

Applicable -- Queries about patent description / specification content:

User Says Scenario
"Show me the description of patent XX" Single patent description lookup
"Get the full specification for these patents" Batch patent description retrieval
"I need the detailed text of CN115099012A" Lookup by publication number
"Can you find a family patent's description instead" Family substitution query
"What does this patent describe technically" Description content review

Not applicable -- Needs beyond patent description data:

  • Patent search by keyword, applicant, or classification
  • Patent claim analysis or claim chart generation
  • Patent legal status or prosecution history
  • Patent landscape or statistical analysis
  • Freedom-to-operate or infringement opinions

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.

Usage Guidance
This skill appears to do what it says — call LinkFox's Eureka API to fetch patent descriptions — but the package metadata omitted a required API key. Before installing, confirm with the skill publisher that LINKFOXAGENT_API_KEY is needed and where to obtain it. Only set that environment variable if you trust the LinkFox endpoints (tool-gateway.linkfox.com and skill-api.linkfox.com) and the skill owner. If you need higher assurance, ask the publisher to update the registry metadata to declare LINKFOXAGENT_API_KEY as a required credential and to provide a homepage or publisher contact. Also review any organizational policies about storing API keys in agent environments.
Capability Analysis
Type: OpenClaw Skill Name: linkfox-eureka-description Version: 1.0.0 The skill bundle is a legitimate tool for retrieving patent description data from the Eureka platform via the LinkFox API. The Python script (eureka_description.py) uses standard libraries to perform authorized API requests, and the instructions in SKILL.md are well-defined and focused on the stated functionality without any signs of prompt injection or malicious intent.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The skill claims to fetch patent description data from the Eureka/LinkFox gateway, which matches the included code and docs. However, the registry metadata lists no required environment variables while both references/api.md and scripts/eureka_description.py clearly expect LINKFOXAGENT_API_KEY for Authorization. The missing declared credential is inconsistent with the stated purpose/capability.
Instruction Scope
SKILL.md and the script are narrowly scoped to querying the Eureka descriptionData endpoint and rendering results; they do not instruct the agent to read unrelated local files or make arbitrary system calls. The documentation also mentions a separate feedback API. The only scope concern is that instructions and examples rely on an API key that was not declared in the skill's metadata.
Install Mechanism
No install spec, no downloads, and the skill is instruction-plus-script only. Nothing is written to disk by an installer; risk from install mechanism is low.
Credentials
The code requires an API credential (LINKFOXAGENT_API_KEY) to call the external API, but the skill's declared requirements list no environment variables or primary credential. Requesting an API key is proportionate to the function, but failing to declare it in the registry metadata is a meaningful inconsistency and a potential usability/security issue (users may not realize a credential is required or where it will be used).
Persistence & Privilege
The skill does not request persistent presence (always is false) and does not modify other skills or system-wide settings. It only performs network requests at runtime with the provided API key; no elevated privileges are requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-eureka-description
  3. After installation, invoke the skill by name or use /linkfox-eureka-description
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-eureka-description
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Eureka Description?

通过Eureka专利数据平台获取专利说明书(描述)数据。当用户提到专利说明书、专利全文、专利技术描述、专利实施方式详情、Eureka说明书数据、patent specification, patent full text, technical description, embodiment details, Eu... It is an AI Agent Skill for Claude Code / OpenClaw, with 60 downloads so far.

How do I install Eureka Description?

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

Is Eureka Description free?

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

Which platforms does Eureka Description support?

Eureka Description is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Eureka Description?

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

💬 Comments