Demo Runbook
Create a demo package that is demo-first, user-empathy-led, and technically credible. Produce two deliverables every time: a demo script and a single-file HTML runbook.
When to use this skill
Use this skill when asked to create or refresh a demo (often a PoC demo) that:
- Starts with an end-to-end live demo before explaining why, what, and how
- Includes a competitive landscape comparison using April Dunford’s respectful approach framing
- Includes technical architecture details, especially LLM patterns (RAG, evals, observability)
- Produces both a talk track and a navigable runbook page
Example triggering requests:
- “Help me create a PoC demo runbook and script for a live demo.”
- “Make a demo-first talk track, then cover why/what/how and architecture.”
- “Create a single HTML runbook with links, diagrams, and sections for tech stack.”
- “Write a respectful competitive comparison and explain our approach.”
Outputs
Always produce both:
- Demo script as markdown (talk track + what to click + timings)
- Single-file HTML runbook (visual-first with custom CSS, navigable sections, Mermaid diagrams (flowchart + sequence), in-app hyperlinks, back-to-home navigation)
HTML runbook must:
- Be single-file HTML (no build step required) with custom CSS styling (cards/callouts/layout), not a plain document.
- Include Mermaid diagrams (at least one flowchart and one sequence diagram).
- Include navigation between sections (hash router is fine) and “Back to Home” affordances.
- Include an app links section with real links or TODO placeholders.
When returning outputs, format as:
=== demo-script.md === then the markdown
=== demo-runbook.html === then the full HTML
Input schema
Accept inputs in either bullet form or JSON. If any field is missing, insert a clear TODO placeholder rather than asking questions.
Minimum inputs to request are not required. Proceed with placeholders.
Core narrative
poc_name: Name of the PoC
tagline: One-line value statement
audience: Who is watching (and expected technical depth)
segment:
organisation: The organisation context (industry, size, geography, constraints)
buyer: Who buys / signs (budget owner, success metric, risk posture)
end_user: Who uses it day-to-day (workflow, pain, what “better” feels like)
job_to_be_done: What the user is trying to do
starting_feelings: How they feel at the start (rushed, uncertain, risk-averse, too many tabs)
desired_feelings: How the product changes that (confidence, clarity, speed, fewer guesses)
scenario: The demo scenario in plain English
success_outcome: What “done” looks like for the user
business_success_outcome: What success looks like for the business (be specific: $ impact or growth/adoption metric + timeframe)
Special feature X
special_feature:
name: Feature X name
what_it_does: Plain English
why_it_matters: User value
citation: Optional link or text reference
evidence_note: If citation missing, set to “Evidence is preliminary.”
Scope and caveats
geography: Default US
caveats: Default list must include:
- Synthetic customer data including made up packs
- Segmentation and positioning were not a focus
- Not production ready
- Goal was mini Orbital Copilot PoC with special feature X (citation optional, otherwise evidence preliminary)
- US only
Competitive landscape
competitors: Optional list of competitor names
competitor_patterns: Optional list describing market approaches (use when competitor names are unknown)
our_approach_summary: How the PoC approach differs and why
tradeoffs: Explicit trade-offs accepted
Tech stack
tech_stack:
frontend
backend
llm_provider_and_models
orchestration
vector_search_or_db
storage
auth_security
observability
evals_tooling
hosting
Architecture and choices
architecture:
chosen_option: e.g. “RAG + light tool use”
options_considered: At least 2 options with pros/cons
rag_details: chunking, retrieval, filters, grounding approach
citations_policy: when to cite, when to say unknown
evals: offline set, regression, quality metrics and what “good” means
observability: traces, prompt/versioning, cost/latency, failure modes
security_privacy_notes: even for synthetic data, log redaction and separation of secrets
Demo links
app_links: List of {label, url, note} for in-app pages to click during demo
runbook_links: Optional external links to supporting docs (PRD, repo, design, etc.)
Risks and next steps
known_limitations: hallucination risks, coverage gaps, latency/cost concerns, reliability risks
next_steps: what to productionise, what to validate, what to expand
Workflow
Follow this workflow in order.
Step 1: Normalise inputs and apply defaults
- Apply default caveats and geography (US).
- If
special_feature.citation is missing, set special_feature.evidence_note to “Evidence is preliminary.”
- If competitors are missing, use
competitor_patterns or generate neutral market patterns with TODO markers.
- If tech stack fields are missing, insert TODO placeholders.
- If app links are missing, create 3 placeholder links with TODO URLs.
Optional: Run scripts/validate_inputs.py to normalise a JSON input payload and produce a filled structure.
Step 2: Build the demo-first narrative backbone
- Lead with an end-to-end happy path.
- Make the segment (organisation, buyer, end-user), job, and feelings explicit in the first minute.
- Call out the emotional shift, from uncertainty to confidence, as part of the story.
- Include one edge case showing safe behaviour (clarify, refuse, uncertainty).
- Tie the story to the business success outcome (what changes, and how you will measure it).
Step 3: Add caveats early and repeat at the end
- Place caveats immediately after the first sentence or within the first 10 seconds.
- Repeat a short caveats recap in the closing.
Step 4: Add why, what, how
- Explain why after the demo has landed.
- Define what is in scope and out of scope.
- Explain how at two levels:
- Product level, what components do
- Technical level, architecture and LLM specifics
Step 5: Add competitive landscape section
- Compare approaches, priorities, and trade-offs.
- Avoid dunking on competitors.
- Frame differences as “different constraints” and “optimising for X”.
Use references/competitive-template.md.
Step 6: Add technical architecture section
- Include RAG, grounding, citations policy.
- Include evals plan and what “good” means.
- Include observability plan and what gets logged.
- Include at least two architecture options considered and why the PoC choice was made.
Use references/architecture-template.md.
Step 7: Generate deliverables
- Generate
demo-script.md using references/demo-script-template.md.
- Generate
demo-runbook.html by copying assets/runbook-template.html and filling placeholders:
- PoC name, tagline, narrative, caveats
- Segment (organisation, buyer, end-user) and business success outcome
- App links
- Tech stack and architecture content
- Competitive section content
- Mermaid diagrams (flowchart and sequence diagram) and custom CSS styling (keep it visual, not a plain document)
Step 8: Quality check before returning
Confirm:
- Demo starts before any explanation.
- Segment (organisation, buyer, end-user), job and feelings are explicit.
- Caveats appear early and at the end.
- Competitive section is respectful and trade-off based.
- Architecture includes RAG, evals, observability and options considered.
- Geography is US only.
- Business success outcome is specific and measurable (not vibes).
- Outputs are British English, crisp, no production promises.
Bundled resources
Load as needed:
references/demo-script-template.md for the script structure
references/competitive-template.md for respectful comparison framing
references/architecture-template.md for the LLM architecture talk track
assets/runbook-template.html for a navigable, visual-first runbook shell
scripts/validate_inputs.py for deterministic input normalisation (optional)
1---2name: demo-runbook3description: This skill should be used when a user needs a demo package that starts with a live demo (not slides) and produces both a demo script and a navigable single-file HTML runbook, including caveats, respectful competitive comparison, and LLM architecture details (RAG, evals, observability).4---56# Demo Runbook78Create a demo package that is demo-first, user-empathy-led, and technically credible. Produce two deliverables every time: a demo script and a single-file HTML runbook.910## When to use this skill1112Use this skill when asked to create or refresh a demo (often a PoC demo) that:13- Starts with an end-to-end live demo before explaining why, what, and how14- Includes a competitive landscape comparison using April Dunford’s respectful approach framing15- Includes technical architecture details, especially LLM patterns (RAG, evals, observability)16- Produces both a talk track and a navigable runbook page1718Example triggering requests:19- “Help me create a PoC demo runbook and script for a live demo.”20- “Make a demo-first talk track, then cover why/what/how and architecture.”21- “Create a single HTML runbook with links, diagrams, and sections for tech stack.”22- “Write a respectful competitive comparison and explain our approach.”2324## Outputs2526Always produce both:271) **Demo script** as markdown (talk track + what to click + timings)282) **Single-file HTML runbook** (visual-first with custom CSS, navigable sections, Mermaid diagrams (flowchart + sequence), in-app hyperlinks, back-to-home navigation)2930HTML runbook must:31- Be single-file HTML (no build step required) with custom CSS styling (cards/callouts/layout), not a plain document.32- Include Mermaid diagrams (at least one flowchart and one sequence diagram).33- Include navigation between sections (hash router is fine) and “Back to Home” affordances.34- Include an app links section with real links or TODO placeholders.3536When returning outputs, format as:37- `=== demo-script.md ===` then the markdown38- `=== demo-runbook.html ===` then the full HTML3940## Input schema4142Accept inputs in either bullet form or JSON. If any field is missing, insert a clear TODO placeholder rather than asking questions.4344Minimum inputs to request are not required. Proceed with placeholders.4546### Core narrative47- `poc_name`: Name of the PoC48- `tagline`: One-line value statement49- `audience`: Who is watching (and expected technical depth)50- `segment`:51 - `organisation`: The organisation context (industry, size, geography, constraints)52 - `buyer`: Who buys / signs (budget owner, success metric, risk posture)53 - `end_user`: Who uses it day-to-day (workflow, pain, what “better” feels like)54- `job_to_be_done`: What the user is trying to do55- `starting_feelings`: How they feel at the start (rushed, uncertain, risk-averse, too many tabs)56- `desired_feelings`: How the product changes that (confidence, clarity, speed, fewer guesses)57- `scenario`: The demo scenario in plain English58- `success_outcome`: What “done” looks like for the user59- `business_success_outcome`: What success looks like for the business (be specific: $ impact or growth/adoption metric + timeframe)6061### Special feature X62- `special_feature`:63 - `name`: Feature X name64 - `what_it_does`: Plain English65 - `why_it_matters`: User value66 - `citation`: Optional link or text reference67 - `evidence_note`: If citation missing, set to “Evidence is preliminary.”6869### Scope and caveats70- `geography`: Default `US`71- `caveats`: Default list must include:72 - Synthetic customer data including made up packs73 - Segmentation and positioning were not a focus74 - Not production ready75 - Goal was mini Orbital Copilot PoC with special feature X (citation optional, otherwise evidence preliminary)76 - US only7778### Competitive landscape79- `competitors`: Optional list of competitor names80- `competitor_patterns`: Optional list describing market approaches (use when competitor names are unknown)81- `our_approach_summary`: How the PoC approach differs and why82- `tradeoffs`: Explicit trade-offs accepted8384### Tech stack85- `tech_stack`:86 - `frontend`87 - `backend`88 - `llm_provider_and_models`89 - `orchestration`90 - `vector_search_or_db`91 - `storage`92 - `auth_security`93 - `observability`94 - `evals_tooling`95 - `hosting`9697### Architecture and choices98- `architecture`:99 - `chosen_option`: e.g. “RAG + light tool use”100 - `options_considered`: At least 2 options with pros/cons101 - `rag_details`: chunking, retrieval, filters, grounding approach102 - `citations_policy`: when to cite, when to say unknown103 - `evals`: offline set, regression, quality metrics and what “good” means104 - `observability`: traces, prompt/versioning, cost/latency, failure modes105 - `security_privacy_notes`: even for synthetic data, log redaction and separation of secrets106107### Demo links108- `app_links`: List of `{label, url, note}` for in-app pages to click during demo109- `runbook_links`: Optional external links to supporting docs (PRD, repo, design, etc.)110111### Risks and next steps112- `known_limitations`: hallucination risks, coverage gaps, latency/cost concerns, reliability risks113- `next_steps`: what to productionise, what to validate, what to expand114115## Workflow116117Follow this workflow in order.118119### Step 1: Normalise inputs and apply defaults120- Apply default caveats and geography (US).121- If `special_feature.citation` is missing, set `special_feature.evidence_note` to “Evidence is preliminary.”122- If competitors are missing, use `competitor_patterns` or generate neutral market patterns with TODO markers.123- If tech stack fields are missing, insert TODO placeholders.124- If app links are missing, create 3 placeholder links with TODO URLs.125126Optional: Run `scripts/validate_inputs.py` to normalise a JSON input payload and produce a filled structure.127128### Step 2: Build the demo-first narrative backbone129- Lead with an end-to-end happy path.130- Make the segment (organisation, buyer, end-user), job, and feelings explicit in the first minute.131- Call out the emotional shift, from uncertainty to confidence, as part of the story.132- Include one edge case showing safe behaviour (clarify, refuse, uncertainty).133- Tie the story to the business success outcome (what changes, and how you will measure it).134135### Step 3: Add caveats early and repeat at the end136- Place caveats immediately after the first sentence or within the first 10 seconds.137- Repeat a short caveats recap in the closing.138139### Step 4: Add why, what, how140- Explain why after the demo has landed.141- Define what is in scope and out of scope.142- Explain how at two levels:143 - Product level, what components do144 - Technical level, architecture and LLM specifics145146### Step 5: Add competitive landscape section147- Compare approaches, priorities, and trade-offs.148- Avoid dunking on competitors.149- Frame differences as “different constraints” and “optimising for X”.150151Use `references/competitive-template.md`.152153### Step 6: Add technical architecture section154- Include RAG, grounding, citations policy.155- Include evals plan and what “good” means.156- Include observability plan and what gets logged.157- Include at least two architecture options considered and why the PoC choice was made.158159Use `references/architecture-template.md`.160161### Step 7: Generate deliverables162- Generate `demo-script.md` using `references/demo-script-template.md`.163- Generate `demo-runbook.html` by copying `assets/runbook-template.html` and filling placeholders:164 - PoC name, tagline, narrative, caveats165 - Segment (organisation, buyer, end-user) and business success outcome166 - App links167 - Tech stack and architecture content168 - Competitive section content169 - Mermaid diagrams (flowchart and sequence diagram) and custom CSS styling (keep it visual, not a plain document)170171### Step 8: Quality check before returning172Confirm:173- Demo starts before any explanation.174- Segment (organisation, buyer, end-user), job and feelings are explicit.175- Caveats appear early and at the end.176- Competitive section is respectful and trade-off based.177- Architecture includes RAG, evals, observability and options considered.178- Geography is US only.179- Business success outcome is specific and measurable (not vibes).180- Outputs are British English, crisp, no production promises.181182## Bundled resources183184Load as needed:185- `references/demo-script-template.md` for the script structure186- `references/competitive-template.md` for respectful comparison framing187- `references/architecture-template.md` for the LLM architecture talk track188- `assets/runbook-template.html` for a navigable, visual-first runbook shell189- `scripts/validate_inputs.py` for deterministic input normalisation (optional)