Skills · Business & ops

Patent Pipeline: From Invention to Filing

Unverified35/40

Describe your invention in plain words and get back a complete first-draft patent application — claims, full description, and abstract — ready to hand to a patent attorney.

Originally by wanshuiyin · MIT

Claude CodeWorksValid SKILL.md that declares allowed-tools
Cursor·UnknownWe have not crawled the repo tree, so we will not guess
Codex·UnknownWe have not crawled the repo tree, so we will not guess
Gemini CLI·UnknownThe spec defines no detection rule for Gemini
Copilot·UnknownWe have not crawled the repo tree, so we will not guess
npx agentalley add patent-pipeline

This command does not work yet — the CLI is still being built. Until then, use Raw in the reader below to take the file.

Who is stuck, and on what

You've come up with something new and you're scared someone will copy it before you can protect it. A lawyer wants thousands of dollars just to start, and you don't even know how to describe your idea in the way a patent office expects.

What it gives you

A full written patent application draft — the legal claims, the detailed description, and the abstract — formatted for your chosen country.

When NOT to use it

It will not file the patent for you or replace a licensed patent attorney's final review and sign-off.

The whole source

No sign-in, no blur, nothing truncated
patent-pipeline/SKILL.md345 lines14.2 KBRawView on GitHub
Frontmatter — 4 properties
namepatent-pipeline
descriptionFull patent drafting pipeline from invention description to jurisdiction-formatted filing documents. Supports CN (CNIPA), US (USPTO), EP (EPO). Supports invention patents and utility models. Use when user says \"写专利\", \"patent pipeline\", \"专利申请\", \"draft patent\", \"写权利要求书\", or wants to draft a complete patent application.
argument-hint[invention-description — jurisdiction]
allowed-toolsBash(*), Read, Write, Edit, Grep, Glob, WebSearch, WebFetch, Skill, mcp__codex__codex
1---
2name: patent-pipeline
3description: "Full patent drafting pipeline from invention description to jurisdiction-formatted filing documents. Supports CN (CNIPA), US (USPTO), EP (EPO). Supports invention patents and utility models. Use when user says \"写专利\", \"patent pipeline\", \"专利申请\", \"draft patent\", \"写权利要求书\", or wants to draft a complete patent application."
4argument-hint: "[invention-description — jurisdiction]"
5allowed-tools: Bash(*), Read, Write, Edit, Grep, Glob, WebSearch, WebFetch, Skill, mcp__codex__codexA4This skill pulls in web or user content but never says to treat that content as data. A signal, not proof.
6---
7 
8# Patent Pipeline: From Invention to Filing
9 
10Draft a complete patent application based on: **$ARGUMENTS**
11 
12## Overview
13 
14This skill orchestrates the full patent drafting lifecycle -- from prior art search through jurisdiction-formatted filing documents. It chains sub-skills into a patent-specific pipeline:
15 
16```
17/prior-art-search → /patent-novelty-check → /invention-structuring → /claims-drafting → /specification-writing → /patent-review → /jurisdiction-format
18 (search) (verify) (structure) (claims) (description) (examiner) (compile)
19 ├── /figure-description
20 └── /embodiment-description
21```
22 
23**This is a parallel branch, not part of the linear research pipeline.** After `/idea-discovery` produces validated ideas, the user can either:
24- Go to `/experiment-bridge` → `/auto-review-loop` → `/paper-writing` (publish track)
25- Go to `/grant-proposal` (funding track)
26- Go to `/patent-pipeline` (patent track) **<-- this skill**
27 
28```
29 ┌→ /experiment-bridge → /auto-review-loop → /paper-writing (publish track)
30/idea-discovery ────┤
31 ├→ /grant-proposal → [get funded] → ... (funding track)
32 └→ /patent-pipeline → [file patent] (patent track)
33```
34 
35Patents are about **protecting inventions** (legal scope), not publishing results (academic contribution). This skill handles the unique requirements of patent drafting: prior art analysis, claims hierarchy design, specification writing with enablement support, embodiment descriptions, and jurisdiction-specific formatting.
36 
37## Constants
38 
39- **JURISDICTION = `CN`** — Target patent jurisdiction. Options: `CN` (CNIPA), `US` (USPTO), `EP` (EPO), `ALL` (generate all three). Override via argument (e.g., `/patent-pipeline "invention — US"`).
40- **PATENT_TYPE = `invention`** — `invention` (发明专利, 20 year protection) or `utility_model` (实用新型, CN only, 10 year protection, apparatus claims only). Override via argument.
41- **REVIEWER_MODEL = `gpt-6-astra`** — Model used via Codex MCP for examiner-style review.
42- **MAX_REVIEW_ROUNDS = 2** — Maximum review-revision cycles.
43- **AUTO_PROCEED = false** — At each checkpoint, **always wait for explicit user confirmation**. Patent applications require inventor judgment at every stage. Set `true` only if user explicitly requests autonomous mode.
44- **LANGUAGE = `auto`** — Output language. Auto-detected from jurisdiction: CN->Chinese, US->English, EP->English. Override explicitly if needed.
45- **OUTPUT_DIR = `patent/`** — Directory for generated patent files.
46- **OUTPUT_FORMAT = `markdown`** — Draft format. `markdown` for review, `docx` for filing-ready.
47 
48> Override defaults via arguments: `/patent-pipeline "invention — US, utility model"` or `/patent-pipeline "invention — ALL, language: Chinese"`.
49 
50## Patent Type Specifications
51 
52### Invention Patent (发明专利)
53 
54| Field | Detail |
55|-------|--------|
56| **Protection** | 20 years from filing date |
57| **Subject matter** | Methods, systems, products, compositions, processes |
58| **Examination** | Substantive examination required |
59| **Inventive step** | High (must involve an inventive step / 创造性) |
60| **Timeline** | 2-4 years to grant (CN); 2-3 years (US); 3-5 years (EP) |
61| **Claims** | Method + system + product claims allowed |
62 
63### Utility Model (实用新型) — CN Only
64 
65| Field | Detail |
66|-------|--------|
67| **Protection** | 10 years from filing date |
68| **Subject matter** | Product shape, structure, or combination thereof only |
69| **Examination** | Formal examination only (no substantive examination) |
70| **Inventive step** | Lower than invention patent |
71| **Timeline** | 6-8 months to grant |
72| **Claims** | Apparatus/device claims only. NO method claims. |
73| **Restriction** | CN jurisdiction only |
74 
75## State Persistence (Compact Recovery)
76 
77Patent drafting is a long task that may trigger context compaction. Persist state to `patent/PATENT_STATE.json` after each phase:
78 
79```json
80{
81 "phase": 3,
82 "jurisdiction": "CN",
83 "patent_type": "invention",
84 "language": "Chinese",
85 "codex_thread_id": "019cfcf4-...",
86 "invention_title": "...",
87 "claims_count": 15,
88 "status": "in_progress",
89 "timestamp": "2026-04-10T15:00:00"
90}
91```
92 
93**Write this file at the end of every phase.** On invocation, check for this file:
94- If absent or `status: "completed"` -> fresh start
95- If `status: "in_progress"` and within 24h -> **resume** from saved phase (read output files to restore context)
96- If older than 24h -> fresh start (stale state)
97 
98On completion, set `"status": "completed"`.
99 
100## Workflow
101 
102### Phase 0: Input Parsing & Context Gathering
103 
104Parse `$ARGUMENTS` to extract:
105 
1061. **Invention description** — may be structured (references INVENTION_BRIEF.md), conversational with figures, or output from IDEA_REPORT.md
1072. **Jurisdiction** — detect from keywords (e.g., "CN" or "中国" -> CN, "US" or "USPTO" -> US, "EP" or "EPO" -> EP, "ALL")
1083. **Patent type** — detect from keywords (e.g., "utility model" or "实用新型" -> utility_model, default -> invention)
1094. **Overrides** — language, output format, review rounds
110 
111Then gather context from the project directory:
112 
1131. Read `INVENTION_BRIEF.md` if it exists (user filled in the template)
1142. Read `IDEA_REPORT.md` if it exists (from `/idea-discovery` -- can extract invention from research results)
1153. Read `refine-logs/FINAL_PROPOSAL.md` if it exists
1164. Read `NARRATIVE_REPORT.md` if it exists (research results that may be patentable)
1175. Search for user-provided figures (PNG, JPG, SVG, PDF) in the project directory
1186. Check for `patent/PATENT_STATE.json` (resume from prior interrupted run)
119 
120If insufficient context exists:
121- No invention description at all -> suggest user describe the invention or fill in `INVENTION_BRIEF.md`
122- Has IDEA_REPORT.md -> extract patentable aspects from the research
123- Has figures -> reference them in the invention brief
124- No figures -> note that figures will be needed and plan what drawings are required
125 
126**If the input is conversational** (not a structured brief), parse the description into the invention brief structure and write `patent/INVENTION_BRIEF.md` for downstream phases.
127 
128### Phase 1: Prior Art Search & Novelty Assessment
129 
130#### 1.1 Prior Art Search
131 
132Invoke `/prior-art-search`:
133 
134```
135/prior-art-search "patent/INVENTION_BRIEF.md"
136```
137 
138This searches patent databases (Google Patents, Espacenet) and academic literature for relevant prior art.
139 
140#### 1.2 Novelty Check
141 
142Invoke `/patent-novelty-check`:
143 
144```
145/patent-novelty-check "patent/INVENTION_BRIEF.md"
146```
147 
148This assesses novelty and non-obviousness against the prior art found in step 1.1.
149 
150**🚦 Checkpoint:** Present the prior art landscape and novelty assessment:
151 
152```
153Prior art search complete:
154- [X] patent references found
155- [Y] non-patent literature references found
156- Closest prior art: [reference] -- [why it's closest]
157- Novelty assessment: [PATENTABLE / PATENTABLE WITH AMENDMENTS / NOT PATENTABLE]
158- Key risk areas: [list]
159 
160Ready to proceed with invention structuring?
161```
162 
163**⛔ STOP HERE and wait for user response.** Do NOT auto-proceed unless AUTO_PROCEED=true.
164 
165Options:
166- Reply **"go"** -> proceed to Phase 2
167- Reply with **adjustments** -> refine the invention scope and re-check novelty
168- Reply **"stop"** -> save progress to `patent/DRAFT_NOTES.md`
169 
170**State**: Write `PATENT_STATE.json` with `phase: 1`.
171 
172### Phase 2: Invention Structuring & Claims Design
173 
174#### 2.1 Structure the Invention
175 
176Invoke `/invention-structuring`:
177 
178```
179/invention-structuring "patent/INVENTION_BRIEF.md"
180```
181 
182This decomposes the invention into core inventive concept, supporting features, and optional features. Produces `patent/INVENTION_DISCLOSURE.md`.
183 
184#### 2.2 Draft Claims
185 
186Invoke `/claims-drafting`:
187 
188```
189/claims-drafting "patent/INVENTION_DISCLOSURE.md"
190```
191 
192This drafts the claims hierarchy -- the most critical part of the patent. Produces `patent/CLAIMS.md`.
193 
194**🚦 Checkpoint:** Present the invention structure and claims:
195 
196```
197Invention structured:
198- Core inventive concept: [summary]
199- Claim categories: [method, system, etc.]
200- Claims drafted: [X] independent + [Y] dependent = [Z] total
201- Independent claim 1 (broadest): [first 50 words of claim 1]
202- Examiner review score: [X]/10
203 
204The claims define the legal scope of protection. Please review before proceeding to specification.
205```
206 
207**⛔ STOP HERE and wait for user response.** Do NOT auto-proceed unless AUTO_PROCEED=true.
208 
209Options:
210- Reply **"go"** -> proceed to Phase 3
211- Reply with **adjustments** (e.g., "broaden claim 1", "add more dependent claims") -> revise claims
212- Reply **"stop"** -> save progress
213 
214**State**: Write `PATENT_STATE.json` with `phase: 2`.
215 
216### Phase 3: Specification Writing
217 
218Invoke `/specification-writing`:
219 
220```
221/specification-writing "patent/CLAIMS.md"
222```
223 
224This writes the full specification section by section. Internally invokes `/figure-description` (if user-provided figures exist) and `/embodiment-description` for the detailed description. The specification-writing skill handles figure processing and embodiment writing as sub-skills.
225 
226**🚦 Checkpoint:** Present the specification overview:
227 
228```
229Specification written:
230- Title: [title]
231- Sections: Technical Field, Background, Summary, Drawings Description, Detailed Description, Abstract
232- Embodiments: [X]
233- Reference numerals: [Y] components mapped
234- Abstract length: [Z] words (limit: [jurisdiction limit])
235- Claim support: [all elements covered / X elements missing]
236 
237Ready to proceed to review?
238```
239 
240**⛔ STOP HERE and wait for user response.**
241 
242**State**: Write `PATENT_STATE.json` with `phase: 3`.
243 
244### Phase 4: Patent Review
245 
246Invoke `/patent-review`:
247 
248```
249/patent-review "patent/"
250```
251 
252This runs 2 rounds of examiner-style review via GPT-6-Astra xhigh. The examiner evaluates clarity, written description, enablement, novelty, non-obviousness, and claim scope.
253 
254**State**: Write `PATENT_STATE.json` with `phase: 4` and review score.
255 
256### Phase 5: Jurisdiction Formatting & Output
257 
258Invoke `/jurisdiction-format`:
259 
260```
261/jurisdiction-format "patent/"
262```
263 
264This compiles the application into the target jurisdiction format(s).
265 
266#### Final Deliverables
267 
268| Output | Location | Description |
269|--------|----------|-------------|
270| CN: 权利要求书 | `patent/output/CN/` | Claims in CNIPA format |
271| CN: 说明书 | `patent/output/CN/` | Description in CNIPA format |
272| CN: 说明书摘要 | `patent/output/CN/` | Abstract (CN) |
273| US: Claims | `patent/output/US/` | Claims in USPTO format |
274| US: Specification | `patent/output/US/` | Description in USPTO format |
275| US: Abstract | `patent/output/US/` | Abstract (US) |
276| EP: Claims | `patent/output/EP/` | Claims in EPO format |
277| EP: Description | `patent/output/EP/` | Description in EPO format |
278| EP: Abstract | `patent/output/EP/` | Abstract (EP) |
279 
280#### Final Report
281 
282```markdown
283## Patent Pipeline Complete
284 
285### Application Summary
286- Title: [invention title]
287- Jurisdiction: [CN/US/EP/ALL]
288- Patent Type: [Invention / Utility Model]
289- Language: [Chinese/English]
290- Total Claims: [X] independent + [Y] dependent
291 
292### Pipeline Scores
293| Phase | Score |
294|-------|-------|
295| Prior Art Search | [completeness assessment] |
296| Novelty Assessment | [PATENTABLE/PATENTABLE WITH AMENDMENTS/NOT PATENTABLE] |
297| Examiner Review Round 1 | [X]/10 |
298| Examiner Review Round 2 | [Y]/10 |
299| Final | [Z]/10 |
300 
301### Output Files
302[Table of all generated files with paths]
303 
304### Next Steps
305- [ ] Have a patent attorney review the application
306- [ ] Conduct professional prior art search (this tool's search is preliminary)
307- [ ] Prepare formal drawings (if user figures need professional rendering)
308- [ ] File with the patent office
309- [ ] For utility model (CN): formal examination typically takes 6-8 months
310- [ ] For invention patent: substantive examination may take 2-4 years
311```
312 
313**State**: Write `PATENT_STATE.json` with `phase: 5, status: "completed"`.
314 
315## Key Rules
316 
317- Never fabricate prior art references, patent numbers, or citations.
318- Claims must be supported by the specification (written description requirement).
319- Each jurisdiction has strict format requirements -- do not mix formats.
320- Utility model (实用新型) applies ONLY to CN jurisdiction and ONLY covers apparatus/device claims.
321- AUTO_PROCEED defaults to false -- patent applications require human review at every phase. Sub-skills inherit this flag: when AUTO_PROCEED=false, sub-skills present results and wait at their own internal checkpoints too.
322- The patent pipeline produces drafts for attorney review, not final filing documents.
323- Large file handling: if a Write operation fails, retry with Bash `cat <<'EOF'` heredoc.
324- Never include experimental results or empirical evaluations in the specification.
325- Consistent terminology is mandatory -- same word for the same concept throughout.
326- If `mcp__codex__codex` is not available (no OpenAI API key), skip external cross-model review and note it in the output. The pipeline must not fail due to missing reviewer access.
327 
328## Composing with Other Workflows
329 
330The patent pipeline can start from multiple entry points:
331 
332```
333User describes invention directly ──→ /patent-pipeline
334 
335/idea-discovery produces IDEA_REPORT.md ──→ /patent-pipeline (extract patentable aspects)
336 
337/research-refine produces FINAL_PROPOSAL.md ──→ /patent-pipeline (from refined research idea)
338 
339/auto-review-loop produces strong results ──→ /patent-pipeline (patent the method)
340```
341 
342## Acknowledgements
343 
344Built on the ARIS (Auto-claude-code-research-in-sleep) skill architecture. Patent writing principles adapted from MPEP (US), CN Patent Examination Guidelines (CN), and EPO Guidelines for Examination (EP).
345 

Reviews

Installed this one?Write the first review and take the Trailblazer badge.

Reviews only open after a real install, so this is empty — and we leave it empty rather than invent one.

Alternatives

Also in Business & ops