https://github.com/wunderlabs-dev/claudebin
A Claude Code plugin for publishing sessions to claudebin.com
https://github.com/wunderlabs-dev/claudebin
claude-code claude-code-plugin
Last synced: 14 days ago
JSON representation
A Claude Code plugin for publishing sessions to claudebin.com
- Host: GitHub
- URL: https://github.com/wunderlabs-dev/claudebin
- Owner: wunderlabs-dev
- License: mit
- Created: 2026-02-09T10:41:06.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-02-16T15:13:01.000Z (2 months ago)
- Last Synced: 2026-04-04T10:55:13.070Z (14 days ago)
- Topics: claude-code, claude-code-plugin
- Language: TypeScript
- Homepage: https://claudebin.com/
- Size: 286 KB
- Stars: 23
- Watchers: 0
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Share your Claude Code sessions with teammates.
Website ·
Web App ·
Installation
---
## Installation
```bash
claude plugin marketplace add wunderlabs-dev/claudebin
claude plugin install claudebin@claudebin-marketplace
```
## Usage
Run `/claudebin:share` inside any Claude Code session to publish it and get a shareable URL.
```
/claudebin:share
```
Returns a link like `https://claudebin.com/threads/abc123` — complete with syntax highlighting, tool calls, and the full conversation thread.
Automatically authenticates via browser if not logged in.
## How it works
```
/claudebin:share → MCP share tool → Auth (opens browser if needed)
→ Upload to Supabase
→ Background processing
→ Poll for completion
→ Return URL
```
## Development
Build the MCP server:
```bash
cd mcp
bun install
bun run build
```
Run Claude with the local plugin pointing at a local API:
```bash
CLAUDEBIN_API_URL=http://localhost:3000 claude --plugin-dir /path/to/claudebin --dangerously-skip-permissions
```
## License
MIT