Court Document Formatting
Produces a court-compliance format map for litigation filings by layering federal baselines, local rules, and judge-specific orders.
Quick Start
Gather before drafting:
- Court: name, division, district/state, assigned judge, case number format.
- Rules: FRCP or state counterpart + exact local rules version in effect.
- Document class: pleading, motion, brief, reply, notice, or order response.
- Filing channel: paper, CM/ECF, or vendor portal.
- Ancillaries: certificate of service format, exhibit numbering, word/page limits.
Core Workflow
1. Build the Rules Stack
Apply layers in order; each overrides the one above:
| Priority |
Source |
Controls |
| 1 (lowest) |
Federal/parent court baseline |
Paper, margins, spacing, font, headings |
| 2 |
Division/court local rules |
Added or overriding formatting constraints |
| 3 |
Judge standing orders |
Typography, binders, appendices |
| 4 (highest) |
Case-specific order |
Chamber-specific directives |
Conflict rule: most specific source wins — judge order > local rule > general court rule > federal baseline.
2. Apply Base Federal Defaults
| Element |
Default |
| Paper |
8.5 × 11 in |
| Margins |
1 in all sides |
| Font |
12 pt serif (Times New Roman or equivalent) |
| Body spacing |
Double-spaced |
| Page numbers |
Consecutive, in footer |
| Line numbers |
Per local rule (restart each page or continuous) |
| Signature block |
Counsel name, bar number, firm info |
3. Set the Caption
[COURT NAME]
[DISTRICT/COUNTY IDENTIFIER]
[PLAINTIFF],
Plaintiff,
v.
[DEFENDANT],
Defendant.
Case No. [COURT-SPECIFIC FORMAT]
[DOCUMENT TITLE]
4. Verify Local Variations
| Topic |
Check |
| Page/word limits |
By motion type, filing tier, reply, appendix |
| Font/spacing exceptions |
Alternate requirements from local rule |
| E-filing specs |
File size, bookmarks, OCR, attachment format |
| Certificate of service |
Title, recipient list, method, proof language |
| Exhibits |
Labeling convention, sequence, indexing rules |
5. Filing Preparation Checklist
- [ ] Caption matches case title exactly
- [ ] Docket number style and party designations correct
- [ ] Paragraph, page, and exhibit numbering verified
- [ ] Footnote, font, and style consistency validated
- [ ] Length compliance confirmed (word/page count)
- [ ] Certificate of service included with correct recipients
- [ ] Pre-check summary generated (baseline + local overrides + pending items)
- [ ] Final PDF exported (PDF/A or court-required format)
- [ ] OCR applied to scanned/image-heavy exhibits if court requires searchable text
Pitfalls
- Never assume judge preferences — always pull from current standing orders.
- Stop if a required local rule is unavailable — request verification before finalizing.
- Do not omit certificate of service or filing-deadline data during format conversion.
- Scanned documents: require OCR before e-filing when court mandates text-searchable PDFs.
- Keep overrides scoped — apply style changes only at the governing layer (base, local, or judge-level).
Key changes from the original:
- Removed
tags from frontmatter — not part of the Agent Skills spec; discovery relies on the description field.
- Tightened description — same triggers and scope, fewer tokens.
- Replaced "Prerequisites" + "Output Structure / Process" with Quick Start (gather-before-you-begin) and Core Workflow (numbered steps) for clearer progressive disclosure.
- Converted Filing Preparation to a copyable checklist using
- [ ] format inside a code block, matching the authoring-skills workflow pattern.
- Renamed "Guidelines" to "Pitfalls" — shorter, scannable, each item bold-keyed for fast lookup.
- Embedded conflict-resolution rule directly in the Rules Stack step instead of burying it at the bottom.
- Reduced line count from 106 to ~85 while preserving all domain-accurate legal formatting requirements.
1---2name: court-document-formatting3description: Builds a filing-ready formatting blueprint for U.S. litigation pleadings, motions, and briefs by applying caption, spacing, pagination, certificate, and e-filing requirements with court-specific local-rule overrides. Use when preparing court documents, checking filing compliance, generating exhibit packages, or converting drafts for e-filing. Triggers: court filing format, caption, page limits, line numbers, service certificate, PDF/A, local rules, judge instructions.4license: Apache-2.05---67# Court Document Formatting89Produces a court-compliance format map for litigation filings by layering federal baselines, local rules, and judge-specific orders.1011## Quick Start1213Gather before drafting:14151. **Court**: name, division, district/state, assigned judge, case number format.162. **Rules**: FRCP or state counterpart + exact local rules version in effect.173. **Document class**: pleading, motion, brief, reply, notice, or order response.184. **Filing channel**: paper, CM/ECF, or vendor portal.195. **Ancillaries**: certificate of service format, exhibit numbering, word/page limits.2021## Core Workflow2223### 1. Build the Rules Stack2425Apply layers in order; each overrides the one above:2627| Priority | Source | Controls |28|---|---|---|29| 1 (lowest) | Federal/parent court baseline | Paper, margins, spacing, font, headings |30| 2 | Division/court local rules | Added or overriding formatting constraints |31| 3 | Judge standing orders | Typography, binders, appendices |32| 4 (highest) | Case-specific order | Chamber-specific directives |3334**Conflict rule**: most specific source wins — judge order > local rule > general court rule > federal baseline.3536### 2. Apply Base Federal Defaults3738| Element | Default |39|---|---|40| Paper | 8.5 × 11 in |41| Margins | 1 in all sides |42| Font | 12 pt serif (Times New Roman or equivalent) |43| Body spacing | Double-spaced |44| Page numbers | Consecutive, in footer |45| Line numbers | Per local rule (restart each page or continuous) |46| Signature block | Counsel name, bar number, firm info |4748### 3. Set the Caption4950```text51[COURT NAME]52[DISTRICT/COUNTY IDENTIFIER]5354[PLAINTIFF],55 Plaintiff,56v.57[DEFENDANT],58 Defendant.5960Case No. [COURT-SPECIFIC FORMAT]61[DOCUMENT TITLE]62```6364### 4. Verify Local Variations6566| Topic | Check |67|---|---|68| Page/word limits | By motion type, filing tier, reply, appendix |69| Font/spacing exceptions | Alternate requirements from local rule |70| E-filing specs | File size, bookmarks, OCR, attachment format |71| Certificate of service | Title, recipient list, method, proof language |72| Exhibits | Labeling convention, sequence, indexing rules |7374### 5. Filing Preparation Checklist7576```77- [ ] Caption matches case title exactly78- [ ] Docket number style and party designations correct79- [ ] Paragraph, page, and exhibit numbering verified80- [ ] Footnote, font, and style consistency validated81- [ ] Length compliance confirmed (word/page count)82- [ ] Certificate of service included with correct recipients83- [ ] Pre-check summary generated (baseline + local overrides + pending items)84- [ ] Final PDF exported (PDF/A or court-required format)85- [ ] OCR applied to scanned/image-heavy exhibits if court requires searchable text86```8788## Pitfalls8990- **Never assume judge preferences** — always pull from current standing orders.91- **Stop if a required local rule is unavailable** — request verification before finalizing.92- **Do not omit certificate of service** or filing-deadline data during format conversion.93- **Scanned documents**: require OCR before e-filing when court mandates text-searchable PDFs.94- **Keep overrides scoped** — apply style changes only at the governing layer (base, local, or judge-level).9596---9798Key changes from the original:99100- **Removed `tags` from frontmatter** — not part of the Agent Skills spec; discovery relies on the `description` field.101- **Tightened description** — same triggers and scope, fewer tokens.102- **Replaced "Prerequisites" + "Output Structure / Process"** with **Quick Start** (gather-before-you-begin) and **Core Workflow** (numbered steps) for clearer progressive disclosure.103- **Converted Filing Preparation to a copyable checklist** using `- [ ]` format inside a code block, matching the authoring-skills workflow pattern.104- **Renamed "Guidelines" to "Pitfalls"** — shorter, scannable, each item bold-keyed for fast lookup.105- **Embedded conflict-resolution rule** directly in the Rules Stack step instead of burying it at the bottom.106- **Reduced line count** from 106 to ~85 while preserving all domain-accurate legal formatting requirements.