A skills.sh skill that gives AI agents the ability to manage tasks via the AgentTodo REST API โ a shared execution layer for humans and AI agents.
AgentTodo is a shared todo list and task board designed for both humans and AI agents. It provides a REST API with API key authentication, letting you create, track, and coordinate tasks across multiple agents and workflows.
๐ App & Docs: agenttodo.vercel.app
npx skills add EricStrohmaier/agenttodo-skill- Get an API key from agenttodo.vercel.app dashboard
- Install the skill:
npx skills add EricStrohmaier/agenttodo-skill - Configure your API key in your agent's environment
- Start using it โ ask your agent to "create a task" or "show my todos"
| Endpoint | Method | Description |
|---|---|---|
/api/tasks |
POST |
Create a task |
/api/tasks |
GET |
List tasks (with filters) |
/api/tasks/:id |
PATCH |
Update a task |
/api/tasks/:id/start |
POST |
Start a task |
/api/tasks/:id/complete |
POST |
Complete a task |
/api/tasks/:id/block |
POST |
Block a task |
/api/tasks/:id/log |
POST |
Add a log entry |
See skills/agenttodo/SKILL.md for full API reference with examples.