@handsupmin/gc-tree 0.7.5 → 0.7.6

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.
Files changed (2) hide show
  1. package/dist/src/hook.js +1 -1
  2. package/package.json +1 -1
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@handsupmin/gc-tree",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "Global Context Tree, a lightweight branch-aware global context orchestrator for AI coding tools",
5
5
  "type": "module",
6
6
  "private": false,