sidebud 0.1.0
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 +31 -0
- package/THIRD_PARTY_NOTICES.md +29 -0
- package/dist/cli.js +7 -0
- package/dist/main.js +12201 -0
- package/package.json +41 -0
- package/packs/BRAND_ASSETS.md +8 -0
- package/packs/calendar/logo.png +0 -0
- package/packs/calendar/pack.json +127 -0
- package/packs/discord/pack.json +107 -0
- package/packs/filesystem/pack.json +84 -0
- package/packs/github/pack.json +127 -0
- package/packs/gmail/logo.png +0 -0
- package/packs/gmail/pack.json +274 -0
- package/packs/obsidian/pack.json +88 -0
- package/packs/t3-agents/logo.png +0 -0
- package/packs/t3-agents/pack.json +492 -0
- package/packs/telegram/pack.json +137 -0
- package/packs/trello/pack.json +102 -0
- package/packs/whatsapp/pack.json +118 -0
- package/src/manage/favicon.png +0 -0
- package/src/manage/index.html +91 -0
- package/src/manage/manage.css +1246 -0
- package/src/manage/manage.js +1054 -0
- package/src/manage/settings.js +112 -0
- package/src/manage/setup.js +210 -0
- package/src/manage/sidebud-icon.png +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Sidebud
|
|
2
|
+
|
|
3
|
+
Talk to the agents on your computer from your phone. Sidebud's companion runs on your computer: it holds your keys, runs your agents, and connects your phone.
|
|
4
|
+
|
|
5
|
+
## Start
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npx sidebud
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
The first start opens setup in your browser:
|
|
12
|
+
|
|
13
|
+
1. **Get the phone app** — scan the code, or open [sidebud.app/download](https://sidebud.app/download) on your phone.
|
|
14
|
+
2. **Choose who does the work** — Claude Code, Codex, OpenCode, Cursor, or Grok, already installed and signed in on this computer. Setup runs a short test prompt.
|
|
15
|
+
3. **Choose a voice** — Gemini Live, OpenAI Realtime, or Grok Voice, with your own API key. Setup checks that the voice can hand requests to your agent.
|
|
16
|
+
4. **Add integrations** — T3 Agents, Obsidian, Calendar, Gmail, and more.
|
|
17
|
+
5. **Pair your phone** — scan the pairing code with the app.
|
|
18
|
+
|
|
19
|
+
Keep the companion running while you use the app. Run `npx sidebud setup` or `npx sidebud manage` from another terminal to reopen the page.
|
|
20
|
+
|
|
21
|
+
## Requirements
|
|
22
|
+
|
|
23
|
+
- Node.js 22.13 or newer.
|
|
24
|
+
- macOS is the supported platform today; keys are kept in the login keychain. On other systems keys are stored in an owner-only file under `~/.remote-voice-agent`.
|
|
25
|
+
- Your phone must reach this computer on the same network or over Tailscale.
|
|
26
|
+
|
|
27
|
+
## Privacy
|
|
28
|
+
|
|
29
|
+
Provider keys, account tokens, and agent work stay on this computer. The management page listens on `127.0.0.1` only and requires a token from this computer.
|
|
30
|
+
|
|
31
|
+
Run `npx sidebud help` for every command.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
## T3 Code
|
|
4
|
+
|
|
5
|
+
Portions of `packages/connectors/src/direct` (provider contracts, runtime-mode mapping, approval handling, ACP permission mapping, and per-task instruction files) are adapted from T3 Code, <https://github.com/pingdotgg/t3code>.
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2026 T3 Tools Inc.
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
```
|
package/dist/cli.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const [major, minor] = process.versions.node.split('.').map(Number)
|
|
3
|
+
if (major < 22 || (major === 22 && minor < 13)) {
|
|
4
|
+
console.error('Sidebud needs Node.js 22.13 or newer; this is ' + process.version + '. Install a current Node.js from https://nodejs.org, then run npx sidebud again.')
|
|
5
|
+
process.exit(1)
|
|
6
|
+
}
|
|
7
|
+
await import('./main.js')
|