{
    "protocolVersion": "0.3.0",
    "name": "AI Risk Scoring Agent (EU AI Act)",
    "description": "A self-check design support agent that analyzes public GitHub repositories, classifies/scores risks based on the EU AI Act's 4 tiers (Unacceptable/High/Limited/Minimal), and returns evidence and improvement comments.",
    "supportedInterfaces": [
        {
            "url": "https://kuroneko-risk-assessment-agent.kuronekopr.workers.dev/api/agent",
            "protocolBinding": "HTTP+JSON"
        }
    ],
    "provider": {
        "organization": "Kuroneko Risk Team",
        "url": "https://www.kuronekorisk.com"
    },
    "iconUrl": "https://www.kuronekorisk.com/assets/icon.png",
    "version": "1.0.0",
    "documentationUrl": "https://www.kuronekorisk.com/docs",
    "capabilities": {
        "streaming": false,
        "pushNotifications": false,
        "stateTransitionHistory": true
    },
    "securitySchemes": {
        "public": {
            "type": "apiKey",
            "name": "x-api-key",
            "in": "header",
            "description": "Optional API Key for rate limiting."
        }
    },
    "security": [
        {
            "public": []
        }
    ],
    "defaultInputModes": [
        "application/json",
        "text/plain"
    ],
    "defaultOutputModes": [
        "application/json",
        "text/plain"
    ],
    "skills": [
        {
            "id": "eu-ai-act-risk-score",
            "name": "EU AI Act 4-Tier Risk Scoring",
            "description": "Takes a public GitHub URL as input, extracts risk factors from perspectives such as usage, impact, and automation level, and returns the EU AI Act 4-tier classification, score, evaluation basis, and design improvement comments.",
            "tags": [
                "EU AI Act",
                "risk scoring",
                "AI governance",
                "self-check",
                "GitHub analysis",
                "security-by-design"
            ],
            "inputModes": [
                "application/json"
            ],
            "outputModes": [
                "application/json",
                "text/plain"
            ]
        },
        {
            "id": "report-export",
            "name": "Report Export (Markdown/JSON)",
            "description": "Exports diagnostic results in JSON for CI/CD pipelines and Markdown for human-readable PR comments.",
            "tags": [
                "export",
                "ci",
                "markdown",
                "github"
            ],
            "inputModes": [
                "application/json"
            ],
            "outputModes": [
                "application/json",
                "text/plain"
            ]
        }
    ],
    "supportsExtendedAgentCard": true
}