cli4ai 1.1.1 → 1.1.3
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/package.json +1 -1
- package/src/bin.ts +1 -1
- package/src/core/scheduler-daemon.ts +2 -2
package/package.json
CHANGED
package/src/bin.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env npx tsx
|
|
2
2
|
/**
|
|
3
3
|
* Scheduler daemon entry point.
|
|
4
4
|
*
|
|
5
5
|
* This script runs as a background process and manages scheduled routine execution.
|
|
6
6
|
* It's spawned by `cli4ai scheduler start` with detached mode.
|
|
7
7
|
*
|
|
8
|
-
* Usage:
|
|
8
|
+
* Usage: npx tsx scheduler-daemon.ts [--project-dir <dir>]
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import { Scheduler, writeDaemonPid, removeDaemonPid, appendSchedulerLog, SCHEDULER_LOG_FILE, ensureSchedulerDirs } from './scheduler.js';
|