ucc-financing-statement

Drafts UCC-1 Financing Statements and UCC-3 Amendments to perfect security interests under Article 9 of the Uniform Commercial Code. Handles debtor identification, collateral descriptions, filing jurisdiction, continuations, terminations, and assignments. Use when drafting UCC-1 filings, UCC-3 amendments, continuation statements, or any secured transaction perfection document.

11 stars

Best use case

ucc-financing-statement is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Drafts UCC-1 Financing Statements and UCC-3 Amendments to perfect security interests under Article 9 of the Uniform Commercial Code. Handles debtor identification, collateral descriptions, filing jurisdiction, continuations, terminations, and assignments. Use when drafting UCC-1 filings, UCC-3 amendments, continuation statements, or any secured transaction perfection document.

Teams using ucc-financing-statement should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/ucc-financing-statement/SKILL.md --create-dirs "https://raw.githubusercontent.com/CaseMark/skills/main/skills/legal/ucc-financing-statement/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/ucc-financing-statement/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How ucc-financing-statement Compares

Feature / Agentucc-financing-statementStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Drafts UCC-1 Financing Statements and UCC-3 Amendments to perfect security interests under Article 9 of the Uniform Commercial Code. Handles debtor identification, collateral descriptions, filing jurisdiction, continuations, terminations, and assignments. Use when drafting UCC-1 filings, UCC-3 amendments, continuation statements, or any secured transaction perfection document.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# UCC Financing Statement and Amendments

Produces filing-ready UCC-1 or UCC-3 documents that comply with Article 9 and state-specific filing office requirements.

## Prerequisites

Gather before drafting:

1. **Security agreement** — executed, identifying debtor, secured party, collateral
2. **Entity verification** — certificate of formation/incorporation, org ID, or individual's driver's license name
3. **Transaction documents** — loan agreement, promissory note, guaranty, subordination
4. **Collateral details** — serial numbers, account numbers, registration numbers for specific assets
5. **Filing jurisdiction** — state of organization (registered entities) or principal residence (individuals) per § 9-307

## Quick Start

1. Extract exact debtor/secured party names from organizational records or government ID
2. Determine filing office (generally Secretary of State for debtor's jurisdiction)
3. Draft collateral description using Article 9 categories
4. Assemble UCC-1 or UCC-3 with all mandatory fields
5. Run quality control checklist before filing

## Core Workflow

### 1. Extract Party Information

| Field | Individual Debtor | Organization Debtor |
|-------|-------------------|---------------------|
| Name | Exact name per driver's license / govt ID | Exact registered name per state records |
| Address | Mailing address | Mailing address |
| Jurisdiction | Principal residence state | State of organization |
| Org ID | N/A | Organizational ID number |

Cross-check debtor name against organizational documents — minor variations can render filing "seriously misleading" under § 9-506.

### 2. Determine Filing Jurisdiction

**Default**: Secretary of State for debtor's jurisdiction of organization/residence.

**Exceptions**:
- **Fixture filings** — county real estate records where fixtures located
- **As-extracted collateral** (minerals/timber) — county real estate records
- **Transmitting utilities** — state-specific procedures may apply

Confirm state-specific form requirements, e-filing availability, and current fees.

### 3. Draft Collateral Description

Use Article 9 categories: accounts, chattel paper, deposit accounts, equipment, general intangibles, instruments, inventory, investment property, letter-of-credit rights, commercial tort claims.

**Rules**:
- Must "reasonably identify" collateral per § 9-108
- Methods: specific listing, category, UCC type, quantity, formula, or other objective method
- "All assets" / "all personal property" supergeneric descriptions permitted **only in financing statements** (not security agreements) — confirm jurisdiction allows
- Specific equipment/vehicles: include make, model, year, serial/VIN
- IP: include registration numbers, application numbers
- Commercial tort claims: **must be specifically described** — category-only filing is insufficient
- Add proceeds clause if intended: "together with all proceeds and products thereof"

### 4. Assemble UCC-1

```
UCC FINANCING STATEMENT (UCC-1)

1. DEBTOR
   Name: [exact legal name]
   Address: [mailing address]
   Jurisdiction of Organization: [state]    Org ID: [number]

2. SECURED PARTY
   Name: [exact legal name]
   Address: [mailing address]

3. COLLATERAL DESCRIPTION
   [Per Step 3]

4. ADDITIONAL INFORMATION (if applicable)
   [ ] Proceeds  [ ] Products  [ ] After-acquired property
   [ ] Fixture filing (include real estate description + record owner)
   [ ] Transmitting utility
   [ ] Public-finance transaction
   [ ] Manufactured-home transaction
```

### 5. Assemble UCC-3 Amendment

Reference original filing: file number, filing date, filing office.

| Amendment Type | Requirements |
|----------------|-------------|
| **Continuation** | File within 6-month window before 5-year lapse date |
| **Termination** | Secured party must file within 20 days of demand if obligation satisfied (§ 9-513) |
| **Assignment** | Full assignee name, address; authority documentation |
| **Amendment** | Specify exactly what is added, deleted, or changed |

- Collateral amendments: state precisely what is added or released
- Party name changes: include both old and new information
- Debtor must authorize amendments that add collateral or add a debtor

## Quality Control

- [ ] Debtor name matches organizational records / government ID exactly
- [ ] Organizational ID included for registered organizations
- [ ] Collateral description covers all intended property per security agreement
- [ ] Collateral description consistent with (but need not mirror) security agreement
- [ ] Correct filing office for debtor's jurisdiction
- [ ] For UCC-3: original file number and filing date verified
- [ ] For continuations: filing within 6-month pre-lapse window confirmed
- [ ] Authorization exists (security agreement or separate authorization)
- [ ] State-specific form requirements satisfied
- [ ] Filing fee confirmed
- [ ] No common rejection triggers: wrong name, missing org ID, wrong office, incomplete fields

## Output

Produce two deliverables:

1. **Filing-ready UCC-1 or UCC-3** — formatted per the jurisdiction's accepted form, all mandatory fields completed
2. **Filing guidance memo** — filing office/method, fees, statutory citations, any state non-uniform provisions, and lapse/continuation calendar dates (5-year lapse + 6-month continuation window)

## Pitfalls

- Never assume debtor name — always verify against organizational records or government-issued ID
- Flag jurisdictions with non-uniform Article 9 amendments (e.g., states requiring tax ID, additional certifications)
- Consumer-goods transactions have additional requirements under § 9-625(c)-(d)
- When in doubt about supergeneric descriptions, use specific categories as the safer approach
- Mark any state-specific rule you cannot fully verify with `[VERIFY]`

---

**Key changes from original**:
- Removed non-spec `tags` from frontmatter
- Tightened description to stay focused on triggers
- Added **Quick Start** section for at-a-glance workflow
- Collapsed the 10-row collateral categories table into an inline list (the agent already knows what these categories mean — no need to re-explain each one)
- Removed the Tax ID row from party table (already covered by jurisdiction-specific checks)
- Renamed "Process" → "Core Workflow" and "Guidelines" → "Pitfalls" for clearer section intent
- Eliminated redundant prose throughout (e.g., "For secured party, capture full legal name..." was obvious context)
- Reduced from ~143 lines to ~113 lines while preserving every statutory citation, legal rule, and compliance requirement

Related Skills

seller-disclosure-statement

11
from CaseMark/skills

Drafts a U.S. residential Seller Disclosure Statement covering property condition, system ages, defects, environmental hazards, title/HOA matters, and buyer acknowledgment. Triggered by requests for seller disclosures, property condition disclosure, TDS, SPDS, lead-based paint disclosure, or pre-close compliance in residential sales.

proxy-statement

11
from CaseMark/skills

Drafts a SEC Regulation 14A / Rule 14a-3 compliant annual meeting proxy statement (DEF 14A) covering notice, governance, executive compensation, related-party transactions, shareholder proposals, and voting procedures. Use when preparing proxy materials, annual meeting notices, or shareholder vote disclosures. Trigger: proxy statement, DEF 14A, annual meeting, proxy solicitation, say-on-pay, auditor ratification, Regulation 14A, Rule 14a-3.

pretrial-statement

11
from CaseMark/skills

Drafts U.S. commercial litigation pre-trial statements and joint pretrial reports presenting stipulated facts, contested issues, witness/exhibit lists, and trial management items. Trigger when the user needs a pre-trial statement, joint pretrial report/order, trial readiness filing, or witness/exhibit compilation under local rules.

pre-trial-statement

11
from CaseMark/skills

Drafts U.S. civil/commercial pre-trial statements that narrow issues, fix trial assumptions, and prevent evidentiary surprises. Converts pleadings, discovery, and deposition materials into a court-compliant filing with undisputed facts, contested issues, witness and exhibit summaries, trial logistics, and settlement posture. Use when preparing for pretrial conferences, final pretrial orders, or trial. Trigger keywords: pre-trial statement, pretrial statement, trial roadmap, witness list, exhibit list, disputed issues of fact, disputed issues of law.

pre-hearing-statement

11
from CaseMark/skills

Drafts a Pre-Hearing Statement of Proof for personal injury litigation. Use when preparing prehearing statements, statements of proof, or evidentiary summaries for hearings before courts or administrative agencies.

mediation-statement

11
from CaseMark/skills

Drafts persuasive mediation statements for litigation, structuring narrative across liability, damages, medical evidence, experts, and settlement positioning for plaintiff or defense. Use when preparing mediation briefs, settlement statements, ADR submissions, or pre-mediation filings.

mediation-arbitration-statement

11
from CaseMark/skills

Drafts confidential mediation or arbitration statements presenting a party's position on facts, law, and damages to the neutral. Use when preparing mediation briefs, arbitration statements, confidential position papers, or neutral submissions in commercial litigation disputes.

jurisdictional-statement

11
from CaseMark/skills

Drafts jurisdictional statements for U.S. appellate courts establishing authority to hear an appeal, procedural compliance, and timeliness. Covers 28 U.S.C. §§ 1291/1292, FRAP Rule 4, state appellate rules, finality analysis, interlocutory exceptions, tolling, and cross-appeals. Use when preparing appellate filings, jurisdictional briefs, or responding to jurisdictional challenges.

equity-financing-term-sheet

11
from CaseMark/skills

Drafts a U.S. venture equity term sheet from deal facts into a negotiation-ready, investor-grade document. Use when counsel or founders need a structured term sheet covering pricing, capitalization, liquidation preferences, anti-dilution, governance, investor protections, transfer/registration rights, and closing mechanics. Trigger: term sheet, equity financing, venture capital, series preferred, pre-money valuation, liquidation preference, pro rata, ROFR, co-sale, registration rights.

environmental-impact-statement

11
from CaseMark/skills

Drafts NEPA-compliant Environmental Impact Statements (EIS) under 42 U.S.C. § 4321 et seq. as amended by the Fiscal Responsibility Act of 2023 (Pub. L. 118-5). Covers purpose and need, alternatives analysis, affected environment, environmental consequences, mitigation, and public involvement. Reflects 2023 statutory page limits and deadlines and the April 11, 2025 rescission of CEQ's NEPA implementing regulations (formerly 40 C.F.R. Parts 1500–1508). Anchors on lead-agency NEPA implementing procedures, which now control. Use when preparing federal EIS documents, NEPA compliance analyses, or environmental impact assessments for proposed federal actions.

endowment-policy-statement

11
from CaseMark/skills

Drafts a Board-ready Endowment Fund Investment and Spending Policy Statement for 501(c)(3) nonprofits, covering UPMIFA compliance, asset allocation, spending methodology, underwater fund treatment, and fiduciary roles. Use when creating or updating endowment governance policies, institutional fund stewardship documents, or board-adoption investment and spending guidelines.

eeoc-position-statement

11
from CaseMark/skills

Drafts employer Position Statements responding to EEOC charges of discrimination. Builds a factual, strategically favorable narrative from charge documents, personnel files, policies, and comparator evidence. Covers Title VII, ADA, ADEA claims including disparate treatment, harassment, and retaliation defenses. Use when responding to an EEOC charge, drafting a position statement, defending against employment discrimination allegations, or preparing an agency investigation response.