viveworker 0.6.2 → 0.6.4
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 +23 -0
- package/package.json +1 -1
- package/scripts/viveworker-bridge.mjs +1853 -121
- package/web/app.css +228 -9
- package/web/app.js +878 -26
- package/web/i18n.js +114 -0
- package/web/sw.js +33 -15
package/README.md
CHANGED
|
@@ -198,6 +198,29 @@ Run `npx viveworker enable claude` if you want to repair the hooks later or targ
|
|
|
198
198
|
|
|
199
199
|
Advanced: pass `--settings-file <path>` (or `--claude-settings-file <path>`) to target a non-default Claude settings file.
|
|
200
200
|
|
|
201
|
+
## Auto Pilot
|
|
202
|
+
|
|
203
|
+
`viveworker` also includes **Auto Pilot**, a conservative auto-approval layer for the current workspace.
|
|
204
|
+
|
|
205
|
+
You can enable it from `Settings > Auto Pilot`.
|
|
206
|
+
|
|
207
|
+
Today it exposes two families of policy:
|
|
208
|
+
|
|
209
|
+
- **Safe reads**: auto-approve common workspace-only read commands such as `rg`, `find`, `git diff`, `git show`, `sed -n`, `head`, `tail`, and `wc`
|
|
210
|
+
- **Low-risk writes**: auto-approve small file changes only when they fit one of these lanes:
|
|
211
|
+
- `Content & copy`
|
|
212
|
+
- `UI & tests`
|
|
213
|
+
- `Small code patches (beta)`
|
|
214
|
+
|
|
215
|
+
Important boundaries:
|
|
216
|
+
|
|
217
|
+
- Auto Pilot is scoped to the **current workspace only**
|
|
218
|
+
- secrets, config, deploy, auth, payment, networked changes, and anything outside the current workspace stay manual
|
|
219
|
+
- `Small code patches (beta)` is stricter than the other write lanes and expects a recent read of the same file in the same thread
|
|
220
|
+
|
|
221
|
+
When Auto Pilot does not approve something, the request stays in the normal phone approval flow.
|
|
222
|
+
The approval detail view also explains why it stayed manual, so it is easier to tune and trust over time.
|
|
223
|
+
|
|
201
224
|
### Sync Mode (for Claude plans and questions)
|
|
202
225
|
|
|
203
226
|
Claude Desktop exposes approval hooks but has no native IPC for answering `ExitPlanMode` / `AskUserQuestion` prompts remotely. To let you answer plans and questions from your paired device, `viveworker` offers **Sync mode** (toggle in `Settings`, formerly "Away mode"):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "viveworker",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "Open mobile control surface for Codex, Claude, Thread Sharing, File Share, Moltbook, and A2A tasks on your trusted LAN.",
|
|
5
5
|
"author": "Yuta Hoshino <hoshino.lireneo@gmail.com>",
|
|
6
6
|
"license": "MIT",
|