laminark 2.22.5 → 2.22.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "laminark",
3
- "version": "2.22.5",
3
+ "version": "2.22.6",
4
4
  "description": "Persistent adaptive memory for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "laminark",
3
3
  "description": "Persistent adaptive memory for Claude Code. Automatic observation capture, semantic search, topic detection, knowledge graph, and web visualization.",
4
- "version": "2.22.5",
4
+ "version": "2.22.6",
5
5
  "author": {
6
6
  "name": "NoobyNull"
7
7
  },
@@ -117,7 +117,7 @@ fi
117
117
  # Simple version comparison: check if latest is newer
118
118
  OLDER=$(printf '%s\n%s' "$CURRENT_VERSION" "$LATEST" | sort -V | head -n1)
119
119
  if [ "$OLDER" = "$CURRENT_VERSION" ] && [ "$CURRENT_VERSION" != "$LATEST" ]; then
120
- echo "[Laminark] Update available: v${CURRENT_VERSION} -> v${LATEST} — run: bash \"$PLUGIN_ROOT/scripts/update.sh\"" >&2
120
+ echo "[Laminark] Update available: v${CURRENT_VERSION} -> v${LATEST} — run /laminark:update" >&2
121
121
  fi
122
122
  fi
123
123
  ) &
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: update
3
+ description: Update Laminark to the latest version from npm
4
+ ---
5
+
6
+ Run the Laminark update script to check for and install the latest version.
7
+
8
+ ## Steps
9
+
10
+ 1. Run the update script:
11
+ ```
12
+ bash "${CLAUDE_PLUGIN_ROOT}/scripts/update.sh"
13
+ ```
14
+
15
+ 2. Show the output to the user.
16
+
17
+ 3. If the update succeeded, tell the user to restart their Claude Code session for changes to take effect.