ai-or-die 0.1.77 → 0.1.79

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/bin/ai-or-die.js CHANGED
@@ -43,7 +43,7 @@ program
43
43
  .option('--no-sticky-notes', 'disable per-tab AI session summaries + auto tab titles (on by default)')
44
44
  .option('--sticky-notes-model-dir <path>', 'custom directory for the sticky-note model file')
45
45
  .option('--sticky-notes-model <url>', 'override the sticky-note model GGUF download URL')
46
- .option('--sticky-notes-threads <number>', 'CPU threads for sticky-note inference (default: auto, max 4)')
46
+ .option('--sticky-notes-threads <number>', 'CPU threads for sticky-note inference (default: auto — three-quarters of the cores on CPU, gentle on GPU)')
47
47
  .option('--no-keepalive', 'disable keeping the machine awake while the server runs (Windows only; on by default)')
48
48
  .option('--keepalive-display', 'also keep the display on (default keeps the system awake but lets the monitor sleep)');
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-or-die",
3
- "version": "0.1.77",
3
+ "version": "0.1.79",
4
4
  "description": "Universal AI coding terminal — Claude, Copilot, Gemini & more in your browser",
5
5
  "main": "src/server.js",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "start:direct": "node bin/ai-or-die.js",
13
13
  "dev": "node bin/supervisor.js --dev",
14
14
  "dev:direct": "node bin/ai-or-die.js --dev",
15
- "test": "mocha --exit test/*.test.js",
15
+ "test": "mocha --exit test/*.test.js test/control/*.test.js",
16
16
  "test:integration": "mocha --exit --timeout 60000 test/supervisor-integration.test.js test/integration/*.test.js",
17
17
  "test:browser": "npx playwright test --config e2e/playwright.config.js",
18
18
  "soak": "node test/longevity/harness/cli.js",