Skip to content

Commit 4446ab3

Browse files
author
Trinity Agent
committed
fix(cloud): increase buffer size for /api/agents, add CLAUDE.md.agent to .gitignore (#136)
1 parent 09e117a commit 4446ab3

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,3 +258,6 @@ hslm-train/
258258
--output
259259
--output/
260260
data/checkpoints_v3/
261+
262+
# Claude agent config (local)
263+
CLAUDE.md.agent

tools/mcp/trinity_mcp/cloud_monitor.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ fn handleConnection(stream: net.Stream) !void {
274274

275275
// Route: GET /api/agents — list agent statuses
276276
if (std.mem.startsWith(u8, request, "GET /api/agents")) {
277-
var buf: [8192]u8 = undefined;
277+
var buf: [16384]u8 = undefined;
278278
const json = getStatusJson(&buf);
279279
try sendHttpResponse(stream, "200 OK", "application/json", json);
280280
return;

0 commit comments

Comments
 (0)