@devness/useai-cli 0.6.24 → 0.6.25

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/dist/index.js +1 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ var SYSTEMD_SERVICE_PATH = join(homedir(), ".config", "systemd", "user", "useai-
30
30
  var WINDOWS_STARTUP_SCRIPT_PATH = join(process.env["APPDATA"] ?? join(homedir(), "AppData", "Roaming"), "Microsoft", "Windows", "Start Menu", "Programs", "Startup", "useai-daemon.vbs");
31
31
 
32
32
  // ../shared/dist/constants/version.js
33
- var VERSION = "0.6.24";
33
+ var VERSION = "0.6.25";
34
34
 
35
35
  // ../shared/dist/constants/defaults.js
36
36
  var DEFAULT_CAPTURE_CONFIG = {
@@ -43,7 +43,6 @@ var DEFAULT_CAPTURE_CONFIG = {
43
43
  var DEFAULT_SYNC_INCLUDE_CONFIG = {
44
44
  sessions: true,
45
45
  evaluations: true,
46
- evaluation_reasons: "all",
47
46
  milestones: true,
48
47
  prompts: false,
49
48
  private_titles: false,
@@ -241,7 +240,6 @@ function migrateConfig(raw) {
241
240
  include: {
242
241
  sessions: include.sessions ?? DEFAULT_SYNC_INCLUDE_CONFIG.sessions,
243
242
  evaluations: include.evaluations ?? DEFAULT_SYNC_INCLUDE_CONFIG.evaluations,
244
- evaluation_reasons: include.evaluation_reasons ?? DEFAULT_SYNC_INCLUDE_CONFIG.evaluation_reasons,
245
243
  milestones: include.milestones ?? DEFAULT_SYNC_INCLUDE_CONFIG.milestones,
246
244
  prompts: include.prompts ?? DEFAULT_SYNC_INCLUDE_CONFIG.prompts,
247
245
  private_titles: include.private_titles ?? DEFAULT_SYNC_INCLUDE_CONFIG.private_titles,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devness/useai-cli",
3
- "version": "0.6.24",
3
+ "version": "0.6.25",
4
4
  "description": "CLI tool for useai.dev — stats, sync, publish your AI development workflow",
5
5
  "author": "nabeelkausari",
6
6
  "license": "AGPL-3.0-only",