Token导航 LogoToken导航TokenDH.com
图像处理需要联网clawhub未标认证来源可访问clear审计提醒

linkfox-zhihuiya-patent-image-searchlinkfox 智慧芽专利图片检索

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

2,668

周安装

109

GitHub Stars

公开资料未说明

下载量

855
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:linkfox-zhihuiya-patent-image-search(linkfox 智慧芽专利图片检索)
来源仓库:https://github.com/linkfox-ai/linkfox-zhihuiya-patent-image-search
安装命令:
openclaw skills install linkfox-zhihuiya-patent-image-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install linkfox-zhihuiya-patent-image-search

简介

基于图片URL进行专利相似度搜索,支持外观与实用新型。

  • 可用于产品设计侵权检查与视觉专利预警。
  • 适用于新品发布前的专利风险筛查。
  • 搜索结果为近似匹配,建议人工复核关键案例。
  • linkfox-zhihuiya-patent-image-search 属于图像处理类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
linkfox-zhihuiya-patent-image-search
description
基于智慧芽的专利图片相似度搜索,支持通过图片URL检索外观设计专利和实用新型专利。当用户提到专利图片搜索、外观设计专利侵权检查、外观专利搜索、视觉专利查询、以图搜专利、专利相似度检测、专利图片匹配、洛迦诺分类搜索、检查产品设计是否侵犯已有专利、patent image search, design patent search, patent reverse image search, design patent lookup, PatSnap, patent similarity时触发此技能。即使用户未明确提及"智慧芽"或"专利图片",只要其需求涉及通过图片查找相似专利或排查外观/实用新型专利风险,也应触发此技能。

Zhihuiya Patent Image Search

This skill guides you on how to perform image-based patent similarity searches using the Zhihuiya patent database, helping users identify potentially similar design patents and utility model patents.

Core Concepts

Patent Image Search uses visual AI models to compare a given product or design image against a global patent image database. It returns a ranked list of similar patents, enabling users to evaluate infringement risks or conduct prior-art research.

Two patent types are supported:

TypeCodeDescription
Design PatentDProtects the ornamental appearance of a product (default)
Utility Model PatentUProtects the functional shape/structure of a product

Search models vary by patent type:

Model IDPatent TypeStrategyRecommendation
1Design (D)Intelligent AssociationRecommended for design patents
2Design (D)Search This ImageExact visual match
3Utility Model (U)Match ShapeShape-only comparison
4Utility Model (U)Match Shape/Pattern/ColorRecommended for utility model patents

Scoring logic: A higher score value means greater visual similarity. When presenting results, sort by score in descending order (highest similarity first) so users can prioritize the most relevant patents for review.

Parameter Guide

Required Parameters

ParameterDescriptionExample
urlThe image URL to search againsthttps://example.com/product.jpg
patentTypePatent type: D (design) or U (utility model)D
modelSearch model ID (see table above)1

Common Optional Parameters

ParameterDescriptionDefault
countryPatent authority country codes, comma-separated (e.g., CN,US,JP)All countries
locLocarno classification codes, connectable with AND/OR/NOTNone
legalStatusLegal status codes, comma-separatedNone
simpleLegalStatusSimple legal status: 0 (expired), 1 (active), 2 (pending)None
assigneesApplicant / patent holder nameNone
applyStartTimeApplication start date (yyyyMMdd)None
applyEndTimeApplication end date (yyyyMMdd)None
publicStartTimePublication start date (yyyyMMdd)None
publicEndTimePublication end date (yyyyMMdd)None
limitNumber of results to return (1-100)10
offsetPagination offset (0-1000)0
fieldSort field: SCORE, APD, PBD, ISDSCORE
orderSort order: desc or asc (for APD/PBD/ISD)desc
langTitle language preference: original, cn, enoriginal
preFilterEnable country/LOC pre-filtering: 1 (on) / 0 (off)1
stemmingEnable stemming: 1 (on) / 0 (off)0
mainFieldSearch within title, abstract, claims, description, publication number, application number, applicant, inventor, IPC/UPC/LOCNone
includeMachineTranslationInclude machine-translated data in searchNone
scoreExpansionEnable score expansionNone
isHttpsReturn HTTPS image URLs: 1 (yes) / 0 (no)0
returnImgIdReturn image IDs in resultsfalse

Commonly Used Country Codes

CodeCountry/Region
CNChina
USUnited States
JPJapan
KRSouth Korea
EPEuropean Patent Office
WOWIPO
DEGermany
GBUnited Kingdom
FRFrance
AUAustralia

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

Usage Examples

1. Basic design patent search (recommended starting point) Search for design patents similar to a product image across all countries:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "limit": 20
}

2. Design patent search limited to specific countries Search only in China and the United States:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "country": "CN,US",
  "limit": 20
}

3. Utility model patent search Check utility model patents with shape/pattern/color matching:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "U",
  "model": 4,
  "country": "CN",
  "limit": 20
}

4. Search with Locarno classification filter Narrow results to a specific product category (e.g., LOC 07-01 for tableware):

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "loc": "07-01",
  "preFilter": 1,
  "limit": 20
}

5. Search only active patents within a date range Find active design patents filed after 2020:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "simpleLegalStatus": "1",
  "applyStartTime": "20200101",
  "limit": 30
}

6. Search by specific assignee Find patents held by a particular company:

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "assignees": "Apple Inc.",
  "limit": 20
}

7. Get results with Chinese-translated titles

{
  "url": "https://example.com/my-product.jpg",
  "patentType": "D",
  "model": 1,
  "lang": "cn",
  "limit": 20
}

Display Rules

  1. Sort by score: Always sort results by score in descending order (highest similarity first) to help users quickly identify the most relevant infringement risks.
  1. Show complete details: When summarizing results or generating reports, include ALL of the following for each patent -- do NOT omit or abbreviate:

- Application number (apno) - Patent title in Chinese (use lang: cn or provide translation) - Inventor (inventor) - Patent drawing (the matched url image) - Every patent image in the image list - Patent abstract - Patent description - LOC classification information (loc) - Radar result (radarResult) if available - Patent specification

  1. Legal disclaimer: Always append a friendly reminder at the end of results:

> This search result was generated by LinkfoxAgent. It is recommended to consult a professional patent attorney for legal advice.

  1. Score explanation: Remind users that the score represents visual similarity -- a higher score indicates a closer match, but does not constitute a legal determination of infringement.
  1. Pagination guidance: When the total count exceeds the returned results, inform users about the total number of matching patents and guide them to use offset and limit for additional pages.
  1. Error handling: When a query fails, explain the reason and suggest adjustments (e.g., verify the image URL is publicly accessible, check country codes, adjust date formats).

User Expression & Scenario Quick Reference

Applicable -- Image-based patent similarity searches:

User SaysScenario
"Check if my product design infringes any patents"Design patent infringement check
"Search for similar design patents"Design patent similarity search
"Find patents that look like this image"Visual patent lookup
"Are there any patents similar to my product appearance"Appearance risk assessment
"Utility model patent search by image"Utility model search
"Check patent risks for this product in China and US"Multi-country patent check
"Find active design patents in this category"Filtered patent search
"Who holds patents similar to this design"Competitor patent discovery

Not applicable -- Needs beyond patent image search:

  • Text-based patent search (keyword/abstract/claim search)
  • Patent legal status monitoring or annuity management
  • Patent valuation or licensing negotiation
  • Freedom-to-operate (FTO) legal opinions
  • Patent family or citation 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.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.09%
按下载量换算642

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills