@tanagram/lore 0.1.57 → 0.1.59
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 +10 -9
- package/dist/index.js +231 -231
- package/package.json +1 -1
- package/skills/fork/SKILL.md +84 -0
package/README.md
CHANGED
|
@@ -24,10 +24,10 @@ list with `lore listen`:
|
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
26
|
lore listen create ~/code/projectA # watch ~/code/projectA
|
|
27
|
-
lore listen create ~/work --
|
|
27
|
+
lore listen create ~/work --workspace acme # route work to a non-default workspace
|
|
28
28
|
lore listen list # tabular output
|
|
29
29
|
lore listen list --json # for scripts
|
|
30
|
-
lore listen update ~/work --
|
|
30
|
+
lore listen update ~/work --workspace other-corp # reassign workspace
|
|
31
31
|
lore listen delete ~/code/projectA # stop uploading from
|
|
32
32
|
```
|
|
33
33
|
|
|
@@ -125,16 +125,17 @@ screens, the presentation/handler split, and the TTY-detection contract.
|
|
|
125
125
|
- `lore disable` — stops and removes the macOS background uploader.
|
|
126
126
|
- `lore restart` — restarts the macOS background uploader.
|
|
127
127
|
- `lore status` / `lore status --json` — shows background uploader health.
|
|
128
|
-
- `lore listen create <path> [--
|
|
129
|
-
daemon auto-uploads. Defaults to your active
|
|
130
|
-
`--
|
|
128
|
+
- `lore listen create <path> [--workspace <name>]` — allowlist a directory for
|
|
129
|
+
daemon auto-uploads. Defaults to your active workspace; pass workspace
|
|
130
|
+
`--workspace` to route a directory at a non-default workspace.
|
|
131
131
|
- `lore listen list [--json]` — print the directories the daemon may
|
|
132
132
|
auto-upload from, with their target org.
|
|
133
|
-
- `lore listen update <path> --
|
|
134
|
-
upload directory to a different
|
|
133
|
+
- `lore listen update <path> --workspace <name>` — reassign an existing
|
|
134
|
+
upload directory to a different workspace.
|
|
135
135
|
- `lore listen delete <path>` — stop uploading from a directory.
|
|
136
|
-
- `lore
|
|
137
|
-
|
|
136
|
+
- `lore workspaces list` — calls `/api/whoami` and prints the WorkOS
|
|
137
|
+
workspaces the authenticated user currently belongs to. (Workspaces
|
|
138
|
+
are organizations in the underlying API contract.)
|
|
138
139
|
- `lore export` — uploads a single Claude Code session on demand and prints a
|
|
139
140
|
JSON object with the thread URL. Use `--session-id <id>` to pick a specific
|
|
140
141
|
session, `--project <path>` to override the project lookup, and
|