Initial commit

This commit is contained in:
Samraaj Bath
2026-06-29 15:11:48 -07:00
commit 66dfdcc58d
404 changed files with 45970 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { existsSync } from 'node:fs';
import { resolve } from 'node:path';
export function resolvePython(worktree: string): string {
const venvPython = resolve(worktree, '.opencode/scripts/.venv/bin/python');
if (existsSync(venvPython)) return venvPython;
return 'python3';
}