oh-my-opencode 0.1.27 → 0.1.28
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/hooks/pulse-monitor.d.ts +1 -1
- package/dist/index.js +1 -5
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export declare function createPulseMonitorHook(ctx: PluginInput): {
|
|
|
4
4
|
event: any;
|
|
5
5
|
}) => Promise<void>;
|
|
6
6
|
"tool.execute.before": () => Promise<void>;
|
|
7
|
-
"tool.execute.after": (
|
|
7
|
+
"tool.execute.after": (_input: {
|
|
8
8
|
sessionID: string;
|
|
9
9
|
}) => Promise<void>;
|
|
10
10
|
};
|
package/dist/index.js
CHANGED
|
@@ -1790,11 +1790,7 @@ function createPulseMonitorHook(ctx) {
|
|
|
1790
1790
|
"tool.execute.before": async () => {
|
|
1791
1791
|
stopMonitoring();
|
|
1792
1792
|
},
|
|
1793
|
-
"tool.execute.after": async (
|
|
1794
|
-
if (input.sessionID) {
|
|
1795
|
-
startMonitoring(input.sessionID);
|
|
1796
|
-
}
|
|
1797
|
-
}
|
|
1793
|
+
"tool.execute.after": async (_input) => {}
|
|
1798
1794
|
};
|
|
1799
1795
|
}
|
|
1800
1796
|
// src/hooks/directory-agents-injector/index.ts
|