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.
npx agentmods add skills/iterationlayer/skills/extract-rent-roll-datanpx skills add iterationlayer/skills --skill extract-rent-roll-datagit clone --depth 1 https://github.com/iterationlayer/skillsWrote 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.
[](https://agentmods.dev/skills/iterationlayer/skills/extract-rent-roll-data)<a href="https://agentmods.dev/skills/iterationlayer/skills/extract-rent-roll-data"><img src="https://agentmods.dev/badge/skills/iterationlayer/skills/extract-rent-roll-data.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00027 | $0.04699 |
| Opus 5 | $0.00014 | $0.02350 |
| Sonnet 5 | $0.00005 | $0.00940 |
| Haiku 4.5 | $0.00003 | $0.00470 |
Grade A, and why
extract-rent-roll-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 2d 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 \ How it starts
The opening of the file, as written. The whole thing — 681 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Extract Rent Roll Data
Real estate teams use this recipe to extract rent roll fields into structured portfolio data for underwriting, asset management, and lender reporting.
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": "rent-roll.pdf",
"url": "https://example.com/documents/rent-roll-sample.pdf"
}
],
"schema": {
"fields": [
{
"name": "property_name",
"type": "TEXT",
"description": "Property name"
},
{
"name": "property_address",
"type": "ADDRESS",
"description": "Property address"
},
{
"name": "as_of_date",
"type": "DATE",
"description": "Rent roll as-of date"
},
{
"name": "units",
"type": "ARRAY",
"description": "Unit-level rent roll rows",
"fields": [
{
"name": "unit_number",
"type": "TEXT",
"description": "Unit number"
},
{
"name": "tenant_name",
"type": "TEXT",
"description": "Tenant name"
},
{
"name": "unit_type",
"type": "TEXT",
"description": "Unit type or floor plan"
},
{
"name": "square_feet",
"type": "DECIMAL",
"description": "Unit square feet"
},
{
"name": "lease_start_date",
"type": "DATE",
"description": "Lease start date"
},
{
"name": "lease_end_date",
"type": "DATE",
"description": "Lease end date"
},
{
"name": "market_rent",
"type": "CURRENCY_AMOUNT",
"description": "Market rent"
},
{
"name": "current_rent",
"type": "CURRENCY_AMOUNT",
"description": "Current contract rent"
},
{
"name": "security_deposit",
"type": "CURRENCY_AMOUNT",
"description": "Security deposit"
},
{
"name": "occupancy_status",
"type": "TEXT",
"description": "Occupied, vacant, notice, or model status"
}
]
},
{
"name": "total_monthly_rent",
"type": "CURRENCY_AMOUNT",
"description": "Total monthly rent"
},
{
"name": "occupancy_rate_percent",
"type": "DECIMAL",
"description": "Occupancy rate percentage"
}
]
}
}'
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.
- 2d ago First seen · 681 lines · 27 tokens per session scan A e4f0a5de8762
extract-rent-roll-data is a skill published in the GitHub repository iterationlayer/skills (3 stars, last pushed 2mo ago), licensed MIT. It adds 27 tokens to every session and 4,699 once invoked, about $0.0001 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.
Other skills, from other repositories
document-exports
Generate and TEST downloadable document exports (PDF/CSV) from a Node/Express backend — pdfkit streaming, CSV BOM, cents formatting, and the supertest/pdfkit pitfalls that silently break tests.
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…
memstack-business-invoice-generator
Use this skill when the user says 'invoice', 'generate invoice', 'create invoice', 'bill client', 'line items', 'payment terms', or needs professional invoices with tax calculations and payment instructions. Do NOT use for contracts or financial projections.
moai-docs-generation
Documentation generation patterns for technical specs, API docs, user guides, and knowledge bases using real tools like Sphinx, MkDocs, TypeDoc, and Nextra. Use when creating docs from code, building doc sites, or automating documentation workflows.
iflytek-ocr-invoice
Use when user asks to recognize invoices, extract receipt data, or OCR bills and tickets. Recognize and extract structured data from invoices, receipts, and bills using iFlytek OCR API (科大讯飞票据识别). Supports VAT invoices, taxi receipts, train tickets, toll invoices, medical bills, bank receipts, and more.
cwicr-report-generator
Generate professional cost estimation reports from CWICR calculations. HTML, PDF, Excel outputs with charts and breakdowns.