Manage local lists (shopping list, to-do, etc.) – add, remove, read and check items
Manages simple text lists stored locally on the device – no internet, no cloud.
All list operations use the file_storage tool.
IMPORTANT: All file_storage calls for lists MUST include type: "list" parameter.
Data format: One list = one file. Each item is stored on its own line.
File names: Lowercase list name, e.g. shoppinglist, todo, packlist.
Examples: "Add milk to the shopping list" / "Put milk on the shopping list"
file_storage → read with filename: "shoppinglist", type: "list" → read existing itemsfile_storage → write with filename: "shoppinglist", type: "list", and the updated content (all lines, one item per line)Examples: "Remove milk from the shopping list" / "Delete milk from the shopping list"
file_storage → read with filename: "shoppinglist", type: "list"file_storage → write with filename: "shoppinglist", type: "list", and the cleaned contentExamples: "What's on the shopping list?" / "Show me my shopping list"
file_storage → read with filename: "shoppinglist", type: "list"Examples: "Which lists do I have?" / "What lists are there?"
file_storage → list (no filename needed, but note that only files with type: "list" are shown in the lists screen)Examples: "Is milk already on the shopping list?" / "Is bread on the list?"
file_storage → read with filename: "shoppinglist", type: "list"Examples: "Delete the shopping list" / "Clear the shopping list"
file_storage → delete with filename: "shoppinglist" (type parameter not needed for delete)type: "list" in file_storage calls)read with type: "list", then one write with type: "list" and all new items appended)type: "list")type: "list" in file_storage calls)type: "list")type: "list" and empty content)Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity