wiki_update_page
Update existing wiki pages by replacing entire content, modifying specific sections, or editing metadata like title and tags.
Instructions
Update an existing wiki page by path.
Modes:
- Full replace: pass `content` to overwrite the entire page body.
- Section patch: pass `section` + `section_content` to update only the
content between <!-- OSIA:AUTO:section --> ... <!-- /OSIA:AUTO:section -->
markers, leaving the rest of the page untouched.
- Metadata only: pass `title`, `description`, or `tags` without `content`
or `section` to update metadata without touching the body.
Returns id, path, updated_at on success.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| content | No | ||
| title | No | ||
| description | No | ||
| tags | No | ||
| section | No | ||
| section_content | No |