← back to AgentAbrams

agents/redaction_agent.json

19 lines

{
  "name": "redaction_agent",
  "description": "Scan content for potential confidential information including emails, phone numbers, API keys, IP addresses, connection strings, vendor names, and proprietary process descriptions. Returns findings with severity levels.",
  "input_schema": {
    "type": "object",
    "properties": {
      "markdown_path": {
        "type": "string",
        "description": "Path to markdown file to scan"
      },
      "text": {
        "type": "string",
        "description": "Raw text to scan (alternative to markdown_path)"
      }
    },
    "required": []
  }
}