Embodiment Description
Write detailed embodiments for: $ARGUMENTS
Embodiments describe HOW to make and use the invention -- they are the patent equivalent of experiment sections, but describe the invention rather than evaluating it empirically.
Constants
MIN_EMBODIMENTS = 1 — At least one complete embodiment required
MAX_EMBODIMENTS = 3 — Practical limit; more embodiments strengthen enablement
EMBODIMENT_STYLE = detailed — detailed (full working example) or outline (sketch)
REFERENCE_NUMERAL_PREFIX = 100 — Starting reference numeral for first figure's components
Inputs
patent/INVENTION_DISCLOSURE.md — invention decomposition (core/supporting/optional features)
patent/CLAIMS.md — drafted claims that the embodiments must support
- User-provided figures (if any) in any directory
patent/figures/numeral_index.md if it exists (from /figure-description)
Workflow
Step 1: Plan Embodiments
For each claim category (method, system, etc.), plan at least one embodiment:
| Embodiment |
Covers Claims |
Type |
Key Variations |
| 1 |
Claims 1, X |
Best mode / preferred |
[primary implementation] |
| 2 |
Claims 2, 3 |
Alternative |
[different parameters/materials] |
| 3 |
Claims 4, 5 |
Additional alternative |
[different configuration] |
Step 2: Write Each Embodiment
For each embodiment, write a detailed description following this structure:
Opening paragraph:
"In one embodiment, [invention summary with reference to what is being described]."
Component/step-by-step description:
For method embodiments:
- Describe each step in order
- Reference figure numerals: "As shown in FIG. 1, at step 202, the processor 102 receives the input data 104..."
- Include specific parameters, ranges, and conditions
- Describe what happens at each decision point
For system/apparatus embodiments:
- Describe each component
- Reference figure numerals: "Referring to FIG. 1, the system 100 comprises a processor 102, a memory 104, and a communication interface 106..."
- Describe interconnections between components
- Describe operation of the system step-by-step
Variations and alternatives:
- "In some embodiments, the processor 102 may be a GPU, an FPGA, or an ASIC."
- "In another embodiment, the memory 104 may be replaced with a distributed storage system."
- "The parameters described above are exemplary; other values within the range [X, Y] are also contemplated."
These variations are critical -- they support broader claim interpretation.
Step 3: Reference Numeral Integration
Ensure consistent reference numeral usage:
- Every component mentioned must have a numeral
- Numeral must appear first in parentheses after the component name: "the processor (102)"
- Subsequent references: "the processor 102" (no parentheses)
- Numbering follows figure series: 100-series for FIG. 1, 200-series for FIG. 2
Format:
- First mention: "the processor (102)"
- Later in same embodiment: "the processor 102"
- Cross-figure: "the processor 102 (shown in both FIG. 1 and FIG. 2)"
Step 4: Claim Support Verification
For each claim element, verify it appears in at least one embodiment:
| Claim Element |
Embodiment |
Reference Numeral |
Description Paragraph |
| [element] |
[which] |
[numeral] |
[paragraph reference] |
If any claim element lacks embodiment support, add the necessary description.
Step 5: Software/Algorithm Embodiments (if applicable)
For method/software inventions, include:
- Pseudocode or algorithmic description (NOT actual code)
- Flowchart description tied to figures
- Data structure descriptions
- Interface specifications
Example:
In one embodiment, the method comprises the following steps:
At step 202, the processor 102 receives input data from the input device 108.
At step 204, the processor 102 extracts feature vectors from the input data using a convolutional neural network.
At step 206, the processor 102 applies the attention mechanism 110 to the feature vectors...
Step 6: Output
Embodiment sections are written to patent/specification/detailed_description.md (or appended to the specification structure).
Each embodiment section should be self-contained but cross-reference other embodiments when describing alternatives.
Key Rules
- Embodiments must teach a POSITA to make and use the invention without undue experimentation.
- Include at least one "best mode" embodiment (US requirement).
- Multiple embodiments strengthen the specification against enablement challenges.
- Describe the invention, do NOT evaluate it empirically ("The embodiment achieves 95% accuracy" is wrong; "The processor classifies the input data" is correct).
- CRITICAL — NO experimental data, test results, accuracy percentages, detection rates, precision values, or comparative performance data. These belong in papers, not patents. The embodiment teaches HOW to make and use, not HOW WELL it performs.
- WRONG: "传感器对直径超过150μm的金属颗粒实现了100%的检测精度,即使在检测限处仍保持94%的高精度。"
- RIGHT: "当不锈钢颗粒通过间隙传感区域时,谐振频率下降。颗粒直径越大,频率偏移幅度越大。"
- Do NOT include tables of experimental results, graphs of measurement data, or comparisons with prior art performance.
- CRITICAL — An embodiment is NOT an experiment. Do NOT describe "repeated experiments", "accuracy evaluation", "precision testing", "calibration experiments", or "comparison with reference methods". An embodiment describes ONE way to make and use the invention — it is a recipe, not a test report.
- Do NOT copy experimental sections from source papers verbatim. Transform the experimental setup into a manufacturing/operation description.
- If the source material is a paper, extract ONLY: (1) what was built, (2) what materials/parameters were used, (3) how it operates. Ignore all test methodology, results, and performance metrics.
- Include specific parameters where possible, but frame them as exemplary, not limiting.
- Reference numerals must be consistent with the figures.
- Do NOT use subjective language ("excellent", "surprising", "superior").
1---2name: embodiment-description3description: Write detailed embodiment descriptions for patent specifications. Use when user says "撰写实施例", "write embodiment", "实施例描述", "detailed description", or wants to describe how to practice an invention.4---5
6# Embodiment Description
7
8Write detailed embodiments for: **$ARGUMENTS**
9
10Embodiments describe HOW to make and use the invention -- they are the patent equivalent of experiment sections, but describe the invention rather than evaluating it empirically.
11
12## Constants
13
14- `MIN_EMBODIMENTS = 1` — At least one complete embodiment required
15- `MAX_EMBODIMENTS = 3` — Practical limit; more embodiments strengthen enablement
16- `EMBODIMENT_STYLE = detailed` — `detailed` (full working example) or `outline` (sketch)
17- `REFERENCE_NUMERAL_PREFIX = 100` — Starting reference numeral for first figure's components
18
19## Inputs
20
211. `patent/INVENTION_DISCLOSURE.md` — invention decomposition (core/supporting/optional features)
222. `patent/CLAIMS.md` — drafted claims that the embodiments must support
233. User-provided figures (if any) in any directory
244. `patent/figures/numeral_index.md` if it exists (from `/figure-description`)
25
26## Workflow
27
28### Step 1: Plan Embodiments
29
30For each claim category (method, system, etc.), plan at least one embodiment:
31
32| Embodiment | Covers Claims | Type | Key Variations |
33|-----------|--------------|------|----------------|
34| 1 | Claims 1, X | Best mode / preferred | [primary implementation] |
35| 2 | Claims 2, 3 | Alternative | [different parameters/materials] |
36| 3 | Claims 4, 5 | Additional alternative | [different configuration] |
37
38### Step 2: Write Each Embodiment
39
40For each embodiment, write a detailed description following this structure:
41
42**Opening paragraph**:
43"In one embodiment, [invention summary with reference to what is being described]."
44
45**Component/step-by-step description**:
46
47For method embodiments:
48- Describe each step in order
49- Reference figure numerals: "As shown in FIG. 1, at step 202, the processor 102 receives the input data 104..."
50- Include specific parameters, ranges, and conditions
51- Describe what happens at each decision point
52
53For system/apparatus embodiments:
54- Describe each component
55- Reference figure numerals: "Referring to FIG. 1, the system 100 comprises a processor 102, a memory 104, and a communication interface 106..."
56- Describe interconnections between components
57- Describe operation of the system step-by-step
58
59**Variations and alternatives**:
60- "In some embodiments, the processor 102 may be a GPU, an FPGA, or an ASIC."
61- "In another embodiment, the memory 104 may be replaced with a distributed storage system."
62- "The parameters described above are exemplary; other values within the range [X, Y] are also contemplated."
63
64These variations are critical -- they support broader claim interpretation.
65
66### Step 3: Reference Numeral Integration
67
68Ensure consistent reference numeral usage:
69
701. Every component mentioned must have a numeral
712. Numeral must appear first in parentheses after the component name: "the processor (102)"
723. Subsequent references: "the processor 102" (no parentheses)
734. Numbering follows figure series: 100-series for FIG. 1, 200-series for FIG. 2
74
75**Format**:
76- First mention: "the processor (102)"
77- Later in same embodiment: "the processor 102"
78- Cross-figure: "the processor 102 (shown in both FIG. 1 and FIG. 2)"
79
80### Step 4: Claim Support Verification
81
82For each claim element, verify it appears in at least one embodiment:
83
84| Claim Element | Embodiment | Reference Numeral | Description Paragraph |
85|---------------|-----------|-------------------|----------------------|
86| [element] | [which] | [numeral] | [paragraph reference] |
87
88If any claim element lacks embodiment support, add the necessary description.
89
90### Step 5: Software/Algorithm Embodiments (if applicable)
91
92For method/software inventions, include:
93- Pseudocode or algorithmic description (NOT actual code)
94- Flowchart description tied to figures
95- Data structure descriptions
96- Interface specifications
97
98Example:
99```
100In one embodiment, the method comprises the following steps:
101At step 202, the processor 102 receives input data from the input device 108.
102At step 204, the processor 102 extracts feature vectors from the input data using a convolutional neural network.
103At step 206, the processor 102 applies the attention mechanism 110 to the feature vectors...
104```
105
106### Step 6: Output
107
108Embodiment sections are written to `patent/specification/detailed_description.md` (or appended to the specification structure).
109
110Each embodiment section should be self-contained but cross-reference other embodiments when describing alternatives.
111
112## Key Rules
113
114- Embodiments must teach a POSITA to make and use the invention without undue experimentation.
115- Include at least one "best mode" embodiment (US requirement).
116- Multiple embodiments strengthen the specification against enablement challenges.
117- Describe the invention, do NOT evaluate it empirically ("The embodiment achieves 95% accuracy" is wrong; "The processor classifies the input data" is correct).
118- **CRITICAL — NO experimental data, test results, accuracy percentages, detection rates, precision values, or comparative performance data.** These belong in papers, not patents. The embodiment teaches HOW to make and use, not HOW WELL it performs.
119- WRONG: "传感器对直径超过150μm的金属颗粒实现了100%的检测精度,即使在检测限处仍保持94%的高精度。"
120- RIGHT: "当不锈钢颗粒通过间隙传感区域时,谐振频率下降。颗粒直径越大,频率偏移幅度越大。"
121- Do NOT include tables of experimental results, graphs of measurement data, or comparisons with prior art performance.
122- **CRITICAL — An embodiment is NOT an experiment.** Do NOT describe "repeated experiments", "accuracy evaluation", "precision testing", "calibration experiments", or "comparison with reference methods". An embodiment describes ONE way to make and use the invention — it is a recipe, not a test report.
123- Do NOT copy experimental sections from source papers verbatim. Transform the experimental setup into a manufacturing/operation description.
124- If the source material is a paper, extract ONLY: (1) what was built, (2) what materials/parameters were used, (3) how it operates. Ignore all test methodology, results, and performance metrics.
125- Include specific parameters where possible, but frame them as exemplary, not limiting.
126- Reference numerals must be consistent with the figures.
127- Do NOT use subjective language ("excellent", "surprising", "superior").