Skip to content

Repository files navigation

gather: research intake for gated APIs, paywalls, JS pages, and scanned PDFs.

Research intake that reaches the hard places: gated APIs, paywalls, JS-walled pages, scanned PDFs.

PyPI license CI downloads python: 3.11+ deps: none (core)

gather pulls research out of the places most tools break on: arXiv papers, authenticated JSON APIs, JavaScript-rendered pages via a real headless browser, scanned images through OCR, and audio through transcription, alongside video, web, feeds, and local docs. The core runs with zero third-party runtime dependencies, and the same engine is reachable from the CLI, MCP tools, and plain Python. Every run writes a receipt you can re-check.

Project Telos | gather | crucible | index | forum | telos | learn | emet | buildlang

How a pilot run works

gather pilot takes a closed list of sources and produces something a third party can check without trusting the run that made it.

Eight stages from a validated manifest to a network-free re-check: manifest, capture, extract, ground, store, receipt, report, re-check. A source whose extracted values are not found on the fetched page is dropped before anything is stored. The re-check reports match, corrupt or missing.

The edge worth reading twice is the one that leaves the pipeline. Every value the extractor proposes has to be found on the page that was actually fetched, matched on word boundaries so 100 does not match inside 1000. A source that fails that check is recorded as an error and nothing from it is stored, so a fabricated field cannot reach the corpus by being plausible.

Features

  • Extract any page to LLM-ready Markdown. gather extract turns a URL or local HTML file into structured Markdown plus a per-block record binding every block to its source node path and content hash. gather markdown prints the Markdown alone.
  • Crawl whole sites. A concurrent, resumable crawler with robots.txt, sitemap discovery, URL dedup, and per-host throttling. gather crawl <url> --depth 2 --max-pages 50 emits an append-only, hash-chained ledger of the crawl as JSON.
  • Track elements across redesigns. Fingerprint a scraped element once, then relocate it in any later version of the page and get a typed MATCH, RELOCATED, DRIFT, or GONE verdict (gather.track, Python API).
  • Structured extraction with a hallucination check. gather.schema_extract binds schema fields to source nodes, and verify_record rejects any LLM-proposed field value not grounded in the fetched content.
  • Streaming extraction. gather.stream parses an HTML stream chunk by chunk and emits partial-update commits as blocks complete, each folded into a hash chain, so a streamed extraction is replayable.
  • Hard-source adapters behind one shape. Video with captions and comments (yt-dlp), static web, RSS/Atom feeds, local docs, arXiv, PDFs (pdftotext), authenticated JSON APIs (token from env, never logged), JS-rendered pages (headless Chromium), scanned images (tesseract), and audio (whisper). Each external tool is optional and only needed for its own adapter.
  • Scholarly-graph federation. gather scholar queries OpenAlex, Semantic Scholar, and Crossref in one call, dedupes results by normalized DOI (never a fuzzy title match), and can capture citation edges as first-class records with --edges.
  • A durable local corpus. Any fetch command takes --store DIR: bodies are content-addressed and deduped by hash, new writes preserve exact UTF-8 source bytes, and gather corpus list|verify|digest|runs|search|stats|prune|availability|context inspects, re-checks, and queries what you stored.
  • Readable context selection. gather corpus context DIR shows bounded, re-hashed source/comment excerpts with row refs and missing/corrupt/unsafe/oversized-body reasons; --select ROW_REF[:START[:LIMIT]] --expect-digest SHA256 exports a private context payload with a deterministic selection digest, refusing stale digests and selected text over budget. Python callers that already hold a retained corpus root fd/HANDLE can pass a same-process CorpusRootDescriptor so Gather does not reopen the root path. This is acquisition context, not a truth, claim-support, completeness, caller workspace-parent, or secret-free verdict.
  • Multi-source runs. gather run config.json orchestrates many sources, a scope filter, and optional synthesis into one recorded session kept in the corpus history.
  • Accountable pilot evidence engine. gather pilot run|refresh|verify|bundle drives a closed manifest through a source-isolated capture into a content-addressed corpus, writes a redacted report and a hash-chained receipt, monitors sources for change (NEW/CHANGED/UNCHANGED with archived history), and packages deterministic shared or full bundles any third party re-verifies offline. See docs/PILOT.md.
  • Three surfaces, one engine. The full CLI, an MCP stdio server (gather mcp, tools gather.status, gather.doctor, gather.docs, gather.arxiv, gather.federation, gather.run, gather.context, gather.pilot), and a plain Python API.
  • Zero-dependency core, opt-in speed. The core is pure standard library. gather-engine[fast] adds lxml parsing (roughly 2x on large documents in our own informal timing, unpublished), [browser] adds Playwright JS rendering, [stealth] adds curl_cffi TLS impersonation. gather caps reports what your install can actually do; a missing capability is reported as such, never faked.

Install

pip install gather-engine

The distribution is gather-engine; it installs the gather command and the gather package (import gather). Python 3.11+. From a source checkout, python -m gather runs the same CLI.

Quickstart

Extract a page to Markdown with a per-block receipt:

gather extract https://example.com/article
{
  "blocks": [
    {"path": "html[1]/body[1]/h1[1]", "sha256": "7e8cd2056da7...", "tag": "h1"},
    {"path": "html[1]/body[1]/p[1]",  "sha256": "64ec88ca00b2...", "tag": "p"}
  ],
  "content_sha256": "ef4430f5f70f...",
  "markdown_sha256": "752cce8836dd...",
  "method": "html-extract",
  "url": "https://example.com/article"
}

Then try the rest of the surface:

gather caps                                    # what this install can do (fast / browser / stealth)
gather crawl https://example.com --depth 2     # a hash-chained crawl ledger as JSON
gather arxiv "aperiodic monotile" --store ./corpus
gather scholar "10.1234/monotile" --edges --json
gather docs ./research-notes --scope "rubik,group theory"
gather corpus verify ./corpus                  # re-hash every stored body; non-zero exit on corruption

Offline demo, no install of extra tools, nothing downloaded:

python examples/demo.py        # one video parsed, scoped, digested, then a tampered receipt caught
python examples/pipeline.py    # the whole pipeline: run -> store -> verify -> recall, offline
python examples/context_selection.py  # inspect verified excerpts and build a private context payload

demo.py prints each item with its hash and verify=True, then flips one receipt and shows the digest verification fail. The hash prefixes vary; the verify results are pinned by the test suite. For a browser-viewable version of the same proof, open examples/gather-demo.html.

Worked example: a mixed-source corpus

Gather from three different source types into one corpus, then re-check it:

gather web  "https://example.com/article" --store ./corpus
gather arxiv "2301.12345" --store ./corpus
gather docs ./notes --scope "monotile,tiling" --store ./corpus
gather corpus list ./corpus                 # every item with source, method, and hash
gather corpus search ./corpus --terms tiling --method http-get --json
gather corpus verify ./corpus               # MATCH per body, non-zero exit if anything is corrupt
gather corpus availability ./corpus         # per-record availability with typed outcomes
gather corpus context ./corpus --json       # bounded readable excerpts + row refs

Every item carries its source, ref, method, timestamp, and a sha256 of the exact source text. New corpus rows also carry a versioned storage witness for the object bytes written by Gather. verify re-checks the body against the source receipt and, when present, that storage witness; search filters by scope terms, source, kind, or method. context reads and re-hashes bounded inspected or selected bodies through a confined corpus-layout reader, returns bounded excerpts by default, and exports selected ranges only when the caller supplies the current corpus digest.

Readable context verifies the exact source text first. For display and range selection, CRLF or CR line endings are then normalized to LF. START and LIMIT are Python string character offsets over that readable view. sha256, verified_sha256, and source_sha256 bind the exact source text. view_sha256 binds the full LF-normalized readable view, and view_codec names that transformation. The selected slice, range, source refs, source/view hashes, storage status, and omissions are bound into selection_digest.

For rows written before exact UTF-8 storage witnesses existed, Gather attempts a bounded legacy reconstruction: exact UTF-8 bytes or the inverse of the old Windows text writer's LF-to-CRLF expansion. That can reconstruct the source text for an existing receipt, but it does not prove historical raw object-byte integrity. A storage witness makes witness stripping or codec changes detectable only to consumers that pin or independently verify the prior corpus digest with --expect-digest / expected_corpus_digest; recomputing a digest after local catalog mutation is an explicit acceptance of the current catalog state.

The context reader pins the opened corpus root for catalog and body reads, but it does not prove a caller-resolved workspace parent relationship. If a host derives DIR from an approved workspace plus a relative path, that host must bind the workspace-to-corpus resolution before calling Gather.

Source federation, offline

Plan a fleet of sources before probing any of them:

gather federation validate registry.json --json   # check rows against a closed contract
gather federation plan registry.json --json       # one deterministic capture plan per source
gather federation policy policy.json --json       # audit retry/backoff rules as typed verdicts
gather federation entity entities.json --json     # audit entity-resolution matches

All four run offline; no probe fires. A registry row is a catalog fact and is never reported as coverage, availability, or content.

Optional capability backends

A card of the four capabilities gather can be asked for. fetch is always served by the stdlib. fast-parse falls back to the stdlib parser, which returns the same answer more slowly. js-render and stealth are refused with a reason when no backend is installed, and the js-render row is marked because it is the one where a plausible fake exists.

pip install 'gather-engine[fast]'      # lxml, faster parsing on large docs (informal ~2x, unpublished)
pip install 'gather-engine[browser]'   # Playwright JS render (then: playwright install chromium)
pip install 'gather-engine[stealth]'   # curl_cffi TLS/browser impersonation

The core never grows a hard dependency. Install a backend and it registers; skip it and the stdlib path or an explicit UNVERIFIABLE result stands in.

Python API

from gather.web import WebSource
from gather.digest import digest, verify_digest

items = WebSource().fetch("https://example.com/article")
d = digest(items)          # a sealed digest over every item's receipt
assert verify_digest(d)    # re-derive the seal; False if anything was altered

The same seams the CLI uses are importable: gather.extract, gather.crawl, gather.track, gather.schema_extract, gather.stream, gather.search, gather.store, gather.run, gather.context, and the source adapters. gather.context.CorpusRootDescriptor is a Python-only same-process handoff for hosts that already retained and identity-bound a corpus root descriptor; CLI and MCP continue to accept corpus directory strings. ARCHITECTURE.md maps the modules and seams.

Security notes

The web adapter reads static HTML and does not run JavaScript; a client-rendered page yields its shell, and the method says so. The browser adapter runs a real headless browser and is the most exposed edge: its host guard covers only the first navigation, so do not point it at untrusted URLs where internal services are reachable. The threat model is in ARCHITECTURE.md. Credentials enter only through gather.credentials, read from the environment by name, never logged, never written into a receipt or URL.

Documentation

Peer projects: crucible (judgment), index (code maps), forum (orchestration), telos (the engine).

Why it matters

Research breaks when sources become a blur. One rule sits underneath all of it: every item records how it was obtained. A quote fetched over HTTP, a page rendered in a browser, text recognized from a scan, and a statement synthesized from fragments are all valid items, but they are not equally direct, and the method field plus the digest seal keep that difference on the record and re-checkable. If that discipline matters to your workflow, gather was built for it; if you just need the intake, it never gets in your way.

What this believes

This tool is one tool in a family that holds a single belief steady across every surface: knowledge open to anyone who can attain the means; acceptance decided by external checks, never reputation; every result re-runnable; honest nulls first-class; ownership earned by comprehension; learning woven into the work. The full text lives in CREDO.md. The long form of this belief: The Unbundling.

License

Gather is fair-source: open to read, run, and build on, with commercial use reserved so the project can fund its own development. See LICENSE.

Work with it

Bring papers, transcripts, local docs, or awkward public materials that need provenance before synthesis; source-adapter testing and research-lab feedback are the most useful pressure right now. To develop against a checkout:

python -m pip install -e ".[dev]"
python -m pytest        # 650+ tests
python -m ruff check src tests examples
python -m mypy

Keep the README, package metadata, and examples aligned with current behavior before opening a PR.


Zentropy Labs · order out of entropy. An independent lab building evidence-first tools that leave a re-checkable artifact behind. Built by Zain Dana Harper in Seattle. The full workbench is at Project Telos.

About

Research intake that reaches the hard places: web, video, papers, scanned PDFs, browser, OCR, and audio into structured research packets. DOM extraction and change tracking built in; provenance rides along on every item.

Topics

Resources

Contributing

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages