Files
whetstone_DSL/editor/src/Sprint93IntegrationSummary.h

32 lines
1.4 KiB
C

#pragma once
// Step 1168: Sprint 93 integration summary.
#include <nlohmann/json.hpp>
struct Sprint93IntegrationSummary {
static constexpr int sprintNumber = 93;
static constexpr int stepsCompleted = 10;
static constexpr const char* theme = "Sprint 93 Plan: Program Economics and Portfolio Optimization";
static bool verify() { return sprintNumber == 93 && 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_portfolio_economics");
tools.push_back("whetstone_plan_budget_allocation");
j["tools_added"] = tools;
nlohmann::json comps = nlohmann::json::array();
comps.push_back("PortfolioEconomicsSchema");
comps.push_back("PairLevelROIEstimatorModel");
comps.push_back("MaintenanceTCOForecastingEngine");
comps.push_back("BudgetAllocationOptimizerAcrossSprintThemes");
comps.push_back("ScenarioAnalysisModelAggressiveBalancedConservative");
comps.push_back("StakeholderDecisionPacketGenerator");
comps.push_back("PortfolioStrategyReportArtifact");
j["components"] = comps;
return j;
}
};