Credit History Aggregator Agent
Agent ID: credit-history-aggregator-agent
Task Description:
Fetches loan repayment history from internal systems and credit reports from external bureaus (e.g., Experian).
Reusability:
Agent Type:
Deterministic (API Call)
Implementation Notes:
Connects to internal databases and external credit bureau APIs.
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.
{ "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" ] }