MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isWindsurfInstalled

Function isWindsurfInstalled

src/utils/ide.ts:1056–1059  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1054}
1055
1056export async function isWindsurfInstalled(): Promise<boolean> {
1057 const result = await execFileNoThrow('windsurf', ['--version'])
1058 return result.code === 0
1059}
1060
1061export async function isVSCodeInstalled(): Promise<boolean> {
1062 const result = await execFileNoThrow('code', ['--help'])

Callers 1

isRelevantFunction · 0.85

Calls 1

execFileNoThrowFunction · 0.85

Tested by

no test coverage detected