@dfosco/storyboard 0.5.0-alpha.6 → 0.5.0-alpha.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dfosco/storyboard",
3
- "version": "0.5.0-alpha.6",
3
+ "version": "0.5.0-alpha.8",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Storyboard prototyping framework — core engine, React integration, and canvas",
@@ -47,6 +47,16 @@
47
47
  "target": ".agents/terminal-agent.agent.md",
48
48
  "mode": "updateable"
49
49
  },
50
+ {
51
+ "source": "scaffold/prompt-agent.agent.md",
52
+ "target": ".github/agents/prompt-agent.agent.md",
53
+ "mode": "updateable"
54
+ },
55
+ {
56
+ "source": "scaffold/terminal-agent.agent.md",
57
+ "target": ".github/agents/terminal-agent.agent.md",
58
+ "mode": "updateable"
59
+ },
50
60
  {
51
61
  "source": "scaffold/deploy.yml",
52
62
  "target": ".github/workflows/deploy.yml",
@@ -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: ' Start a new agent session' }
397
- : { value: 'copilot', label: `✦ Start a new ${agents[0]?.label || 'Copilot'} session` }
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: ' Start a new terminal session' },
405
- { value: 'sessions', label: ' Browse existing sessions' },
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: `✦ Start a new ${a.label} session`,
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: `✦ ${a.label} sessions`,
464
+ label: `> ${a.label} sessions`,
465
465
  })),
466
- { value: 'terminal', label: ' Terminal sessions' },
466
+ { value: 'terminal', label: '> Terminal sessions' },
467
467
  ]
468
468
 
469
469
  drainStdin()