@xdsjs/dossierx-daemon 0.1.9 → 0.1.11
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/index.js +9 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -996,7 +996,7 @@ function createTaskArchive(options) {
|
|
|
996
996
|
|
|
997
997
|
// src/version.ts
|
|
998
998
|
var DAEMON_PACKAGE_NAME = "@xdsjs/dossierx-daemon";
|
|
999
|
-
var DAEMON_VERSION = "0.1.
|
|
999
|
+
var DAEMON_VERSION = "0.1.11";
|
|
1000
1000
|
|
|
1001
1001
|
// src/local-api/server.ts
|
|
1002
1002
|
var DEFAULT_MAX_FILE_BYTES = 5 * 1024 * 1024;
|
|
@@ -2974,10 +2974,15 @@ function buildProgram() {
|
|
|
2974
2974
|
await runDaemon(options);
|
|
2975
2975
|
});
|
|
2976
2976
|
const service = program.command("service").description("Manage the macOS LaunchAgent for dossierx-daemon");
|
|
2977
|
-
service.command("install").description("Write a macOS LaunchAgent plist for persistent daemon runs").option("--label <label>", "LaunchAgent label").option("--daemon-command <command>", "custom command used by launchd").option("--log-level <level>", "daemon log level", "info").option("--invest-wiki-mode <mode>", "invest wiki runner mode").option("--invest-wiki-local-repo <path>", "local llm-wiki-invest repo path").option("--invest-wiki-command <command>", "installed llm-wiki-invest command").option("--codex-command <command>", "installed Codex CLI command").option("--codex-model <model>", "Codex model override for exec mode").option("--codex-sandbox <mode>", "Codex sandbox mode").option("--git-mirror-root <path>", "local Git mirror repository path").option("--git-mirror-remote <url>", "remote Git mirror repository URL").option("--git-mirror-branch <branch>", "Git mirror branch name").option("--git-command <command>", "installed Git command").option("--notebook-lm-python-command <command>", "Python command used to run notebooklm-py").option("--notebook-lm-profile <profile>", "notebooklm-py profile name").option("--notebook-lm-home <path>", "NOTEBOOKLM_HOME directory").option("--notebook-lm-storage-path <path>", "explicit notebooklm-py storage_state.json path").option("--local-api-port <port>", "local workspace preview API port").action(async (options) => {
|
|
2977
|
+
service.command("install").description("Write a macOS LaunchAgent plist for persistent daemon runs").option("--label <label>", "LaunchAgent label").option("--daemon-command <command>", "custom command used by launchd").option("--log-level <level>", "daemon log level", "info").option("--invest-wiki-mode <mode>", "invest wiki runner mode").option("--invest-wiki-local-repo <path>", "local llm-wiki-invest repo path").option("--invest-wiki-command <command>", "installed llm-wiki-invest command").option("--codex-command <command>", "installed Codex CLI command").option("--codex-model <model>", "Codex model override for exec mode").option("--codex-sandbox <mode>", "Codex sandbox mode").option("--git-mirror-root <path>", "local Git mirror repository path").option("--git-mirror-remote <url>", "remote Git mirror repository URL").option("--git-mirror-branch <branch>", "Git mirror branch name").option("--git-command <command>", "installed Git command").option("--notebook-lm-python-command <command>", "Python command used to run notebooklm-py").option("--notebook-lm-profile <profile>", "notebooklm-py profile name").option("--notebook-lm-home <path>", "NOTEBOOKLM_HOME directory").option("--notebook-lm-storage-path <path>", "explicit notebooklm-py storage_state.json path").option("--local-api-port <port>", "local workspace preview API port").action(async (options, command) => {
|
|
2978
|
+
const rootOptions = command.parent?.parent?.opts() ?? {};
|
|
2979
|
+
const mergedOptions = {
|
|
2980
|
+
...rootOptions,
|
|
2981
|
+
...options
|
|
2982
|
+
};
|
|
2978
2983
|
const result = await installLaunchAgent({
|
|
2979
|
-
...
|
|
2980
|
-
localApiPort: parsePort(
|
|
2984
|
+
...mergedOptions,
|
|
2985
|
+
localApiPort: parsePort(mergedOptions.localApiPort)
|
|
2981
2986
|
});
|
|
2982
2987
|
console.log(`LaunchAgent written: ${result.plistPath}`);
|
|
2983
2988
|
console.log(`Start: ${result.loadCommand}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xdsjs/dossierx-daemon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@supabase/supabase-js": "^2.0.0",
|
|
34
|
-
"@xdsjs/dossier-financial-reports": "^0.1.
|
|
34
|
+
"@xdsjs/dossier-financial-reports": "^0.1.3",
|
|
35
35
|
"@xdsjs/dossierx-git-mirror": "^0.1.2",
|
|
36
36
|
"@xdsjs/dossierx-shared": "^0.1.3",
|
|
37
37
|
"@xdsjs/dossierx-workspace": "^0.1.1",
|