v0.2.0: Git-native architecture (#1)

This commit was merged in pull request #1.
This commit is contained in:
2026-05-29 12:59:45 +00:00
parent 9cf5c000d9
commit 6e637e4af0
50 changed files with 5852 additions and 135 deletions
-4
View File
@@ -1,6 +1,4 @@
import { CIConfig } from "../types/config.js";
import { ArtifactManager } from "./artifacts.js";
import { DecisionEngine } from "./decision-engine.js";
export interface RetryConfig {
max_retries: number;
@@ -69,8 +67,6 @@ export class ErrorRecovery {
}
async rollback(phase: number, reason: string): Promise<RecoveryResult> {
const artifactManager = new ArtifactManager(this.projectPath);
return {
recovered: true,
strategy: "rollback",