32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#pragma once
|
|
// Step 1268: Sprint 103 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint103IntegrationSummary {
|
|
static constexpr int sprintNumber = 103;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 103 Plan: Verified Refactoring Patterns Library";
|
|
static bool verify() { return sprintNumber == 103 && 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_list_verified_patterns");
|
|
tools.push_back("whetstone_apply_verified_pattern");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("RefactorPatternSchemaAndMetadataModel");
|
|
comps.push_back("PreconditionsPostconditionsValidatorForPatterns");
|
|
comps.push_back("PatternApplicabilityMatcherFromGraphContext");
|
|
comps.push_back("DeterministicPatternExecutorWrapper");
|
|
comps.push_back("PatternOutcomeScorerAndRollbackHooks");
|
|
comps.push_back("PatternLibraryGovernanceWorkflow");
|
|
comps.push_back("PatternEfficacyReportArtifact");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|