بنقرة واحدة
demo
Audit all project functionality at a high level and produce a 2-3 minute demo run book plus a Marp slideshow
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Audit all project functionality at a high level and produce a 2-3 minute demo run book plus a Marp slideshow
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
File a new bug report in wiki/work/bugs/ with required-on-report fields and append it to the bug index
Orchestrator for parallel agent teams. When invoked with a roadmap file path, drives every item through the full tackle → uat-generate → uat-auto pipeline until complete. When invoked with a task file path, runs that pipeline once and stops.
Refresh codebase context via Serena memories
Append a new item (task link or inline) to an existing roadmap in wiki/work/roadmaps/, optionally under a named phase
Create a structured execution-plan roadmap in wiki/work/roadmaps/ via short Socratic Q&A — captures goal, phases, and the initial hybrid (task-link OR inline) checklist
Execute an outlined task file step-by-step with subagent delegation
| name | demo |
| description | Audit all project functionality at a high level and produce a 2-3 minute demo run book plus a Marp slideshow |
| category | executing |
| model | claude-sonnet-4-6 |
| argument-hint | [path to project directory (defaults to cwd)] [custom instructions] |
| disable-model-invocation | false |
| user-invocable | true |
Always obey .docs/guides/mcp-tools.md. Read it now if not already in context.
Run /primer first if you have not already this session.
Audit the project's features, produce a 2-3 minute demo run book at .docs/demo/runbook.md, then generate a Marp slideshow from it at .docs/demo/runbook.slides.md.
Arguments: $ARGUMENTS
$ARGUMENTS is empty: root = cwd, no custom instructions.Use Serena MCP to explore the project. Never use bash commands for file exploration.
Start by reading Serena memories and the project's README, manifest, and any planning docs in .docs/. Then browse the source tree and use mcp__serena__get_symbols_overview on key files to discover what the project actually does — routes, commands, exported functions, UI entry points.
Compile a feature inventory — a flat list of distinct, user-visible capabilities. For each feature note what it does and how to trigger it (a click path, a command, or a code example). Aim for around a dozen features; collapse trivial variations into a single entry.
Before designing the narrative, collect every stated requirement so the demo can be checked against them.
Check for requirements documents in this order:
wiki/work/requirements/ — read every non-retired PRD file (skip archive/). Extract:
wiki/work/decisions/ — scan accepted ADR decisions for capabilities they mandate or prohibit.
Any other requirements files in .docs/ (e.g. requirements.md, spec.md, brief.md).
Produce a requirements checklist — a flat list of discrete, testable requirements drawn from those sources. Each entry should be one line, e.g. REQ-01: User can sign up with email and password. If no requirements documents exist, note that explicitly and continue.
Cross-reference the requirements checklist against the feature inventory from Phase 1:
You do not need to invent demo steps for gaps — just flag them in Phase 6. The goal is an honest coverage report, not a padded demo.
Design a narrative arc that fits roughly two to three minutes of live demo time. A good arc moves from problem to solution to the "wow" moment:
End with a single closing sentence pointing to next steps or where to learn more. Apply any custom instructions from $ARGUMENTS to shape the narrative.
Create .docs/demo/ if it doesn't exist. Write .docs/demo/runbook.md using this template:
# Demo Run Book — {Project Name}
**Audience**: {who this demo is for}
**Duration**: 2–3 minutes
**Last updated**: {YYYY-MM-DD}
---
## Setup (pre-demo, do not narrate)
- [ ] {prerequisite — e.g., "Start server: `npm run dev`"}
- [ ] {prerequisite — e.g., "Open browser to http://localhost:3000"}
---
## Script
### Hook *(~15 s)*
> {Spoken line. Keep it to one or two sentences.}
### Step 1 — {Feature Name} *(~20 s)*
**Action**: {Exact click path, command, or code to run}
> {Spoken talking point. One short paragraph max.}
**Expected result**: {What the audience sees}
---
*(Repeat the step pattern for each step)*
---
### Wrap *(~15 s)*
> {Spoken closing line. Point to docs, repo, or next steps.}
---
## Timing Guide
| Section | Target |
|---------|--------|
| Hook | 15 s |
| Core flow | ~{N × 15–20} s |
| Power feature | 30 s |
| Wrap | 15 s |
| **Total** | **~{total} s** |
---
## Contingency Notes
- **If {thing} breaks**: {fallback}
- **If asked about {topic}**: {one-line deflection}
Fill every placeholder with real project content. The run book must be self-contained — anyone on the team should be able to deliver the demo cold.
Invoke the marp-slideshow skill on the run book you just wrote:
Delegate to
/marp-slideshow .docs/demo/runbook.md .docs/demo/
The deck must use a GitHub dark style — set the front-matter to a dark background (#0d1117) with light text (#c9d1d9) and accent color (#58a6ff). Write every slide as if you are speaking directly to a stakeholder: tell the story, don't transcribe the run book. One clear idea per slide; no bullet dumps. Speaker notes contain the verbatim spoken line from the run book.
If the marp-slideshow skill is not available, write the deck directly: use marp: true, paginate: true, size: 16:9; apply the GitHub dark style via a style: block; use _class: lead on the title slide; one slide per demo step.
Architecture diagrams: If the project has a meaningful architecture worth showing (layered systems, data flows, service dependencies), follow this two-track approach — one format per destination:
mermaid block directly in .docs/demo/runbook.md at the appropriate section. Keep each diagram small — no more than six or seven nodes. One layer per diagram..docs/demo/<name>.mmd (e.g. architecture.mmd, data-flow.mmd).npx @mermaid-js/mermaid-cli mmdc -i .docs/demo/<name>.mmd -o .docs/demo/<name>.svgOne diagram per slide. Name .mmd files after their content (e.g. system-overview.mmd, data-flow.mmd).
Print a short summary to the user:
npx @marp-team/marp-cli@latest .docs/demo/runbook.slides.md)If any requirements are Gaps, call them out explicitly so the user knows the demo does not cover them.
bash on source files.[UNVERIFIED].