@moltium/core 0.1.28 → 0.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -2968,7 +2968,7 @@ var AgentCardBuilder = class {
2968
2968
  name: config.name,
2969
2969
  description: config.personality.bio || `${config.name} - An autonomous AI agent`,
2970
2970
  protocolVersion: "0.3.0",
2971
- version: "0.1.28",
2971
+ version: "0.1.29",
2972
2972
  url: `${baseUrl}/a2a/jsonrpc`,
2973
2973
  skills,
2974
2974
  capabilities,
@@ -3432,6 +3432,7 @@ function createApp(agent, options = {}) {
3432
3432
  });
3433
3433
  const handlers = a2aIntegration.getHandlers();
3434
3434
  app.use(`/${AGENT_CARD_PATH}`, handlers.agentCard);
3435
+ app.use("/.well-known/agent-card.json", handlers.agentCard);
3435
3436
  app.use("/a2a/jsonrpc", handlers.jsonRpc);
3436
3437
  app.use("/a2a/rest", handlers.rest);
3437
3438
  logger10.info("A2A protocol endpoints enabled");