@handsupmin/gc-tree 0.7.5 → 0.7.7
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/dist/src/hook.js
CHANGED
|
@@ -115,7 +115,7 @@ export async function dispatchGcTreeHook({ event, home, payload, }) {
|
|
|
115
115
|
},
|
|
116
116
|
};
|
|
117
117
|
}
|
|
118
|
-
const prompt = normalizeText(payload.user_prompt || '');
|
|
118
|
+
const prompt = normalizeText(payload.user_prompt || payload.prompt || '');
|
|
119
119
|
if (!prompt)
|
|
120
120
|
return null;
|
|
121
121
|
const branchStatus = await statusForBranch(home, gcBranch);
|
|
@@ -166,7 +166,7 @@ export function gctreeManagedMarkdownTargets(targetDir) {
|
|
|
166
166
|
export function gctreeHookJsonTargets(targetDir) {
|
|
167
167
|
return {
|
|
168
168
|
codex: join(targetDir, '.codex', 'hooks.json'),
|
|
169
|
-
claude: join(targetDir, '.claude', '
|
|
169
|
+
claude: join(targetDir, '.claude', 'settings.json'),
|
|
170
170
|
};
|
|
171
171
|
}
|
|
172
172
|
export function gctreeGlobalRoot(host) {
|
|
@@ -177,5 +177,5 @@ export function gctreeGlobalRoot(host) {
|
|
|
177
177
|
}
|
|
178
178
|
export function gctreeGlobalHookJsonTarget(host) {
|
|
179
179
|
const root = gctreeGlobalRoot(host);
|
|
180
|
-
return host === 'codex' ? join(root, 'hooks.json') : join(root, '
|
|
180
|
+
return host === 'codex' ? join(root, 'hooks.json') : join(root, 'settings.json');
|
|
181
181
|
}
|