{"id":48625332,"url":"https://github.com/fipso/claudehouse","last_synced_at":"2026-04-09T04:30:58.501Z","repository":{"id":346903278,"uuid":"1192102940","full_name":"fipso/claudehouse","owner":"fipso","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-26T16:39:37.000Z","size":1620,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-26T21:26:06.229Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fipso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-25T22:30:40.000Z","updated_at":"2026-03-26T16:39:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fipso/claudehouse","commit_stats":null,"previous_names":["fipso/claudehouse"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fipso/claudehouse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fipso%2Fclaudehouse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fipso%2Fclaudehouse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fipso%2Fclaudehouse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fipso%2Fclaudehouse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fipso","download_url":"https://codeload.github.com/fipso/claudehouse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fipso%2Fclaudehouse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31586403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-09T04:30:57.963Z","updated_at":"2026-04-09T04:30:58.489Z","avatar_url":"https://github.com/fipso.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# claudehouse\n\nAn infinite canvas terminal multiplexer. Spawn, arrange, and resize terminal windows freely on a 2D canvas with smooth zoom and pan.\n\nBuilt with [Raylib](https://www.raylib.com/) + [Ghostty](https://ghostty.org/) terminal emulation.\n\n\u003cimg src=\"example.png\" alt=\"usage example\" height=\"400\"\u003e\n\n## Sandbox\n\nTerminals can optionally run inside a sandbox powered by [claudebox](https://github.com/fipso/claudebox). Toggle sandbox mode with `Alt+S` — sandboxed terminals get an orange border and run with gVisor syscall isolation + pasta network namespacing. See the [claudebox README](https://github.com/fipso/claudebox) for details on how the sandbox works and standalone CLI usage.\n\n### Sandbox Profiles\n\nConfigure named sandbox profiles in `config.toml` to control network access and filesystem mounts:\n\n```toml\n[sandbox.default]\nmount_home = false\nallowed_lan_ranges = [\"192.168.1.0/24\"]\nmounts = [\n  \"/home/user/.claude\",\n  \"/home/user/.claude.json\",\n  \"/home/user/code/myproject\",\n  \"/data/datasets:ro\",\n]\n```\n\n- **mount_home** — When `true` (default), the full home directory is mounted read-write. Set to `false` to hide it and use explicit mounts instead.\n- **allowed_lan_ranges** — CIDR ranges to allow through the LAN firewall (all private IPs are blocked by default).\n- **mounts** — Bind mount paths in `\"/path:mode\"` format. No suffix defaults to `rw`. Supports files and directories. Symlinks are resolved automatically.\n\nThe `~/.config/claudehouse/` directory is always mounted read-only inside the sandbox (for the MITM proxy CA cert).\n\n## Configuration\n\nClaudehouse reads its config from `~/.config/claudehouse/config.toml`. An example config is generated on first run. Invalid config will cause the app to exit with an error.\n\n```toml\n# Custom font (leave empty for built-in JetBrains Mono Nerd Font)\n# font = \"/path/to/font.ttf\"\n\ngrid_size = 50.0          # canvas grid point distance in pixels\nsnap_to_grid = true       # snap terminals to grid on release\nzoom_to_fit_gap = 100     # pixel gap for Alt+E (zoom to fit)\nfill_viewport_gap = 40    # pixel gap for Alt+F (fill viewport)\n\ndefault_sandbox_profile = \"default\"\n```\n\n## Keybinds\n\n### Canvas (no terminal focused)\n\n| Key | Action |\n|---|---|\n| Double-click | Create new terminal |\n| Click | Focus terminal |\n| Alt+Click | Move terminal |\n| Right-click drag | Select multiple terminals |\n| Scroll | Zoom in/out |\n| Arrow keys | Pan camera |\n| Alt+HJKL | Focus nearest terminal |\n| Alt+Plus/Minus | Zoom in/out (large steps) |\n| Alt+S | Toggle sandbox mode |\n\n### Terminal (focused)\n\n| Key | Action |\n|---|---|\n| 2x Esc | Unfocus terminal |\n| Alt+HJKL | Navigate to adjacent terminal |\n| Alt+E | Zoom camera to fit terminal |\n| Alt+F | Resize terminal to fill viewport |\n| Alt+Enter | Spawn new terminal to the right (same size) |\n| Alt+Q | Close terminal |\n| Alt+Plus/Minus | Zoom in/out |\n| Alt+S | Toggle sandbox mode |\n| Drag edge | Resize terminal |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffipso%2Fclaudehouse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffipso%2Fclaudehouse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffipso%2Fclaudehouse/lists"}