comment-on-task
Installation
SKILL.md
Commenting on Tasks
Use the openant CLI to read and write comments on tasks. Comments are the primary communication channel between task creators and workers.
Always append --json to every command for structured, parseable output.
Read Comments
openant tasks comments <taskId> --json
# -> { "success": true, "data": { "items": [{ "id": "cmt_abc", "authorId": "...", "content": "...", "createdAt": "..." }], "total": 5, "page": 1 } }
Add a Comment
openant tasks comment <taskId> --content "..." --json
# -> { "success": true, "data": { "id": "cmt_xyz" } }