{"id":47918739,"url":"https://github.com/cs01/sharemyclaude","last_synced_at":"2026-04-04T05:49:56.996Z","repository":{"id":346063327,"uuid":"1188381569","full_name":"cs01/sharemyclaude","owner":"cs01","description":"share your claude code session with anyone via a link","archived":false,"fork":false,"pushed_at":"2026-03-24T06:43:11.000Z","size":853,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T05:33:19.578Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cs01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-22T01:54:24.000Z","updated_at":"2026-03-24T06:43:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cs01/sharemyclaude","commit_stats":null,"previous_names":["cs01/share-my-claude","cs01/sharemyclaude"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cs01/sharemyclaude","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cs01%2Fsharemyclaude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cs01%2Fsharemyclaude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cs01%2Fsharemyclaude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cs01%2Fsharemyclaude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cs01","download_url":"https://codeload.github.com/cs01/sharemyclaude/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cs01%2Fsharemyclaude/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31240441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-31T13:32:58.087Z","status":"ssl_error","status_checked_at":"2026-03-31T13:32:57.391Z","response_time":111,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-04T05:49:56.117Z","updated_at":"2026-04-04T05:49:56.988Z","avatar_url":"https://github.com/cs01.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Share My Claude\n\nShare your Claude Code session over the web. Public or private, one command.\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"sharemyclaude_terminal.png\" width=\"500\" alt=\"sharemyclaude terminal\"/\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"sharemyclaude_browser.png\" width=\"600\" alt=\"sharemyclaude browser view\"/\u003e\n\u003c/p\u003e\n\n**Access Claude from your phone** -- start a session on your machine, open the link on any device, and control Claude from anywhere.\n\n**Share publicly** -- broadcast your session on the [sharemyclau.de](https://sharemyclau.de) landing page for anyone to watch.\n\n**Share privately** -- end-to-end encrypted by default. Only people with the link can view your session.\n\n**Watch others** -- browse public sessions on [sharemyclau.de](https://sharemyclau.de) and watch Claude work in real-time.\n\n## Install\n\n```\ncurl -fsSL https://raw.githubusercontent.com/cs01/sharemyclaude/main/install.sh | sh\n```\n\nThis installs `termpair` (the server/client) and `sharemyclaude` (a wrapper that connects to sharemyclau.de and launches `claude`).\n\n## Quick Start\n\n```\nsharemyclaude\n```\n\nThat's it. After pressing Enter, Claude Code launches normally -- you use it exactly as you always do. The only difference is that your terminal session is mirrored live to a shareable link that anyone with the URL can watch (or type in) from their browser.\n\n**Public session** (listed on the landing page, anyone can find it):\n\n```\nsharemyclaude --public\n```\n\n**Private session** (end-to-end encrypted, only people with the link can view):\n\n```\nsharemyclaude\n```\n\n## Options\n\n```\nsharemyclaude                          # private encrypted session (default)\nsharemyclaude --public                 # listed on sharemyclau.de, no encryption\nsharemyclaude --read-only              # viewers can watch but can't type\nsharemyclaude -- --model sonnet        # pass flags to claude after --\nsharemyclaude -- --dangerously-skip-permissions  # skip claude's permission prompts\n```\n\n## Security\n\nPrivate sessions are end-to-end encrypted (AES-128-GCM). The server is a blind relay -- it routes messages but never decrypts them. The encryption key lives in the URL fragment, which is never sent to the server.\n\nPublic sessions (`--public`) are **not encrypted** -- they are listed on the landing page and viewable by anyone. Use private mode (the default) when sharing sensitive work.\n\n## Built on termpair\n\nsharemyclaude is a wrapper around [termpair](https://github.com/cs01/termpair), which provides end-to-end encrypted terminal sharing for any terminal app -- vim, htop, your shell, or anything else. If you want to self-host or share non-Claude sessions, check out termpair directly.\n\n---\n\n\u003e This project is not affiliated with or endorsed by Anthropic.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcs01%2Fsharemyclaude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcs01%2Fsharemyclaude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcs01%2Fsharemyclaude/lists"}