fix: resolve merge conflict markers in mcp-ssh + schema (PR #240 merge artifact) #241

Merged
clawdie merged 1 commit from hotfix/merge-conflict-markers into main 2026-06-27 21:32:06 +02:00
2 changed files with 2 additions and 10 deletions

View file

@ -31,12 +31,8 @@ case "${SSH_ORIGINAL_COMMAND:-}" in
# "model":"deepseek-chat","input_tokens":150,"output_tokens":80,
# "cache_read_tokens":200,"cache_write_tokens":50,
# "cost_usd":0.0042,"success":true,
<<<<<<< HEAD
# "proof_text":"agent:hermes|cost:0.0042|tokens:150/80",
# "screenshot_uuid":"a1b2c3d4e5f6",
=======
# "proof_text":"{\"agent\":\"zot\",\"state\":\"Done\",\"tokens_in\":150}",
>>>>>>> f46f3d2 (chore: polish proof_text — stale comments, duplicate column, schema docs, fmt)
# "screenshot_uuid":"a1b2c3d4e5f6",
# "finished_at":"2026-06-27T12:00:00Z"}
psql -d mother_hive -tA -v ON_ERROR_STOP=1 <<'PSQL'
INSERT INTO task_costs (node_id, task_id, provider, model,

View file

@ -65,12 +65,8 @@ CREATE TABLE IF NOT EXISTS task_costs (
cache_write_tokens BIGINT NOT NULL DEFAULT 0,
cost_usd DOUBLE PRECISION NOT NULL DEFAULT 0.0,
success BOOLEAN NOT NULL DEFAULT false,
<<<<<<< HEAD
proof_text TEXT, -- glasspane evidence at task exit (agent, state, tokens)
proof_text TEXT, -- glasspane state snapshot (agent, state, tokens, cost as JSON)
screenshot_uuid TEXT, -- visual terminal proof (PNG capture UUID)
=======
proof_text TEXT, -- glasspane state snapshot (agent, state, tokens, cost as JSON)
>>>>>>> f46f3d2 (chore: polish proof_text stale comments, duplicate column, schema docs, fmt)
finished_at TIMESTAMPTZ NOT NULL DEFAULT now(),
reported_at TIMESTAMPTZ NOT NULL DEFAULT now()
);