Install
openclaw skills install init-managerManage tasks in Init Manager — pick up ready tasks, update status, comment, and close out. Use when assigned tasks via webhook or cron, or when interacting w...
openclaw skills install init-managerThis skill enables AI agents to work with Init Manager as a project management backend — picking up tasks, doing work, and closing them out.
Your workspace needs these in TOOLS.md or environment:
https://manager.init.hr)initm_)There are three levels of AI instructions. Always follow them. More specific wins on conflict:
GET /api/settings?key=ai_global_guideGET /api/users/<your-user-id> → aiGuide fieldGET /api/projects/<project-id> → aiGuide fieldOn first boot and periodically: fetch all three and follow the combined instructions.
ready status assigned to youin_progress before starting workready, assign to a humandone, add comment with commit/PR link + summaryAll requests need:
Authorization: Bearer initm_<your-key>
| Action | Method | Endpoint |
|---|---|---|
| List projects | GET | /api/projects |
| Project board | GET | /api/projects/<id>/board |
| Project details | GET | /api/projects/<id> |
| List tasks | GET | /api/tasks?assignee=me&status=ready |
| Get task | GET | /api/tasks/<id> |
| Update task | PATCH | /api/tasks/<id> |
| Move task | POST | /api/tasks/<id>/move |
| Create task | POST | /api/tasks |
| Add comment | POST | /api/tasks/<id>/comments |
| Assign user | POST | /api/tasks/<id>/assign |
| Complete assignment | POST | /api/tasks/<id>/complete |
| Activity log | GET | /api/activity |
| Global AI guide | GET | /api/settings?key=ai_global_guide |
POST /api/tasks
{
"projectId": "<uuid>",
"title": "Task title",
"type": "task", // epic | task | bug
"status": "backlog", // backlog | ready | in_progress | done | verified
"priority": "medium", // low | medium | high | urgent
"description": "...", // plain text or Tiptap JSON
"parentId": "<uuid>", // optional, makes subtask
"dueDate": "2026-03-01T00:00:00.000Z"
}
PATCH /api/tasks/<id>
{
"status": "in_progress",
"title": "New title",
"priority": "high"
}
All fields optional — only include what changes.
POST /api/tasks/<id>/comments
{
"body": "Your comment text"
}
⚠️ Use body field, not content.
POST /api/tasks/<id>/assign
{ "userId": "<uuid>" }
GET /api/labels?projectId=<uuid>
POST /api/labels { "name": "Bug", "color": "#ef4444", "projectId": "<uuid>" }
POST /api/tasks/<id>/labels { "labelId": "<uuid>" }
DELETE /api/tasks/<id>/labels { "labelId": "<uuid>" }
done or verifiedready/backlog clears notification flags and assignment completionviaApi: trueIMG-32) are auto-generated from project prefix{ "error": "Description" }
| Status | Meaning |
|---|---|
| 400 | Bad request / validation |
| 401 | Invalid or missing API key |
| 403 | Not allowed for your role |
| 404 | Resource not found |
| 409 | Conflict |
| 500 | Server error |
# Get all projects
curl -H "Authorization: Bearer $KEY" $URL/api/projects
# Check each project board for ready tasks assigned to you
curl -H "Authorization: Bearer $KEY" $URL/api/projects/$PID/board
# Pick up a task
curl -X PATCH -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
-d '{"status":"in_progress"}' $URL/api/tasks/$TID
# ... do the work ...
# Close it out
curl -X PATCH -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
-d '{"status":"done"}' $URL/api/tasks/$TID
curl -X POST -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
-d '{"body":"Done. Commit: https://..."}' $URL/api/tasks/$TID/comments