@@ -298,7 +298,14 @@ function PanelShell(props: {
298298 </ box >
299299 ) }
300300 { minimal ( ) ? (
301- < box id = { `${ props . id } -bottom` } width = "100%" height = { 1 } border = { false } backgroundColor = "transparent" flexShrink = { 0 } >
301+ < box
302+ id = { `${ props . id } -bottom` }
303+ width = "100%"
304+ height = { 1 }
305+ border = { false }
306+ backgroundColor = "transparent"
307+ flexShrink = { 0 }
308+ >
302309 < box
303310 width = "100%"
304311 height = { 1 }
@@ -368,17 +375,18 @@ export function RunCommandMenuBody(props: {
368375 } ,
369376 ...( props . subagents ( ) . length > 0
370377 ? [
371- {
372- action : "subagent" as const ,
373- category : "Session" ,
374- display : "View subagents" ,
375- footer : activeSubagentCount ( ) > 0 ? `${ activeSubagentCount ( ) } active` : `${ props . subagents ( ) . length } recent` ,
376- keywords : props
377- . subagents ( )
378- . map ( ( item ) => `${ item . label } ${ item . description } ${ item . title ?? "" } ` )
379- . join ( " " ) ,
380- } ,
381- ]
378+ {
379+ action : "subagent" as const ,
380+ category : "Session" ,
381+ display : "View subagents" ,
382+ footer :
383+ activeSubagentCount ( ) > 0 ? `${ activeSubagentCount ( ) } active` : `${ props . subagents ( ) . length } recent` ,
384+ keywords : props
385+ . subagents ( )
386+ . map ( ( item ) => `${ item . label } ${ item . description } ${ item . title ?? "" } ` )
387+ . join ( " " ) ,
388+ } ,
389+ ]
382390 : [ ] ) ,
383391 {
384392 action : "slash" ,
@@ -392,16 +400,16 @@ export function RunCommandMenuBody(props: {
392400 const prompt : CommandEntry [ ] =
393401 props . commands ( ) === undefined || skills ( ) . length > 0
394402 ? [
395- {
396- action : "skill" as const ,
397- category : "Prompt" ,
398- display : "Skills" ,
399- footer : "/skills" ,
400- keywords : `skill skills ${ skills ( )
401- . map ( ( item ) => `${ item . name } ${ item . description ?? "" } ` )
402- . join ( " " ) } `. trim ( ) ,
403- } ,
404- ]
403+ {
404+ action : "skill" as const ,
405+ category : "Prompt" ,
406+ display : "Skills" ,
407+ footer : "/skills" ,
408+ keywords : `skill skills ${ skills ( )
409+ . map ( ( item ) => `${ item . name } ${ item . description ?? "" } ` )
410+ . join ( " " ) } `. trim ( ) ,
411+ } ,
412+ ]
405413 : [ ]
406414 const agent : CommandEntry [ ] = [
407415 {
@@ -411,17 +419,17 @@ export function RunCommandMenuBody(props: {
411419 } ,
412420 ...( props . queued ( ) . length > 0
413421 ? [
414- {
415- action : "queued" as const ,
416- category : "Agent" ,
417- display : "Manage queued prompts" ,
418- footer : `${ props . queued ( ) . length } queued` ,
419- keywords : props
420- . queued ( )
421- . map ( ( item ) => item . prompt . text )
422- . join ( " " ) ,
423- } ,
424- ]
422+ {
423+ action : "queued" as const ,
424+ category : "Agent" ,
425+ display : "Manage queued prompts" ,
426+ footer : `${ props . queued ( ) . length } queued` ,
427+ keywords : props
428+ . queued ( )
429+ . map ( ( item ) => item . prompt . text )
430+ . join ( " " ) ,
431+ } ,
432+ ]
425433 : [ ] ) ,
426434 {
427435 action : "variant.cycle" ,
@@ -432,13 +440,13 @@ export function RunCommandMenuBody(props: {
432440 } ,
433441 ...( props . variants ( ) . length > 0
434442 ? [
435- {
436- action : "variant.list" as const ,
437- category : "Agent" ,
438- display : "Switch model variant" ,
439- keywords : `variant variants ${ props . variants ( ) . join ( " " ) } ` ,
440- } ,
441- ]
443+ {
444+ action : "variant.list" as const ,
445+ category : "Agent" ,
446+ display : "Switch model variant" ,
447+ keywords : `variant variants ${ props . variants ( ) . join ( " " ) } ` ,
448+ } ,
449+ ]
442450 : [ ] ) ,
443451 ]
444452 const commands = ( props . commands ( ) ?? [ ] )
0 commit comments