Files
whetstone_DSL/editor/src/Sprint117IntegrationSummary.h

31 lines
1.3 KiB
C

#pragma once
// Step 1407: Sprint 117 integration summary.
#include <nlohmann/json.hpp>
struct Sprint117IntegrationSummary {
static constexpr int sprintNumber = 117;
static constexpr int stepsCompleted = 9;
static constexpr const char* theme = "Sprint 117 Plan: HiveMind Integration — Feedback Loop as Distributed Jobs";
static bool verify() { return sprintNumber == 117 && stepsCompleted == 9; }
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_configure_hivemind");
tools.push_back("whetstone_submit_iteration_job");
tools.push_back("whetstone_poll_iteration_job");
j["tools_added"] = tools;
nlohmann::json comps = nlohmann::json::array();
comps.push_back("HiveMindJobAdapterSchemaAndConfig");
comps.push_back("JobSubmissionViaNexusHTTPAPI");
comps.push_back("JobResultPoller");
comps.push_back("ResultToObservationRecordMapper");
comps.push_back("DistributedPathInFeedbackLoopOrchestrator");
j["components"] = comps;
return j;
}
};