sidebud 0.2.0 → 0.4.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/CHANGELOG.md +48 -0
- package/dist/main.js +4441 -704
- package/package.json +2 -1
- package/skills/widget-packs/SKILL.md +8 -7
- package/src/manage/index.html +4 -0
- package/src/manage/manage.css +38 -0
- package/src/manage/manage.js +91 -6
- package/src/manage/packs.js +11 -4
- package/src/manage/settings.js +1 -1
- package/src/manage/setup.js +72 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# companion
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 411352e: When the voice provider you chose has no key on this computer, the Voice settings page now says it "needs a key on this computer", and the phone shows "Voice needs a key on your computer" instead of a general setup message. Keys are still added only on the computer.
|
|
8
|
+
|
|
9
|
+
Behind the scenes, every settings change now goes through one place. This covers the settings page, the phone, the voice agent, and the execution agent. Nothing else changes for you yet. This prepares for settings that follow your Sidebud account across computers.
|
|
10
|
+
|
|
11
|
+
- c6c6140: **Fast decisions (beta).** Sidebud can now handle many requests itself in about a second, instead of handing them to your execution agent. Turn it on in the new **Fast decisions** page (or the new setup step) with your own TypeSafe key, or point it at a local server with the same API. Without either, nothing changes.
|
|
12
|
+
|
|
13
|
+
- **Your agents.** Ask what's running, what just finished, or what needs you, and hear the answer straight away, across every machine your agents app runs on (for example every T3 environment). Ask about one thread, or the threads in a project, and hear its state and its latest messages. If you're at your computer, Sidebud offers to open the thread there.
|
|
14
|
+
- **Default agents.** Choose the agents app with your main work agents (T3 Agents, Hermes, OpenClaw…) in phone Settings, on the settings page, or during setup. It's separate from your execution agent.
|
|
15
|
+
- **Computer use.** For requests like "switch to my Skool tab in Chrome, find Mark in Messages and send him a note" or "scroll to the bottom", Sidebud moves the cursor, clicks, scrolls, and types on your computer, one step at a time. A connected integration that can do the job goes first, and bigger jobs, or anything it can't finish, go to your execution agent. It only types text you asked for, and it won't send, buy, submit, or delete unless you said to. The app running the companion needs Accessibility access.
|
|
16
|
+
- **Quick controls and reminders.** Open or quit apps, change the volume, play or pause music, switch dark mode, lock the screen, and set reminders.
|
|
17
|
+
- **Faster, clearer calls.** Answers are spoken as soon as they're ready, and you always hear that a request was picked up. The T3 Agents widget now shows threads from every machine, and its data refreshes on the widget's own cycle.
|
|
18
|
+
- **Fixes.** Applying settings no longer crashes the companion when a widget is mid-refresh.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 73f24fe: Groundwork for Sidebud-supplied voice; nothing changes for voice on your own API key. Gemini Live can now run on a short-lived token from the Sidebud site: it renews the token a minute before it expires and continues the call on a new connection without dropping it. Voice sessions also record how many audio and text tokens each reply used, for usage reporting later.
|
|
23
|
+
|
|
24
|
+
Voice stays on your own key only in this release: the companion ignores the Sidebud site's Sidebud-voice flag, so no paid voice option can appear.
|
|
25
|
+
|
|
26
|
+
- @remote-voice-agent/connectors@0.4.0
|
|
27
|
+
- @remote-voice-agent/protocol@0.4.0
|
|
28
|
+
- @remote-voice-agent/voice@0.4.0
|
|
29
|
+
|
|
30
|
+
## 0.3.0
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- a42800b: After you sign in to your Sidebud account, the companion now registers this computer with the account, so it shows up in your account's list of computers with its name, platform, and companion version, and stays current while the companion runs. Signing out from the companion's settings now signs this computer out on the Sidebud site too, and still signs out locally when the site cannot be reached. If your session ends on the site (you signed this computer out from your account page, it expired, or the account was deleted), the companion shows it as signed out with "Your Sidebud session ended. Sign in again." Your tasks, pairings, keys, and other settings on this computer are kept.
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- @remote-voice-agent/connectors@0.3.0
|
|
39
|
+
- @remote-voice-agent/protocol@0.3.0
|
|
40
|
+
- @remote-voice-agent/voice@0.3.0
|
|
41
|
+
|
|
42
|
+
## 0.2.1
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- Setup's voice step now shows the spoken mute, unmute, and end-call phrases, so you can change them before your first call. Save phrases stores them without a voice key.
|
|
47
|
+
- @remote-voice-agent/connectors@0.2.1
|
|
48
|
+
- @remote-voice-agent/protocol@0.2.1
|
|
49
|
+
- @remote-voice-agent/voice@0.2.1
|
|
50
|
+
|
|
3
51
|
## 0.2.0
|
|
4
52
|
|
|
5
53
|
### Minor Changes
|