diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..58ed041 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,7 @@ +import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; + +export default function skillReinject(pi: ExtensionAPI): void { + pi.on("session_start", () => { + // Phase 0 shell — hooks wired in later phases + }); +}