chore: bump version to 2.80.27 and update core features

This commit is contained in:
g1nation
2026-05-09 01:16:12 +09:00
parent 5ffb472d22
commit 3220a126fd
41 changed files with 4457 additions and 72 deletions
+5
View File
@@ -122,6 +122,11 @@ export class TransactionManager {
public isActive(): boolean {
return this.isTransactionActive;
}
/** Snapshot of file paths currently recorded in the active transaction. */
public getRecordedFiles(): { path: string; type: 'modified' | 'created' | 'deleted' }[] {
return Array.from(this.backups.values()).map(b => ({ path: b.path, type: b.type }));
}
}
// Export a singleton instance if needed, or instantiate per AgentExecutor