Credit History Aggregator Agent

Agent ID: credit-history-aggregator-agent

Agent Overview
Collects and combines internal and external credit history.

Task Description:

Fetches loan repayment history from internal systems and credit reports from external bureaus (e.g., Experian).

Reusability:

Reusable Component

Agent Type:

Deterministic (API Call)

Implementation Notes:

Connects to internal databases and external credit bureau APIs.

Supporting Teams
Teams responsible for the continuous improvement and monitoring of this agent's efficacy.
Data Governance Council
Interaction & Capabilities (A2A)
Information relevant for Agent-to-Agent communication and skill definition.

Identity (Core A2A):

  • Name: Credit History Aggregator Agent
  • Unique ID: credit-history-aggregator-agent

Primary Function (A2A):

Fetches loan repayment history from internal systems and credit reports from external bureaus (e.g., Experian).

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": "credit-history-aggregator-agent",
  "name": "Credit History Aggregator Agent",
  "description": "Collects and combines internal and external credit history.",
  "isReusable": true,
  "taskDescription": "Fetches loan repayment history from internal systems and credit reports from external bureaus (e.g., Experian).",
  "icon": {
    "displayName": "History"
  },
  "agentType": "deterministic-api",
  "implementationNotes": "Connects to internal databases and external credit bureau APIs.",
  "responsibleTeamIds": [
    "team-data-governance"
  ],
  "skills": [
    {
      "id": "aggregate-credit-history",
      "name": "Aggregate Credit History",
      "description": "Combines internal and external credit history data.",
      "inputSchemaExample": "{\n  \"properties\": {\n    \"customerId\": {\n      \"type\": \"string\"\n    },\n    \"companyId\": {\n      \"type\": \"string\"\n    }\n  }\n}",
      "outputSchemaExample": "{\n  \"properties\": {\n    \"comprehensiveCreditReport\": {\n      \"type\": \"object\"\n    }\n  }\n}"
    }
  ],
  "inputs": [
    "gds-customer-id",
    "gds-company-id"
  ],
  "outputs": [
    "gds-comprehensive-credit-history"
  ]
}