notion-todo/SKILL.mdUse the bundled script to create a new task in the Notion TO-DO data source.
Run:
NOTION_API_KEY="$NOTION_API_KEY" \
python3 skills/notion-todo/scripts/add_todo.py "<task title>" \
--status "Not started" \
--due "YYYY-MM-DD" \
--category "<existing category>" \
--project "<existing project>" \
--milestone "<existing milestone>"
The script prints JSON with the created page url.
23044db7-5011-8074-8af9-000b571c0daf.--due as ISO-8601. If the user gives natural language ("tomorrow", "next Friday"), convert it to a date before calling the script.--category, --project, --milestone (must match existing options).GET /v1/data_sources/<id>) to see allowed options.