agentsbestfriend 0.11.0 → 0.11.1

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 CHANGED
@@ -19417,7 +19417,7 @@ async function initCommand(projectPath) {
19417
19417
  clack.outro(isNew ? "Project initialized!" : "Index rebuilt!");
19418
19418
  return;
19419
19419
  }
19420
- const mcpCommand = mcpSource === "npx" ? "npx agentsbestfriend start" : "abf start";
19420
+ const mcpCommand = mcpSource === "npx" ? "npx -y agentsbestfriend start" : "abf start";
19421
19421
  const addMcpArgs = ["add-mcp", mcpCommand, "--name", "abf", "-y"];
19422
19422
  for (const agent of selectedAgents) {
19423
19423
  addMcpArgs.push("-a", agent);
@@ -43588,7 +43588,7 @@ function registerPingTool(server) {
43588
43588
  const status = {
43589
43589
  status: "ok",
43590
43590
  server: "agents-best-friend",
43591
- version: "0.11.0",
43591
+ version: "0.11.1",
43592
43592
  projectRoot,
43593
43593
  timestamp: (/* @__PURE__ */ new Date()).toISOString()
43594
43594
  };
@@ -46119,7 +46119,7 @@ Use reverse=true to also find files that import the entry file.`, {
46119
46119
 
46120
46120
  // ../server/dist/server.js
46121
46121
  var SERVER_NAME = "agents-best-friend";
46122
- var SERVER_VERSION = "0.11.0";
46122
+ var SERVER_VERSION = "0.11.1";
46123
46123
  function createAbfServer() {
46124
46124
  const server = new McpServer({
46125
46125
  name: SERVER_NAME,
@@ -46169,7 +46169,7 @@ async function startCommand() {
46169
46169
 
46170
46170
  // src/index.ts
46171
46171
  var program = new Command();
46172
- program.name("abf").description("AgentsBestFriend \u2014 AI-first code navigation and analysis tools").version("0.11.0");
46172
+ program.name("abf").description("AgentsBestFriend \u2014 AI-first code navigation and analysis tools").version("0.11.1");
46173
46173
  program.command("start").description("Start the MCP server in stdio mode (for AI agent connections)").action(async () => {
46174
46174
  await startCommand();
46175
46175
  });