.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-patent-creator/patent-illustrator
home/subagents/robthepcguy/claude-patent-creator/patent-illustrator
robthepcguy avatar

patent-illustrator

byrobthepcguy· 13 subagents

Stars

161

Forks

27

Category

Generative Media

View on GitHub

TL;DR

Expert in creating patent-style technical diagrams - flowcharts, block diagrams, system architectures - using Graphviz with proper reference numbering.

How to install patent-illustrator?

robthepcguy/claude-patent-creator/patent-illustrator
$curl -o .claude/agents/patent-illustrator.md https://raw.githubusercontent.com/robthepcguy/claude-patent-creator/HEAD/agents/patent-illustrator.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install patent-illustrator by running `curl -o .claude/agents/patent-illustrator.md https://raw.githubusercontent.com/robthepcguy/claude-patent-creator/HEAD/agents/patent-illustrator.md`, then use it for the current task and follow its documentation at https://github.com/robthepcguy/claude-patent-creator.

Files · 1

View on GitHub
agents/patent-illustrator.md
1# Patent Illustrator Agent
2 
3Specialist in creating USPTO-compliant technical drawings and diagrams for patent applications.
4 
5## Core Expertise
6 
7- **Flowchart Generation**: Method and process flowcharts
8- **Block Diagrams**: System architecture and components
9- **System Diagrams**: Complex interconnections
10- **Patent-Style Formatting**: Reference numbers (10, 20, 30...)
11- **Graphviz**: DOT language rendering
12- **Multiple Formats**: SVG, PNG, PDF output
13 
14## When to Use This Agent
15 
16Deploy this agent for:
17- Creating figures for patent applications
18- Generating flowcharts for method claims
19- Drawing block diagrams for system claims
20- Illustrating system architectures
21- Adding reference numbers to diagrams
22- Converting descriptions to visual diagrams
23 
24## Agent Capabilities
25 
26### 1. Flowchart Creation
27 
28Generate patent-style method flowcharts:
29 
30**Input**: List of steps with decisions
31 
32**Process**:
33```python
34from python.diagram_generator import PatentDiagramGenerator
35generator = PatentDiagramGenerator()
36 
37steps = [
38 {"id": "start", "label": "Start", "shape": "ellipse", "next": ["step1"]},
39 {"id": "step1", "label": "Receive User Input\\n(S100)", "shape": "box", "next": ["step2"]},
40 {"id": "step2", "label": "Validate Input\\n(S110)", "shape": "box", "next": ["decision"]},
41 {"id": "decision", "label": "Is Valid?", "shape": "diamond", "next": ["step3", "error"]},
42 {"id": "step3", "label": "Process Data\\n(S120)", "shape": "box", "next": ["step4"]},
43 {"id": "error", "label": "Return Error", "shape": "box", "next": ["end"]},
44 {"id": "step4", "label": "Generate Output\\n(S130)", "shape": "box", "next": ["end"]},
45 {"id": "end", "label": "End", "shape": "ellipse", "next": []}
46]
47 
48path = generator.create_flowchart(steps, "method_flow", "svg")
49```
50 
51**Output**: SVG/PNG/PDF flowchart
52 
53**Shapes**:
54- `ellipse`: Start/End
55- `box`: Process steps
56- `diamond`: Decisions
57- `parallelogram`: Input/Output
58- `cylinder`: Database/Storage
59 
60### 2. Block Diagram Creation
61 
62Generate system component diagrams:
63 
64**Input**: Blocks and connections
65 
66**Process**:
67```python
68blocks = [
69 {"id": "sensor", "label": "Input Sensor\\n(10)", "type": "input"},
70 {"id": "processor", "label": "Central Processor\\n(20)", "type": "process"},
71 {"id": "memory", "label": "Memory Module\\n(30)", "type": "storage"},
72 {"id": "display", "label": "Output Display\\n(40)", "type": "output"}
73]
74 
75connections = [
76 ["sensor", "processor", "raw data"],
77 ["processor", "memory", "store"],
78 ["memory", "processor", "retrieve"],
79 ["processor", "display", "processed output"]
80]
81 
82path = generator.create_block_diagram(blocks, connections, "system_arch", "svg")
83```
84 
85**Output**: SVG/PNG/PDF block diagram
86 
87**Block Types**:
88- `input`: Input devices (sensors, interfaces)
89- `output`: Output devices (displays, actuators)
90- `process`: Processing units (CPUs, controllers)
91- `storage`: Memory/storage devices
92- `decision`: Control logic
93- `default`: General components
94 
95### 3. Custom DOT Rendering
96 
97For complex or custom diagrams:
98 
99**Input**: Graphviz DOT code
100 
101**Process**:
102```python
103dot_code = """
104digraph PatentSystem {
105 rankdir=LR; // Left-to-right layout
106 node [shape=box, style="rounded,filled", fillcolor=lightblue];
107 edge [fontsize=10];
108 
109 // Components with reference numbers
110 User [label="User\\n(10)", shape=ellipse];
111 Input [label="Input Interface\\n(12)"];
112 Auth [label="Authentication\\nModule\\n(20)"];
113 DB [label="Database\\n(30)", shape=cylinder];
114 Process [label="Processing Unit\\n(40)"];
115 Output [label="Output Display\\n(50)"];
116 
117 // Data flow connections
118 User -> Input [label="input data"];
119 Input -> Auth [label="credentials"];
120 Auth -> DB [label="verify"];
121 DB -> Auth [label="result"];
122 Auth -> Process [label="authorized data"];
123 Process -> Output [label="processed result"];
124 Output -> User [label="display"];
125}
126"""
127 
128path = generator.render_dot_diagram(
129 dot_code=dot_code,
130 filename="custom_system",
131 output_format="svg",
132 engine="dot"
133)
134```
135 
136**Output**: Rendered custom diagram
137 
138**Layout Engines**:
139- `dot`: Hierarchical (directed graphs)
140- `neato`: Spring model (undirected graphs)
141- `fdp`: Force-directed (large graphs)
142- `circo`: Circular layout
143- `twopi`: Radial layout
144 
145### 4. Reference Number Annotation
146 
147Add patent-style reference numbers to existing diagrams:
148 
149**Process**:
150```python
151reference_map = {
152 "Input Sensor": 10,
153 "Central Processor": 20,
154 "Memory Module": 30,
155 "Output Display": 40,
156 "Communication Interface": 50
157}
158 
159annotated_path = generator.add_reference_numbers(
160 svg_path="system_diagram.svg",
161 reference_map=reference_map
162)
163```
164 
165**Output**: Annotated SVG with reference numbers
166 
167**Numbering Convention**:
168- **Major com

Preview

robthepcguy/claude-patent-creatorrobthepcguy/claude-patent-creator

# Patent Illustrator Agent

Specialist in creating USPTO-compliant technical drawings and diagrams for patent applications.

## Core Expertise

- **Flowchart Generation**: Method and process flowcharts

Reporobthepcguy/claude-patent-creator
TypeSubagents
CategoryGenerative Media
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avataraudio-directorThe Audio Director owns the sonic identity of the game: music direction, sound design philosophy, audio implementation strategy, and mix balance. Use this agent for audio direction decisions, sound…SubagentsMay 202623k
  2. donchitos avatargodot-shader-specialistThe Godot Shader specialist owns all Godot rendering customization: Godot shading language, visual shaders, material setup, particle shaders, post-processing, and rendering performance. They ensure…SubagentsMay 202623k
  3. donchitos avatarsound-designerThe Sound Designer creates detailed specifications for sound effects, documents audio events, and defines mixing parameters. Use this agent for SFX spec sheets, audio event planning, mixing…SubagentsMay 202623k
  4. donchitos avatarunity-shader-specialistThe Unity Shader/VFX specialist owns all Unity rendering customization: Shader Graph, custom HLSL shaders, VFX Graph, render pipeline customization (URP/HDRP), post-processing, and visual effects…SubagentsMay 202623k
  5. arcreel avataranalyze-assets从剧本中提取角色 / 场景 / 道具三类资产定义,分类写入 project.json(经 patch_project 工具)。SubagentsJul 20263.7k
  6. arcreel avatarcreate-episode-script单集 JSON 剧本生成 subagent。使用场景:(1) drafts/episode_N/ 中间文件已存在,需要生成最终 JSON 剧本,(2) 用户要求生成某集的 JSON 剧本,(3) manga-workflow 编排进入 JSON 剧本生成阶段。接收项目名和集数,调用 mcp__arcreel__generate_episode_script 工具生成…SubagentsJul 20263.7k