@lore-co/cli 0.1.22 → 0.1.24
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/README.md +13 -5
- package/dist/agents.d.ts +16 -0
- package/dist/agents.d.ts.map +1 -0
- package/dist/agents.js +80 -0
- package/dist/agents.js.map +1 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +38 -4
- package/dist/cli.js.map +1 -1
- package/dist/devin-client.d.ts +2 -2
- package/dist/generated-assets.d.ts +4 -4
- package/dist/generated-assets.js +4 -4
- package/dist/handoff.d.ts.map +1 -1
- package/dist/handoff.js +12 -25
- package/dist/handoff.js.map +1 -1
- package/dist/pty.d.ts.map +1 -1
- package/dist/pty.js +46 -6
- package/dist/pty.js.map +1 -1
- package/dist/recovery-opencode.d.ts +3 -0
- package/dist/recovery-opencode.d.ts.map +1 -0
- package/dist/recovery-opencode.js +72 -0
- package/dist/recovery-opencode.js.map +1 -0
- package/dist/recovery-state.d.ts +77 -0
- package/dist/recovery-state.d.ts.map +1 -0
- package/dist/recovery-state.js +262 -0
- package/dist/recovery-state.js.map +1 -0
- package/dist/recovery.d.ts +21 -0
- package/dist/recovery.d.ts.map +1 -0
- package/dist/recovery.js +560 -0
- package/dist/recovery.js.map +1 -0
- package/dist/self-host.d.ts +1 -1
- package/dist/self-host.js +2 -2
- package/dist/update.js +3 -3
- package/package.json +3 -3
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.
|
|
68
|
+
lore self-host up --image-tag 0.1.24 --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.
|
|
320
|
+
throw new Error("--image-tag must be a pinned semantic version such as 0.1.24");
|
|
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.
|
|
25
|
+
--version <tag> Release tag to install, for example v0.1.24
|
|
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.
|
|
35
|
+
lore update --version v0.1.24
|
|
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.
|
|
53
|
+
throw new Error("--version must be a release tag such as v0.1.24");
|
|
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.
|
|
3
|
+
"version": "0.1.24",
|
|
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/
|
|
65
|
-
"@lore-co/
|
|
64
|
+
"@lore-co/core": "0.1.24",
|
|
65
|
+
"@lore-co/sdk": "0.1.24"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@types/ws": "^8.18.1"
|