We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7116ee1 commit 7ff535bCopy full SHA for 7ff535b
2 files changed
example_projects/iOS_Calculator/AGENTS.md
@@ -0,0 +1,3 @@
1
+# AGENTS.md
2
+
3
+- If using XcodeBuildMCP, first find and read the installed XcodeBuildMCP skill before calling XcodeBuildMCP tools.
src/cli.ts
@@ -63,7 +63,8 @@ async function runInitCommand(): Promise<void> {
63
setLogLevel(level);
64
}
65
});
66
- registerInitCommand(app);
+ const workspaceRoot = resolveWorkspaceRoot({ cwd: process.cwd() });
67
+ registerInitCommand(app, { workspaceRoot });
68
await app.parseAsync();
69
70
0 commit comments