/** * Strip ARE artifacts from a worktree for baseline comparison. * * Removes all ARE-generated documentation from the "without-docs" worktree * so it contains only source code, providing a clean baseline. * * @module */ /** * Strip all ARE artifacts from a worktree. * * Removes: * - All `*.sum` files * - Generated `AGENTS.md` and `AGENTS.*.md` files (marker-checked) * - Generated `CLAUDE.md` files (marker-checked) * - `.agents-reverse-engineer/` directory * * Commits the removal so the worktree has a clean state. * * @param worktreePath - Absolute path to the worktree * @returns Number of artifacts removed */ export declare function stripArtifacts(worktreePath: string): Promise; //# sourceMappingURL=strip-artifacts.d.ts.map