extract-residential-lease-data

extract-residential-lease-data is a skill for Claude Code from iterationlayer/skills. It costs 32 tokens per session (3,849 once invoked), scanned A, original, MIT.

A document-extraction recipe for turning residential leases into structured records of landlords, tenants, properties, payments, dates, and terms.

In plain words
What is it for?
It helps property managers extract lease information for tenant onboarding, rent collection, and compliance workflows.
Why use it?
It reduces the effort of searching long lease documents when onboarding tenants, collecting rent, or checking compliance details.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the document-extraction plugin — 142 skills shipped together

Good fit It helps property managers extract lease information for tenant onboarding, rent collection, and compliance workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iterationlayer/skills/extract-residential-lease-data
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add iterationlayer/skills --skill extract-residential-lease-data
Clone the repo
git clone --depth 1 https://github.com/iterationlayer/skills

Made for: Claude Code.

Or install document-extraction, the plugin that ships this one along with the rest of its 142 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for extract-residential-lease-data

README.md
[![agentmods](https://agentmods.dev/badge/skills/iterationlayer/skills/extract-residential-lease-data/github.svg)](https://agentmods.dev/skills/iterationlayer/skills/extract-residential-lease-data)
Your own site
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-residential-lease-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-residential-lease-data/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for extract-residential-lease-data

Your own site · 80×15
<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-residential-lease-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-residential-lease-data.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,849 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00032 $0.03849
Opus 5 $0.00016 $0.01924
Sonnet 5 $0.00006 $0.00770
Haiku 4.5 $0.00003 $0.00385

Measured 7d ago against content hash dedcaa181ea6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

extract-residential-lease-data scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.iterationlayer.com/document-extraction/v1/extract \
skills/extract-residential-lease-data/SKILL.md · 562 lines

How it starts

The opening of the file, as written. The whole thing — 562 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Extract Residential Lease Data

Property managers use this recipe to extract residential lease terms into structured records for tenant onboarding, rent collection, and compliance workflows.

APIs Used

Document Extraction (1 credit per page)

Prerequisites

You need an Iteration Layer API key. Get one at platform.iterationlayer.com during the 7-day trial.

For full integration guidance (SDKs, auth, MCP, error handling), see the Iteration Layer Integration Guide.

Implementation

curl -X POST https://api.iterationlayer.com/document-extraction/v1/extract \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "files": [
    {
      "type": "url",
      "name": "residential-lease.pdf",
      "url": "https://example.com/documents/residential-lease-sample.pdf"
    }
  ],
  "schema": {
    "fields": [
      {
        "name": "landlord_name",
        "type": "TEXT",
        "description": "Landlord or property manager name"
      },
      {
        "name": "tenant_names",
        "type": "TEXT",
        "description": "Tenant names"
      },
      {
        "name": "property_address",
        "type": "ADDRESS",
        "description": "Rental property address"
      },
      {
        "name": "lease_start_date",
        "type": "DATE",
        "description": "Lease start date"
      },
      {
        "name": "lease_end_date",
        "type": "DATE",
        "description": "Lease end date"
      },
      {
        "name": "monthly_rent",
        "type": "CURRENCY_AMOUNT",
        "description": "Monthly rent"
      },
      {
        "name": "rent_due_day",
        "type": "DATE",
        "description": "Rent due date or day of month"
      },
      {
        "name": "security_deposit",
        "type": "CURRENCY_AMOUNT",
        "description": "Security deposit"
      },
      {
        "name": "utilities_responsibility",
        "type": "TEXT",
        "description": "Utility responsibility terms"
      },
      {
        "name": "occupants",
        "type": "TEXT",
        "description": "Authorized occupants"
      },
      {
        "name": "pet_terms",
        "type": "TEXT",
        "description": "Pet policy or pet deposit terms"
      },
      {
        "name": "late_fee_terms",
        "type": "TEXT",
        "description": "Late fee terms"
      }
    ]
  }
}'

Read the full file on GitHub · 562 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 562 lines · 32 tokens per session scan A dedcaa181ea6

Subscribe to this mod's changes

extract-residential-lease-data is a skill published in the GitHub repository iterationlayer/skills (3 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 3,849 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

akf-trust-metadata-v2

AKF — The AI Native File Format workflow skill. Use this skill when the user needs The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing and the operator should preserve…

diegosouzapw/awesome-omni-skills · 100 tokens

kamy

Generate production-ready PDFs (invoices, receipts, contracts, reports, brochures) from Handlebars templates or raw HTML using the Kamy API, and send them for e-signature with optional OTP identity verification, sender-chosen placement, auto-reminders, and a downloadable Certificate of Completion audit trail. Use…

Kamy-Development/kamy-plugin · 102 tokens

records-electronic-records-acceptance

Use this skill to understand when electronic records are acceptable to FMCSA inspectors. Covers PDF, original-format, and search-ability requirements.

x3allamerican/skills · 36 tokens

akf-trust-metadata

AKF — The AI Native File Format workflow skill. Use this skill when the user needs The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing and the operator should preserve…

diegosouzapw/awesome-omni-skills · 98 tokens

slides

Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…

fcakyon/claude-codex-settings · 83 tokens

lov-any2docx

Convert Markdown documents to professionally styled DOCX (Word) files with python-docx. Handles CJK/Latin mixed text, fenced code blocks, tables, blockquotes, cover pages, TOC field, watermarks, and page numbers. Supports multiple color themes matching any2pdf (Configurable Academic, Nord, GitHub Light, etc.) and is…

lovstudio/skills · 184 tokens