@tanagram/lore 0.1.94 → 0.1.95
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 +6 -5
- package/dist/index.js +176 -176
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -69,12 +69,13 @@ most-recent Claude Code projects with the top three pre-checked: a project
|
|
|
69
69
|
inside a git repo is offered as its `origin` remote, and a non-repo
|
|
70
70
|
directory is offered by its path. Pressing Enter accepts them. `lore configure` re-enters that same interactive flow any time
|
|
71
71
|
(it's also one of the quick actions on the `lore` dashboard). For
|
|
72
|
-
scripted/non-interactive edits,
|
|
72
|
+
scripted/non-interactive edits, use `lore listen` for directory filters;
|
|
73
|
+
`lore listen list` prints the effective repo and cwd upload locations:
|
|
73
74
|
|
|
74
75
|
```sh
|
|
75
76
|
lore listen create ~/code/projectA # watch ~/code/projectA
|
|
76
77
|
lore listen create ~/work --workspace acme # route work to a non-default workspace
|
|
77
|
-
lore listen list #
|
|
78
|
+
lore listen list # effective repo/cwd locations
|
|
78
79
|
lore listen list --json # for scripts
|
|
79
80
|
lore listen update ~/work --workspace other-corp # reassign workspace
|
|
80
81
|
lore listen delete ~/code/projectA # stop uploading from
|
|
@@ -193,13 +194,13 @@ Esc to return to the sidebar, and q to exit.
|
|
|
193
194
|
- `lore restart` — restarts the macOS background uploader.
|
|
194
195
|
- `lore status` / `lore status --json` — shows background uploader health.
|
|
195
196
|
- `lore configure` — re-enter the interactive wizard for picking the
|
|
196
|
-
directories Lore auto-uploads from (the same flow shown on first
|
|
197
|
+
repos and directories Lore auto-uploads from (the same flow shown on first
|
|
197
198
|
login). Requires an interactive terminal.
|
|
198
199
|
- `lore listen create <path> [--workspace <name>]` — allowlist a directory for
|
|
199
200
|
daemon auto-uploads. Defaults to your active workspace; pass workspace
|
|
200
201
|
`--workspace` to route a directory at a non-default workspace.
|
|
201
|
-
- `lore listen list [--json]` — print the
|
|
202
|
-
auto-upload from
|
|
202
|
+
- `lore listen list [--json]` — print the effective repo and cwd locations
|
|
203
|
+
the daemon may auto-upload from.
|
|
203
204
|
- `lore listen update <path> --workspace <name>` — reassign an existing
|
|
204
205
|
upload directory to a different workspace.
|
|
205
206
|
- `lore listen delete <path>` — stop uploading from a directory.
|