mcpbeat Sign in

Trace Harness Launch Failure Agent Skill

Empty session traces mean launch failure, not agent behavior — verify api_call_count/tool_call_count and stdout.txt before analyzing.

445 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
107
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/ashutoshsinghpr7/wikiskill --skill trace-harness-launch-failure

The instruction itself

4 sections, as written by the author

Trace Harness Launch Failure — empty sessions, scores from deliverables

Problem

Four training traces contain ONLY the initial task prompt: 1 message,

0 tool calls, 0 API calls, ~1 s duration. No agent reasoning, tool call, or

final answer anywhere — yet meta.json carries scores (0.0 / 1.0).

Root cause

Every recorded run died at launch: runs/<task>/stdout.txt shows

"HTTP 400: default is not a valid model ID" — the harness sent an invalid

model ID instead of the configured model, so the agent never executed. The

scores were produced by grading the on-disk deliverables against the

exact-match graders in tasks.json — not from any recorded agent behavior.

Fix

  • Before analyzing "agent behavior", verify the session actually ran: check

api_call_count / tool_call_count / message_count in the trace and

stdout.txt for launch errors. Empty trace == no behavioral evidence.

  • When traces are empty, reconstruct ground truth by diffing the on-disk

deliverable against the task's grader expectation

(tasks.jsongrader.expected), and read spec.md + input data to

explain the score.

  • Treat prior-iteration behavioral claims as unverifiable until new traces

confirm them; flag evidence status in the run log.

  • Surface the harness bug so the runner is fixed before the next iteration,

otherwise every proposal rests on inferred data.

How to use it

Copy the folder

Take ashutoshsinghpr7/trace-harness-launch-failure from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.