mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-25 21:41:12 -07:00
62 lines
2.2 KiB
TypeScript
62 lines
2.2 KiB
TypeScript
/**
|
|
* Deep Review Entrypoint (Remote)
|
|
*
|
|
* This script is the single command executed by the remote tmux session.
|
|
* It handles environment loading and sequence orchestration.
|
|
*/
|
|
import { spawnSync } from 'child_process';
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const prNumber = process.argv[2];
|
|
const branchName = process.argv[3];
|
|
const policyPath = process.argv[4];
|
|
const ISOLATED_CONFIG = process.env.GEMINI_CLI_HOME || path.join(process.env.HOME || '', '.offload/gemini-cli-config');
|
|
|
|
async function main() {
|
|
if (!prNumber || !branchName || !policyPath) {
|
|
console.error('Usage: tsx entrypoint.ts <PR_NUMBER> <BRANCH_NAME> <POLICY_PATH>');
|
|
process.exit(1);
|
|
}
|
|
|
|
const workDir = process.cwd(); // This is remoteWorkDir as set in review.ts
|
|
const targetDir = path.join(workDir, branchName);
|
|
|
|
// Use global tools pre-installed in the maintainer image
|
|
const tsxBin = 'tsx';
|
|
const geminiBin = 'gemini';
|
|
|
|
const action = process.argv[5] || 'review';
|
|
|
|
// 1. Run the Parallel Reviewer
|
|
console.log('🚀 Launching Parallel Review Worker...');
|
|
console.log(` - Script: ${path.join(__dirname, 'worker.ts')}`);
|
|
console.log(` - Action: ${action}`);
|
|
|
|
const workerResult = spawnSync(tsxBin, [path.join(__dirname, 'worker.ts'), prNumber, branchName, policyPath, action], {
|
|
stdio: 'inherit',
|
|
env: { ...process.env, GEMINI_CLI_HOME: ISOLATED_CONFIG }
|
|
});
|
|
|
|
if (workerResult.status !== 0) {
|
|
console.error(`❌ Worker failed with exit code ${workerResult.status}.`);
|
|
if (workerResult.error) console.error(' Error:', workerResult.error.message);
|
|
}
|
|
|
|
// 2. Launch the Interactive Gemini Session (Local Nightly)
|
|
console.log('\n✨ Verification complete. Joining interactive session...');
|
|
|
|
const geminiArgs = ['--policy', policyPath];
|
|
geminiArgs.push('-p', `Review for PR #${prNumber} is complete. Read the logs in .gemini/logs/review-${prNumber}/ and synthesize your findings.`);
|
|
|
|
process.chdir(targetDir);
|
|
spawnSync(geminiBin, geminiArgs, {
|
|
stdio: 'inherit',
|
|
env: { ...process.env, GEMINI_CLI_HOME: ISOLATED_CONFIG }
|
|
});
|
|
}
|
|
|
|
main().catch(console.error);
|