move_document
Transfer a document from one location to another and optionally update references to it in other files. Ideal for managing and organizing markdown documentation effectively.
Instructions
Move a document from one location to another. Optionally updates references to the document in other files.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| destinationPath | Yes | ||
| path | No | ||
| sourcePath | Yes | ||
| updateReferences | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"destinationPath": {
"type": "string"
},
"path": {
"type": "string"
},
"sourcePath": {
"type": "string"
},
"updateReferences": {
"default": true,
"type": "boolean"
}
},
"required": [
"sourcePath",
"destinationPath"
],
"type": "object"
}