Skip to content

Commit 7ff535b

Browse files
committed
Fix AGENT installation bug
1 parent 7116ee1 commit 7ff535b

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ async function runInitCommand(): Promise<void> {
6363
setLogLevel(level);
6464
}
6565
});
66-
registerInitCommand(app);
66+
const workspaceRoot = resolveWorkspaceRoot({ cwd: process.cwd() });
67+
registerInitCommand(app, { workspaceRoot });
6768
await app.parseAsync();
6869
}
6970

0 commit comments

Comments
 (0)