Skip to main content

Convolvger

Local-first, provider-independent archival for public AI conversations.

Convolvger takes a public AI conversation share URL, reconstructs the conversation into a canonical internal model, validates the extracted data, and exports it into portable formats such as Markdown and JSON.

Install

Convolvger needs Python 3.12 or newer. The simplest route is uv, which downloads a suitable Python itself if you do not have one.

macOS, Linux, WSL

curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install convolvger

Windows (PowerShell)

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
uv tool install convolvger

Without uv

pipx install convolvger

or pip install convolvger inside a virtual environment running Python 3.12 or newer. Installing with an older interpreter fails with Requires-Python >=3.12, which is the error to expect on a system Python 3.10 or 3.11.

Check the install:

convolvger --help

Usage

Every command begins with convolvger, followed by a subcommand. There are four: providers, inspect, export and verify. Note that a bare export <url> runs your shell's own export builtin rather than this tool.

See which providers are supported

convolvger providers

Look at a conversation without saving anything

convolvger inspect https://chatgpt.com/share/SHARE_ID

Prints the title, provider, message counts and every extraction finding, then exits without writing a file.

Export it

convolvger export https://chatgpt.com/share/SHARE_ID

Writes Markdown to a filename derived from the conversation title, in the current directory. To choose the format or the destination:

convolvger export https://chatgpt.com/share/SHARE_ID -f json
convolvger export https://chatgpt.com/share/SHARE_ID -o mychat.md
convolvger export https://chatgpt.com/share/SHARE_ID -o -

-f json writes the archival record; -f md (the default) writes the reader-facing document. -o - writes to stdout instead of a file.

Parse a snapshot you already saved

convolvger export https://chatgpt.com/share/SHARE_ID --from-file saved-page.html

--from-file parses a saved copy of the share page instead of fetching the URL. The URL is still required: it routes the snapshot to the right provider, and it is the provenance the archive records. Because when a saved file was captured is not knowable from the file, an archive made this way records no retrieval time rather than claiming a false one.

This is how to re-read a capture without asking the provider for it again, which matters because the answer may have changed since. It works with inspect too.

Parse a snapshot you already saved

convolvger export https://chatgpt.com/share/SHARE_ID --from-file saved-page.html

--from-file parses a saved copy of the share page instead of fetching the URL. The URL is still required: it routes the snapshot to the right provider, and it is the provenance the archive records. Because when a saved file was captured is not knowable from the file, an archive made this way records no retrieval time rather than claiming a false one.

This is how to re-read a capture without asking the provider for it again, which matters because the answer may have changed since. It works with inspect too.

Markdown omits provider-hidden messages and deactivated branches by default and reports each omission in its header. --include-hidden and --include-inactive keep them. Both flags are ignored for JSON, which never omits anything.

Check an archive's integrity

convolvger verify mychat.json

Reads a JSON archive and reports what it records, without re-fetching or re-parsing anything. See the Status section below for what the two verdicts mean.

Exit codes

0 clean, 2 completed with warnings or with a failed integrity check, 1 failed.

Goals

  • Archive public AI conversations locally
  • Support multiple AI providers through isolated adapters
  • Preserve conversation structure and exposed content
  • Detect incomplete or inconsistent extraction
  • Produce deterministic, provider-independent output
  • Keep conversion entirely local, with no LLM required
  • Avoid account credentials and telemetry

What a snapshot is

Convolvger archives public share snapshots. A snapshot is what a provider chooses to expose at a given URL at a given moment — not the conversation itself, and not a guarantee.

Share pages can change after they are published. While building the ChatGPT adapter we fetched the same share link twice, eight hours apart. Both responses had the same conversation, the same title, and the same 31 message IDs. Four assistant messages addressed to a tool were served the second time with their payload emptied and their content type relabelled from code to text — while their IDs, roles, recipients, statuses, weights and every metadata key stayed identical. A comparison of anything but the content would have called the two snapshots the same file. Nothing about the conversation had changed; the provider's rendering of it had.

That is why every Convolvger export records when it was retrieved, reports every message it could not render, and never silently drops content. An archive is a claim about what was there when you looked. It is only trustworthy if it also says when it looked and what it could not see.

Convolvger does not recover private conversations, hidden model state, chain-of-thought, deleted content, or attachments the provider does not publish. If it is not in the snapshot, it is not in the archive.

Supported Providers

Initial providers:

  • ChatGPT
  • Claude
  • Gemini
  • Grok

Additional providers will be added as their public sharing formats are supported and tested.

Status

Convolvger is under active development and not yet ready for general use.

Every command shown under Usage above works today.

ChatGPT share links can be fetched, parsed, and exported. Markdown is a reader-facing document that may omit content and reports every omission in its header; JSON is the complete archival record and omits nothing the model holds. The remaining providers are not implemented yet.

Extraction records structured findings, each with a stable code and a level. A note is recorded but does not change the exit status; a warning does. Both are written into the JSON archive either way, so nothing is withheld from the record because it was judged unremarkable.

convolvger verify PATH reads a JSON archive and reports what it records, without re-fetching or re-parsing anything. It answers two questions separately: whether the provider served everything its own snapshot structure referenced, and whether everything it served could be modelled. Findings that indicate neither are listed in full and counted toward neither answer, so an archive whose messages are mostly empty by design — which is how a public share snapshot normally arrives — is still reported complete. A finding whose code this version does not recognise changes no answer, since an archive may have been written by a later version. An archive declaring a schema version this version cannot read is refused rather than given a verdict.

Exit codes: 0 clean, 2 completed with warnings, 1 failed. For verify, 2 means a check did not pass, and 1 means the file could not be read as an archive at all.

License

MIT

Release files for convolvger 0.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for convolvger 0.1.1
File Size Uploaded
convolvger-0.1.1.tar.gz 21.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for convolvger 0.1.1
File Interpreter ABI Platform
convolvger-0.1.1-py3-none-any.whl Python 3 none any Details

Total release size: 54.4 kB

Release files / convolvger-0.1.1.tar.gz

Download URL convolvger-0.1.1.tar.gz
Size 21.6 kB
Tags Source
SHA-256 checksum
How to use checksums
3218a3583c3f03611e60d6e7e3d2df0226d697b7787409f272891b8ee6a0cd29
BLAKE2b-256 checksum
How to use checksums
2604c40e180180b7557af40c5289a52e3b0b770dad9471338dfb5ef6d0d8b827
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / convolvger-0.1.1-py3-none-any.whl

Download URL convolvger-0.1.1-py3-none-any.whl
Size 32.8 kB
Tags Python 3
SHA-256 checksum
How to use checksums
cfd346099549403ed1afbba3714a06ca43f2361ce1ed206b3b62dff3ee378df8
BLAKE2b-256 checksum
How to use checksums
51cbe2c96f69b9882d3ddbbf674c2e49e060df0f51c7976b859134a83accfed7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

0.4.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

This release

0.1.1 This release

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page