@tanagram/lore 0.1.76 → 0.1.78
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 +26 -2
- package/dist/index.js +215 -215
- package/package.json +2 -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
|
|
@@ -109,6 +112,24 @@ The plain path is also taken automatically whenever:
|
|
|
109
112
|
See [AGENTS.md](./AGENTS.md) for the contributor guide on adding new
|
|
110
113
|
screens, the presentation/handler split, and the TTY-detection contract.
|
|
111
114
|
|
|
115
|
+
### TUI story runner
|
|
116
|
+
|
|
117
|
+
Use the terminal story runner to review seeded Ink states without touching
|
|
118
|
+
WorkOS, the Lore API, launchd, or local Lore config:
|
|
119
|
+
|
|
120
|
+
```sh
|
|
121
|
+
pnpm tui:stories # interactive browser
|
|
122
|
+
pnpm tui:stories --story dashboard/healthy
|
|
123
|
+
pnpm tui:stories --list # print available story ids
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Stories live under `src/tui/stories/` and import screen components rather
|
|
127
|
+
than `*Entrypoint.tsx` files. Keep new stories fixture-driven: pass explicit
|
|
128
|
+
state, timestamps, and no-op callbacks so story review never performs command
|
|
129
|
+
side effects. In the interactive runner, use ↑/↓ or j/k to choose a story,
|
|
130
|
+
Tab to focus the preview so nested controls own the keyboard, Shift+Tab or
|
|
131
|
+
Esc to return to the sidebar, and q to exit.
|
|
132
|
+
|
|
112
133
|
## Subcommands
|
|
113
134
|
|
|
114
135
|
- `lore` — opens the interactive dashboard in a TTY; prints help text
|
|
@@ -125,6 +146,9 @@ screens, the presentation/handler split, and the TTY-detection contract.
|
|
|
125
146
|
- `lore disable` — stops and removes the macOS background uploader.
|
|
126
147
|
- `lore restart` — restarts the macOS background uploader.
|
|
127
148
|
- `lore status` / `lore status --json` — shows background uploader health.
|
|
149
|
+
- `lore listen configure` — re-enter the interactive wizard for picking
|
|
150
|
+
the directories Lore auto-uploads from (the same flow shown on first
|
|
151
|
+
login). Requires an interactive terminal.
|
|
128
152
|
- `lore listen create <path> [--workspace <name>]` — allowlist a directory for
|
|
129
153
|
daemon auto-uploads. Defaults to your active workspace; pass workspace
|
|
130
154
|
`--workspace` to route a directory at a non-default workspace.
|