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/crude-code/mcp-app/dataroom-extractnpx skills add crude-code/mcp-app --skill dataroom-extractgit clone --depth 1 https://github.com/crude-code/mcp-appWrote 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/crude-code/mcp-app/dataroom-extract)<a href="https://agentmods.dev/skills/crude-code/mcp-app/dataroom-extract"><img src="https://agentmods.dev/badge/skills/crude-code/mcp-app/dataroom-extract.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 | $0.00066 | $0.04853 |
| Opus 5 | $0.00033 | $0.02426 |
| Sonnet 5 | $0.00013 | $0.00971 |
| Haiku 4.5 | $0.00007 | $0.00485 |
Grade A, and why
dataroom-extract 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 3d 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 -sS -o extraction.json "<extraction_url>" How it starts
The opening of the file, as written. The whole thing — 271 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dataroom Extract
What you're doing
The user uploaded an oil & gas dataroom: the due-diligence package for buying a set of wells, minerals, or royalties. Your job is to read it and produce one structured file, extraction.json, that a downstream deal-valuation step consumes. The buyer needs to know what wells and interests are in the package and what the economics look like — and to trust every number back to the file it came from.
You are NOT writing a report or running a valuation. You are extracting facts, with provenance, into a fixed schema.
What you're building toward
- Output contract:
extraction.json, anExtractionResultexactly as defined inschema.py(bundled here). Readschema.pyonce — it is the authoritative target. Every field is optional and typed; there is no escape-valveextrasdict. - Worked example:
example.jsonis a complete, filled extraction for a small synthetic deal. Match its shape exactly — every record carries aprovenanceblock; entity lists are empty/omitted when the room doesn't support them. - Then a viewer: a self-contained React artifact — the room's cover page (see The viewer artifact).
viewer_payload.py(bundled) derives the display payload from the extraction;DataroomViewer.jsxis the finished, frozen component you paste that payload into. You never rebuild the component and never paste the raw extraction.
Workflow
- File the room — first act, before reading anything. The platform
keeps the original documents so the extraction stays auditable and the
room outlives this chat. Hash the zip and register it:
Callpython3 -c "import hashlib,os,sys; p=sys.argv[1]; h=hashlib.sha256(open(p,'rb').read()).hexdigest(); print(h, os.path.getsize(p))" "<upload>.zip"dataroom_open(label, sha256, size_bytes)with a short label (the deal/teaser title).status: "new"→ push the zip, then continue:python3 room_push.py "<upload>.zip" "<upload_url>"status: "known"→ the room is already on the platform: skip the push. If the response hasextraction_ready: true, pull the finished extraction and jump ahead —
skip steps 2–7 entirely and go straight to the viewer (step 8); corrections re-save under the returnedcurl -sS -o extraction.json "<extraction_url>"extraction_idper step 7's correction flow (the zip is still in the sandbox for spot-checks). Ifextraction_ready: false, continue the normal flow from step 2. Either way say "filed" or "already on the platform" — never suggest anyone else uploaded it or has seen the deal.- Connection error from the push → the user's network allowlist is
missing the upload host. Give them the one-line fix NOW (add the
upload_hostfrom the tool response under Claude's network egress settings, then a new chat), before the expensive extraction work — then continue this session normally either way. Keep theroom_id— persistence links to it in step 7.
- Unzip and triage. Unzip the upload, then run the bundled walker to inventory everything before you read:
It writesunzip -q "<upload>.zip" -d room && python3 triage.py room_triage/manifest.json(every file: path, size, type, sha256) and_triage/triage.md(readable inventory), and dumps each spreadsheet to_triage/xlsx/<name>.jsonand each text-PDF to_triage/pdf/<name>.txt. Read those dumps instead of opening binaries by hand. Most rooms zip their contents under one top-level folder, so the walker descends past it and prints where the room root and_triage/actually landed (room/<Deal Name>/_triage/…) — read the manifest at the printed path. Every path it records is relative to that root, which is exactly the conventiondocuments[].pathandprovenance.source_filerequire: lift manifest paths verbatim and never prepend the room's own folder name.
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 3d ago First seen · 271 lines · 66 tokens per session scan A 6ff492234bd3
dataroom-extract is a skill published in the GitHub repository crude-code/mcp-app (4 stars, last pushed 5d ago), licensed Apache-2.0. It adds 66 tokens to every session and 4,853 once invoked, about $0.0003 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-08-31.
Other skills, from other repositories
instrument-data-to-allotrope
Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…
exploratory-data-analysis
Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…
media-ingest
Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
read
Reads URLs and PDFs by fetching source content, defaulting to concise summaries for plain read requests and clean Markdown when asked to convert, save, quote, cite, or feed downstream work. Use when users ask in any language to read, fetch, check, summarize, quote, cite, convert, or save a URL or PDF. Not for local…
docx-comment-reply
Reply to comments (批注) in Word .docx/.doc files: extract comment context, draft replies, write threaded replies back, and validate OOXML.