帮助用户检索美国专利商标官方记录并整理可复现的知识产权研究流程。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "uspto-database" 技能: 1. 下载 https://raw.githubusercontent.com/affaan-m/ECC/main/skills/scientific-db-uspto-database/SKILL.md 2. 保存为 ~/.claude/skills/scientific-db-uspto-database/SKILL.md 3. 装好后重载技能,告诉我可以用了
请帮我制定一个 USPTO 检索流程:先查询某技术主题相关专利,再核查对应商标状态,并把检索步骤、使用的关键词和结果来源整理成可复现的研究记录。
一份结构化检索流程,包含专利查询、商标状态核查及研究记录模板。
我有一个美国商标申请号,请说明如何通过 TSDR 查询当前状态、历史文件和关键时间节点,并输出适合汇报的摘要。
包含 TSDR 查询步骤、状态说明、重要节点和简明结论的摘要。
请帮我设计一个流程,用 USPTO 数据核查某项专利的转让记录、相关权利人变化,并生成可审计的研究日志。
一套转让数据核查步骤,附权利人变更梳理和可审计日志格式。
Use this skill when a task needs official United States patent or trademark records from USPTO systems.
Do not use this skill to give legal advice. Treat it as a data-gathering and record-verification workflow.
Prefer official USPTO or USPTO-supported surfaces first:
Use secondary sources only as convenience indexes. When the answer matters, cross-check the official record.
Many USPTO API flows require an API key. Store keys in environment variables or a secret manager, never in committed files or pasted transcripts.
Common environment names:
export USPTO_API_KEY="..."
export PATENTSVIEW_API_KEY="..."
For PatentSearch, send the key with the X-Api-Key header. For TSDR, follow
the current USPTO API Manager instructions and rate-limit guidance.
Use PatentSearch for broad patent and pre-grant publication search when the question is about trends, inventors, assignees, classifications, dates, or portfolio slices.
Workflow:
Python request skeleton:
import os
import requests
API_KEY = os.environ["PATENTSVIEW_API_KEY"]
BASE = "https://search.patentsview.org/api/v1"
payload = {
"q": {
"_and": [
{"patent_date": {"_gte": "2024-01-01"}},
{"assignees.assignee_organization": {"_text_any": ["Google", "Alphabet"]}},
]
},
"f": ["patent_id", "patent_title", "patent_date"],
"s": [{"patent_date": "desc"}],
"o": {"per_page": 100, "page": 1},
}
response = requests.post(
f"{BASE}/patent/",
headers={"X-Api-Key": API_KEY, "Content-Type": "application/json"},
json=payload,
timeout=30,
)
response.raise_for_status()
print(response.json())
Before reusing a query, verify current endpoint names, field paths, request parameters, and API-key availability in the live PatentSearch docs.
Use TSDR when the task needs trademark case status, documents, images, owner history, or prosecution events.
Workflow:
For large trademark pulls, prefer documented bulk-data flows rather than screen-scraping public pages.
For application status, transaction history, and prosecution documents:
…
帮助开发者为代码代理配置性能优化、安全防护与研究优先工作流。
帮助用户掌握 ClickHouse 查询优化、分析建模与数据工程最佳实践。
帮助 Swift 开发者实现基于 Actor 的线程安全内存与文件持久化方案
为 TypeScript、JavaScript、React 与 Node.js 提供统一编码规范与最佳实践建议
帮助团队编排多代理协作流程,管理任务归属、看板流转与交接控制。
为 TypeScript、JavaScript、React 与 Node.js 开发提供通用编码规范与最佳实践指导。
用于检索美国专利商标数据、核查状态并生成可复现的知识产权调研记录。
通过多源 USPTO API 检索专利、审查历史、PTAB 与诉讼数据。
帮助用户检索欧美专利与商标信息,并查看权利要求、法律状态及审查进展。
通过 TÜRKPATENT 数据库检索土耳其专利、商标与外观设计信息
检索并获取美国联邦法院案件、案卷、诉求与文档数据。
帮助用户检索 PubMed 生物医学文献、MeSH 主题词与 PMID 引文信息。