@tanagram/lore 0.1.76 → 0.1.77
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 +8 -2
- package/dist/index.js +148 -148
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,10 +19,13 @@ contract:
|
|
|
19
19
|
|
|
20
20
|
Adding directories takes a single keystroke on first login — the TUI
|
|
21
21
|
shows your most-recent Claude Code project cwds with the top three
|
|
22
|
-
pre-checked, and pressing Enter accepts them.
|
|
23
|
-
|
|
22
|
+
pre-checked, and pressing Enter accepts them. `lore listen configure`
|
|
23
|
+
re-enters that same interactive flow any time (it's also one of the
|
|
24
|
+
quick actions on the `lore` dashboard). For scripted/non-interactive
|
|
25
|
+
edits, manage the list directly:
|
|
24
26
|
|
|
25
27
|
```sh
|
|
28
|
+
lore listen configure # re-run the interactive wizard
|
|
26
29
|
lore listen create ~/code/projectA # watch ~/code/projectA
|
|
27
30
|
lore listen create ~/work --workspace acme # route work to a non-default workspace
|
|
28
31
|
lore listen list # tabular output
|
|
@@ -125,6 +128,9 @@ screens, the presentation/handler split, and the TTY-detection contract.
|
|
|
125
128
|
- `lore disable` — stops and removes the macOS background uploader.
|
|
126
129
|
- `lore restart` — restarts the macOS background uploader.
|
|
127
130
|
- `lore status` / `lore status --json` — shows background uploader health.
|
|
131
|
+
- `lore listen configure` — re-enter the interactive wizard for picking
|
|
132
|
+
the directories Lore auto-uploads from (the same flow shown on first
|
|
133
|
+
login). Requires an interactive terminal.
|
|
128
134
|
- `lore listen create <path> [--workspace <name>]` — allowlist a directory for
|
|
129
135
|
daemon auto-uploads. Defaults to your active workspace; pass workspace
|
|
130
136
|
`--workspace` to route a directory at a non-default workspace.
|