adhdev 0.9.67 → 0.9.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adhdev",
3
- "version": "0.9.67",
3
+ "version": "0.9.69",
4
4
  "description": "ADHDev — Agent Dashboard Hub for Dev. Remote-control AI coding agents from anywhere.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1451,7 +1451,7 @@ async function meshLaunchSession(ctx, args) {
1451
1451
  const node = findNode(ctx.mesh, args.node_id);
1452
1452
  if (isLocalTransport(ctx.transport)) {
1453
1453
  const result = await ctx.transport.command("launch_cli", {
1454
- type: args.type,
1454
+ cliType: args.type,
1455
1455
  dir: node.workspace
1456
1456
  });
1457
1457
  return JSON.stringify(result, null, 2);
@@ -1598,7 +1598,7 @@ async function startMcpServer(opts) {
1598
1598
  coordinatorPrompt = `You are a Repo Mesh Coordinator for "${mesh.name}" (${mesh.repoIdentity}). Use mesh_* tools to orchestrate work.`;
1599
1599
  }
1600
1600
  const server2 = new import_server.Server(
1601
- { name: "adhdev-mcp-server", version: "0.9.67" },
1601
+ { name: "adhdev-mcp-server", version: "0.9.69" },
1602
1602
  { capabilities: { tools: {}, resources: {} } }
1603
1603
  );
1604
1604
  const { ListResourcesRequestSchema, ReadResourceRequestSchema } = await import("@modelcontextprotocol/sdk/types.js");