@askmesh/mcp 0.10.1 → 0.10.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.
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ const TOKEN = process.env.ASKMESH_TOKEN;
11
11
  const URL = process.env.ASKMESH_URL || 'https://api.askmesh.dev';
12
12
  const server = new McpServer({
13
13
  name: 'askmesh',
14
- version: '0.10.1',
14
+ version: '0.10.2',
15
15
  });
16
16
  if (!TOKEN) {
17
17
  // No token — start in setup-only mode
@@ -332,7 +332,7 @@ function setupSkillsAndStatusLine(token) {
332
332
  // Auto-configure status line
333
333
  // Copy statusline.sh to a stable location (~/.claude/) so it survives npx cache clears
334
334
  const mcpDir = dirname(fileURLToPath(import.meta.url));
335
- const sourceScript = join(mcpDir, '..', 'statusline.sh');
335
+ const sourceScript = join(mcpDir, '..', '..', 'statusline.sh');
336
336
  const claudeSettingsDir = join(homedir(), '.claude');
337
337
  const stableScript = join(claudeSettingsDir, 'askmesh-statusline.sh');
338
338
  const claudeSettingsPath = join(claudeSettingsDir, 'settings.json');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askmesh/mcp",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "description": "AskMesh MCP server — connect your AI coding agent to your team's mesh network",
5
5
  "type": "module",
6
6
  "bin": {