SkillAgentSearch skills...

Claude2stream

Claude history as live-tailing Durable Streams

Install / Use

/learn @broady/Claude2stream
About this skill

Quality Score

0/100

Supported Platforms

Claude Code
Claude Desktop

README

claude2stream

Your Claude history exposed as a Durable Stream.

A streaming web UI is served on /ui that allows you to view sessions as they happen.

<img alt="Screenshot" src=".github/screen.png" />

Run with Docker

docker run --rm \
  -p 8214:8214 \
  -u $(id -u):$(id -g) \
  -v ~/.claude:/data:ro \
  ghcr.io/broady/claude2stream:latest \
  -dir /data

Open http://localhost:8214/ui/ to view conversations.

Installation

Pre-built binaries

Download the latest binary for your platform from GitHub Releases.

From Source

Requires Go 1.21+ and pnpm.

cd webui/ && pnpm install && pnpm build && cd - && go build

# Or with Taskfile installed:
task build

Quick Start

./claude2stream

Open http://localhost:8214/ui/ to view conversations.

Usage

claude2stream [flags]

Flags:
  -addr string   listen address (default ":8214")
  -dir string    claude directory (default "~/.claude")
  -dev           enable CORS for development

Development

# Terminal 1: Run Go backend with CORS
go run . -dev

# Terminal 2: Run Vite dev server
task dev

The Vite dev server runs on port 3000 and proxies API requests to the Go backend on port 8214.

Building

task build          # Build frontend + binary
task clean          # Remove build artifacts
task release:snapshot  # Test goreleaser locally

Architecture

  • Go backend: Watches ~/.claude for JSONL conversation files, exposes them as durable streams
  • SolidJS frontend: Real-time conversation viewer with TanStack Router, served from /ui/

License

MIT

Related Skills

View on GitHub
GitHub Stars111
CategoryDevelopment
Updated18d ago
Forks5

Languages

TypeScript

Security Score

95/100

Audited on Mar 16, 2026

No findings