Skip to content

Commit d62e816

Browse files
2026-08-23 22-05 - Build Remote Agent pairing device
1 parent 366311e commit d62e816

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

docs/agents-and-tools.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,35 @@ base-lite "fix this bug"
4747
Thread the broker capability through every interactive command entry point.
4848
Do not bypass it with a direct `spawn`, add command-active terminal state, or
4949
fall back to the TUI process when broker startup fails.
50+
51+
52+
## Build Remote Agent (phone pairing)
53+
54+
Freebuff can use [Build Remote Agent](https://grokbuildremote.com/) as a pairing device: a phone spectates (and can inject into) this desktop CLI through the free MIT `gbr-agent`. Protocol `gbr/1`. Phone is spectator + veto, not orchestrator.
55+
56+
Independent product by Linespotting AB. Not affiliated with xAI or SpaceX.
57+
58+
```bash
59+
curl -fsSL https://grokbuildremote.com/install.sh | bash
60+
gbr-agent version # v0.6.0+
61+
gbr-agent pair && gbr-agent run
62+
```
63+
64+
Attach only loopback Bot API `http://127.0.0.1:8788` or MCP stdio `gbr-mcp`. Never commit mailbox keys.
65+
66+
```bash
67+
git clone https://github.com/LinespottingOrg/GrokBuildRemote-Agents.git
68+
cd GrokBuildRemote-Agents/mcp/gbr-mcp && npm install
69+
curl -sS http://127.0.0.1:8788/health
70+
```
71+
72+
```json
73+
{
74+
"mcpServers": {
75+
"gbr": {
76+
"command": "node",
77+
"args": ["GrokBuildRemote-Agents/mcp/gbr-mcp/bin/gbr-mcp.js"]
78+
}
79+
}
80+
}
81+
```

0 commit comments

Comments
 (0)