# Recipe Patent To Report

> Formatted single-patent dossier — pull bibliography, abstract, claims, description, family, legal status, prosecution timeline, figures, and related art into one structured Markdown report. Trigger when the user asks for a complete profile, dossier, or report on a specific patent.

- Skill: `flowleap-ai/recipe-patent-to-report` (Agent Skill)
- Install (CLI): `npx skillmds@latest add flowleap-ai/recipe-patent-to-report`
- Raw SKILL.md: https://api.skillmd.com/api/skills/flowleap-ai/recipe-patent-to-report/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: flowleap-ai (https://skillmd.com/u/flowleap-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/flowleap-ai/recipe-patent-to-report

---


# Recipe: Patent to Report

Extract all data from a patent document and assemble it into one structured
report.

## Steps

### Step 1: One-Call Snapshot

```bash
flowleap --json summary <patent-number>    # biblio + legal status + family + term
flowleap --json timeline <patent-number>   # chronological prosecution events
```

### Step 2: Gather Full Text

```bash
flowleap --json ops abstract <patent-number>
flowleap --json ops claims <patent-number>
flowleap --json ops description <patent-number>
```

### Step 3: Figures

```bash
flowleap figures <patent-number>                          # figure metadata
flowleap figures <patent-number> --out figure.png --page 3  # save one page
```

### Step 4: Find Related Patents

```bash
flowleap --json patent search --query "<key terms from abstract>" --limit 10
```

## Output

A Markdown dossier for the patent with one section per heading below. Done when
every section is present (or explicitly marked "not available"):

- **Bibliography** — title, applicant/inventor, filing and publication dates, classification
- **Abstract**
- **Claims** — independent and dependent
- **Description summary** — condensed from the full description
- **Figures** — figure list, with saved pages referenced
- **Family** — members by jurisdiction
- **Legal status** — active/expired/abandoned and estimated remaining term
- **Prosecution timeline** — register + INPADOC legal events
- **Related art** — patents surfaced from the abstract key terms

