mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 22:03:45 +00:00
Breaking changes: - HookEventContext now has sessionManager and modelRegistry (moved from SessionEventBase) - HookAPI now has exec() method (moved from HookEventContext/HookCommandContext) - HookRunner constructor takes sessionManager and modelRegistry as required params - Session events no longer include sessionManager/modelRegistry fields Hook code migration: - event.sessionManager -> ctx.sessionManager - event.modelRegistry -> ctx.modelRegistry - ctx.exec() -> pi.exec() Updated: - src/core/hooks/types.ts - type changes - src/core/hooks/runner.ts - constructor, createContext - src/core/hooks/loader.ts - add exec to HookAPI - src/core/sdk.ts - pass sessionManager/modelRegistry to HookRunner - src/core/agent-session.ts - remove sessionManager/modelRegistry from events - src/modes/* - remove setSessionFile calls, update events - examples/hooks/* - update to new API
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
/**
|
|
* Dirty Repo Guard Hook
|
|
*
|
|
* Prevents session changes when there are uncommitted git changes.
|
|
* Useful to ensure work is committed before switching context.
|
|
*/
|
|
|
|
import type { HookAPI } from "@mariozechner/pi-coding-agent/hooks";
|
|
|
|
export default function (pi: HookAPI) {
|
|
pi.on("session", async (event, ctx) => {
|
|
// Only guard destructive actions
|
|
if (event.reason !== "before_new" && event.reason !== "before_switch" && event.reason !== "before_branch") {
|
|
return;
|
|
}
|
|
|
|
// Check for uncommitted changes
|
|
const { stdout, code } = await pi.exec("git", ["status", "--porcelain"]);
|
|
|
|
if (code !== 0) {
|
|
// Not a git repo, allow the action
|
|
return;
|
|
}
|
|
|
|
const hasChanges = stdout.trim().length > 0;
|
|
if (!hasChanges) {
|
|
return;
|
|
}
|
|
|
|
if (!ctx.hasUI) {
|
|
// In non-interactive mode, block by default
|
|
return { cancel: true };
|
|
}
|
|
|
|
// Count changed files
|
|
const changedFiles = stdout.trim().split("\n").filter(Boolean).length;
|
|
|
|
const action =
|
|
event.reason === "before_new" ? "new session" : event.reason === "before_switch" ? "switch session" : "branch";
|
|
|
|
const choice = await ctx.ui.select(`You have ${changedFiles} uncommitted file(s). ${action} anyway?`, [
|
|
"Yes, proceed anyway",
|
|
"No, let me commit first",
|
|
]);
|
|
|
|
if (choice !== "Yes, proceed anyway") {
|
|
ctx.ui.notify("Commit your changes first", "warning");
|
|
return { cancel: true };
|
|
}
|
|
});
|
|
}
|