opencode-export

opencode-export

Enables AI agents to list, inspect, and export OpenCode AI coding sessions as HTML/JSON archives with secret redaction and token statistics.

Category
Visit Server

README

opencode-export

English | 中文

Export your opencode AI coding sessions to beautiful, self-contained HTML + JSON archives — with secret redaction, subagent inlining, token backfill, and an MCP server for agents.

Demo

Features

  • Beautiful HTML output — Sticky headers with session metadata, collapsible tool-call and reasoning blocks, a slide-in TOC of user prompts, lazy syntax highlighting, KaTeX math rendering, and Mermaid diagram support.
  • Secret redaction built-in — 18 patterns (OpenRouter, OpenAI, Anthropic, GitHub, AWS, Slack, GitLab, Google, Stripe, SendGrid, and more) are auto-masked. Add your own exact strings or regex patterns via config.
  • Subagent inlining — When your session dispatched sub-agents (explore, general, code-reviewer), their full conversation is rendered inline at the dispatch point inside the parent session.
  • 5-field token statistics — Input, output, reasoning, cache-read, and cache-write tokens are tracked per session. Older sessions with zero token data are backfilled by summing per-step usage from step-finish parts.
  • Fully offline — Vendor assets (highlight.js, Mermaid, KaTeX, Marked) are downloaded once and bundled into the export. No CDN, no internet required to view.
  • MCP server included — AI agents can call list_sessions, show_session, and export_sessions as native tools via the Model Context Protocol.
  • Structured JSON archive — Alongside HTML, a data/sessions.json file preserves full, untruncated content (tool inputs/outputs, reasoning text) for programmatic analysis.

Quick Start

Prerequisites: Python 3.11+ and an existing opencode installation (the session database is auto-detected at %LOCALAPPDATA%\opencode\opencode.db on Windows, ~/Library/Application Support/opencode/opencode.db on macOS, or $XDG_DATA_HOME/opencode/opencode.db on Linux).

# Install
pip install git+https://github.com/ZelinZhou-THU/opencode-export.git

# See what projects and sessions exist in your opencode database
opencode-export list

# Export a project's sessions to a browsable HTML + JSON archive
opencode-export export --project my-project --out ./export

# Preview a single session's metadata
opencode-export show ses_xxxx

Open ./export/index.html in your browser. That's it — no server, no internet needed.

How it differs

Several tools exist for exporting opencode or Claude Code sessions, typically producing Markdown transcripts or basic HTML pages. opencode-export was built to address a few gaps encountered when archiving a full semester of AI-assisted development:

  • Visual fidelity — Tool calls, reasoning blocks, code patches, and sub-agent threads are preserved in their original structure, not flattened to plain text.
  • Safety by default — Secrets are masked before any HTML or JSON is written, using both built-in patterns and user-configured rules. The redaction engine is recursive (handles nested tool state) and idempotent (safe to run twice).
  • Token reconstruction — opencode's database schema evolved over time; many older sessions have zero token data. opencode-export reconstructs usage by summing per-step token counts from step-finish message parts, and independently backfills cache fields.
  • Agent-callable — Rather than only a human-facing CLI, the MCP server lets your AI agent discover, inspect, and export sessions on its own.

CLI Reference

Command Purpose Key flags
list List projects or sessions in the database --project DIR, --json
show <session-id> Preview a session's metadata (title, model, token usage, etc.)
export Generate HTML + JSON archive --project DIR, --out DIR, --config FILE

Both HTML and JSON are generated by default. Use --no-html or --no-json to skip a format.

Configuration

All options can be set via YAML/JSON config file or CLI flags. See examples/config.example.yaml for the full schema:

db: auto                    # auto-detect, or explicit path
project:
  directory: "my-project"   # substring match on session.directory
select:
  min_messages: 30          # skip tiny sessions
  min_text_bytes: 10240     # skip near-empty sessions
  exclude: []               # session IDs to skip
output:
  dir: ./opencode_export
  formats: [html, json]
  vendor: download          # download | skip | copy-from
  timezone: Asia/Shanghai
redact:
  builtin: true             # 18 built-in secret patterns
  exact: []                 # your own [secret, replacement] pairs
  patterns: []             # your own [regex, replacement] pairs

MCP Server

Install with the [mcp] extra to let AI agents call the export tools directly:

git clone https://github.com/ZelinZhou-THU/opencode-export.git
cd opencode-export
pip install -e ".[mcp]"

Add to your opencode.json (or ~/.config/opencode/opencode.json):

{
  "mcp": {
    "opencode-export": {
      "type": "local",
      "command": ["opencode-export-mcp"]
    }
  }
}

Three tools become available to the agent:

Tool Purpose Key params
list_sessions List root sessions (by project) project_directory, limit
show_session Preview metadata + recent messages session_id, message_limit
export_sessions Generate HTML + JSON archive to disk output_dir, session_ids, formats

See skill/SKILL.md for the agent-facing usage guide, or examples/opencode.json.example for a ready-to-use config.

Output Structure

opencode_export/
├── index.html            # Session index (stats grid + sortable table)
├── sessions/
│   ├── 01_2026-04-02_session-title.html
│   └── ...
├── data/
│   └── sessions.json     # Full archive (untruncated, structured)
└── assets/
    ├── style.css
    ├── renderer.js        # KaTeX / Mermaid / lazy highlight.js
    └── vendor/            # Offline JS libraries

Token Statistics

Each session and the index page display five token fields:

Field Meaning
in Input tokens (new prompt consumption)
out Output tokens (model generation)
reasoning Reasoning tokens (o1 / DeepSeek-R1 style thinking)
cache.read Prompt cache hit reads
cache.write Prompt cache writes

Total = sum of all five fields. This matches the billing granularity of OpenRouter, Anthropic, Google AI, and other providers where cache reads are billed as input tokens.

For older sessions where the database has zero token values, usage is reconstructed by summing per-step d["tokens"] across all step-finish parts.

Development

# Install in dev mode (CLI only)
pip install -e .

# Install with MCP server support
pip install -e ".[mcp]"

# Run tests
pytest tests/ -v

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured