gm-codex 2.0.204 → 2.0.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hooks/pre-tool-use-hook.js +1 -0
- package/package.json +1 -1
- package/plugin.json +1 -1
|
@@ -7,6 +7,7 @@ const { execSync, spawnSync } = require('child_process');
|
|
|
7
7
|
|
|
8
8
|
const isGemini = process.env.GEMINI_PROJECT_DIR !== undefined;
|
|
9
9
|
const IS_WIN = process.platform === 'win32';
|
|
10
|
+
const projectDir = process.env.CLAUDE_PROJECT_DIR || process.env.GEMINI_PROJECT_DIR || process.env.OC_PROJECT_DIR || process.env.KILO_PROJECT_DIR;
|
|
10
11
|
|
|
11
12
|
// ─── Local tool management ────────────────────────────────────────────────────
|
|
12
13
|
const TOOLS_DIR = path.join(os.homedir(), '.claude', 'gm-tools');
|
package/package.json
CHANGED