update_claudemd
Update CLAUDE.md file with learned user preferences by creating a backup first, then applying detected patterns from repeated corrections to maintain consistent AI configuration standards.
Instructions
Update CLAUDE.md file with learned preferences (creates backup first)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to CLAUDE.md file | |
min_confidence | No | Minimum confidence threshold | |
project_path | No | Project path for project-specific content (optional) |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to CLAUDE.md file",
"type": "string"
},
"min_confidence": {
"default": 0.7,
"description": "Minimum confidence threshold",
"type": "number"
},
"project_path": {
"description": "Project path for project-specific content (optional)",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}