agentsbestfriend 0.7.1 → 0.7.2

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +2 -1
package/dist/index.js CHANGED
@@ -43429,7 +43429,7 @@ function registerPingTool(server) {
43429
43429
  const status = {
43430
43430
  status: "ok",
43431
43431
  server: "agents-best-friend",
43432
- version: "0.7.1",
43432
+ version: "0.7.2",
43433
43433
  projectRoot,
43434
43434
  timestamp: (/* @__PURE__ */ new Date()).toISOString()
43435
43435
  };
@@ -45558,7 +45558,7 @@ Purely heuristic \u2014 no LLM required. Useful to understand a project's style
45558
45558
 
45559
45559
  // ../server/dist/server.js
45560
45560
  var SERVER_NAME = "agents-best-friend";
45561
- var SERVER_VERSION = "0.7.1";
45561
+ var SERVER_VERSION = "0.7.2";
45562
45562
  function createAbfServer() {
45563
45563
  const server = new McpServer({
45564
45564
  name: SERVER_NAME,
@@ -45607,7 +45607,7 @@ async function startCommand() {
45607
45607
 
45608
45608
  // src/index.ts
45609
45609
  var program = new Command();
45610
- program.name("abf").description("AgentsBestFriend \u2014 AI-first code navigation and analysis tools").version("0.7.1");
45610
+ program.name("abf").description("AgentsBestFriend \u2014 AI-first code navigation and analysis tools").version("0.7.2");
45611
45611
  program.command("start").description("Start the MCP server in stdio mode (for AI agent connections)").action(async () => {
45612
45612
  await startCommand();
45613
45613
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentsbestfriend",
3
3
  "mcpName": "io.github.TheRealFloatDev/agentsbestfriend",
4
- "version": "0.7.1",
4
+ "version": "0.7.2",
5
5
  "description": "Give your AI coding agents superpowers — a local MCP server for fast, token-efficient code navigation, search & analysis.",
6
6
  "type": "module",
7
7
  "license": "MIT",
@@ -27,6 +27,7 @@
27
27
  "model-context-protocol"
28
28
  ],
29
29
  "bin": {
30
+ "agentsbestfriend": "./dist/index.js",
30
31
  "abf": "./dist/index.js",
31
32
  "agents-best-friend": "./dist/index.js"
32
33
  },