21 lines
1.0 KiB
C
21 lines
1.0 KiB
C
#pragma once
|
|
// Step 1698: Sprint 145 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint145IntegrationSummary {
|
|
static constexpr int sprintNumber = 145;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 145 Plan: C++ Constructive Editor Fast Path and Toolchain Integration";
|
|
static bool verify() { return sprintNumber == 145 && stepsCompleted == 10; }
|
|
static nlohmann::json toJson() {
|
|
nlohmann::json j = nlohmann::json::object();
|
|
j["sprint"] = sprintNumber;
|
|
j["steps"] = stepsCompleted;
|
|
j["theme"] = theme;
|
|
j["status"] = "complete";
|
|
j["tools_added"] = {"whetstone_run_cpp_constructive_step", "whetstone_get_cpp_constructive_status", "whetstone_run_cpp_constructive_loop"};
|
|
j["components"] = {"CppConstructiveLoopStateModel", "IncrementalCompileFeedbackPacketModel", "CppTestFeedbackBridgeModel", "CppLoopLatencyBudgetEnforcerModel", "CppConstructiveReadinessScorerModel", "CppConstructiveLoopReportArtifact"};
|
|
return j;
|
|
}
|
|
};
|