Loading...
Loading...
Operate the shiori-cli tool to manage bookmarks/links in the Shiori read-later service. Use when the user wants to save, list, read/unread, or delete links via the shiori CLI, or when automating Shiori bookmark management from the command line.
npx skill4agent add yukukotani/shiori-cli shiori-cliSHIORI_API_KEYexport SHIORI_API_KEY="shk_..."export SHIORI_API_BASE_URL="https://custom.host"# List unread links
shiori list --read unread
# Save a new link
shiori add "https://example.com/article"
# Mark as read
shiori read --id "link-id"
# Delete
shiori delete "link-id"--json| Command | Purpose | Key args |
|---|---|---|
| List saved links | |
| Save a new link | |
| Mark links as read | |
| Mark links as unread | |
| Delete a link | positional |
SHIORI_API_KEYlistaddreadunreaddelete--jsonMISSING_API_KEYUNAUTHORIZEDRATE_LIMITEDNETWORK_ERROR# Get unread links as JSON, extract IDs, mark all as read
shiori list --read unread --json
shiori read --id "id1" --id "id2" --id "id3"shiori add "https://example.com" --readshiori list --limit 20 --offset 0
shiori list --limit 20 --offset 20