@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.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3040,7 +3040,7 @@ var AgentCardBuilder = class {
|
|
|
3040
3040
|
name: config.name,
|
|
3041
3041
|
description: config.personality.bio || `${config.name} - An autonomous AI agent`,
|
|
3042
3042
|
protocolVersion: "0.3.0",
|
|
3043
|
-
version: "0.1.
|
|
3043
|
+
version: "0.1.29",
|
|
3044
3044
|
url: `${baseUrl}/a2a/jsonrpc`,
|
|
3045
3045
|
skills,
|
|
3046
3046
|
capabilities,
|
|
@@ -3504,6 +3504,7 @@ function createApp(agent, options = {}) {
|
|
|
3504
3504
|
});
|
|
3505
3505
|
const handlers = a2aIntegration.getHandlers();
|
|
3506
3506
|
app.use(`/${AGENT_CARD_PATH}`, handlers.agentCard);
|
|
3507
|
+
app.use("/.well-known/agent-card.json", handlers.agentCard);
|
|
3507
3508
|
app.use("/a2a/jsonrpc", handlers.jsonRpc);
|
|
3508
3509
|
app.use("/a2a/rest", handlers.rest);
|
|
3509
3510
|
logger10.info("A2A protocol endpoints enabled");
|