@kl-c/matrixos 0.3.25 → 0.3.26
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 +3 -2
- package/dist/cli-node/index.js +3 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.26",
|
|
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",
|
|
@@ -186622,6 +186622,7 @@ import * as os12 from "os";
|
|
|
186622
186622
|
import * as fs21 from "fs";
|
|
186623
186623
|
import * as path24 from "path";
|
|
186624
186624
|
import { Database as Database5 } from "bun:sqlite";
|
|
186625
|
+
init_config_context();
|
|
186625
186626
|
var BUILTIN_AGENT_NAMES2 = BuiltinAgentNameSchema.options.map((v) => v);
|
|
186626
186627
|
var AGENT_DISPLAY_NAMES2 = {
|
|
186627
186628
|
morpheus: "Morpheus",
|
|
@@ -186734,7 +186735,7 @@ function readPackageVersion2() {
|
|
|
186734
186735
|
return "0.0.0";
|
|
186735
186736
|
}
|
|
186736
186737
|
function createDataProvider(config5) {
|
|
186737
|
-
const matrixosHome = config5?.matrixosHome ??
|
|
186738
|
+
const matrixosHome = config5?.matrixosHome ?? getConfigDir();
|
|
186738
186739
|
const version3 = readPackageVersion2();
|
|
186739
186740
|
function readJsonl(filePath) {
|
|
186740
186741
|
try {
|
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.26",
|
|
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",
|
|
@@ -186677,6 +186677,7 @@ import * as os12 from "os";
|
|
|
186677
186677
|
import * as fs21 from "fs";
|
|
186678
186678
|
import * as path24 from "path";
|
|
186679
186679
|
import { Database as Database5 } from "bun:sqlite";
|
|
186680
|
+
init_config_context();
|
|
186680
186681
|
var BUILTIN_AGENT_NAMES2 = BuiltinAgentNameSchema.options.map((v) => v);
|
|
186681
186682
|
var AGENT_DISPLAY_NAMES2 = {
|
|
186682
186683
|
morpheus: "Morpheus",
|
|
@@ -186789,7 +186790,7 @@ function readPackageVersion2() {
|
|
|
186789
186790
|
return "0.0.0";
|
|
186790
186791
|
}
|
|
186791
186792
|
function createDataProvider(config5) {
|
|
186792
|
-
const matrixosHome = config5?.matrixosHome ??
|
|
186793
|
+
const matrixosHome = config5?.matrixosHome ?? getConfigDir();
|
|
186793
186794
|
const version3 = readPackageVersion2();
|
|
186794
186795
|
function readJsonl(filePath) {
|
|
186795
186796
|
try {
|
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.26",
|
|
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