storage-zk
Installation
SKILL.md
Personal Wiki: Using the wiki CLI
Quick Start: wiki CLI
The wiki CLI intelligently discovers your notebook patih.
wiki new --title "My Note"
wiki list --match="pattern"
wiki list --format=json | jq .
Use discovered notebook (auto-discovers path internally)
Common Workflows with wiki CLI
Single Note: Create → Link → Search → Export
# 1. Create new note (auto-discovers notebook)
NOTE_PATH=$(wiki new --title "Research Topic" --print-path)
# 2. Edit file and add links (manual)
echo -e "\n\nRelated: [existing-note-id](Existing Note Title)" >> "$NOTE_PATH"
# 3. Search for related notes
wiki list --match="Research" --format=long
# 4. Export results
wiki list --match="Research" --format=json | jq .