← 返回 Skills 市场
linkfox-ai

Eureka Claim Data

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
62
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-eureka-claim-data
功能描述
从Eureka专利数据库查询专利权利要求(Claims)信息。当用户提到专利权利要求、权利要求书、专利Claims、独立权利要求、从属权利要求、权利要求数量、专利保护范围、patent claims, claim data, independent claims, dependent claims, claim...
使用说明 (SKILL.md)

Eureka Patent Claim Data

This skill guides you on how to retrieve patent claim data via the Eureka patent platform, helping users quickly access the full claim text and claim count for one or more patents.

Core Concepts

The Eureka Claim Data tool returns the complete claims section for each queried patent:

  1. Claims Array — The full text of all claims (independent and dependent) for the patent.
  2. Claim Count — The total number of claims in the patent.
  3. Related Patent Fallback — When replaceByRelated is enabled ("1"), if the requested patent has no claims data, the system will attempt to use a related patent (e.g., the granted version of an application) to provide claim data. The pnRelated field indicates which related patent was used.

Patent identification: Patents can be looked up by either patent ID or publication number. When both are provided, patent ID takes priority. Multiple values can be submitted in a single request (comma-separated).

Parameter Guide

Parameter Required Description
patentId Conditionally Patent ID. At least one of patentId or patentNumber must be provided. Comma-separated for multiple values.
patentNumber Conditionally Publication (announcement) number. At least one of patentId or patentNumber must be provided. Comma-separated for multiple values.
replaceByRelated Optional Whether to use a related patent as fallback when the queried patent has no claims. "1" = enable fallback, "0" = disable (default).
  • If the user provides a publication number (e.g., CN115000000A, US11000000B2), use patentNumber.
  • If the user provides an internal patent ID, use patentId.
  • When both are supplied, patentId takes precedence.
  • Set replaceByRelated to "1" when the user wants claim data even if the exact publication has none (common for application-stage patents).

Response Fields

Field Description
patentId The patent's internal ID
pn Publication (announcement) number
pnRelated Publication number of the related patent used as fallback (only present when replaceByRelated is enabled and a fallback occurred)
claims Array of claim objects containing the full claim text
claimCount Total number of claims
total Total number of records returned
costToken Token cost for this query

Usage Examples

1. Retrieve claims for a single patent

Show me the claims for patent CN115000000A.

2. Get the claim count for a patent

How many claims does US11000000B2 have?

3. Batch-query claims for multiple patents

Get the claims for patents EP3000000A1 and CN115000001A.

4. Use related patent fallback for an application

Get the claims for application CN202210000000.0A — if claims aren't available, use the granted version.

5. Compare claims between patents

Show me the independent claims of US11000000B2 and US10000000B1 side by side.

Display Rules

  1. Present claims clearly: Number each claim and preserve the hierarchical structure (independent vs. dependent claims).
  2. Highlight independent claims: When the user is interested in the scope of protection, emphasize independent claims (typically claim 1 and any other independent claims).
  3. Claim count summary: Always mention the total number of claims at the top of the response.
  4. Related patent notice: If pnRelated is present, clearly inform the user that claims were sourced from a related patent and state which one.
  5. Error handling: If the query fails or returns no results, explain the possible reasons (invalid patent number, patent not found, claims not yet published) and suggest alternatives (e.g., enabling replaceByRelated).
  6. Long claims: For patents with many claims, consider showing a summary first (independent claims + total count) and offer to show all claims on request.

Important Limitations

  • At least one identifier required: Either patentId or patentNumber must be provided; the request will fail if both are empty.
  • Patent ID priority: When both patentId and patentNumber are provided, the system uses patentId and ignores patentNumber.
  • Claims availability: Some early-stage application patents may not have claims published yet. Use replaceByRelated to attempt a fallback to a related patent.
  • Data coverage: Results depend on the Eureka patent database coverage; some very recent filings may not yet be reflected.

User Expression & Scenario Quick Reference

Applicable — Queries about patent claims:

User Says Scenario
"Show me the claims for patent XX" Full claims retrieval
"How many claims does XX have" Claim count query
"What is claim 1 of patent XX" Independent claim lookup
"Get claims using the granted version" Fallback to related patent
"Compare the claims of XX and YY" Multi-patent claim comparison
"What does patent XX protect" Protection scope (claims-based)

Not applicable — Needs beyond patent claims:

  • Patent bibliography/metadata retrieval (use the bibliography skill)
  • Patent legal status queries
  • Patent full-text description retrieval
  • Patent search by keyword or classification
  • Patent image/drawing search
  • Patent family 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, visit LinkFox Skills.

安全使用建议
What to consider before installing: - The skill's code and API docs require an API key in the environment (LINKFOXAGENT_API_KEY) but the skill metadata did not declare any required env vars — ask the publisher to correct the registry metadata so you know what secrets it needs. - The skill will make outbound HTTPS calls to tool-gateway.linkfox.com to fetch claims and to skill-api.linkfox.com for feedback. Confirm you trust those domains and the LinkFox service before supplying an API key. - SKILL.md indicates automated feedback can be posted and that feedback content should include what the user said; that may send user-provided text to LinkFox. If you handle sensitive IP or user data, avoid enabling automatic feedback or review what is sent. - The trigger rules are broad (fires for many mentions of 'claims'), which may cause unexpected network calls; consider limiting triggers or requiring explicit user consent before querying. - Recommended actions: request the publisher update registry metadata to list LINKFOXAGENT_API_KEY as a required env var, verify the API and feedback endpoints and their privacy policies, and test with a non-production API key before using real secrets. Confidence note: medium — the primary issue is a clear metadata mismatch and overbroad feedback/trigger behavior; nothing in the code indicates deliberate malicious behavior, but the omissions reduce transparency and warrant caution.
功能分析
Type: OpenClaw Skill Name: linkfox-eureka-claim-data Version: 1.0.0 The skill is designed to retrieve patent claim data from the Eureka platform. The Python script (eureka_claim_data.py) implements a standard API client that sends patent identifiers to a designated endpoint (tool-gateway.linkfox.com) and handles the response. No evidence of malicious intent, data exfiltration, or unauthorized execution was found in the code or instructions.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The skill's code and API docs call a LinkFox Eureka 'claimData' endpoint, which matches the stated purpose of retrieving patent claims. However the package/registry metadata declares no required credentials or env vars even though the implementation requires an API key (LINKFOXAGENT_API_KEY). This mismatch is an incoherence between declared requirements and actual capability.
Instruction Scope
SKILL.md focuses on claim retrieval and display rules and is generally scoped to that purpose. It also instructs using a Feedback API (skill-api.linkfox.com) and suggests automatically sending feedback content (including what the user said) when certain conditions occur — this means user-provided text may be POSTed to a separate endpoint. The skill's trigger rules claim it will fire any time a user mentions claims (even without naming 'Eureka'), which is broader than some users may expect.
Install Mechanism
No install spec or downloads; the skill is instruction + a small Python script. Nothing is pulled from external unknown installers during installation.
Credentials
The code and API docs require an API key provided via environment variable LINKFOXAGENT_API_KEY to call the Eureka API (Authorization header). The skill registry metadata lists no required env vars — this omission is a discrepancy and a governance/visibility problem. Aside from that single API key, no other credentials are requested and the level of access requested is proportionate to the functionality.
Persistence & Privilege
The skill does not request permanent/always-on inclusion, does not modify other skills or system-wide settings, and does not request elevated privileges. Autonomous model invocation remains enabled (platform default) but is not combined with other high-risk requests.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-eureka-claim-data
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-eureka-claim-data 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-eureka-claim-data
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Eureka Claim Data 是什么?

从Eureka专利数据库查询专利权利要求(Claims)信息。当用户提到专利权利要求、权利要求书、专利Claims、独立权利要求、从属权利要求、权利要求数量、专利保护范围、patent claims, claim data, independent claims, dependent claims, claim... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 62 次。

如何安装 Eureka Claim Data?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-eureka-claim-data」即可一键安装,无需额外配置。

Eureka Claim Data 是免费的吗?

是的,Eureka Claim Data 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Eureka Claim Data 支持哪些平台?

Eureka Claim Data 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Eureka Claim Data?

由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论