Skip to content
Prev Previous commit
Next Next commit
Revert compact Skill-row rendering change
The renderer tweak to collapse the Skill tool call to a single row did not
have the intended effect, so revert it and leave tool-result rendering as-is.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
  • Loading branch information
youknowriad and claude committed Jun 9, 2026
commit 9123fbff505ad79beece674080a25e47b5ae46eb
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,7 @@ function ToolUseRow( {
const detail = getToolDetail( name, input );
const [ expanded, setExpanded ] = useState( false );
const resultText = result?.text?.trim() ?? '';
// The Skill tool returns the full skill runbook as its result. That body is
// guidance for the agent, not something the user needs to read inline, so we
// render the call as a single compact row (label + skill name) and omit it.
const hasOutput = resultText.length > 0 && name !== 'Skill';
const hasOutput = resultText.length > 0;
const isLong = resultText.split( '\n' ).length > TOOL_RESULT_PREVIEW_MAX_LINES;

return (
Expand Down