TPRM Risk Scorer Agent

Agent ID: tprm-risk-scorer-agent

Agent Overview
Scores third-party risk based on collected and processed information.

Task Description:

Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.

Reusability:

Workflow-Specific

Agent Type:

Complex AI (Multi-step/Reasoning)

Implementation Notes:

Genkit flow using AI for sentiment analysis if not already done, and a weighted scoring model (potentially AI-tuned) for risk calculation.

Supporting Teams
Teams responsible for the continuous improvement and monitoring of this agent's efficacy.
AI Core Services
Enterprise Risk Management
Performance & Evaluation Metrics
Key indicators of this agent's operational effectiveness and continuous improvement strategy.

Last Evaluated

2024-07-18

Accuracy

90.0%

Latency

avg 700ms

Cost Per Interaction

$0.009

Interaction & Capabilities (A2A)
Information relevant for Agent-to-Agent communication and skill definition.

Identity (Core A2A):

  • Name: TPRM Risk Scorer Agent
  • Unique ID: tprm-risk-scorer-agent

Primary Function (A2A):

Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.

Defined Agent Skills (A2A Interface):

Skill Orchestration & Execution

The operational logic for this agent, including the invocation and management of its defined skills, is handled by the backend system's orchestration layer. This layer is responsible for the agent's execution sequence, data handling according to its skill schemas, and any necessary interactions with tools or external services. The specific method (e.g., AI model call, deterministic code execution) is detailed in the 'Implementation Notes' within the Agent Overview.

Agent Card JSON (Definition)
The raw JSON representation of this agent's definition, including its skills and evaluation metrics.
{
  "id": "tprm-risk-scorer-agent",
  "name": "TPRM Risk Scorer Agent",
  "description": "Scores third-party risk based on collected and processed information.",
  "isReusable": false,
  "taskDescription": "Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.",
  "icon": {
    "displayName": "ShieldCheck"
  },
  "agentType": "ai-complex",
  "implementationNotes": "Genkit flow using AI for sentiment analysis if not already done, and a weighted scoring model (potentially AI-tuned) for risk calculation.",
  "responsibleTeamIds": [
    "team-ai-core",
    "team-risk-management"
  ],
  "skills": [
    {
      "id": "score-vendor-risk",
      "name": "Score Vendor Risk (TPRM)",
      "description": "Evaluates compiled vendor information to assign a comprehensive risk score.",
      "inputSchemaExample": "{\n  \"properties\": {\n    \"vendorId\": {\n      \"type\": \"string\"\n    },\n    \"compiledVendorData\": {\n      \"type\": \"object\"\n    }\n  }\n}",
      "outputSchemaExample": "{\n  \"properties\": {\n    \"tprmRiskScore\": {\n      \"type\": \"number\"\n    },\n    \"riskBreakdown\": {\n      \"type\": \"object\"\n    },\n    \"keyRiskIndicators\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\"\n      }\n    }\n  }\n}"
    }
  ],
  "evaluation": {
    "lastEvaluated": "2024-07-18",
    "accuracy": 0.9,
    "latency": "avg 700ms",
    "costPerInteraction": "$0.009"
  },
  "inputs": [
    "gds-formatted-vendor-data",
    "gds-external-vendor-intel"
  ],
  "outputs": [
    "gds-vendor-risk-score-tprm"
  ]
}