codemote 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -0
- package/dist/cli.js +72545 -0
- package/dist/cli.js.map +1 -0
- package/package.json +52 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Codemote
|
|
2
|
+
|
|
3
|
+
Control AI coding agents from your phone. Start Claude Code, OpenCode, Codex, or Gemini sessions from an iOS app and watch them work in real time.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx codemote
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This starts a local server, displays a QR code and PIN, and waits for the Codemote iOS app to connect.
|
|
12
|
+
|
|
13
|
+
## How It Works
|
|
14
|
+
|
|
15
|
+
1. Run `npx codemote` in your project directory
|
|
16
|
+
2. Scan the QR code with your iPhone camera, or open the Codemote app and enter the PIN
|
|
17
|
+
3. Once paired, start AI coding sessions from your phone
|
|
18
|
+
4. Watch output stream in real time, send follow-up prompts, and manage sessions remotely
|
|
19
|
+
|
|
20
|
+
Codemote runs entirely on your machine. No data leaves your network. The phone connects directly to your computer over your local network.
|
|
21
|
+
|
|
22
|
+
## Requirements
|
|
23
|
+
|
|
24
|
+
- Node.js 20 or later
|
|
25
|
+
- One or more AI coding agents installed: [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [OpenCode](https://github.com/nicepkg/opencode), [Codex](https://github.com/openai/codex), or [Gemini CLI](https://github.com/google-gemini/gemini-cli)
|
|
26
|
+
- Codemote iOS app (available on TestFlight)
|
|
27
|
+
|
|
28
|
+
## Configuration
|
|
29
|
+
|
|
30
|
+
Codemote works out of the box with zero configuration. These environment variables are available for advanced use:
|
|
31
|
+
|
|
32
|
+
| Variable | Default | Description |
|
|
33
|
+
|---|---|---|
|
|
34
|
+
| `PORT` | `8080` | Server port |
|
|
35
|
+
| `CODEMOTE_REPO_PATH` | Current directory | Working directory for sessions |
|
|
36
|
+
| `CLAUDE_PATH` | `claude` | Path to Claude Code executable |
|
|
37
|
+
| `CODEX_PATH` | `codex` | Path to Codex executable |
|
|
38
|
+
| `GEMINI_PATH` | `gemini` | Path to Gemini CLI executable |
|
|
39
|
+
|
|
40
|
+
## Security
|
|
41
|
+
|
|
42
|
+
- All connections use TLS by default (self-signed certificate, generated locally)
|
|
43
|
+
- Pairing requires a 6-digit PIN displayed only on your terminal
|
|
44
|
+
- No data is sent to external servers. Everything runs locally.
|
|
45
|
+
- The relay, uplink, and bridge all run in a single process on your machine
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT
|