karea_edit_note
Update the content of a task note by its ID and return the modified note. Supports Markdown formatting for the new content.
Instructions
Change the text of an existing note on a task, by note ID, and return the updated note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Task name, visual ID (C1, T2), or UUID | |
| noteId | Yes | Note UUID (from karea_list_notes) | |
| content | Yes | Updated note content. Markdown is supported (lists, **bold**, `code`, links); plain text is also fine. | |
| toolType | No | Optional: your AI provider ("claude-code" / "opencode" / "codex" / "cursor" / "aider" / "other"). Required when aiSessionId is supplied. | |
| projectId | No | Project name or ID (needed for visual ID lookup) | |
| aiSessionId | No | Optional: your current AI CLI session ID. When paired with toolType, atomically links this session to the affected task (equivalent to calling karea_link_session, but saves the round-trip). For Claude Code use the id from `claude --resume`. | |
| sessionLabel | No | Optional short label for the linked session (e.g. "Feature draft"). |