Agent skill

prepare-walkthrough-presentation

Convert linear-walkthrough output into presentation-ready deck outlines per major codebase component. Use after running /linear-walkthrough to produce onboarding decks, architecture review decks, or operational review decks. Reads walkthrough artifacts (unified walkthrough, per-section files, validation reports, coverage maps, entry points, open questions) and generates structured slide outlines with speaker notes, evidence references, and suggested visuals. Use when you need to create a presentation, prepare a walkthrough deck, or summarize architecture.

Stars 33
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/Jamie-BitFlight/claude_skills/tree/main/.claude/skills/prepare-walkthrough-presentation

SKILL.md

Prepare Walkthrough Presentation

Transform validated /linear-walkthrough output into one presentation-ready deck outline per major codebase component. Each deck explains what the component is, how it works, how it connects to the system, how it is developed and operated, and what risks remain.

Walkthrough directory: <walkthrough-directory> (default: ./walkthrough/ in the current directory).

Output directory: <walkthrough-directory>/presentation/ (created if it does not exist).

Workflow

mermaid
flowchart TD
    Start(["Invoke /prepare-walkthrough-presentation"]) --> P1
    P1["Phase 1: Component Extraction and Deck Planning<br>1 agent — read walkthrough outputs, identify components,<br>build deck plan per component"] --> P1Out
    P1Out["Artifacts:<br>presentation/component-index.md<br>presentation/deck-plans/component-deck-plan-{name}.md"] --> P2
    P2["Phase 2: Deck Generation<br>N parallel agents — build narrative and generate<br>full deck outline per component in one pass"] --> P2Out
    P2Out["Artifacts:<br>presentation/decks/component-deck-outline-{name}.md"] --> P3
    P3["Phase 3: Validation<br>M parallel agents — fact-check decks against<br>walkthrough sources, check cross-deck consistency"] --> P3Out
    P3Out["Artifacts:<br>presentation/validation/component-deck-validation-{name}.md"] --> P4
    P4["Phase 4: Packaging<br>1 agent — produce crosswalk index, apply corrections,<br>finalize all deck outlines"] --> P4Out
    P4Out["Artifacts:<br>presentation/presentation-crosswalk.md<br>presentation/decks/ (finalized)"] --> Done(["Complete"])

Inputs

Read these artifacts from the walkthrough directory (all paths below are relative to that directory):

Artifact Path Required
Unified walkthrough unified-walkthrough.md or unified/index.md Yes
Walkthrough sections sections/walkthrough-section-*.md Yes
Validation reports validation/validation-report-*.md Yes
Coverage plan coverage-plan.md Yes
Entry points entry-points.md Yes
Open questions open-questions.md Yes

Input Validation

Before starting Phase 1, verify all required walkthrough artifacts exist. Check for unified-walkthrough.md (or unified/index.md), at least one file matching sections/walkthrough-section-*.md, coverage-plan.md, entry-points.md, and open-questions.md. If any required artifact is missing, stop and report which files are absent.

Phase 1: Component Extraction and Deck Planning

Spawn one general-purpose agent to read walkthrough outputs and produce a component index and per-component deck plans.

Agent prompt context

Include these in the agent prompt (pass file paths — do not transcribe file contents):

  • Walkthrough directory path
  • File path: agent-instructions.md — agent reads section "Planning Agent Instructions"
  • File path: output-format.md — agent reads sections "Component Index Format" and "Deck Plan Format"

Agent deliverables

Artifact Path
Component index presentation/component-index.md
Deck plans presentation/deck-plans/component-deck-plan-{name}.md (one per component)

Orchestrator actions after Phase 1

  1. Read presentation/component-index.md to get the component list and deck-to-component mapping.
  2. Proceed to Phase 2 with one agent per component. Each agent reads its own deck plan.

Phase 2: Deck Generation

Spawn N parallel general-purpose agents — one per component from the deck plan. Each agent constructs the presentation narrative and generates the full deck outline in a single pass, eliminating the intermediate narrative artifact.

Agent prompt context (per agent)

Include these in the agent prompt (pass file paths — do not transcribe file contents):

  • Component deck plan file path
  • Walkthrough directory path (for reading source sections and evidence references)
  • File path: agent-instructions.md — agent reads section "Deck Generation Agent Instructions"
  • File path: output-format.md — agent reads sections "Deck Outline Format" and "Slide Format"

Agent deliverables (per agent)

Artifact Path
Deck outline presentation/decks/component-deck-outline-{name}.md

Orchestrator actions after Phase 2

  1. Verify all expected deck outline files exist.
  2. Proceed to Phase 3.

Phase 3: Validation

Spawn M parallel general-purpose agents. Each validator checks one or more deck outlines against the source walkthrough.

Validator cross-assignment: rotate deck assignments so validator 1 checks decks from generation agent 2, validator 2 checks decks from generation agent 3, and so on (wrapping around). If there are fewer validators than generation agents, each validator checks multiple decks. If there is only one deck, the single validator checks it (self-validation is acceptable when no alternative exists).

Agent prompt context (per validator)

Include these in the agent prompt (pass file paths — do not transcribe file contents):

  • Assigned deck outline file paths
  • Walkthrough directory path
  • Other deck outline file paths (for cross-deck consistency checks)
  • File path: agent-instructions.md — agent reads section "Deck Validation Agent Instructions"
  • File path: output-format.md — agent reads section "Deck Validation Report Format"

Agent deliverables (per validator)

Artifact Path
Validation report presentation/validation/component-deck-validation-{name}.md

Orchestrator actions after Phase 3

  1. Read all validation reports.
  2. If critical corrections exist (unsupported claims, invented architecture, incorrect sequencing), spawn a new general-purpose agent per affected deck to apply the corrections. Pass the agent the validation report and deck outline file path. The agent edits the deck file in place.
  3. Proceed to Phase 4.

Phase 4: Packaging

Spawn one general-purpose agent to finalize all deck outlines and produce the crosswalk index.

Agent prompt context

Include these in the agent prompt (pass file paths — do not transcribe file contents):

  • Directory path: presentation/decks/ — agent reads all deck outline files
  • Directory path: presentation/validation/ — agent reads all validation reports
  • File path: presentation/component-index.md
  • File path: agent-instructions.md — agent reads section "Packaging Agent Instructions"
  • File path: output-format.md — agent reads section "Presentation Crosswalk Format"

Agent deliverables

Artifact Path
Presentation crosswalk presentation/presentation-crosswalk.md
Finalized deck outlines presentation/decks/ (corrections applied)

Large output handling

If the crosswalk or any deck outline exceeds 25k characters, apply the large file write strategy using Strategy A (multi-file split).

Deck Planning Heuristics

  • One deck per major component by default.
  • Merge when two components are too small or too tightly coupled to explain separately.
  • Split when one component is too broad to explain coherently in one deck.
  • A component may be an app, service, package, library, worker, pipeline, platform layer, or other meaningful architectural unit.

Default Audience

Technical audience: engineers, tech leads, platform owners, SRE/DevOps engineers, and engineering managers.

Presentation Style

  • Optimize for technical clarity, not executive fluff.
  • Use concise, high-signal slide text — avoid dense paragraphs.
  • Put detailed explanation in speaker notes.
  • Make each deck readable standalone but consistent with other decks.
  • Use consistent naming, terms, and structural patterns across all decks.

Evidence Handling

  • Every substantive slide references the walkthrough sections, validation reports, or source artifacts that support it.
  • Distinguish verified facts from inferred connections.
  • Preserve unresolved uncertainty from the walkthrough — do not smooth it away.

Resources

  • Agent instructions — detailed prompts for each agent type (planning, deck generation, validation, packaging)
  • Output format — required structure and templates for all artifacts

Expand your agent's capabilities with these related and highly-rated skills.

Jamie-BitFlight/claude_skills

ccc

This skill should be used when code search is needed (whether explicitly requested or as part of completing a task), when indexing the codebase after changes, or when the user asks about ccc, cocoindex-code, or the codebase index. Trigger phrases include 'search the codebase', 'find code related to', 'update the index', 'ccc', 'cocoindex-code'.

33 4
Explore
Jamie-BitFlight/claude_skills

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.

33 4
Explore
Jamie-BitFlight/claude_skills

delegate

Quick delegation template for sub-agent prompts. Use when assigning work to a sub-agent, before invoking the Agent tool, or when preparing prompts for specialized agents. Provides the WHERE-WHAT-WHY framework. For comprehensive delegation guidance, activate the agent-orchestration how-to-delegate skill.

33 4
Explore
Jamie-BitFlight/claude_skills

swarm-spawning

Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (in-process, tmux, iterm2), or setting environment variables for spawned agents.

33 4
Explore
Jamie-BitFlight/claude_skills

knowledge-explorer

Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub repo metadata into a draft KB entry, or migrating old-format entries to skill-spec frontmatter. Triggers on tasks like "what do we have on X", "add this to the KB", "update the KB entry for Y", "fetch github info for owner/repo", or "migrate old entries".

33 4
Explore
Jamie-BitFlight/claude_skills

design-anti-patterns

Enforce anti-AI UI design rules based on the Uncodixfy methodology. Use when generating HTML, CSS, React, Vue, Svelte, or any frontend UI code. Prevents "Codex UI" — the generic AI aesthetic of soft gradients, floating panels, oversized rounded corners, glassmorphism, hero sections in dashboards, and decorative copy. Applies constraints from Linear/Raycast/Stripe/GitHub design philosophy: functional, honest, human-designed interfaces. Triggers on: UI generation, dashboard building, frontend component creation, CSS styling, landing page design, or any task producing visual interface code.

33 4
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results