32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#pragma once
|
|
// Step 1208: Sprint 97 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint97IntegrationSummary {
|
|
static constexpr int sprintNumber = 97;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 97 Plan: Autonomous Patch Proposals with Human Approval Gates";
|
|
static bool verify() { return sprintNumber == 97 && stepsCompleted == 10; }
|
|
static nlohmann::json toJson() {
|
|
nlohmann::json j = nlohmann::json::object();
|
|
j["sprint"] = sprintNumber;
|
|
j["steps"] = stepsCompleted;
|
|
j["theme"] = theme;
|
|
j["status"] = "complete";
|
|
nlohmann::json tools = nlohmann::json::array();
|
|
tools.push_back("whetstone_generate_patch_candidates");
|
|
tools.push_back("whetstone_validate_patch_candidate");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("PatchProposalSchemaAndProvenanceModel");
|
|
comps.push_back("CandidateGenerationEngineFromFailureTaxonomy");
|
|
comps.push_back("SandboxValidationRunnerForCandidatePatches");
|
|
comps.push_back("SemanticImpactEstimatorForPatchDiffs");
|
|
comps.push_back("CandidateRankingAndRecommendationModel");
|
|
comps.push_back("ApprovalWorkflowIntegrationWithGovernanceLedger");
|
|
comps.push_back("PatchProposalReviewReportArtifact");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|