@10kdevs/matha 0.1.5 → 0.1.6

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.
@@ -244,7 +244,8 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
244
244
  * 4. Write mcp-config.json with absolute paths for this session
245
245
  */
246
246
  async function initialize() {
247
- const cwd = process.cwd();
247
+ const explicitRoot = process.argv[3];
248
+ const cwd = explicitRoot || process.cwd();
248
249
  // Try to find existing .matha directory
249
250
  let found = false;
250
251
  let searchDir = cwd;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@10kdevs/matha",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "The persistent cognitive layer for AI-assisted development. Gives AI agents the project context that currently only exists inside a senior engineer's head.",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {