Market Data Collector Agent
Agent ID: market-data-collector-agent
Task Description:
Connects to external market data providers (e.g., IBISWorld, Bloomberg feeds) to retrieve relevant industry analysis and competitor benchmarks.
Reusability:
Agent Type:
Deterministic (API Call)
Implementation Notes:
API connectors to various market data subscription services.
Identity (Core A2A):
- Name: Market Data Collector Agent
- Unique ID:
market-data-collector-agent
Primary Function (A2A):
Connects to external market data providers (e.g., IBISWorld, Bloomberg feeds) to retrieve relevant industry analysis and competitor benchmarks.
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": "market-data-collector-agent", "name": "Market Data Collector Agent", "description": "Fetches market research and industry trend data.", "isReusable": true, "taskDescription": "Connects to external market data providers (e.g., IBISWorld, Bloomberg feeds) to retrieve relevant industry analysis and competitor benchmarks.", "icon": { "displayName": "TrendingUp" }, "agentType": "deterministic-api", "implementationNotes": "API connectors to various market data subscription services.", "responsibleTeamIds": [ "team-data-governance" ], "skills": [ { "id": "collect-market-data", "name": "Collect Market Data", "description": "Retrieves market research and industry trend information.", "inputSchemaExample": "{\n \"properties\": {\n \"industryCodes\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n },\n \"companyIdentifiers\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n }\n}", "outputSchemaExample": "{\n \"properties\": {\n \"marketReport\": {\n \"type\": \"object\"\n }\n }\n}" } ], "inputs": [ "gds-company-profile-basic" ], "outputs": [ "gds-market-industry-data" ] }