Files
whetstone_DSL/editor/src/Sprint100IntegrationSummary.h

32 lines
1.4 KiB
C

#pragma once
// Step 1238: Sprint 100 integration summary.
#include <nlohmann/json.hpp>
struct Sprint100IntegrationSummary {
static constexpr int sprintNumber = 100;
static constexpr int stepsCompleted = 10;
static constexpr const char* theme = "Sprint 100 Plan: Century Milestone Consolidation and Next-Epoch Launch";
static bool verify() { return sprintNumber == 100 && 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_century_status");
tools.push_back("whetstone_publish_next_epoch_plan");
j["tools_added"] = tools;
nlohmann::json comps = nlohmann::json::array();
comps.push_back("CenturyMilestoneHealthScoreboardModel");
comps.push_back("EndToEndCapabilityInventoryAndGapScan");
comps.push_back("GovernanceAndSafetyInvariantsFullRevalidation");
comps.push_back("NextEpochStrategyGenerator");
comps.push_back("TransitionPlanModelForSprint101Workstreams");
comps.push_back("CenturyRetrospectiveEvidenceBundleComposer");
comps.push_back("CenturyMilestonePublicationPackage");
j["components"] = comps;
return j;
}
};