mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 20:01:24 +00:00
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
|
|
|
|
export default function agentEndExtension(pi: ExtensionAPI): void {
|
|
pi.on("agent_end", async (_event, ctx) => {
|
|
ctx.ui.notify("agent_end received");
|
|
});
|
|
}
|