Korean patent / trademark / design search CLI — wraps the official KIPRIS Plus OpenAPI (특허청).
Five subcommands. Returns clean JSONL for AI agents and shell pipelines.
clawhub install kipris-cli
# or clone this repo and add bin/ to PATHGet a free KIPRIS_PLUS_KEY from https://plus.kipris.or.kr (월 10,000 calls free).
export KIPRIS_PLUS_KEY="your-32-char-key"# Patent search
kipris-cli patent --word "양자컴퓨팅" --rows 10
# Trademark availability
kipris-cli trademark --word "AURORA" --class 9
# Design search
kipris-cli design --word "smart watch"
# Bibliographic detail
kipris-cli patent-detail --app-no 1020230012345
# All filings by an applicant
kipris-cli applicant --name "삼성전자주식회사" --rows 100Full reference: see SKILL.md.
The examples/ folder ships three end-to-end scripts:
competitor-patent-watch.sh— daily JSONL feed of new patents filed by a competitor (paginated + dedup cursor).brand-availability-check.sh— TM availability table across NICE classes 9, 35, 42.m-and-a-ip-snapshot.sh— IP portfolio summary (patents + TMs + designs + top IPC) for a target company.
opendart-cli— corporate disclosures (financial side of M&A diligence)nts-bizno-cli— KYB business-number lookup (anchor entity name)
MIT-0