Sprint 42-45: stabilize modeling tools and implement context, validation, and metrics MCP tooling (Steps 669-688)

This commit is contained in:
Bill
2026-02-18 18:11:31 -07:00
parent c9e96a5cca
commit ed6503b4c8
45 changed files with 4944 additions and 30 deletions

View File

@@ -6,8 +6,6 @@
#include <string>
#include <vector>
using json = nlohmann::json;
struct GeneratedProjectSkeleton {
bool success = false;
std::string name;
@@ -53,7 +51,7 @@ public:
return out;
}
static json asToolResponse(const GeneratedProjectSkeleton& out) {
static nlohmann::json asToolResponse(const GeneratedProjectSkeleton& out) {
return {
{"success", out.success},
{"name", out.name},