32 lines
1.3 KiB
C
32 lines
1.3 KiB
C
#pragma once
|
|
// Step 1328: Sprint 109 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint109IntegrationSummary {
|
|
static constexpr int sprintNumber = 109;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 109 Plan: Cross-Epoch Technical Debt Burn-Down";
|
|
static bool verify() { return sprintNumber == 109 && 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_debt_inventory");
|
|
tools.push_back("whetstone_plan_debt_burndown");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("TechnicalDebtInventorySchema");
|
|
comps.push_back("DebtRiskImpactScoringModel");
|
|
comps.push_back("BurnDownPlanningOptimizer");
|
|
comps.push_back("DebtExecutionQueueIntegration");
|
|
comps.push_back("DebtRetirementEffectivenessTracker");
|
|
comps.push_back("CriticalPathDisruptionGuardrails");
|
|
comps.push_back("DebtBurnDownReportArtifact");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|