forked from disler/the-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
37 lines (28 loc) · 1.12 KB
/
justfile
File metadata and controls
37 lines (28 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
set dotenv-load := true
# List available commands
default:
@just --list
# Install the library (first-time setup)
install:
claude --dangerously-skip-permissions --model opus "/library install"
# Add a new skill, agent, or prompt to the catalog
add prompt:
claude --dangerously-skip-permissions --model opus "/library add {{prompt}}"
# Pull a skill from the catalog (install or refresh)
use name:
claude --dangerously-skip-permissions --model opus "/library use {{name}}"
# Push local changes back to the source
push name:
claude --dangerously-skip-permissions --model opus "/library push {{name}}"
# Remove a locally installed skill
remove name:
claude --dangerously-skip-permissions --model opus "/library remove {{name}}"
# Sync all installed items (re-pull from source)
sync:
claude --dangerously-skip-permissions --model opus "/library sync"
# List all entries in the catalog with install status
list:
claude --dangerously-skip-permissions --model opus "/library list"
# Search the catalog by keyword
search keyword:
claude --dangerously-skip-permissions --model opus "/library search {{keyword}}"