@lore-co/cli 0.1.27 → 0.1.29
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 +59 -9
- package/dist/agents.d.ts +3 -1
- package/dist/agents.d.ts.map +1 -1
- package/dist/agents.js +31 -7
- package/dist/agents.js.map +1 -1
- package/dist/cli.d.ts +8 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +182 -71
- package/dist/cli.js.map +1 -1
- package/dist/command-help.d.ts +34 -0
- package/dist/command-help.d.ts.map +1 -0
- package/dist/command-help.js +227 -0
- package/dist/command-help.js.map +1 -0
- package/dist/demo.d.ts.map +1 -1
- package/dist/demo.js +15 -2
- package/dist/demo.js.map +1 -1
- package/dist/generated-assets.d.ts +9 -4
- package/dist/generated-assets.d.ts.map +1 -1
- package/dist/generated-assets.js +5 -4
- package/dist/generated-assets.js.map +1 -1
- package/dist/guard.d.ts.map +1 -1
- package/dist/guard.js +4 -3
- package/dist/guard.js.map +1 -1
- package/dist/recovery-cloud-workspace.d.ts +11 -0
- package/dist/recovery-cloud-workspace.d.ts.map +1 -0
- package/dist/recovery-cloud-workspace.js +113 -0
- package/dist/recovery-cloud-workspace.js.map +1 -0
- package/dist/recovery-cloud.d.ts +31 -0
- package/dist/recovery-cloud.d.ts.map +1 -0
- package/dist/recovery-cloud.js +242 -0
- package/dist/recovery-cloud.js.map +1 -0
- package/dist/recovery-codex.d.ts +5 -0
- package/dist/recovery-codex.d.ts.map +1 -0
- package/dist/recovery-codex.js +111 -0
- package/dist/recovery-codex.js.map +1 -0
- package/dist/recovery-copilot.d.ts +14 -0
- package/dist/recovery-copilot.d.ts.map +1 -0
- package/dist/recovery-copilot.js +120 -0
- package/dist/recovery-copilot.js.map +1 -0
- package/dist/recovery-desktop.d.ts +7 -0
- package/dist/recovery-desktop.d.ts.map +1 -0
- package/dist/recovery-desktop.js +179 -0
- package/dist/recovery-desktop.js.map +1 -0
- package/dist/recovery-external.d.ts +61 -0
- package/dist/recovery-external.d.ts.map +1 -0
- package/dist/recovery-external.js +98 -0
- package/dist/recovery-external.js.map +1 -0
- package/dist/recovery-hooks.d.ts +5 -0
- package/dist/recovery-hooks.d.ts.map +1 -0
- package/dist/recovery-hooks.js +115 -0
- package/dist/recovery-hooks.js.map +1 -0
- package/dist/recovery-hosts.d.ts +13 -0
- package/dist/recovery-hosts.d.ts.map +1 -0
- package/dist/recovery-hosts.js +263 -0
- package/dist/recovery-hosts.js.map +1 -0
- package/dist/recovery-polytoken.d.ts +14 -0
- package/dist/recovery-polytoken.d.ts.map +1 -0
- package/dist/recovery-polytoken.js +194 -0
- package/dist/recovery-polytoken.js.map +1 -0
- package/dist/recovery-remote.d.ts +8 -0
- package/dist/recovery-remote.d.ts.map +1 -0
- package/dist/recovery-remote.js +135 -0
- package/dist/recovery-remote.js.map +1 -0
- package/dist/recovery-state.d.ts +25 -1
- package/dist/recovery-state.d.ts.map +1 -1
- package/dist/recovery-state.js +69 -15
- package/dist/recovery-state.js.map +1 -1
- package/dist/recovery-t3.d.ts +17 -0
- package/dist/recovery-t3.d.ts.map +1 -0
- package/dist/recovery-t3.js +58 -0
- package/dist/recovery-t3.js.map +1 -0
- package/dist/recovery-transfer.d.ts +22 -0
- package/dist/recovery-transfer.d.ts.map +1 -0
- package/dist/recovery-transfer.js +228 -0
- package/dist/recovery-transfer.js.map +1 -0
- package/dist/recovery.d.ts +9 -1
- package/dist/recovery.d.ts.map +1 -1
- package/dist/recovery.js +187 -47
- package/dist/recovery.js.map +1 -1
- package/dist/runtime.d.ts +1 -0
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +1 -0
- package/dist/runtime.js.map +1 -1
- package/dist/self-host.d.ts +1 -1
- package/dist/self-host.js +2 -2
- package/dist/uninstall.d.ts +19 -0
- package/dist/uninstall.d.ts.map +1 -0
- package/dist/uninstall.js +128 -0
- package/dist/uninstall.js.map +1 -0
- package/dist/update.js +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -25,6 +25,21 @@ lore doctor
|
|
|
25
25
|
|
|
26
26
|
The package requires Node.js 22 or newer and installs the `lore` command.
|
|
27
27
|
|
|
28
|
+
## Find the right command
|
|
29
|
+
|
|
30
|
+
Run `lore help` for the command list, `lore help <command>` for its use case,
|
|
31
|
+
options and examples, or `lore help self-host up` for a subcommand.
|
|
32
|
+
`lore <command> --help` works too. Help does not require a workspace connection.
|
|
33
|
+
|
|
34
|
+
Use `ask` to find existing knowledge, `remember` to save a reusable lesson,
|
|
35
|
+
`resume` to pick up previous work, and `continue` to hand it to another agent.
|
|
36
|
+
Use `status` to check connections and `doctor` when something is not working.
|
|
37
|
+
|
|
38
|
+
`lore demo` runs real Claude and Codex sessions in your connected workspace.
|
|
39
|
+
It removes its temporary learning after the run; the sessions and delivery
|
|
40
|
+
history remain available through the Sessions filter for Lore setup and tests.
|
|
41
|
+
Native-agent acceptance tests use a separate disposable stack.
|
|
42
|
+
|
|
28
43
|
`connect` auto-detects the `codex`, `claude`, `cursor`, `opencode`, and
|
|
29
44
|
`polytoken` executables plus existing Cursor, OpenCode, and Polytoken
|
|
30
45
|
configuration directories.
|
|
@@ -44,6 +59,10 @@ installing lifecycle hooks.
|
|
|
44
59
|
Configuration is stored in `~/.lore/config.json` with mode `0600`.
|
|
45
60
|
`--login` opens a 10-minute dashboard approval and mints an attributed,
|
|
46
61
|
revocable 90-day credential without exposing it in terminal or agent output.
|
|
62
|
+
If the final login response is interrupted, the CLI retries within that window
|
|
63
|
+
and receives the same credential. After saving it locally, the CLI confirms
|
|
64
|
+
receipt so the approval can no longer be used. This requires an updated server;
|
|
65
|
+
older servers may require another approval after a lost response.
|
|
47
66
|
Use `--no-open` to print the approval URL without launching a browser.
|
|
48
67
|
Before writing the local config or any agent integration, `connect` calls the
|
|
49
68
|
authenticated workspace identity endpoint and validates the strict response
|
|
@@ -88,12 +107,21 @@ For a review-first OpenCode rollout, follow the
|
|
|
88
107
|
|
|
89
108
|
## Query shared context
|
|
90
109
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
110
|
+
`lore connect` enables recovery when two supported clients are installed. Use
|
|
111
|
+
`--fallback <agent>` to choose a destination or `--no-recovery` to opt out.
|
|
112
|
+
Independent routes use `lore recovery enable --from opencode --to devin`.
|
|
113
|
+
Claude, Codex, OpenCode, Devin CLI, Cursor Agent, Copilot CLI and Polytoken can
|
|
114
|
+
receive work locally or on a configured SSH worker. All support checkpointed
|
|
115
|
+
process-exit recovery and Ctrl+]; native failure coverage varies by host.
|
|
116
|
+
Setup adds reversible shell wrappers and checkpoint integrations. Open a fresh
|
|
117
|
+
terminal and approve Codex's new hooks in `/hooks` when prompted.
|
|
118
|
+
Explicit T3, Copilot VS Code, and Cowork connections also install their host
|
|
119
|
+
adapters. T3 observes local session failures. Copilot CLI observes terminal
|
|
120
|
+
session errors after retries. Copilot's editor integration reads active responses
|
|
121
|
+
before autosave when request IDs identify the session; new unsaved and background
|
|
122
|
+
chats retain the saved-session delay.
|
|
123
|
+
Cowork captures shared-folder checkpoints, with native cap delivery still
|
|
124
|
+
unverified. Polytoken observes its authenticated daemon's prompt-bound failures.
|
|
97
125
|
See the [recovery guide](../../docs/recovery.md) for exact coverage and evidence.
|
|
98
126
|
|
|
99
127
|
```sh
|
|
@@ -164,7 +192,7 @@ content-free `guard_check` audit event.
|
|
|
164
192
|
|
|
165
193
|
```sh
|
|
166
194
|
lore update
|
|
167
|
-
lore update --version v0.1.
|
|
195
|
+
lore update --version v0.1.29
|
|
168
196
|
```
|
|
169
197
|
|
|
170
198
|
`update` resolves the latest release to an exact tag, or uses the exact
|
|
@@ -187,9 +215,10 @@ rerunning `connect` does not duplicate entries or backups.
|
|
|
187
215
|
lore status
|
|
188
216
|
lore doctor
|
|
189
217
|
lore disconnect
|
|
218
|
+
lore uninstall
|
|
190
219
|
```
|
|
191
220
|
|
|
192
|
-
|
|
221
|
+
`status`, `doctor`, and `disconnect` also support `--json`. `doctor` checks public
|
|
193
222
|
`/health/ready` separately from authenticated workspace identity so unreachable,
|
|
194
223
|
unready, and unauthorized states remain distinct.
|
|
195
224
|
|
|
@@ -241,6 +270,18 @@ retained so acknowledged local work and visible dead letters are never silently
|
|
|
241
270
|
discarded. It does not remove the installed `lore` binary or restore a whole
|
|
242
271
|
backup over newer agent settings.
|
|
243
272
|
|
|
273
|
+
`lore uninstall` disconnects the machine and removes the CLI. It shows the
|
|
274
|
+
installation it will remove and asks for confirmation. Standalone installations
|
|
275
|
+
remove the running Lore binary; global npm installations use npm to remove the
|
|
276
|
+
package from its original prefix. Other installation types receive instructions
|
|
277
|
+
without changing anything. For scripts, use `lore uninstall --yes --json`.
|
|
278
|
+
|
|
279
|
+
Shared learnings, server data, local recordings, pending durable captures, and
|
|
280
|
+
backups are retained. Uninstall does not stop a self-hosted server or change
|
|
281
|
+
other machines. Restart your agents and open a new terminal afterward so any
|
|
282
|
+
loaded Lore integrations are cleared. Use `lore disconnect` when you want to
|
|
283
|
+
keep the CLI installed.
|
|
284
|
+
|
|
244
285
|
During a live retrieval outage, connected native hooks and OpenCode can use one
|
|
245
286
|
relevant, reverified workspace context snapshot when the current repository is
|
|
246
287
|
known. Repository and path scopes are reapplied before injection. Cached
|
|
@@ -482,7 +523,7 @@ same-repository, non-draft pull requests bearing the corresponding
|
|
|
482
523
|
`lore:codex-review` or `lore:devin-review` label.
|
|
483
524
|
|
|
484
525
|
Generated jobs require a published standalone binary release and default to
|
|
485
|
-
`treadiehq/lore-releases` at `v0.1.
|
|
526
|
+
`treadiehq/lore-releases` at `v0.1.29`. Set `LORE_CLI_REPOSITORY` to the publicly
|
|
486
527
|
readable `owner/repository` and `LORE_CLI_VERSION` to an existing release tag
|
|
487
528
|
when using another release source.
|
|
488
529
|
|
|
@@ -532,3 +573,12 @@ publish content or grant access; recipients must sign in to the same workspace.
|
|
|
532
573
|
Hosted connections use `https://uselore.co`. For self-hosting, connect with
|
|
533
574
|
`--dashboard-url https://lore.example.com`, set `LORE_DASHBOARD_URL` for MCP,
|
|
534
575
|
or pass `dashboardUrl` to the SDK. The URL must be an HTTP(S) origin.
|
|
576
|
+
|
|
577
|
+
Managed Devin and Cursor jobs can produce offers in the hosted **Recovery**
|
|
578
|
+
page, currently restricted to platform admins for testing. Customer workspaces
|
|
579
|
+
do not see the page or recovery notices. CLI runners need a token attributed to
|
|
580
|
+
an active platform admin. Pair a desktop checkout with `lore recovery cloud runner --name my-machine`
|
|
581
|
+
to launch an installed agent after dashboard acceptance. Provider setup, SSH
|
|
582
|
+
workers, managed destinations, paired workspace exports with verified restoration,
|
|
583
|
+
and the pushed-checkpoint fallback when no exporter is available
|
|
584
|
+
are documented in [recovery](../../docs/recovery.md#managed-cloud-recovery).
|
package/dist/agents.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** Local terminal clients. Cloud and desktop surfaces need different transports. */
|
|
2
2
|
export declare const LAUNCHABLE_AGENTS: readonly ["claude", "codex", "opencode", "devin", "cursor", "copilot-cli", "polytoken"];
|
|
3
3
|
export type LaunchableAgent = (typeof LAUNCHABLE_AGENTS)[number];
|
|
4
|
-
export declare const RECOVERY_SOURCES: readonly ["claude", "codex", "opencode", "devin"];
|
|
4
|
+
export declare const RECOVERY_SOURCES: readonly ["claude", "codex", "opencode", "devin", "cursor", "copilot-cli", "polytoken"];
|
|
5
5
|
export type RecoverySource = (typeof RECOVERY_SOURCES)[number];
|
|
6
6
|
export declare const AGENTS: Record<LaunchableAgent, {
|
|
7
7
|
label: string;
|
|
@@ -12,5 +12,7 @@ export declare const isLaunchable: (value: string) => value is LaunchableAgent;
|
|
|
12
12
|
export declare const isRecoverySource: (value: string) => value is RecoverySource;
|
|
13
13
|
export declare function launchArguments(agent: LaunchableAgent, brief: string): string[];
|
|
14
14
|
export declare function findAgentExecutable(agent: LaunchableAgent, env?: NodeJS.ProcessEnv): Promise<string>;
|
|
15
|
+
/** Wrap only installed aliases of this executable; `agent` can belong to another product. */
|
|
16
|
+
export declare function agentShellCommands(agent: LaunchableAgent, env?: NodeJS.ProcessEnv): Promise<string[]>;
|
|
15
17
|
export declare function isInteractiveAgent(agent: RecoverySource, args: readonly string[], stdinIsTty: boolean, stdoutIsTty: boolean): boolean;
|
|
16
18
|
//# sourceMappingURL=agents.d.ts.map
|
package/dist/agents.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../src/agents.ts"],"names":[],"mappings":"AAIA,oFAAoF;AACpF,eAAO,MAAM,iBAAiB,yFAA0F,CAAC;AACzH,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AACjE,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../src/agents.ts"],"names":[],"mappings":"AAIA,oFAAoF;AACpF,eAAO,MAAM,iBAAiB,yFAA0F,CAAC;AACzH,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AACjE,eAAO,MAAM,gBAAgB,yFAAoB,CAAC;AAClD,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAC/D,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,eAAe,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;IAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAA;CAAE,CAQpH,CAAC;AACF,eAAO,MAAM,YAAY,GAAI,OAAO,MAAM,KAAG,KAAK,IAAI,eAA2E,CAAC;AAClI,eAAO,MAAM,gBAAgB,GAAI,OAAO,MAAM,KAAG,KAAK,IAAI,cAAyE,CAAC;AAEpI,wBAAgB,eAAe,CAAC,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAM/E;AAED,wBAAsB,mBAAmB,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,oBAAc,GAAG,OAAO,CAAC,MAAM,CAAC,CASpG;AAED,6FAA6F;AAC7F,wBAAsB,kBAAkB,CAAC,KAAK,EAAE,eAAe,EAAE,GAAG,oBAAc,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAarG;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,MAAM,EAAE,EAAE,UAAU,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,GAAG,OAAO,CAmCrI"}
|
package/dist/agents.js
CHANGED
|
@@ -3,15 +3,15 @@ import { access, realpath, stat } from "node:fs/promises";
|
|
|
3
3
|
import { delimiter, resolve } from "node:path";
|
|
4
4
|
/** Local terminal clients. Cloud and desktop surfaces need different transports. */
|
|
5
5
|
export const LAUNCHABLE_AGENTS = ["claude", "codex", "opencode", "devin", "cursor", "copilot-cli", "polytoken"];
|
|
6
|
-
export const RECOVERY_SOURCES =
|
|
6
|
+
export const RECOVERY_SOURCES = LAUNCHABLE_AGENTS;
|
|
7
7
|
export const AGENTS = {
|
|
8
8
|
claude: { label: "Claude", commands: ["claude"], automatic: "StopFailure: rate_limit" },
|
|
9
|
-
codex: { label: "Codex", commands: ["codex"], automatic:
|
|
9
|
+
codex: { label: "Codex", commands: ["codex"], automatic: "Structured failed turn; unsuccessful process exit" },
|
|
10
10
|
opencode: { label: "OpenCode", commands: ["opencode"], automatic: "APIError: HTTP 429, or 3 provider retries" },
|
|
11
|
-
devin: { label: "Devin CLI", commands: ["devin"], automatic:
|
|
12
|
-
cursor: { label: "Cursor Agent", commands: ["cursor-agent", "agent"], automatic:
|
|
13
|
-
"copilot-cli": { label: "Copilot CLI", commands: ["copilot"], automatic:
|
|
14
|
-
polytoken: { label: "Polytoken", commands: ["polytoken"], automatic:
|
|
11
|
+
devin: { label: "Devin CLI", commands: ["devin"], automatic: "Unsuccessful process exit during a checkpointed turn" },
|
|
12
|
+
cursor: { label: "Cursor Agent", commands: ["cursor-agent", "agent"], automatic: "stop: status=error; unsuccessful process exit" },
|
|
13
|
+
"copilot-cli": { label: "Copilot CLI", commands: ["copilot"], automatic: "Prompt-bound terminal session.error after retries; unrecoverable model/system hook; unsuccessful process exit" },
|
|
14
|
+
polytoken: { label: "Polytoken", commands: ["polytoken"], automatic: "Prompt-bound model_error from the authenticated local daemon; failed process exit" },
|
|
15
15
|
};
|
|
16
16
|
export const isLaunchable = (value) => LAUNCHABLE_AGENTS.includes(value);
|
|
17
17
|
export const isRecoverySource = (value) => RECOVERY_SOURCES.includes(value);
|
|
@@ -42,6 +42,24 @@ export async function findAgentExecutable(agent, env = process.env) {
|
|
|
42
42
|
}
|
|
43
43
|
throw new Error(`${AGENTS[agent].label} is not installed or is not on PATH (expected ${AGENTS[agent].commands.join(" or ")}).`);
|
|
44
44
|
}
|
|
45
|
+
/** Wrap only installed aliases of this executable; `agent` can belong to another product. */
|
|
46
|
+
export async function agentShellCommands(agent, env = process.env) {
|
|
47
|
+
const executable = await findAgentExecutable(agent, env);
|
|
48
|
+
const names = [];
|
|
49
|
+
for (const name of AGENTS[agent].commands) {
|
|
50
|
+
for (const directory of (env.PATH ?? "").split(delimiter).filter(Boolean)) {
|
|
51
|
+
try {
|
|
52
|
+
const path = resolve(directory, name);
|
|
53
|
+
await access(path, constants.X_OK);
|
|
54
|
+
if (await realpath(path) === executable)
|
|
55
|
+
names.push(name);
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
catch { /* Next PATH entry. */ }
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
return names;
|
|
62
|
+
}
|
|
45
63
|
export function isInteractiveAgent(agent, args, stdinIsTty, stdoutIsTty) {
|
|
46
64
|
if (!stdinIsTty || !stdoutIsTty)
|
|
47
65
|
return false;
|
|
@@ -51,15 +69,21 @@ export function isInteractiveAgent(agent, args, stdinIsTty, stdoutIsTty) {
|
|
|
51
69
|
codex: ["--cd", "-C", "--remote", "--remote-session"],
|
|
52
70
|
devin: ["--config"],
|
|
53
71
|
opencode: [],
|
|
72
|
+
cursor: ["--workspace", "--worktree", "-w", "--background", "--cloud"],
|
|
73
|
+
"copilot-cli": ["--cloud", "--autopilot"],
|
|
74
|
+
polytoken: [],
|
|
54
75
|
};
|
|
55
76
|
const beforeDelimiter = args.slice(0, args.indexOf("--") < 0 ? args.length : args.indexOf("--"));
|
|
56
77
|
if (beforeDelimiter.some((arg) => [...common, ...bypass[agent]].includes(arg.split("=")[0] ?? arg)))
|
|
57
78
|
return false;
|
|
58
79
|
const commands = {
|
|
59
80
|
claude: ["auth", "mcp", "plugin", "plugins", "install", "update", "upgrade", "doctor", "setup-token", "agents", "attach", "logs", "rm", "stop", "kill", "respawn", "gateway", "import", "project", "ultrareview"],
|
|
60
|
-
codex: ["exec", "e", "review", "login", "logout", "mcp", "mcp-server", "app-server", "app", "completion", "sandbox", "debug", "apply", "a", "resume", "fork", "cloud", "features", "help"],
|
|
81
|
+
codex: ["exec", "e", "review", "login", "logout", "mcp", "mcp-server", "app-server", "app", "completion", "sandbox", "debug", "apply", "a", "resume", "fork", "cloud", "features", "help", "agents", "remote-control", "update", "doctor", "queue", "archive", "delete", "migrate-rollouts", "unarchive", "exec-server", "plugin"],
|
|
61
82
|
devin: ["auth", "mcp", "models", "rules", "skills", "plugins", "cloud", "list", "ls", "update", "version", "migrate", "sandbox", "setup", "uninstall", "acp", "help"],
|
|
62
83
|
opencode: ["completion", "acp", "mcp", "attach", "run", "debug", "providers", "auth", "agent", "upgrade", "uninstall", "serve", "web", "models", "stats", "export", "import", "github", "pr", "session", "db"],
|
|
84
|
+
cursor: ["login", "logout", "status", "update", "upgrade", "mcp", "models", "ls", "help"],
|
|
85
|
+
"copilot-cli": ["help", "init", "login", "logout", "update", "version", "plugin", "mcp"],
|
|
86
|
+
polytoken: ["auth", "login", "logout", "update", "models", "config", "help", "list"],
|
|
63
87
|
};
|
|
64
88
|
if (commands[agent].includes(args[0] ?? ""))
|
|
65
89
|
return false;
|
package/dist/agents.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agents.js","sourceRoot":"","sources":["../src/agents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,oFAAoF;AACpF,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,WAAW,CAAU,CAAC;AAEzH,MAAM,CAAC,MAAM,gBAAgB,GAAG,
|
|
1
|
+
{"version":3,"file":"agents.js","sourceRoot":"","sources":["../src/agents.ts"],"names":[],"mappings":"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"}
|
package/dist/cli.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export declare function countLorePolytokenHooks(input: unknown): number;
|
|
|
65
65
|
export declare function mergeLoreOpenCodePlugin(input: Record<string, unknown>): Record<string, unknown>;
|
|
66
66
|
export declare function removeLoreOpenCodePlugin(input: Record<string, unknown>): Record<string, unknown>;
|
|
67
67
|
export declare function countLoreOpenCodePlugins(input: Record<string, unknown>): number;
|
|
68
|
+
export declare function readConnectorConfig(paths: LorePaths): Promise<ConnectorConfig | null>;
|
|
68
69
|
export declare function resolveConnectEndpoints(options?: {
|
|
69
70
|
apiUrl?: string;
|
|
70
71
|
dashboardUrl?: string;
|
|
@@ -79,6 +80,8 @@ export interface AgentInstallation {
|
|
|
79
80
|
export declare function t3CodeProviderInstallations(settings: unknown, paths: LorePaths): AgentInstallation[];
|
|
80
81
|
export interface ConnectWithCredentialOptions {
|
|
81
82
|
fallback?: string;
|
|
83
|
+
/** CLI setup opts in automatically; embedded callers can choose explicitly. */
|
|
84
|
+
recovery?: boolean;
|
|
82
85
|
/** Explicit installation root for embedded callers and isolated acceptance tests. */
|
|
83
86
|
home?: string;
|
|
84
87
|
/** Repository root for project-local integrations such as VS Code. */
|
|
@@ -103,6 +106,11 @@ export interface ConnectResult {
|
|
|
103
106
|
export declare function connectWithCredential(options: ConnectWithCredentialOptions): Promise<ConnectResult>;
|
|
104
107
|
export declare function reliabilityWorkspaceKey(config: ConnectorConfig): string;
|
|
105
108
|
export declare function credentialReliabilityWorkspaceKey(apiUrl: string, token: string): string;
|
|
109
|
+
export declare function disconnectInstallation(paths?: LorePaths, preservePendingState?: boolean): Promise<{
|
|
110
|
+
connected: false;
|
|
111
|
+
changedHookFiles: string[];
|
|
112
|
+
backups: string[];
|
|
113
|
+
}>;
|
|
106
114
|
export declare function runCli(args?: readonly string[]): Promise<void>;
|
|
107
115
|
export {};
|
|
108
116
|
//# sourceMappingURL=cli.d.ts.map
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AA0BA,OAAO,EAwBL,KAAK,yBAAyB,EAC/B,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,KAAK,oBAAoB,EAE1B,MAAM,cAAc,CAAC;AAiCtB,eAAO,MAAM,oBAAoB,sBAAsB,CAAC;AACxD,eAAO,MAAM,sBAAsB,2BAA2B,CAAC;AAC/D,eAAO,MAAM,4BAA4B,uBAAuB,CAAC;AACjE,QAAA,MAAM,sBAAsB,kGAA4B,CAAC;AACzD,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,sBAAsB,CAAC,CAAC,MAAM,CAAC,CAAC;AAC1E,MAAM,MAAM,gBAAgB,GACxB,mBAAmB,GACnB,SAAS,GACT,QAAQ,GACR,QAAQ,CAAC;AAiCb,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,uBAAuB,EAAE,MAAM,CAAC;IAChC,qBAAqB,EAAE,MAAM,CAAC;IAC9B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,6BAA6B,EAAE,MAAM,CAAC;IACtC,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,CAAC,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,mBAAmB,EAAE,CAAC;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,mBAAmB,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;IAClE,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CACnB;AAoJD,wBAAgB,YAAY,CAC1B,IAAI,CAAC,EAAE,MAAM,EACb,WAAW,GAAE,MAAM,CAAC,UAAwB,EAC5C,GAAG,GAAE,MAAsB,GAC1B,SAAS,CAuEX;AA2FD,wBAAgB,cAAc,CAC5B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,KAAK,EAAE,oBAAoB,EAC3B,KAAK,EAAE,SAAS,GACf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAqBzB;AAED,wBAAgB,eAAe,CAC7B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAsBzB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAiBrE;AAkCD,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAQ5F;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAK3E;AAMD,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,KAAK,EAAE,SAAS,GACf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAqBzB;AAED,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAuBzB;AAED,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAWR;AA0CD,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,KAAK,EAAE,SAAS,GACf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAqBzB;AAED,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAuBzB;AAED,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAWR;AAoBD,wBAAgB,2BAA2B,CACzC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,KAAK,EAAE,SAAS,GACf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAqBzB;AAED,wBAAgB,4BAA4B,CAC1C,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAuBzB;AAED,wBAAgB,2BAA2B,CACzC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAWR;AAyBD,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,OAAO,EACd,KAAK,EAAE,SAAS,GACf,OAAO,EAAE,CAWX;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,EAAE,CAKlE;AAED,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAI9D;AASD,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAazB;AAED,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAczB;AAED,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,MAAM,CAIR;AAgYD,wBAAsB,mBAAmB,CACvC,KAAK,EAAE,SAAS,GACf,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC,CAQjC;AAqBD,wBAAgB,uBAAuB,CACrC,OAAO,GAAE;IACP,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IAChC,QAAQ,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,QAAQ,GAAG,cAAc,CAAC,GAAG,IAAI,CAAC;IACnE,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC1B,GACL,IAAI,CAAC,eAAe,EAAE,QAAQ,GAAG,cAAc,CAAC,CA8BlD;AA+SD,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,mBAAmB,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;CACpB;AA0MD,wBAAgB,2BAA2B,CACzC,QAAQ,EAAE,OAAO,EACjB,KAAK,EAAE,SAAS,GACf,iBAAiB,EAAE,CAErB;AAyUD,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,+EAA+E;IAC/E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,qFAAqF;IACrF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,sEAAsE;IACtE,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,SAAS,gBAAgB,EAAE,CAAC;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC5B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,IAAI,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,yBAAyB,CAAC;IACpC,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB;AAED,wBAAsB,qBAAqB,CACzC,OAAO,EAAE,4BAA4B,GACpC,OAAO,CAAC,aAAa,CAAC,CAgKxB;AAkOD,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,eAAe,GAAG,MAAM,CAKvE;AAED,wBAAgB,iCAAiC,CAC/C,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,GACZ,MAAM,CAKR;AA0aD,wBAAsB,sBAAsB,CAAC,KAAK,GAAE,SAA0B,EAAE,oBAAoB,UAAQ,GAAG,OAAO,CAAC;IAAE,SAAS,EAAE,KAAK,CAAC;IAAC,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,CA6D1L;AAqVD,wBAAsB,MAAM,CAC1B,IAAI,GAAE,SAAS,MAAM,EAA0B,GAC9C,OAAO,CAAC,IAAI,CAAC,CAyLf"}
|