adhdev 0.9.70 → 0.9.71
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/cli/index.js +146 -25
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +146 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/vendor/mcp-server/index.js +6 -2
- package/vendor/mcp-server/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1452,7 +1452,11 @@ async function meshLaunchSession(ctx, args) {
|
|
|
1452
1452
|
if (isLocalTransport(ctx.transport)) {
|
|
1453
1453
|
const result = await ctx.transport.command("launch_cli", {
|
|
1454
1454
|
cliType: args.type,
|
|
1455
|
-
dir: node.workspace
|
|
1455
|
+
dir: node.workspace,
|
|
1456
|
+
settings: {
|
|
1457
|
+
meshNodeFor: ctx.mesh.id,
|
|
1458
|
+
launchedByCoordinator: true
|
|
1459
|
+
}
|
|
1456
1460
|
});
|
|
1457
1461
|
return JSON.stringify(result, null, 2);
|
|
1458
1462
|
} else {
|
|
@@ -1598,7 +1602,7 @@ async function startMcpServer(opts) {
|
|
|
1598
1602
|
coordinatorPrompt = `You are a Repo Mesh Coordinator for "${mesh.name}" (${mesh.repoIdentity}). Use mesh_* tools to orchestrate work.`;
|
|
1599
1603
|
}
|
|
1600
1604
|
const server2 = new import_server.Server(
|
|
1601
|
-
{ name: "adhdev-mcp-server", version: "0.9.
|
|
1605
|
+
{ name: "adhdev-mcp-server", version: "0.9.71" },
|
|
1602
1606
|
{ capabilities: { tools: {}, resources: {} } }
|
|
1603
1607
|
);
|
|
1604
1608
|
const { ListResourcesRequestSchema, ReadResourceRequestSchema } = await import("@modelcontextprotocol/sdk/types.js");
|