@kl-c/matrixos 0.3.50 → 0.3.51

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/cli/index.js CHANGED
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.50",
2166
+ version: "0.3.51",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -190256,6 +190256,9 @@ cron3.command("remove <id>").description("Remove a scheduled job by id").action(
190256
190256
  cron3.command("start").description("Start the cron scheduler (runs in foreground; pair with systemd for daemon mode)").option("--daemon", "Park the event loop (for systemd service)").action(async (options) => {
190257
190257
  const { cronStart: cronStart2 } = await Promise.resolve().then(() => (init_cron(), exports_cron));
190258
190258
  const code = cronStart2({ daemon: options.daemon });
190259
+ if (options.daemon) {
190260
+ return;
190261
+ }
190259
190262
  process.exit(code);
190260
190263
  });
190261
190264
  cron3.command("stop").description("Stop the cron scheduler (terminates the running scheduler process)").action(async () => {
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.50",
2166
+ version: "0.3.51",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -190311,6 +190311,9 @@ cron3.command("remove <id>").description("Remove a scheduled job by id").action(
190311
190311
  cron3.command("start").description("Start the cron scheduler (runs in foreground; pair with systemd for daemon mode)").option("--daemon", "Park the event loop (for systemd service)").action(async (options) => {
190312
190312
  const { cronStart: cronStart2 } = await Promise.resolve().then(() => (init_cron(), exports_cron));
190313
190313
  const code = cronStart2({ daemon: options.daemon });
190314
+ if (options.daemon) {
190315
+ return;
190316
+ }
190314
190317
  process.exit(code);
190315
190318
  });
190316
190319
  cron3.command("stop").description("Stop the cron scheduler (terminates the running scheduler process)").action(async () => {
package/dist/index.js CHANGED
@@ -368086,7 +368086,7 @@ function getCachedVersion(options = {}) {
368086
368086
  // package.json
368087
368087
  var package_default = {
368088
368088
  name: "@kl-c/matrixos",
368089
- version: "0.3.50",
368089
+ version: "0.3.51",
368090
368090
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
368091
368091
  main: "./dist/index.js",
368092
368092
  types: "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl-c/matrixos",
3
- "version": "0.3.50",
3
+ "version": "0.3.51",
4
4
  "description": "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",