@kl-c/matrixos 0.3.42 → 0.3.43
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 +2 -1
- package/dist/cli-node/index.js +2 -1
- 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.43",
|
|
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",
|
|
@@ -187518,6 +187518,7 @@ ${row.description ? `Description: ${row.description}
|
|
|
187518
187518
|
return { ok: false, error: "database unavailable" };
|
|
187519
187519
|
try {
|
|
187520
187520
|
ensureGoalsTable(db);
|
|
187521
|
+
ensureKanbanTable(db);
|
|
187521
187522
|
const row = db.query("SELECT title, description, status FROM matrixos_goals WHERE id = ?").get(id);
|
|
187522
187523
|
if (!row)
|
|
187523
187524
|
return { ok: false, error: "goal not found" };
|
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.43",
|
|
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",
|
|
@@ -187573,6 +187573,7 @@ ${row.description ? `Description: ${row.description}
|
|
|
187573
187573
|
return { ok: false, error: "database unavailable" };
|
|
187574
187574
|
try {
|
|
187575
187575
|
ensureGoalsTable(db);
|
|
187576
|
+
ensureKanbanTable(db);
|
|
187576
187577
|
const row = db.query("SELECT title, description, status FROM matrixos_goals WHERE id = ?").get(id);
|
|
187577
187578
|
if (!row)
|
|
187578
187579
|
return { ok: false, error: "goal not found" };
|
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.
|
|
368089
|
+
version: "0.3.43",
|
|
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