@lore-co/cli 0.1.22 → 0.1.23

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/self-host.js CHANGED
@@ -65,7 +65,7 @@ Environment:
65
65
  Examples:
66
66
  lore self-host up
67
67
  lore self-host up --headless --connect --agent claude
68
- lore self-host up --image-tag 0.1.22 --origin https://lore.example.com
68
+ lore self-host up --image-tag 0.1.23 --origin https://lore.example.com
69
69
  `;
70
70
  export const SELF_HOST_DOWN_HELP = `lore self-host down
71
71
  Stop the self-hosted stack. Database volumes are preserved by default.
@@ -317,7 +317,7 @@ function parseDownArguments(args, environment) {
317
317
  function normalizeImageTag(value) {
318
318
  const tag = value.trim().replace(/^v(?=\d)/u, "");
319
319
  if (!/^\d+\.\d+\.\d+(?:-[0-9A-Za-z][0-9A-Za-z.-]*)?$/u.test(tag)) {
320
- throw new Error("--image-tag must be a pinned semantic version such as 0.1.22");
320
+ throw new Error("--image-tag must be a pinned semantic version such as 0.1.23");
321
321
  }
322
322
  return tag;
323
323
  }
package/dist/update.js CHANGED
@@ -22,7 +22,7 @@ Usage:
22
22
  lore update [--version <tag>]
23
23
 
24
24
  Options:
25
- --version <tag> Release tag to install, for example v0.1.22
25
+ --version <tag> Release tag to install, for example v0.1.23
26
26
  -h, --help Show this help
27
27
 
28
28
  Environment:
@@ -32,7 +32,7 @@ Environment:
32
32
 
33
33
  Examples:
34
34
  lore update
35
- lore update --version v0.1.22
35
+ lore update --version v0.1.23
36
36
  `;
37
37
  export function isReleaseTag(value) {
38
38
  return RELEASE_TAG_PATTERN.test(value);
@@ -50,7 +50,7 @@ export function parseUpdateVersion(args) {
50
50
  if (version !== undefined && isReleaseTag(version)) {
51
51
  return version;
52
52
  }
53
- throw new Error("--version must be a release tag such as v0.1.22");
53
+ throw new Error("--version must be a release tag such as v0.1.23");
54
54
  }
55
55
  throw new Error("Unknown update options. Try: lore update --help");
56
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lore-co/cli",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Connect Claude Code, Codex, Cursor, OpenCode, Polytoken, and T3 Code to Lore shared engineering memory",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -61,8 +61,8 @@
61
61
  "@modelcontextprotocol/sdk": "^1.30.0",
62
62
  "ws": "^8.21.3",
63
63
  "zod": "^4.4.3",
64
- "@lore-co/sdk": "0.1.22",
65
- "@lore-co/core": "0.1.22"
64
+ "@lore-co/core": "0.1.23",
65
+ "@lore-co/sdk": "0.1.23"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@types/ws": "^8.18.1"