dataroom-extract

dataroom-extract is a skill for Claude Code, Codex from crude-code/mcp-app. It costs 66 tokens per session (4,853 once invoked), scanned A, original, Apache-2.0.

A data-extraction workflow for an oil and gas dataroom: a collection of deal documents used when buying or selling wells, minerals, or royalties. It turns those files into structured facts with links back to their sources.

In plain words
What is it for?
Use it when a buyer provides a zip file or set of acquisition documents such as production reports, lease statements, title records, or a teaser. It identifies the assets and economics and produces the required extraction file and viewer.
Why use it?
These packages often contain many document types and numbers that are hard to compare manually. Structured extraction makes the information usable for later valuation while preserving where each fact came from.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/crude-code/mcp-app/dataroom-extract
Any agent
npx skills add crude-code/mcp-app --skill dataroom-extract
Clone the repo
git clone --depth 1 https://github.com/crude-code/mcp-app

Made for: Claude Code, Codex.

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 dataroom-extract

README.md
[![agentmods](https://agentmods.dev/badge/skills/crude-code/mcp-app/dataroom-extract.svg)](https://agentmods.dev/skills/crude-code/mcp-app/dataroom-extract)
Your own site
<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>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,853 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00066 $0.04853
Opus 5 $0.00033 $0.02426
Sonnet 5 $0.00013 $0.00971
Haiku 4.5 $0.00007 $0.00485

Measured 3d ago against content hash 6ff492234bd3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 5 executable files (persist_pack.py, room_push.py, schema.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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>"
skills/dataroom-extract/SKILL.md · 271 lines

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, an ExtractionResult exactly as defined in schema.py (bundled here). Read schema.py once — it is the authoritative target. Every field is optional and typed; there is no escape-valve extras dict.
  • Worked example: example.json is a complete, filled extraction for a small synthetic deal. Match its shape exactly — every record carries a provenance block; 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.jsx is the finished, frozen component you paste that payload into. You never rebuild the component and never paste the raw extraction.

Workflow

  1. 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:
    python3 -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"
    
    Call 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 has extraction_ready: true, pull the finished extraction and jump ahead —
      curl -sS -o extraction.json "<extraction_url>"
      
      skip steps 2–7 entirely and go straight to the viewer (step 8); corrections re-save under the returned extraction_id per step 7's correction flow (the zip is still in the sandbox for spot-checks). If extraction_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_host from 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 the room_id — persistence links to it in step 7.
  2. Unzip and triage. Unzip the upload, then run the bundled walker to inventory everything before you read:
    unzip -q "<upload>.zip" -d room && python3 triage.py room
    
    It writes _triage/manifest.json (every file: path, size, type, sha256) and _triage/triage.md (readable inventory), and dumps each spreadsheet to _triage/xlsx/<name>.json and 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 convention documents[].path and provenance.source_file require: lift manifest paths verbatim and never prepend the room's own folder name.

Read the full file on GitHub · 271 lines

Files

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.

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. 3d ago First seen · 271 lines · 66 tokens per session scan A 6ff492234bd3

Subscribe to this mod's changes

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.

Related

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…

anthropics/knowledge-work-plugins · 123 tokens

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…

K-Dense-AI/scientific-agent-skills · 83 tokens

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.

garrytan/gbrain · 52 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

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…

tw93/Waza · 78 tokens

docx-comment-reply

Reply to comments (批注) in Word .docx/.doc files: extract comment context, draft replies, write threaded replies back, and validate OOXML.

foryourhealth111-pixel/Vibe-Skills · 39 tokens