analyze_content_security
Detect sensitive information in content using AI-powered analysis. Supports code, documentation, logs, and user-defined patterns for comprehensive security checks.
Instructions
Analyze content for sensitive information using AI-powered detection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to analyze for sensitive information | |
contentType | No | Type of content being analyzed | general |
userDefinedPatterns | No | User-defined sensitive patterns to detect |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content to analyze for sensitive information",
"type": "string"
},
"contentType": {
"default": "general",
"description": "Type of content being analyzed",
"enum": [
"code",
"documentation",
"configuration",
"logs",
"general"
],
"type": "string"
},
"userDefinedPatterns": {
"description": "User-defined sensitive patterns to detect",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"content"
],
"type": "object"
}