add_work_note
Append a timestamped status note to a task's activity log, recording progress so future work sessions can pick up where you left off. Notes are append-only.
Instructions
Append a timestamped work note (status update) to a task's activity log. Use this to record progress so a future session can pick up where you left off (e.g. "finished auth handler, tests green, next: wire the callback"). Notes are append-only and never overwrite each other. Set author_kind="human" ONLY when you are relaying a note dictated by the human user; use "ai" (the default) when leaving your own status update.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | The work note / status update text | |
| task_id | Yes | The ID of the task to add a work note to | |
| author_kind | No | Who authored this note: "ai" (default, your own update) or "human" (you are relaying something the user said). | |
| is_internal | No | Whether the note is internal-only (hidden from customers). Defaults to true for work notes. |