mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-19 17:50:37 -07:00
fix(core): expose GEMINI_PLANS_DIR to hook environment (#25296)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
@@ -348,6 +348,9 @@ export class HookRunner {
|
||||
const env = {
|
||||
...sanitizeEnvironment(process.env, this.config.sanitizationConfig),
|
||||
GEMINI_PROJECT_DIR: input.cwd,
|
||||
GEMINI_PLANS_DIR: this.config.storage.getPlansDir(),
|
||||
GEMINI_CWD: input.cwd,
|
||||
GEMINI_SESSION_ID: input.session_id,
|
||||
CLAUDE_PROJECT_DIR: input.cwd, // For compatibility
|
||||
...hookConfig.env,
|
||||
};
|
||||
@@ -514,8 +517,17 @@ export class HookRunner {
|
||||
): string {
|
||||
debugLogger.debug(`Expanding hook command: ${command} (cwd: ${input.cwd})`);
|
||||
const escapedCwd = escapeShellArg(input.cwd, shellType);
|
||||
const escapedPlansDir = escapeShellArg(
|
||||
this.config.storage.getPlansDir(),
|
||||
shellType,
|
||||
);
|
||||
const escapedSessionId = escapeShellArg(input.session_id, shellType);
|
||||
|
||||
return command
|
||||
.replace(/\$GEMINI_PROJECT_DIR/g, () => escapedCwd)
|
||||
.replace(/\$GEMINI_CWD/g, () => escapedCwd)
|
||||
.replace(/\$GEMINI_PLANS_DIR/g, () => escapedPlansDir)
|
||||
.replace(/\$GEMINI_SESSION_ID/g, () => escapedSessionId)
|
||||
.replace(/\$CLAUDE_PROJECT_DIR/g, () => escapedCwd); // For compatibility
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user