@onebrain-ai/cli 2.2.2 → 2.2.3

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.
Files changed (2) hide show
  1. package/dist/onebrain +7 -4
  2. package/package.json +1 -1
package/dist/onebrain CHANGED
@@ -9560,7 +9560,7 @@ var init_lib = __esm(() => {
9560
9560
  var require_package = __commonJS((exports, module) => {
9561
9561
  module.exports = {
9562
9562
  name: "@onebrain-ai/cli",
9563
- version: "2.2.2",
9563
+ version: "2.2.3",
9564
9564
  description: "CLI for OneBrain \u2014 personal AI OS for Obsidian with persistent memory, 24+ skills, and Claude Code integration",
9565
9565
  keywords: [
9566
9566
  "onebrain",
@@ -10149,7 +10149,10 @@ function migrateLegacyQmdEntries(groups, keepCanonical) {
10149
10149
  }
10150
10150
  } else {
10151
10151
  const before = group.hooks.length;
10152
- group.hooks = group.hooks.filter((h) => !isLegacyQmdCmd(h.command ?? ""));
10152
+ group.hooks = group.hooks.filter((h) => {
10153
+ const cmd = h.command ?? "";
10154
+ return !isLegacyQmdCmd(cmd) && cmd !== QMD_CMD;
10155
+ });
10153
10156
  if (group.hooks.length !== before)
10154
10157
  touched = true;
10155
10158
  }
@@ -10991,7 +10994,7 @@ var import_picocolors5 = __toESM(require_picocolors(), 1);
10991
10994
  var import_picocolors = __toESM(require_picocolors(), 1);
10992
10995
  function resolveBinaryVersion() {
10993
10996
  if (true)
10994
- return "2.2.2";
10997
+ return "2.2.3";
10995
10998
  try {
10996
10999
  const pkg = require_package();
10997
11000
  return pkg.version ?? "dev";
@@ -13289,7 +13292,7 @@ function patchUtf8(stream) {
13289
13292
  }
13290
13293
 
13291
13294
  // src/index.ts
13292
- var VERSION = "2.2.2";
13295
+ var VERSION = "2.2.3";
13293
13296
  var RELEASE_DATE = "2026-05-10";
13294
13297
  patchUtf8(process.stdout);
13295
13298
  patchUtf8(process.stderr);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onebrain-ai/cli",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "CLI for OneBrain — personal AI OS for Obsidian with persistent memory, 24+ skills, and Claude Code integration",
5
5
  "keywords": [
6
6
  "onebrain",