@kl-c/matrixos 0.3.34 → 0.3.35

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.34",
2166
+ version: "0.3.35",
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",
@@ -186953,6 +186953,11 @@ function ensureKanbanTable(db) {
186953
186953
  updated_at INTEGER NOT NULL
186954
186954
  )
186955
186955
  `);
186956
+ try {
186957
+ db.query("SELECT description FROM matrixos_kanban LIMIT 1").all();
186958
+ } catch {
186959
+ db.exec("ALTER TABLE matrixos_kanban ADD COLUMN description TEXT NOT NULL DEFAULT ''");
186960
+ }
186956
186961
  }
186957
186962
  function midnightMs() {
186958
186963
  const d = new Date;
@@ -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.34",
2166
+ version: "0.3.35",
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",
@@ -187008,6 +187008,11 @@ function ensureKanbanTable(db) {
187008
187008
  updated_at INTEGER NOT NULL
187009
187009
  )
187010
187010
  `);
187011
+ try {
187012
+ db.query("SELECT description FROM matrixos_kanban LIMIT 1").all();
187013
+ } catch {
187014
+ db.exec("ALTER TABLE matrixos_kanban ADD COLUMN description TEXT NOT NULL DEFAULT ''");
187015
+ }
187011
187016
  }
187012
187017
  function midnightMs() {
187013
187018
  const d = new Date;
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.34",
368022
+ version: "0.3.35",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl-c/matrixos",
3
- "version": "0.3.34",
3
+ "version": "0.3.35",
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",