@addai/node 0.5.1 → 0.7.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/dist/autostart-mac.d.ts +62 -0
- package/dist/autostart-mac.js +306 -0
- package/dist/autostart-win.d.ts +46 -0
- package/dist/autostart-win.js +290 -0
- package/dist/autostart.d.ts +81 -0
- package/dist/autostart.js +224 -0
- package/dist/capabilities.d.ts +5 -0
- package/dist/capabilities.js +2 -0
- package/dist/cli.js +87 -1
- package/dist/command-runner.d.ts +3 -0
- package/dist/command-runner.js +63 -7
- package/dist/index.js +34 -12
- package/dist/self-update.d.ts +25 -0
- package/dist/self-update.js +21 -0
- package/dist/tui/dashboard.d.ts +14 -0
- package/dist/tui/dashboard.js +67 -1
- package/dist/tui/data.d.ts +9 -0
- package/dist/tui/request-row.d.ts +1 -1
- package/dist/tui/request-row.js +22 -8
- package/dist/tui/run.js +3 -0
- package/package.json +1 -1
package/dist/tui/run.js
CHANGED
|
@@ -197,6 +197,9 @@ async function runDashboard(opts) {
|
|
|
197
197
|
inflight: 0, paired: (0, store_1.isPaired)(), viewerMode: opts.viewerMode,
|
|
198
198
|
offline: false, now: Date.now(), version: opts.version,
|
|
199
199
|
logCount: 0,
|
|
200
|
+
// Read on the first poll rather than here — the first frame must paint
|
|
201
|
+
// before anything touches the filesystem.
|
|
202
|
+
autostart: null, autostartNote: null,
|
|
200
203
|
};
|
|
201
204
|
const ui = createConsole((host, suspend) => {
|
|
202
205
|
const openTranscript = (r) => host.push((0, transcript_1.createTranscriptScreen)({ data, host, request: r }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@addai/node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Daemon that pairs a machine with your +Ai account and runs Claude / Codex / Kimi / Gemini agents on its behalf. Reachable via Supabase from Vault, Entity Studio, or any other +Ai surface.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|