Stock Price Agent

Agent ID: stock-price-agent

Agent Overview
Retrieves real-time stock prices for a given ticker symbol.

Task Description:

Fetch the current market price for a specified stock ticker.

Reusability:

Reusable Component

Agent Type:

Deterministic (API Call)

Implementation Notes:

Direct API call to a financial data provider (e.g., IEX Cloud, Alpha Vantage) to get stock quotes.

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

Last Evaluated

N/A (Deterministic API)

Accuracy

100.0%

Latency

avg 150ms

Cost Per Interaction

$0.001

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

Identity (Core A2A):

  • Name: Stock Price Agent
  • Unique ID: stock-price-agent

Primary Function (A2A):

Fetch the current market price for a specified stock ticker.

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": "stock-price-agent",
  "name": "Stock Price Agent",
  "description": "Retrieves real-time stock prices for a given ticker symbol.",
  "isReusable": true,
  "taskDescription": "Fetch the current market price for a specified stock ticker.",
  "icon": {
    "displayName": "Landmark"
  },
  "agentType": "deterministic-api",
  "implementationNotes": "Direct API call to a financial data provider (e.g., IEX Cloud, Alpha Vantage) to get stock quotes.",
  "responsibleTeamIds": [
    "team-ai-core"
  ],
  "skills": [
    {
      "id": "get-stock-quote",
      "name": "Get Stock Quote",
      "description": "Fetches the latest stock price and related quote data for a given ticker symbol.",
      "inputSchemaExample": "{\n  \"properties\": {\n    \"tickerSymbol\": {\n      \"type\": \"string\"\n    }\n  }\n}",
      "outputSchemaExample": "{\n  \"properties\": {\n    \"ticker\": {\n      \"type\": \"string\"\n    },\n    \"price\": {\n      \"type\": \"number\"\n    }\n  }\n}"
    }
  ],
  "evaluation": {
    "lastEvaluated": "N/A (Deterministic API)",
    "accuracy": 1,
    "latency": "avg 150ms",
    "costPerInteraction": "$0.001"
  },
  "inputs": [
    "gds-ticker-symbol"
  ],
  "outputs": [
    "gds-stock-quote-data"
  ]
}