https://github.com/inizio/nexus
https://github.com/inizio/nexus
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/inizio/nexus
- Owner: IniZio
- Created: 2026-01-09T09:52:18.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-04-10T11:28:26.000Z (2 months ago)
- Last Synced: 2026-04-10T12:04:22.078Z (2 months ago)
- Language: Go
- Homepage: https://inizio.github.io/nexus/
- Size: 154 MB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Nexus
Nexus is a remote workspace platform. The daemon runs on a Linux host; a Mac CLI controls it over an SSH tunnel.
## Components
| Component | Package | Description |
|-----------|---------|-------------|
| **Workspace Daemon + CLI** | `packages/nexus` | Go daemon (remote host) + full CLI (local) |
| **Workspace SDK** | `packages/sdk/js` | TypeScript SDK for programmatic workspace control |
## Quick Start
```bash
# Connect CLI to remote daemon
nexus daemon connect newman@linuxbox --port 7777
# Create and start a workspace
nexus workspace create
nexus workspace start
# Forward workspace ports to local machine
nexus spotlight start
```
## Build from Source
```bash
cd packages/nexus
go build ./cmd/nexus/...
```
## Docs
- [Docs index](docs/README.md)
- [CLI reference](docs/reference/cli.md)
- [Architecture](ARCHITECTURE.md)
- [Contributing](CONTRIBUTING.md)