Patent Research
A research-focused patent skill (not legal filing). Covers prior-art
search, IP landscape mapping, claim analysis, freedom-to-operate, and
patentability. For formal patent prosecution, work with a licensed
patent attorney.
When to use this skill
- Conducting a prior-art search before filing a provisional patent
- Mapping the IP landscape in a technology area
- Evaluating the patentability of an invention
- Assessing freedom-to-operate before launching a product
- Tracking competitive patent activity in a market
- Preparing a patent strategy for a startup or R&D group
Inputs the advisor expects
- Invention description (problem, solution, novelty)
- Technology area + relevant CPC/IPC classifications
- Target jurisdictions (US, EU, JP, CN — IP is jurisdictional)
- Existing prior art known (key references)
- Competitor list
- Timeline pressure (filing deadline, product launch)
Clarify First
Before running the analysis, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
Workflows
Workflow 1 — Plan a prior-art search
- Define invention claims (key novel features).
- Identify search classifications (CPC / IPC) + keywords.
- Run
prior_art_search_planner.py to produce a search plan.
- Execute on USPTO / EPO / Espacenet / Google Patents / WIPO.
python3 patent/scripts/prior_art_search_planner.py \
--input invention.json --format markdown
Workflow 2 — Map the IP landscape
- Capture identified patents (yours, competitors', adjacent).
- Run
claim_landscape_mapper.py to cluster by claim type, owner,
technology subarea, recency; surface white space + crowded areas.
python3 patent/scripts/claim_landscape_mapper.py \
--input patents.json --format markdown
Workflow 3 — Score patentability of an invention
- Capture invention + closest prior art.
- Run
patentability_scorer.py to rate novelty, non-obviousness,
utility, subject matter eligibility.
python3 patent/scripts/patentability_scorer.py \
--input patentability.json --format markdown
Decision frameworks
The three patentability criteria (US baseline)
- Novelty (35 USC §102): not previously disclosed
- Non-obviousness (35 USC §103): not obvious to person skilled in the art
- Utility (35 USC §101): useful, with practical application
Plus:
- Subject matter eligibility (§101): not abstract idea, not law of nature
- Enablement (§112): described well enough to be made by skilled artisan
- Definiteness (§112): claims clearly distinguish
Prior-art categories
- Patents (issued + published applications)
- Non-patent literature (papers, conference, dissertations, technical reports)
- Commercial products (sold publicly before filing)
- Public disclosures (talks, demos, blog posts — yes, including your own > 1 year prior)
- Sales activity (offers for sale, even pre-launch)
Inventors often miss non-patent prior art; this is where searches break.
Freedom-to-operate (FTO)
Different from patentability. FTO asks: can I commercialize without
infringing someone else's patent?
- Patentability ≠ FTO (your patent could still infringe another)
- FTO is jurisdiction-specific
- Active patents only (not expired); typically 20 years from filing
- Patent attorney involvement essential for formal opinion
IP strategy by stage
- Pre-seed: capture inventions; consider provisional filings; don't over-file
- Seed/Series A: strategic provisionals; key utility filings
- Series B+: PCT international; continuations to maintain pendency
- Mature: portfolio management; licensing; enforcement
Common engagements
"We have a new algorithm. Should we patent?"
- Subject matter eligibility check (§101 — algorithms are tricky)
- Prior art search (someone has probably published)
- Strategic value (does patent enable / defend a business position?)
- Cost-benefit ($5-25K provisional; $30-100K full prosecution)
- Often answer: keep as trade secret, not patent
"Run an FTO before our launch"
- Identify candidate blocking patents (search + competitor review)
- For each: review claims; assess infringement risk
- Identify mitigations: design-around, license, abandon, challenge
- Get formal opinion from patent counsel (insurance against willful infringement)
"Map the patent landscape in our space"
- Identify key players (companies + universities)
- Search by classification + keyword
- Cluster: by company, by sub-technology, by year
- Surface white space (uncovered areas) + crowded zones
- Strategy implications (where to play, where to design-around)
Anti-patterns to avoid
- Searching only keywords (no classification). Misses translations + synonyms.
- Searching only USPTO. EPO + WIPO + JP have unique art.
- Searching only patents. Non-patent prior art is huge.
- Public disclosure before filing. Loses patentability outside US (1-year grace in US only).
- Filing without prior-art search. Reviewer finds it; patent invalid.
- No FTO before product launch. Surprise injunctions.
- Patenting everything. $30K per patent adds up; portfolio bloat distracts.
- Filing without commercial strategy. Patents are means, not ends.
References
references/prior-art-search-strategy.md — search databases, classifications, query patterns
references/claim-mapping-and-landscape.md — claim analysis, landscape visualization
references/freedom-to-operate-and-patentability.md — FTO process, patentability criteria
Related skills
legal/contract-review — IP licensing contracts
c-level-advisor/general-counsel-advisor — strategic IP counsel
research/litreview — non-patent literature search overlap
1---2name: patent3description: Patent research and IP landscape: prior-art search, claim mapping, landscape analysis, and freedom-to-operate. Use when conducting a prior-art search, mapping an IP landscape, evaluating patentability, or running an FTO analysis.4license: MIT + Commons Clause5---6
7# Patent Research
8
9A research-focused patent skill (not legal filing). Covers prior-art
10search, IP landscape mapping, claim analysis, freedom-to-operate, and
11patentability. For formal patent prosecution, work with a licensed
12patent attorney.
13
14## When to use this skill
15
16- Conducting a **prior-art search** before filing a provisional patent
17- Mapping the **IP landscape** in a technology area
18- Evaluating the **patentability** of an invention
19- Assessing **freedom-to-operate** before launching a product
20- Tracking **competitive patent activity** in a market
21- Preparing a **patent strategy** for a startup or R&D group
22
23## Inputs the advisor expects
24
25- Invention description (problem, solution, novelty)
26- Technology area + relevant CPC/IPC classifications
27- Target jurisdictions (US, EU, JP, CN — IP is jurisdictional)
28- Existing prior art known (key references)
29- Competitor list
30- Timeline pressure (filing deadline, product launch)
31
32## Clarify First
33
34Before running the analysis, confirm these inputs. If any is unknown or vague, ASK — do not assume:
35
36- [ ] **Analysis type (prior-art search, patentability, FTO, or landscape)** — these are different deliverables with different methods and outputs
37- [ ] **Invention description (problem, solution, novelty)** — drives the claims and search classifications
38- [ ] **Target jurisdictions (US, EU, JP, CN)** — IP is jurisdictional; changes FTO scope and filing strategy
39- [ ] **Technology area + CPC/IPC classifications** — drives a search beyond keywords (which misses synonyms/translations)
40
41Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
42
43## Workflows
44
45### Workflow 1 — Plan a prior-art search
46
471. Define invention claims (key novel features).
482. Identify search classifications (CPC / IPC) + keywords.
493. Run `prior_art_search_planner.py` to produce a search plan.
504. Execute on USPTO / EPO / Espacenet / Google Patents / WIPO.
51
52```bash
53python3 patent/scripts/prior_art_search_planner.py \
54 --input invention.json --format markdown
55```
56
57### Workflow 2 — Map the IP landscape
58
591. Capture identified patents (yours, competitors', adjacent).
602. Run `claim_landscape_mapper.py` to cluster by claim type, owner,
61 technology subarea, recency; surface white space + crowded areas.
62
63```bash
64python3 patent/scripts/claim_landscape_mapper.py \
65 --input patents.json --format markdown
66```
67
68### Workflow 3 — Score patentability of an invention
69
701. Capture invention + closest prior art.
712. Run `patentability_scorer.py` to rate novelty, non-obviousness,
72 utility, subject matter eligibility.
73
74```bash
75python3 patent/scripts/patentability_scorer.py \
76 --input patentability.json --format markdown
77```
78
79## Decision frameworks
80
81### The three patentability criteria (US baseline)
821. **Novelty** (35 USC §102): not previously disclosed
832. **Non-obviousness** (35 USC §103): not obvious to person skilled in the art
843. **Utility** (35 USC §101): useful, with practical application
85
86Plus:
87- **Subject matter eligibility** (§101): not abstract idea, not law of nature
88- **Enablement** (§112): described well enough to be made by skilled artisan
89- **Definiteness** (§112): claims clearly distinguish
90
91### Prior-art categories
92- **Patents** (issued + published applications)
93- **Non-patent literature** (papers, conference, dissertations, technical reports)
94- **Commercial products** (sold publicly before filing)
95- **Public disclosures** (talks, demos, blog posts — yes, including your own > 1 year prior)
96- **Sales activity** (offers for sale, even pre-launch)
97
98Inventors often miss non-patent prior art; this is where searches break.
99
100### Freedom-to-operate (FTO)
101Different from patentability. FTO asks: can I commercialize without
102infringing someone else's patent?
103
104- Patentability ≠ FTO (your patent could still infringe another)
105- FTO is jurisdiction-specific
106- Active patents only (not expired); typically 20 years from filing
107- Patent attorney involvement essential for formal opinion
108
109### IP strategy by stage
110- **Pre-seed:** capture inventions; consider provisional filings; don't over-file
111- **Seed/Series A:** strategic provisionals; key utility filings
112- **Series B+:** PCT international; continuations to maintain pendency
113- **Mature:** portfolio management; licensing; enforcement
114
115## Common engagements
116
117### "We have a new algorithm. Should we patent?"
1181. Subject matter eligibility check (§101 — algorithms are tricky)
1192. Prior art search (someone has probably published)
1203. Strategic value (does patent enable / defend a business position?)
1214. Cost-benefit ($5-25K provisional; $30-100K full prosecution)
1225. Often answer: keep as trade secret, not patent
123
124### "Run an FTO before our launch"
1251. Identify candidate blocking patents (search + competitor review)
1262. For each: review claims; assess infringement risk
1273. Identify mitigations: design-around, license, abandon, challenge
1284. Get formal opinion from patent counsel (insurance against willful infringement)
129
130### "Map the patent landscape in our space"
1311. Identify key players (companies + universities)
1322. Search by classification + keyword
1333. Cluster: by company, by sub-technology, by year
1344. Surface white space (uncovered areas) + crowded zones
1355. Strategy implications (where to play, where to design-around)
136
137## Anti-patterns to avoid
138
139- **Searching only keywords (no classification).** Misses translations + synonyms.
140- **Searching only USPTO.** EPO + WIPO + JP have unique art.
141- **Searching only patents.** Non-patent prior art is huge.
142- **Public disclosure before filing.** Loses patentability outside US (1-year grace in US only).
143- **Filing without prior-art search.** Reviewer finds it; patent invalid.
144- **No FTO before product launch.** Surprise injunctions.
145- **Patenting everything.** $30K per patent adds up; portfolio bloat distracts.
146- **Filing without commercial strategy.** Patents are means, not ends.
147
148## References
149
150- `references/prior-art-search-strategy.md` — search databases, classifications, query patterns
151- `references/claim-mapping-and-landscape.md` — claim analysis, landscape visualization
152- `references/freedom-to-operate-and-patentability.md` — FTO process, patentability criteria
153
154## Related skills
155
156- `legal/contract-review` — IP licensing contracts
157- `c-level-advisor/general-counsel-advisor` — strategic IP counsel
158- `research/litreview` — non-patent literature search overlap