patents-search
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChinesePatents Search
专利搜索
Search the complete global patent database using natural language queries powered by Valyu's semantic search API.
使用由Valyu语义搜索API驱动的自然语言查询,搜索完整的全球专利数据库。
Why This Skill is Powerful
为何该功能如此强大
- No API Parameter Parsing: Just pass natural language queries directly - no need to construct complex search parameters
- Semantic Search: Understands the meaning of your query, not just keyword matching
- Full-Text Access: Returns complete patent information including claims, descriptions, and technical details
- Image Links: Includes patent diagrams and figures when available
- Comprehensive Coverage: Access to global patent data across jurisdictions
- 无需解析API参数:直接传入自然语言查询即可 - 无需构建复杂的搜索参数
- 语义搜索:理解查询的含义,而非仅进行关键词匹配
- 全文访问:返回完整的专利信息,包括权利要求、说明书和技术细节
- 图片链接:在可用时包含专利图表和附图
- 全面覆盖:可访问全球各司法管辖区的专利数据
Requirements
要求
- Node.js 18+ (uses built-in fetch)
- Valyu API key from https://platform.valyu.ai ($10 free credits)
- Node.js 18+(使用内置的fetch)
- 从https://platform.valyu.ai获取Valyu API密钥(赠送10美元免费额度)
CRITICAL: Script Path Resolution
重要提示:脚本路径解析
The commands in this documentation are relative to this skill's installation directory.
scripts/searchBefore running any command, locate the script using:
bash
PATENTS_SCRIPT=$(find ~/.claude/plugins/cache -name "search" -path "*/patents-search/*/scripts/*" -type f 2>/dev/null | head -1)Then use the full path for all commands:
bash
$PATENTS_SCRIPT "CRISPR gene editing methods" 15本文档中的命令是相对于该功能的安装目录的相对路径。
scripts/search在运行任何命令之前,请使用以下命令定位脚本:
bash
PATENTS_SCRIPT=$(find ~/.claude/plugins/cache -name "search" -path "*/patents-search/*/scripts/*" -type f 2>/dev/null | head -1)然后使用完整路径执行所有命令:
bash
$PATENTS_SCRIPT "CRISPR gene editing methods" 15API Key Setup Flow
API密钥设置流程
When you run a search and receive , follow this flow:
"setup_required": true-
Ask the user for their API key: "To search patents, I need your Valyu API key. Get one free ($10 credits) at https://platform.valyu.ai"
-
Once the user provides the key, run:bash
scripts/search setup <api-key> -
Retry the original search.
当您运行搜索并收到时,请按照以下流程操作:
"setup_required": true-
向用户索要API密钥: "要搜索专利,我需要您的Valyu API密钥。可从https://platform.valyu.ai免费获取(赠送10美元额度)"
-
用户提供密钥后,运行以下命令:bash
scripts/search setup <api-key> -
重试原搜索。
When to Use This Skill
何时使用该功能
- Prior art searching and patent landscaping
- Technology trend analysis
- Competitor innovation tracking
- Patent freedom-to-operate analysis
- Patent claim analysis and interpretation
- Patent filing strategy research
- 现有技术检索和专利态势分析
- 技术趋势分析
- 竞争对手创新追踪
- 专利实施自由分析
- 专利权利要求分析与解读
- 专利申请策略研究
Output Format
输出格式
json
{
"success": true,
"type": "patents_search",
"query": "CRISPR gene editing methods",
"result_count": 10,
"results": [
{
"title": "Patent Title",
"url": "https://patents.google.com/...",
"content": "Patent claims, description, technical details...",
"source": "patents",
"relevance_score": 0.95,
"images": ["https://example.com/diagram.png"]
}
],
"cost": 0.025
}json
{
"success": true,
"type": "patents_search",
"query": "CRISPR gene editing methods",
"result_count": 10,
"results": [
{
"title": "Patent Title",
"url": "https://patents.google.com/...",
"content": "Patent claims, description, technical details...",
"source": "patents",
"relevance_score": 0.95,
"images": ["https://example.com/diagram.png"]
}
],
"cost": 0.025
}Processing Results
结果处理
With jq
使用jq
bash
undefinedbash
undefinedGet patent titles
获取专利标题
scripts/search "query" 10 | jq -r '.results[].title'
scripts/search "query" 10 | jq -r '.results[].title'
Get URLs
获取URL
scripts/search "query" 10 | jq -r '.results[].url'
scripts/search "query" 10 | jq -r '.results[].url'
Extract full content
提取完整内容
scripts/search "query" 10 | jq -r '.results[].content'
undefinedscripts/search "query" 10 | jq -r '.results[].content'
undefinedCommon Use Cases
常见使用场景
Prior Art Search
现有技术检索
bash
undefinedbash
undefinedFind prior art
查找现有技术
scripts/search "lithium ion battery electrode materials" 50
undefinedscripts/search "lithium ion battery electrode materials" 50
undefinedCompetitive Intelligence
竞争情报
bash
undefinedbash
undefinedSearch competitor patents
搜索竞争对手专利
scripts/search "CAR-T cell therapy manufacturing methods" 20
undefinedscripts/search "CAR-T cell therapy manufacturing methods" 20
undefinedTechnology Landscape
技术态势分析
bash
undefinedbash
undefinedFind technology trends
查找技术趋势
scripts/search "quantum computing error correction patents" 15
undefinedscripts/search "quantum computing error correction patents" 15
undefinedFreedom to Operate
实施自由分析
bash
undefinedbash
undefinedSearch for blocking patents
搜索阻碍性专利
scripts/search "mRNA vaccine delivery systems" 25
undefinedscripts/search "mRNA vaccine delivery systems" 25
undefinedError Handling
错误处理
All commands return JSON with field:
successjson
{
"success": false,
"error": "Error message"
}Exit codes:
- - Success
0 - - Error (check JSON for details)
1
所有命令都会返回带有字段的JSON:
successjson
{
"success": false,
"error": "Error message"
}退出代码:
- - 成功
0 - - 错误(查看JSON获取详情)
1
API Endpoint
API端点
- Base URL:
https://api.valyu.ai/v1 - Endpoint:
/search - Authentication: X-API-Key header
- 基础URL:
https://api.valyu.ai/v1 - 端点:
/search - 认证: X-API-Key请求头
Architecture
架构
scripts/
├── search # Bash wrapper
└── search.mjs # Node.js CLIDirect API calls using Node.js built-in , zero external dependencies.
fetch()scripts/
├── search # Bash包装器
└── search.mjs # Node.js命令行工具使用Node.js内置的进行直接API调用,无外部依赖。
fetch()Adding to Your Project
添加到您的项目中
If you're building an AI project and want to integrate Patents Search directly into your application, use the Valyu SDK:
如果您正在构建AI项目,并希望将专利搜索直接集成到应用中,请使用Valyu SDK:
Python Integration
Python集成
python
from valyu import Valyu
client = Valyu(api_key="your-api-key")
response = client.search(
query="your search query here",
included_sources=["valyu/valyu-patents"],
max_results=20
)
for result in response["results"]:
print(f"Title: {result['title']}")
print(f"URL: {result['url']}")
print(f"Content: {result['content'][:500]}...")python
from valyu import Valyu
client = Valyu(api_key="your-api-key")
response = client.search(
query="your search query here",
included_sources=["valyu/valyu-patents"],
max_results=20
)
for result in response["results"]:
print(f"Title: {result['title']}")
print(f"URL: {result['url']}")
print(f"Content: {result['content'][:500]}...")TypeScript Integration
TypeScript集成
typescript
import { Valyu } from "valyu-js";
const client = new Valyu("your-api-key");
const response = await client.search({
query: "your search query here",
includedSources: ["valyu/valyu-patents"],
maxResults: 20
});
response.results.forEach((result) => {
console.log(`Title: ${result.title}`);
console.log(`URL: ${result.url}`);
console.log(`Content: ${result.content.substring(0, 500)}...`);
});See the Valyu docs for full integration examples and SDK reference.
typescript
import { Valyu } from "valyu-js";
const client = new Valyu("your-api-key");
const response = await client.search({
query: "your search query here",
includedSources: ["valyu/valyu-patents"],
maxResults: 20
});
response.results.forEach((result) => {
console.log(`Title: ${result.title}`);
console.log(`URL: ${result.url}`);
console.log(`Content: ${result.content.substring(0, 500)}...`);
});更多完整集成示例和SDK参考,请查看Valyu文档。