@first-to-fly/orchestrator-mcp 0.2.3 → 0.2.4
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/init.js +2 -2
- package/package.json +1 -1
package/dist/init.js
CHANGED
|
@@ -177,14 +177,14 @@ async function main() {
|
|
|
177
177
|
settings.hooks = {};
|
|
178
178
|
const hookScriptPath = path.resolve(__dirname, 'hooks', 'session-start.js');
|
|
179
179
|
settings.hooks['SessionStart'] = [{
|
|
180
|
-
matcher:
|
|
180
|
+
matcher: '',
|
|
181
181
|
hooks: [{
|
|
182
182
|
type: 'command',
|
|
183
183
|
command: `node ${hookScriptPath}`,
|
|
184
184
|
}],
|
|
185
185
|
}];
|
|
186
186
|
settings.hooks['Stop'] = [{
|
|
187
|
-
matcher:
|
|
187
|
+
matcher: '',
|
|
188
188
|
hooks: [{
|
|
189
189
|
type: 'prompt',
|
|
190
190
|
prompt: 'You MUST call save_session_summary before this session ends if ANY of these occurred:\n1. Files were created, modified, or deleted\n2. Bugs were debugged or fixed\n3. Architectural decisions were made\n4. New features were implemented\n5. Errors were investigated\n\nCall: save_session_summary({ summary: "...", tasksCompleted: [...], tasksInProgress: [...], filesModified: [...], decisionsMade: [...], nextSteps: [...] })\n\nSkip only if this was a purely read-only exploration with no actionable outcomes.',
|