Market Data Collector Agent

Agent ID: market-data-collector-agent

Agent Overview
Fetches market research and industry trend data.

Task Description:

Connects to external market data providers (e.g., IBISWorld, Bloomberg feeds) to retrieve relevant industry analysis and competitor benchmarks.

Reusability:

Reusable Component

Agent Type:

Deterministic (API Call)

Implementation Notes:

API connectors to various market data subscription services.

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: 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.

Agent Card JSON (Definition)
The raw JSON representation of this agent's definition, including its skills and evaluation metrics.
{
  "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"
  ]
}