Problem
'toolu_abc'.endswith('') is True, so agentrace show "" silently displays run #1 instead of erroring.
Where
agentrace/cli.py (show: endswith match, no empty check).
Acceptance
Add a failing test first asserting show "" exits nonzero with a usage error rather than printing the first run. Then fix.
Problem
'toolu_abc'.endswith('')isTrue, soagentrace show ""silently displays run #1 instead of erroring.Where
agentrace/cli.py(show:endswithmatch, no empty check).Acceptance
Add a failing test first asserting
show ""exits nonzero with a usage error rather than printing the first run. Then fix.