feat(P03): multi-project support, NFR milestone versioning, phase context reset, install scripts (v0.3.0)

This commit is contained in:
CI
2026-05-29 15:13:45 +00:00
parent e4bb3a9970
commit ddf04792c7
57 changed files with 1748 additions and 59 deletions
+10
View File
@@ -61,7 +61,15 @@ export interface GitConfig {
auto_push: boolean;
}
export interface ProjectEntry {
slug: string;
name: string;
default?: boolean;
}
export interface CIConfig {
projects: ProjectEntry[];
active_project: string;
autonomy: AutonomyConfig;
model_profile: ModelProfile;
parallelization: ParallelizationConfig;
@@ -71,6 +79,8 @@ export interface CIConfig {
}
export const DEFAULT_CI_CONFIG: CIConfig = {
projects: [],
active_project: "",
autonomy: {
level: "full",
escalation_hooks: ["deploy", "delete_data", "merge_to_main"],