ideawave 0.0.59 → 0.0.61
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 +8 -0
- package/dist/index.mjs +32 -430
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -11,6 +11,9 @@ Then open [ideawave.app](https://ideawave.app), choose a board, and start an age
|
|
|
11
11
|
## Requirements
|
|
12
12
|
|
|
13
13
|
- Node.js 18 or newer
|
|
14
|
+
- Google Chrome for live browser cards (recommended). If Chrome is unavailable,
|
|
15
|
+
IdeaWave downloads its pinned Chromium engine on first browser-card use and
|
|
16
|
+
reuses it on later runs.
|
|
14
17
|
- At least one supported agent runtime installed and signed in:
|
|
15
18
|
- Claude Code
|
|
16
19
|
- Codex CLI
|
|
@@ -29,3 +32,8 @@ npx ideawave --version
|
|
|
29
32
|
If a runtime appears unavailable, confirm its command is on your `PATH` and that you are signed in to that tool.
|
|
30
33
|
|
|
31
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
|
+
|
|
36
|
+
Live browser cards run in a dedicated, persistent local IdeaWave browser
|
|
37
|
+
profile. Website sign-ins and cookies stay on the machine. Browser cards may
|
|
38
|
+
store a sanitized latest-page snapshot with the board so the last rendered
|
|
39
|
+
state remains visible when the CLI disconnects.
|