32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#pragma once
|
|
// Step 1338: Sprint 110 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint110IntegrationSummary {
|
|
static constexpr int sprintNumber = 110;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 110 Plan: Epoch 2 Stabilization and Roadmap Renewal";
|
|
static bool verify() { return sprintNumber == 110 && 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_get_epoch_block_status");
|
|
tools.push_back("whetstone_publish_next_block_plan");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("EpochBlockHealthReBaselineModel");
|
|
comps.push_back("KPIDeltaAnalysisEngineForBlockReview");
|
|
comps.push_back("TargetAttainmentCheckerAgainstEpochGoals");
|
|
comps.push_back("NextBlockPriorityPlannerAndConstraintBinder");
|
|
comps.push_back("GovernanceAndSafetyInvariantRevalidationPass");
|
|
comps.push_back("RenewalRiskRegisterGeneration");
|
|
comps.push_back("EpochRenewalPublicationBundle");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|