Documentation
README
TaskNotes Skill
CRUD operations on tasks via TaskNotes plugin HTTP API.
API Endpoint
http://127.0.0.1:8090/api
List Tasks
curl -s "http://127.0.0.1:8090/api/tasks"
curl -s "http://127.0.0.1:8090/api/tasks?status=in-progress"
Create Task
curl -X POST "http://127.0.0.1:8090/api/tasks" \
-H "Content-Type: application/json" \
-d '{
"title": "Task title",
"status": "open",
"priority": "high",
"projects": ["[[Project Name]]"],
"due": "2026-01-15",
"scheduled": "2026-01-10"
}'
Fields:
This is the opening of the README. Read the full README on GitHub.