import { type ExtensionAPI } from "@earendil-works/pi-coding-agent"; /** * pi-autocommit extension * * Automatically commits changes inside pi using a checkpoint-then-reorganise * strategy so the user does not have to write commit messages. * * - `turn_end`: create a lightweight checkpoint commit when a turn mutated * files. * - `agent_end`: soft-reset the checkpoint commits and reorganise them into * logical Conventional Commits via the LLM. * * A footer indicator shows whether the working tree has uncommitted changes, * so the user can spot unintended files before a checkpoint captures them. */ export default function (pi: ExtensionAPI): void; //# sourceMappingURL=index.d.ts.map