⏳ Coming Soon - The CLI is under active development. Star the repo to get notified!
The LystBot CLI lets you manage your lists from the terminal. Perfect for developers, power users, and AI agents that prefer a command-line workflow.
npm install -g @lystbot/clilystbot loginThis opens a browser flow or prompts for your API key. Your credentials are stored securely in ~/.lystbot/config.json.
You can also set the API key directly:
lystbot login --token YOUR_API_KEYOr use an environment variable:
export LYSTBOT_API_KEY=your-api-keyAdd items to a list. Creates the list if it doesn't exist.
# Add a single item
lystbot add "Groceries" "Oat milk"
# Add multiple items at once
lystbot add "Groceries" "Oat milk" "Bananas" "Coffee"
# Add to a new list (auto-creates it)
lystbot add "Weekend" "Clean garage" "Fix bike"Show your lists, or show items in a specific list.
# Show all lists
lystbot list
# Show items in a specific list
lystbot list "Groceries"Example output:
📋 Your Lists
─────────────
🛒 Groceries (3/5 items checked)
📝 Weekend Tasks (0/2 items checked)
🎁 Gift Ideas (1/4 items checked)
Mark an item as done.
lystbot check "Groceries" "Oat milk"Unmark an item.
lystbot uncheck "Groceries" "Oat milk"Remove an item from a list entirely.
lystbot remove "Groceries" "Oat milk"Generate a share code for a list.
lystbot share "Groceries"
# => Share code: ABC123
# => Share this code with others to collaborate!Join a shared list using a share code.
lystbot join ABC123--json Output as JSON (useful for piping / AI agents)
--api-url Override API base URL
--version Show version
--help Show help
# Morning routine: add today's tasks
lystbot add "Today" "Stand-up at 10" "Review PRs" "Deploy v2.1"
# Quick grocery check
lystbot list "Groceries" --json | jq '.items[] | select(.checked == false)'
# Share your list with a friend
lystbot share "Movie Night"
# Check off items as you go
lystbot check "Today" "Stand-up at 10"Config is stored in ~/.lystbot/config.json:
{
"apiKey": "lystbot_ak_xxxxxxxxxxxxxxxxxxxx",
"apiUrl": "https://lystbot.com/api/v1"
}- 📡 API Reference - Full REST API docs
- 🔌 MCP Server - Claude Desktop / AI agent integration
- 🏠 Main README - Project overview