Files
whetstone_DSL/editor/src/Sprint107IntegrationSummary.h

32 lines
1.4 KiB
C

#pragma once
// Step 1308: Sprint 107 integration summary.
#include <nlohmann/json.hpp>
struct Sprint107IntegrationSummary {
static constexpr int sprintNumber = 107;
static constexpr int stepsCompleted = 10;
static constexpr const char* theme = "Sprint 107 Plan: Safety-Critical Deployment Profiles";
static bool verify() { return sprintNumber == 107 && 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_safety_profile_requirements");
tools.push_back("whetstone_verify_safety_profile_compliance");
j["tools_added"] = tools;
nlohmann::json comps = nlohmann::json::array();
comps.push_back("SafetyCriticalProfileSchemaSilverGoldPlatinum");
comps.push_back("EnhancedEvidenceRequirementsEngine");
comps.push_back("ReviewerQuorumPolicyModelForCriticalApprovals");
comps.push_back("HazardToEvidenceLinkageValidator");
comps.push_back("ProfileComplianceAuditorIntegration");
comps.push_back("SafeDowngradeWorkflowModel");
comps.push_back("SafetyCriticalDeploymentDossierArtifact");
j["components"] = comps;
return j;
}
};