Install
openclaw skills install openclaw-rtmRemember The Milk skill for OpenClaw
openclaw skills install openclaw-rtmThis skill integrates Remember The Milk with OpenClaw, allowing you to manage your daily tasks directly from the command line.
This skill can automatically be loaded by OpenClaw. However, if you would like to use the rtm command directly in your Mac's terminal (or allow LLM agents to use it as a shell command), you can install it globally via npm:
npm link
Before using this skill, you need to obtain an API Key and a Shared Secret from Remember The Milk:
config command (Recommended)Run this command in your terminal:
rtm config <your-api-key> <your-shared-secret>
This saves the credentials safely to ~/.rtm-credentials.json ensuring they persist across terminal restarts.
.env fileCreate a file named .env in this skill's folder (you can use .env.example as a template) and add your keys:
RTM_API_KEY="your-api-key"
RTM_SHARED_SECRET="your-shared-secret"
IMPORTANT Do NOT edit
index.jsto embed your API key/secret directly into the source files. Using one of the methods above ensures your credentials remain secure and recognizable by the bot.
Before you can use the commands to manage your tasks, you need to authorize the skill with your Remember The Milk account.
NOTE When you authorize this application, an authentication token will be saved locally to
~/.rtm-token.jsonin plaintext. Keep this file secure on trusted devices, and delete it if you uninstall the skill.
Start Authorization:
rtm auth
This command will provide you with an authorization URL. Open this URL in your web browser and authorize the application.
Save Token:
After authorizing in the browser, run the following command with the frob provided.
rtm token <frob>
This will save your authentication token locally (~/.rtm-token.json) so you only need to do this once.
Once authorized, you can use the following commands to interact with your tasks.
List your tasks. By default, this only fetches incomplete tasks to keep the response fast and clean:
rtm list
You can explicitly ask for completed tasks (up to 100 recent ones), or all tasks:
rtm list completed # Fetches up to 100 recently completed tasks
rtm list all # Fetches absolutely all tasks
This will fetch and display the specified tasks along with their properties:
task_id)The Task ID (e.g., 8573921) is a permanent identifier used for completing or modifying tasks.
Create a new task:
rtm add <task name>
Example: rtm add Buy groceries
Add a note to an existing task using its task_id:
rtm note <task_id> <note text>
Example: rtm note 8573921 Make sure to check the expiry dates
Mark a specific task as completed using its task_id (obtainable via rtm list):
rtm complete <task_id>
Example: rtm complete 8573921
You can modify task properties using the following commands (all require the task_id from rtm list):
rtm due <task_id> <date string> (Leave date empty to delete the due date)
rtm due 8573921 tomorrowrtm due 8573921rtm start <task_id> <date string>
rtm start 8573921 next weekrtm priority <task_id> <1|2|3|N> (N is for none)
rtm priority 8573921 2rtm postpone <task_id> (Postpones the task's due date by 1 day)
rtm postpone 8573921Delete a specific task using its task_id:
rtm delete <task_id>
Example: rtm delete 8573921