ideawave 0.0.72 → 0.0.74

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.
Files changed (3) hide show
  1. package/README.md +7 -6
  2. package/dist/index.mjs +227 -102
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Run local coding agents from an IdeaWave board.
4
4
 
5
5
  ```bash
6
- npx ideawave
6
+ npx --yes ideawave@latest
7
7
  ```
8
8
 
9
9
  Then open [ideawave.app](https://ideawave.app), choose a board, and start an agent run.
@@ -22,7 +22,7 @@ Then open [ideawave.app](https://ideawave.app), choose a board, and start an age
22
22
  ## Commands
23
23
 
24
24
  ```bash
25
- npx ideawave --dev
25
+ npx --yes ideawave@latest --dev
26
26
  npx ideawave --help
27
27
  npx ideawave --version
28
28
  ```
@@ -33,8 +33,9 @@ If a runtime appears unavailable, confirm its command is on your `PATH` and that
33
33
 
34
34
  For supported runtimes, the CLI fetches small ACP bridge packages on first use. npm caches them, so later runs are fast. If npm's cache was cleared, keep the CLI running and retry after the bridge downloads again.
35
35
 
36
- The CLI advertises the `browser-proxy-v5` capability so browser cards can route
37
- pages and subresources through the local browser-kit proxy. The normal command
36
+ The CLI advertises `browser-proxy-v6` and `browser-dom-snapshot-v1` so browser
37
+ cards can share one local browser profile, route pages and subresources through
38
+ the local browser-kit proxy, and publish a sanitized read-only fallback for
39
+ collaborators. The normal command
38
40
  keeps screenshot capture available. `--dev` skips screenshot-engine setup and
39
- allows Railway PR previews for browser-card development. Existing saved browser
40
- snapshots remain readable, but browser-kit does not create new snapshots yet.
41
+ allows Railway PR previews for browser-card development.