@kl-c/matrixos 0.3.3 → 0.3.4
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.
|
|
2166
|
+
version: "0.3.4",
|
|
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",
|
|
@@ -187665,7 +187665,7 @@ function configureRuntimeCommands(program2) {
|
|
|
187665
187665
|
const exitCode = await architectRollback({ ...options, id });
|
|
187666
187666
|
process.exit(exitCode);
|
|
187667
187667
|
});
|
|
187668
|
-
program2.command("dashboard").description("Start the MaTrixOS web dashboard (port 9123)").option("-p, --port <number>", "HTTP port", "9123").option("--host <addr>", "Bind address", "
|
|
187668
|
+
program2.command("dashboard").description("Start the MaTrixOS web dashboard (port 9123)").option("-p, --port <number>", "HTTP port", "9123").option("--host <addr>", "Bind address", "0.0.0.0").option("--daemon", "Run in background (no Ctrl+C)").action(async (options) => {
|
|
187669
187669
|
const exitCode = await dashboardCli({
|
|
187670
187670
|
port: parseInt(options.port ?? "9123", 10),
|
|
187671
187671
|
host: options.host,
|
|
@@ -3,7 +3,7 @@ description: Show available MaTrixOS built-in features and agents
|
|
|
3
3
|
---
|
|
4
4
|
List MaTrixOS built-in capabilities:
|
|
5
5
|
|
|
6
|
-
- Mission Control dashboard (matrixos dashboard --daemon
|
|
6
|
+
- Mission Control dashboard (`matrixos dashboard --daemon`, http://0.0.0.0:9123 / Tailscale)
|
|
7
7
|
- 16-agent team (Morpheus + Neo, Tank, Oracle, Trinity, Cypher, Sentinel, etc.)
|
|
8
8
|
- Messaging Gateway (Telegram/Discord/WhatsApp) — opt-in via matrixos gateway adopt
|
|
9
9
|
- Learning Loop + Team Mode (opt-in)
|
package/dist/cli-node/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.
|
|
2166
|
+
version: "0.3.4",
|
|
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",
|
|
@@ -187720,7 +187720,7 @@ function configureRuntimeCommands(program2) {
|
|
|
187720
187720
|
const exitCode = await architectRollback({ ...options, id });
|
|
187721
187721
|
process.exit(exitCode);
|
|
187722
187722
|
});
|
|
187723
|
-
program2.command("dashboard").description("Start the MaTrixOS web dashboard (port 9123)").option("-p, --port <number>", "HTTP port", "9123").option("--host <addr>", "Bind address", "
|
|
187723
|
+
program2.command("dashboard").description("Start the MaTrixOS web dashboard (port 9123)").option("-p, --port <number>", "HTTP port", "9123").option("--host <addr>", "Bind address", "0.0.0.0").option("--daemon", "Run in background (no Ctrl+C)").action(async (options) => {
|
|
187724
187724
|
const exitCode = await dashboardCli({
|
|
187725
187725
|
port: parseInt(options.port ?? "9123", 10),
|
|
187726
187726
|
host: options.host,
|
package/dist/index.js
CHANGED
|
@@ -368019,7 +368019,7 @@ function getCachedVersion(options = {}) {
|
|
|
368019
368019
|
// package.json
|
|
368020
368020
|
var package_default = {
|
|
368021
368021
|
name: "@kl-c/matrixos",
|
|
368022
|
-
version: "0.3.
|
|
368022
|
+
version: "0.3.4",
|
|
368023
368023
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
368024
368024
|
main: "./dist/index.js",
|
|
368025
368025
|
types: "dist/index.d.ts",
|
package/package.json
CHANGED