Skip to content

Commit d62c835

Browse files
luis5tbclaude
andcommitted
fix: update AgentCard name and description for Google Cloud Marketplace
Add agent_display_name setting to separate the human-readable AgentCard name from the internal ADK agent identifier, and update the agent description to better reflect the A2A and MCP capabilities. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a4580b3 commit d62c835

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

src/lightspeed_agent/api/a2a/agent_card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def build_agent_card() -> AgentCard:
163163
skills = _build_skills()
164164

165165
agent_card = AgentCard(
166-
name=settings.agent_name,
166+
name=settings.agent_display_name,
167167
description=settings.agent_description,
168168
version="0.1.0",
169169
url=f"{settings.agent_provider_url}/",

src/lightspeed_agent/config/settings.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,18 @@ class Settings(BaseSettings):
8484
default="lightspeed_agent",
8585
description="Agent name (must be a valid Python identifier)",
8686
)
87+
agent_display_name: str = Field(
88+
default="Red Hat Lightspeed Agent for Google Cloud",
89+
description="Human-readable agent name for the AgentCard",
90+
)
8791
agent_description: str = Field(
8892
default=(
89-
"Red Hat Lightspeed Agent for Google Cloud. "
90-
"This agent uses AI technology to provide information about "
91-
"Red Hat accounts, subscriptions, and system configurations. "
92-
"Always review AI-generated content prior to use."
93+
"Red Hat Lightspeed Agent for Google Cloud is an A2A-ready Agent "
94+
"that leverages Red Hat Lightspeed Model Context Protocol (MCP) to "
95+
"connect to Red Hat Lightspeed services, providing information about "
96+
"your Red Hat account, subscription, system configuration, and "
97+
"related details. This feature uses AI technology. Always review "
98+
"AI-generated content prior to use."
9399
),
94100
description="Agent description",
95101
)

0 commit comments

Comments
 (0)