heyhank
Health Warn
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 6 GitHub stars
Code Pass
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
Self-hosted web UI for running Claude Code agents (with optional Codex support). Multi-session chat, voice, skills, social media, telephony.
HeyHank
Self-hosted web UI for running Claude Code agents.
Multi-session management with streaming, tool call visibility, and permission control. Codex CLI is also supported as a secondary backend.
Quick Start
Requirements: Bun v1.0+ and Claude Code (primary). Codex CLI is optionally supported as a secondary backend.
bunx heyhank
Open http://localhost:3456.
Install Globally
bun install -g heyhank
# Register as a background service (launchd on macOS, systemd on Linux)
heyhank install
# Start the service
heyhank start
Features
| Feature | Required to use it |
|---|---|
| Multi-Session Chat — multiple Claude Code / Codex sessions in parallel | Bun + Claude Code CLI (or Codex CLI) — default, no extra setup |
| Skill Marketplace — install Claude Code skills from curated GitHub sources | nothing extra |
| Personal Assistant — todos, notes, reminders | nothing extra |
| Scheduled Agents — cron-based agent automation | nothing extra |
| Hank-UI Chat — provider-agnostic chat (Claude / Codex / Gemini / Ollama / OpenRouter) | API key for the provider you pick |
| Memory — local semantic search over notes & conversations | nothing extra (uses local vectra + transformers.js) |
| PWA — installable on mobile/desktop | nothing extra |
| Gemini Live Voice Assistant — hands-free voice control with tool calling | GEMINI_API_KEY |
| Media Generation — Imagen 4 images, Veo 3.1 videos | GEMINI_API_KEY with media access |
| Email Integration — IMAP/SMTP via UI and voice | per-account IMAP/SMTP credentials, configured in the UI |
| Calendar — read/write events via voice | Google Cloud project + service account (Calendar scope) |
| Voice Pipeline — low-latency telephony (Google STT/TTS + LLM) | Google Cloud project + service account (Speech scope), Groq or other LLM key |
| Telephony — voice calls via FreeSWITCH SIP | self-hosted FreeSWITCH (Docker compose in freeswitch/) + a SIP trunk provider |
| Social Media — multi-backend posting | self-hosted Postiz (recommended), or Buffer / Ayrshare account |
| Federation — connect multiple HeyHank instances | a relay server reachable by all nodes (HEYHANK_RELAY_URL + HEYHANK_RELAY_SECRET) |
| Tailscale Funnel — public HTTPS without port forwarding | a Tailscale account with Funnel enabled |
See web/.env.example for every supported environment variable, grouped by feature.
CLI Commands
| Command | Description |
|---|---|
heyhank |
Start server in foreground (default) |
heyhank serve |
Start server in foreground (explicit) |
heyhank install |
Register as a background service (launchd/systemd) |
heyhank start |
Start the background service |
heyhank stop |
Stop the background service |
heyhank restart |
Restart the background service |
heyhank uninstall |
Remove the background service |
heyhank status |
Show service status |
heyhank logs |
Tail service log files |
Options: --port <n> overrides the default port (3456).
Architecture
Browser (React)
<-> ws://localhost:3456/ws/browser/:session
HeyHank Server (Bun + Hono)
<-> ws://localhost:3456/ws/cli/:session
Claude Code CLI (primary) / Codex CLI (secondary)
The server bridges the CLI's --sdk-url WebSocket (NDJSON) to a browser-friendly WebSocket.
Authentication
The server auto-generates an auth token on first start, stored at ~/.heyhank/auth.json.
# Show the current token
cd web && bun run generate-token
# Force-regenerate a new token
cd web && bun run generate-token --force
Or set via environment variable:
HEYHANK_AUTH_TOKEN="my-secret-token" bunx heyhank
Development
cd web
bun install
bun run dev
Checks:
cd web
bun run typecheck
bun run test
License
MIT
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found