Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions demo-script.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# StrawPot 60-second Demo Video Script
# Produced with the demo-video-creator skill
# Final output: public/demo.mp4 (52s, 1920x1080, 30fps, h264)

scenes:
# Scene 1: Opening title card (5s)
- type: title-card
text: "StrawPot"
subtitle: "One Engineer. One Laptop. One AI Company."
duration: 5s
background: "#0f0f23"
text_color: "#ffffff"
font_size: 80
subtitle_font_size: 32

# Scene 2: User gives task, agents collaborate (28.7s)
# Shows: typing the command, ai-ceo planning & delegating,
# implementer writing code, reviewer approving, PR created
- type: terminal
commands:
- "strawpot start --task 'Add dark mode toggle to the settings page'"
typing_speed: 30ms
wait_after: 30s
viewport: 1920x1080
font_size: 22
theme: "Catppuccin Mocha"

# Scene 3: Mid title card (4s)
- type: title-card
text: "Your AI team."
subtitle: "Your codebase. Your rules."
duration: 4s
background: "#0f0f23"
text_color: "#ffffff"
font_size: 72
subtitle_font_size: 36

# Scene 4: Show the shipped result (11.6s)
- type: terminal
commands:
- "git log --oneline -5"
- "git diff --stat HEAD~1"
- "gh pr list --limit 1"
typing_speed: 40ms
wait_after: 3s
viewport: 1920x1080
font_size: 22
theme: "Catppuccin Mocha"

# Scene 5: Closing CTA (5s)
- type: title-card
text: "Ship faster with AI agents"
subtitle: "Try it: strawpot.com"
duration: 5s
background: "#0f0f23"
text_color: "#ffffff"
font_size: 72
subtitle_font_size: 36

output:
file: demo.mp4
resolution: 1920x1080
fps: 30
transition: crossfade
transition_duration: 0.5s
codec: libx264
crf: 23
pixel_format: yuv420p
18 changes: 10 additions & 8 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,15 @@ strawpot gui"
<span class="resolution-tab">Output</span>
</div>
<div class="code-block">
<pre><code><span class="s">&#10003;</span> Plan generated by ai-ceo
<span class="s">&#10003;</span> Implementation delegated to implementer
<span class="s">&#10003;</span> Code written in isolated worktree
<span class="s">&#10003;</span> Review completed by code-reviewer
<span class="s">&#10003;</span> Tests passing
<pre><code> Session started (orchestrator: ai-ceo)

<span class="s">&#10003; Done: 4 artifacts in ./output</span></code></pre>
> Delegating to implementer...
<span class="s">&#10003;</span> implementer completed (1m 23s)

> Delegating to code-reviewer...
<span class="s">&#10003;</span> code-reviewer completed (47s)

<span class="s">&#10003;</span> Session complete (2m 34s)</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -214,7 +216,7 @@ strawpot gui"
</div>
<div class="arch-item">
<h3>Git worktree isolation</h3>
<p>Every session gets its own branch. Concurrent sessions, crash recovery, configurable merge strategies.</p>
<p>Every session gets its own branch. Concurrent sessions, crash recovery, configurable branch cleanup.</p>
</div>
<div class="arch-item">
<h3>Persistent memory</h3>
Expand All @@ -230,7 +232,7 @@ strawpot gui"
</div>
<div class="arch-item">
<h3>Structured tracing</h3>
<p>Every delegation, spawn, and memory access recorded to JSONL. Content-addressed artifacts. Full reconstruction.</p>
<p>Every delegation, spawn, and memory access recorded to JSONL. Content-addressed artifacts. Audit any session.</p>
</div>
</div>
</section>
Expand Down
Loading