karea_add_note
Add a note to a task for human-readable updates and observations. Supports Markdown formatting.
Instructions
Add a note to a task. Notes are human-readable updates/observations (the user reads them). For private AI working memory that persists across sessions, use karea_set_context instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Task name, visual ID (C1, T2), or UUID | |
| content | Yes | Note content. Markdown is supported (lists, **bold**, `code`, links) - use it when it improves readability; 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 | |
| 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"). |