@dfosco/storyboard 0.5.0-alpha.6 → 0.5.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -393,16 +393,16 @@ async function welcomeLoop() {
|
|
|
393
393
|
|
|
394
394
|
// Build the first option based on number of configured agents
|
|
395
395
|
const agentOption = agents.length > 1
|
|
396
|
-
? { value: 'agents', label: '
|
|
397
|
-
: { value: 'copilot', label:
|
|
396
|
+
? { value: 'agents', label: '> Start a new agent session' }
|
|
397
|
+
: { value: 'copilot', label: `> Start a new ${agents[0]?.label || 'Copilot'} session` }
|
|
398
398
|
|
|
399
399
|
drainStdin()
|
|
400
400
|
const action = await p.select({
|
|
401
401
|
message: 'How would you like to start?',
|
|
402
402
|
options: [
|
|
403
403
|
agentOption,
|
|
404
|
-
{ value: 'shell', label: '
|
|
405
|
-
{ value: 'sessions', label: '
|
|
404
|
+
{ value: 'shell', label: '> Start a new terminal session' },
|
|
405
|
+
{ value: 'sessions', label: '> Browse existing sessions' },
|
|
406
406
|
],
|
|
407
407
|
})
|
|
408
408
|
|
|
@@ -418,7 +418,7 @@ async function welcomeLoop() {
|
|
|
418
418
|
message: 'Which agent?',
|
|
419
419
|
options: agents.map(a => ({
|
|
420
420
|
value: a.id,
|
|
421
|
-
label:
|
|
421
|
+
label: `> Start a new ${a.label} session`,
|
|
422
422
|
})),
|
|
423
423
|
})
|
|
424
424
|
|
|
@@ -461,9 +461,9 @@ async function welcomeLoop() {
|
|
|
461
461
|
const sessionOptions = [
|
|
462
462
|
...resumableAgents.map(a => ({
|
|
463
463
|
value: `agent:${a.id}`,
|
|
464
|
-
label:
|
|
464
|
+
label: `> ${a.label} sessions`,
|
|
465
465
|
})),
|
|
466
|
-
{ value: 'terminal', label: '
|
|
466
|
+
{ value: 'terminal', label: '> Terminal sessions' },
|
|
467
467
|
]
|
|
468
468
|
|
|
469
469
|
drainStdin()
|