California Small Claims Court Form (SC-100)
How to fill out California Small Claims Court forms (SC-100 and related). Use this skill whenever the user needs to complete a California small claims court filing, fill in plaintiff/defendant information, describe a claim, or prepare court documents for small claims cases.
California Small Claims Court Form (SC-100)
Overview
This skill covers filling out the California SC-100 (Plaintiff's Claim and ORDER to Go to Small Claims Court) form. The form is typically a fillable PDF with standard fields.
Key Sections in SC-100
Court Information (top)
- Court name, address, city/state/zip — leave blank unless specified (court fills these)
- Case number — leave blank (court assigns)
Plaintiff Information (Section 1)
- Full name, address, phone, email
- "First time suing" checkbox
Defendant Information (Section 2)
- Full name, address, phone
- Multiple defendants possible
Claim Description (Section 4-6)
- Amount claimed in dollars
- Date(s) the situation occurred (from/to dates)
- Description of why defendant owes money
- What plaintiff has done to collect
Venue (where to file)
- Checkbox for reason court has jurisdiction (e.g., defendant lives/does business in this county)
Declaration/Signature
- Date filed
- Plaintiff signature
Date Format
Use xxxx-xx-xx format (ISO 8601: YYYY-MM-DD) when specified. For example: 2026-01-19.
Tips for Filling
- Run
check_fillable_fields.pyfirst to determine if PDF has fillable fields - If fillable, use
extract_form_field_info.pyto get field IDs, then convert to images to understand field purposes - Only fill fields relevant to the case — leave court-assigned and optional fields empty
- For checkboxes: use the
checked_valuefrom field info - For "first time suing": check the appropriate box
- Defendant address should be complete with street, city, state, zip
Common Field Patterns
- Plaintiff name: typically "plaintiff_name" or similar
- Phone numbers: no special format required unless form specifies
- Amount: dollar amount without $ sign or with, depending on field
- Dates: use YYYY-MM-DD format when specified
Script Usage (from /root/.claude/skills/pdf/ directory)
# Check if PDF has fillable fields
python scripts/check_fillable_fields.py <file.pdf>
# Extract field info to JSON
python scripts/extract_form_field_info.py <input.pdf> <field_info.json>
# Convert to images for visual analysis
python scripts/convert_pdf_to_images.py <file.pdf> <output_directory>
# Fill the form
python scripts/fill_fillable_fields.py <input.pdf> <field_values.json> <output.pdf>
No additional documents ship with this skill.
Related Skills
Writ of Execution
Drafts writs of execution and supporting levy instructions for post-judgment enforcement of money judgments. Covers application for writ, interest ca…
Deposition Witness Preparation
Runs ethics-compliant deposition witness-prep workflows for US civil litigation. Use when preparing party, fact, expert, or 30(b)(6) witnesses for de…
Witness Preparation Ethics Boundaries
Evaluates witness preparation activities for ethical compliance under ABA Formal Opinion 508 and Model Rules 3.3, 3.4, 8.4. Distinguishes permissible…
Deposition Witness Preparation
Guides attorneys through deposition witness preparation using a two-session model with document review, practice examination, and day-of logistics. C…
Spokane County Superior Court — Venue Skill
Use when handling a Spokane County, Washington Superior Court case — civil practice at the **Spokane County Courthouse** (1116 West Broadway Avenue, …
Comments
Loading…