@tanagram/lore 0.1.217 → 0.1.219
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 +15 -1
- package/dist/index.js +248 -248
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,6 +14,15 @@ npm install -g @loredotlink/cli
|
|
|
14
14
|
lore
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
On npm 11.16 or newer, npm may ask you to approve global install scripts
|
|
18
|
+
before it considers them reviewed. If you see an `allow-scripts` warning, run
|
|
19
|
+
the install with npm's global allowlist flag so the Lore postinstall migration
|
|
20
|
+
and background-binary refresh are explicitly approved:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
npm install -g --allow-scripts=@loredotlink/cli @loredotlink/cli
|
|
24
|
+
```
|
|
25
|
+
|
|
17
26
|
`lore` opens a dashboard in your terminal. Sign in there once and, on
|
|
18
27
|
macOS, background uploads start immediately. On Linux, run `lore configure`
|
|
19
28
|
to pick which directories upload.
|
|
@@ -220,7 +229,12 @@ Esc to return to the sidebar, and q to exit.
|
|
|
220
229
|
non-interactive and pipe-friendly: if the target `SKILL.md` already exists but
|
|
221
230
|
is managed by Lore (the same `sk_…`), it is overwritten with the remote body;
|
|
222
231
|
if it exists and is *not* managed by Lore, the install errors instead of
|
|
223
|
-
clobbering it.
|
|
232
|
+
clobbering it. For now, downloaded `claude_project` skills are installed to
|
|
233
|
+
`~/.claude/skills/<name>/SKILL.md` and downloaded `agents_project` skills are
|
|
234
|
+
installed to `~/.config/agents/skills/<name>/SKILL.md` instead of a
|
|
235
|
+
project-local directory; this is temporary until Lore can store project skills
|
|
236
|
+
without making the user pick a project during install. Use `lore skills sync`
|
|
237
|
+
for conflict-preserving updates.
|
|
224
238
|
- `lore skills uninstall <skill-id>` — removes the managed local skill file and
|
|
225
239
|
clears the installation record.
|
|
226
240
|
- `lore skills publish <local-name-or-skill-id>` — publishes an authored skill
|