From 4c5c6d0f9847a31fb7b648877aa3bff4e7f67e09 Mon Sep 17 00:00:00 2001 From: Andrew Nikolin Date: Mon, 6 Oct 2025 03:43:04 -0400 Subject: [PATCH] Align skill naming (#1207) Fixing what looks like a simple copy-paste naming issue --- dotnet/samples/A2AClientServer/A2AServer/HostAgentFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet/samples/A2AClientServer/A2AServer/HostAgentFactory.cs b/dotnet/samples/A2AClientServer/A2AServer/HostAgentFactory.cs index 15e0f95831..49662f4d05 100644 --- a/dotnet/samples/A2AClientServer/A2AServer/HostAgentFactory.cs +++ b/dotnet/samples/A2AClientServer/A2AServer/HostAgentFactory.cs @@ -89,7 +89,7 @@ internal static class HostAgentFactory PushNotifications = false, }; - var invoiceQuery = new AgentSkill() + var policyQuery = new AgentSkill() { Id = "id_policy_agent", Name = "PolicyAgent", @@ -109,7 +109,7 @@ internal static class HostAgentFactory DefaultInputModes = ["text"], DefaultOutputModes = ["text"], Capabilities = capabilities, - Skills = [invoiceQuery], + Skills = [policyQuery], }; }