docs_update
Update project documentation by specifying modified files and change details. Ensures accurate, context-aware updates for development work across categories like frontend, backend, or database.
Instructions
Update documentation after completing development work
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Primary category of work (optional, auto-detected if not provided) | |
context | Yes | Description of changes made | |
files | Yes | Array of file paths that were modified |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Primary category of work (optional, auto-detected if not provided)",
"enum": [
"frontend",
"backend",
"electron",
"database",
"testing"
],
"type": "string"
},
"context": {
"description": "Description of changes made",
"type": "string"
},
"files": {
"description": "Array of file paths that were modified",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"files",
"context"
],
"type": "object"
}