configure_custom_patterns
Define and manage custom sensitive patterns for project codebases to enhance analysis and ensure compliance with architectural decision records.
Instructions
Configure custom sensitive patterns for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
existingPatterns | No | Existing patterns to consider | |
projectPath | Yes | Path to the project directory |
Input Schema (JSON Schema)
{
"properties": {
"existingPatterns": {
"description": "Existing patterns to consider",
"items": {
"type": "string"
},
"type": "array"
},
"projectPath": {
"description": "Path to the project directory",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}