Append to a Rootr document (preferred write)
rootr_appendAppend markdown content to a document without overwriting existing text. Optionally add under a specific heading to organize new information such as logs, notes, or findings.
Instructions
Append content to a Rootr document, optionally under a given heading. This is a conflict-free, additive operation — it never overwrites existing content, so PREFER this over rootr_write whenever you just need to add new information (log entries, notes, findings) to an existing document.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | Document path (starting with "/") or node id | |
| content | Yes | Markdown content to append | |
| underHeading | No | Heading to append under, e.g. "## Notes" or "Notes". If omitted, appends to the end of the document. A missing heading section is created at the document end. |