{"id":46253408,"url":"https://github.com/meawoppl/agent-portal","last_synced_at":"2026-06-29T22:00:43.158Z","repository":{"id":331552412,"uuid":"1130475029","full_name":"meawoppl/agent-portal","owner":"meawoppl","description":"Elegant web interface for claude or codex development.","archived":false,"fork":false,"pushed_at":"2026-06-24T23:03:42.000Z","size":4244,"stargazers_count":16,"open_issues_count":23,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-24T23:05:17.092Z","etag":null,"topics":["agent","claude-code","codex","developer-tools","portal","proxy"],"latest_commit_sha":null,"homepage":"https://txcl.io","language":"Rust","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/meawoppl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-08T15:01:37.000Z","updated_at":"2026-06-24T23:03:45.000Z","dependencies_parsed_at":"2026-03-18T00:02:22.616Z","dependency_job_id":null,"html_url":"https://github.com/meawoppl/agent-portal","commit_stats":null,"previous_names":["meawoppl/cc-proxy","meawoppl/claude-code-portal","meawoppl/agent-portal"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/meawoppl/agent-portal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meawoppl%2Fagent-portal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meawoppl%2Fagent-portal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meawoppl%2Fagent-portal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meawoppl%2Fagent-portal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meawoppl","download_url":"https://codeload.github.com/meawoppl/agent-portal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meawoppl%2Fagent-portal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34944147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"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":["agent","claude-code","codex","developer-tools","portal","proxy"],"created_at":"2026-03-03T23:03:42.652Z","updated_at":"2026-06-29T22:00:43.117Z","avatar_url":"https://github.com/meawoppl.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Code Portal — Try It: [txcl.io](https://txcl.io)\n\nA web portal that extends [Claude Code](https://docs.anthropic.com/en/docs/claude-code) with session sharing, remote access, and collaborative features. Run Claude Code on powerful machines and access it from anywhere through your browser.\n\n[Features Anthropic Missed](https://www.loom.com/share/38bdd5406c2443ff8c978d5d5b01e967)\n\n## Features\n\n- **Remote Access**: Run Claude Code on dedicated machines, access from any browser\n- **Session Sharing**: Share sessions with team members for collaborative coding\n- **Voice Input**: Dictate commands using the browser's built-in Web Speech API (Chrome, Edge, Safari)\n- **Persistent History**: All conversations stored and accessible across devices\n- **Flexible Authentication**: Configure for single-user, organization-only, or public access\n- **Real-time Sync**: Multiple viewers see updates instantly via WebSocket\n- **VS Code Integration**: Use Claude Code in VS Code while sessions appear on the portal dashboard\n\n## Use Cases\n\n- **Hardware Development**: Develop against specialized hardware (GPUs, FPGAs, embedded devices) from any laptop\n- **Powerful Workstations**: Run Claude Code on beefy machines while traveling with a thin client\n- **Mobile Development**: Code from your phone or tablet - the web UI works on any device\n- **Team Collaboration**: Share Claude sessions for pair programming or code review\n- **Long-Running Tasks**: Start a task, walk away, check results later from any device\n- **Consistent Environment**: Keep your dev environment on one machine, access it everywhere\n\n## Quick Start\n\n```bash\n# Clone the repository\ngit clone https://github.com/meawoppl/agent-portal.git\ncd agent-portal\n\n# Start everything (auto-installs dependencies)\n./scripts/dev.sh start\n```\n\nThen open: **http://localhost:3000/**\n\nYou'll be automatically logged in as `testing@testing.local` in dev mode.\n\nSee [Local Development](docs/LOCAL_DEVELOPMENT.md) for more details on the dev script and available commands.\n\n## Architecture\n\n```mermaid\nflowchart TB\n    subgraph dev[\"Dev Machine\"]\n        subgraph portal[\"claude-portal binary\"]\n            subgraph codes[\"claude-codes crate\"]\n                claude[\"claude CLI binary\"]\n            end\n        end\n    end\n\n    subgraph server[\"Backend Server\"]\n        axum[\"Axum Web Server\"]\n        db[(PostgreSQL)]\n        axum \u003c--\u003e db\n    end\n\n    subgraph browser[\"Web Browser\"]\n        yew[\"Yew WASM Frontend\"]\n    end\n\n    portal \u003c--\u003e|\"WebSocket\"| axum\n    yew \u003c--\u003e|\"WebSocket\"| axum\n    axum --\u003e|\"Serves\"| yew\n```\n\nThe **portal** refers to the complete system: backend server, web frontend, and CLI binary. The CLI binary (`claude-portal`) connects your local Claude Code instance to the portal server, enabling remote access and session sharing.\n\n### Components\n\n| Component | Description |\n|-----------|-------------|\n| **Backend** | Axum web server with PostgreSQL, OAuth, WebSocket coordination |\n| **Frontend** | Yew WebAssembly app with terminal-style UI and voice input |\n| **CLI** | `claude-portal` binary that wraps Claude Code and connects to backend |\n| **Shared** | Common types and protocol definitions (WASM-compatible) |\n\n## Documentation\n\n| Document | Description |\n|----------|-------------|\n| [Usage Guide](docs/USAGE.md) | Web interface, CLI options, voice input, session sharing |\n| [Local Development](docs/LOCAL_DEVELOPMENT.md) | Quick setup with `dev.sh`, available commands |\n| [Development Guide](docs/DEVELOPING.md) | Full dev workflow, building, testing, contributing |\n| [Architecture Vocabulary](docs/ARCHITECTURE_VOCABULARY.md) | Runtime components, core concepts, and message flow terminology |\n| [Deployment Guide](docs/DEPLOYING.md) | Production deployment, Google OAuth setup, configuration |\n| [Docker Guide](docs/DOCKER.md) | Docker and Kubernetes deployment with 1Password |\n| [VS Code Setup](docs/VSCODE_SETUP.md) | Use Claude Code in VS Code with portal integration |\n| [Troubleshooting](docs/TROUBLESHOOTING.md) | Common issues and solutions |\n\n## Platform Support\n\n| Platform | Status |\n|----------|--------|\n| Linux (x86_64) | Tested |\n| Linux (aarch64) | Builds in CI |\n| macOS (Apple Silicon) | Builds in CI |\n| macOS (Intel) | Builds in CI |\n| Windows (x86_64) | Builds in CI |\n\nPre-built binaries available from [GitHub Releases](https://github.com/meawoppl/agent-portal/releases/latest).\n\n## Technologies\n\n- **Backend**: [Axum](https://github.com/tokio-rs/axum) 0.7, [Diesel](https://diesel.rs/) 2.2, [Tokio](https://tokio.rs/)\n- **Frontend**: [Yew](https://yew.rs/) 0.21, WebAssembly\n- **Claude Integration**: [claude-codes](https://crates.io/crates/claude-codes)\n- **Voice**: Web Speech API\n\n## Contributing\n\nContributions are welcome! Please:\n\n1. Fork the repository\n2. Create a feature branch\n3. Run `cargo test` and `cargo clippy`\n4. Submit a pull request\n\nPlease open an issue first to discuss major changes.\n\n## Security \u0026 Privacy\n\nWhen using the hosted instance at **txcl.io**, please be aware:\n\n- **Data Access**: The txcl.io server can access your Claude Code session content\n- **Data Storage**: Session messages are stored temporarily on our servers for history display purposes only\n- **Retention**: Message data is retained for a limited time and then automatically deleted\n- **Purpose**: Messages are stored solely to enable the web interface history feature\n- **No Analysis**: We do not analyze, share, or use your session content for any other purpose\n- **User Control**: You can delete your sessions and associated data at any time from the dashboard\n\n**For complete data control**, you can self-host your own instance of Claude Code Portal. See [Deployment Guide](docs/DEPLOYING.md) for instructions.\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/meawoppl/agent-portal/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/meawoppl/agent-portal/discussions)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeawoppl%2Fagent-portal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeawoppl%2Fagent-portal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeawoppl%2Fagent-portal/lists"}