@tanagram/lore 0.1.28 → 0.1.30

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 (3) hide show
  1. package/README.md +8 -1
  2. package/dist/index.js +94 -91
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,9 @@ The command-line interface for Lore.
6
6
 
7
7
  - `lore` — prints help text.
8
8
  - `lore login` — authorizes the CLI against your Lore workspace using WorkOS
9
- CLI Auth's device-code flow.
9
+ CLI Auth's device-code flow. On macOS, also auto-runs `lore enable` to
10
+ install and start the background uploader; if that step fails, login still
11
+ succeeds and you can rerun `lore enable` manually.
10
12
  - `lore logout` — removes the stored CLI token.
11
13
  - `lore health` — calls the API health endpoint.
12
14
  - `lore logs` — prints recent entries from the log file.
@@ -67,3 +69,8 @@ sink so installed users don't see noise on every command.
67
69
 
68
70
  `pnpm dev` runs the CLI postinstall hook before starting so bundled dev skills
69
71
  are refreshed in `~/.claude/skills` on each dev session.
72
+
73
+ To point the CLI at a different API origin (e.g. through a Vite proxy or a
74
+ remote staging deployment), set `LORE_API_ORIGIN`. The override wins over the
75
+ built-in env defaults: `LORE_API_ORIGIN=http://localhost:8080 lore health`
76
+ will route through the web app's Vite proxy on 8080 to the API on 4000.