@makefinks/daemon 0.7.1 → 0.7.2

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 (2) hide show
  1. package/README.md +5 -9
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,13 +11,13 @@ but can also interact with and **control** your system through the terminal with
11
11
 
12
12
  ## Installation
13
13
 
14
+ DAEMON requires Bun at runtime, but global installation is currently documented via npm because some Bun global setups can fail on native `sqlite3` bindings pulled in by the optional memory feature.
15
+
14
16
  ```bash
15
- # npm (might throw warnings)
17
+ # npm (recommended)
18
+ # Note: you may see deprecation warnings from transitive dependencies.
16
19
  npm i -g @makefinks/daemon
17
20
 
18
- # bun (recommended)
19
- bun add -g @makefinks/daemon
20
-
21
21
  # additional installs (macOS)
22
22
  brew install sox # For Audio Input / Output
23
23
  ```
@@ -95,7 +95,7 @@ DAEMON can persist user-specific facts across sessions using [mem0](https://gith
95
95
  | Bash Execution | Bash integration with approval scoping for potentially dangerous commands. |
96
96
  | JS Page Rendering | Optional Playwright renderer for SPA content. |
97
97
 
98
- ## 📦 Install (npm/bun)
98
+ ## 📦 Install (npm)
99
99
 
100
100
  DAEMON is published as a CLI package. It **requires Bun** at runtime, even if you install via npm.
101
101
 
@@ -107,8 +107,6 @@ Then install DAEMON:
107
107
  ```bash
108
108
  # Global npm install
109
109
  npm i -g @makefinks/daemon
110
- # or via bun
111
- bun add -g @makefinks/daemon
112
110
 
113
111
  # Then run
114
112
  daemon
@@ -155,8 +153,6 @@ This feature is **optional** and intentionally not installed by default (browser
155
153
  ```bash
156
154
  # 1) Install Playwright globally
157
155
  npm i -g playwright
158
- # or
159
- bun add -g playwright
160
156
 
161
157
  # 2) Install Chromium browser binaries
162
158
  npx playwright install chromium
package/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "module": "src/index.tsx",
30
30
  "type": "module",
31
- "version": "0.7.1",
31
+ "version": "0.7.2",
32
32
  "bin": {
33
33
  "daemon": "dist/cli.js"
34
34
  },
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "dependencies": {
76
76
  "@ai-sdk/openai": "^3.0.0",
77
- "@openrouter/ai-sdk-provider": "1.5.4",
77
+ "@openrouter/ai-sdk-provider": "^2.1.0",
78
78
  "@opentui-ui/toast": "^0.0.3",
79
79
  "@opentui/core": "^0.1.63",
80
80
  "@opentui/react": "^0.1.63",