kitlangton/skills

code-walkthrough

Guide a visible, verified code walkthrough in Neovim with Terminal Control and Navi, optionally recording the presentation with OBS or retaining terminal evidence.

First seen Jul 19, 2026

Installation

$ npx skills add kitlangton/skills --skill code-walkthrough

Summary

  • Guide a visible, verified code walkthrough in Neovim with Terminal Control and Navi, optionally recording the presentation with OBS or retaining terminal evidence.
  • Use when the user wants an agent-led code tour, code-along, live source explanation, or recorded terminal walkthrough.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kitlangton/skills.

npx skills add kitlangton/skills

Browse all from kitlangton/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 318
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,347 B
  • docs SUMMARY.md 306 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 71 installs

SKILL.md

Code Walkthrough

Use a verified tour: establish the real code and output first, then guide attention through one immutable Navi tour.

Prepare The Session

  1. Confirm termctrl, Neovim 0.10 or newer, and navi.nvim are available.
  2. Start Neovim in the project root as a visible foreground session:

``bash termctrl run walkthrough -- nvim ``

  1. Use Terminal Control from another process to inspect and drive that same session. Prefer interact through the Terminal Control MCP when available; otherwise use termctrl show, termctrl send, and termctrl wait.
  2. Resize before composing the tour if the visible terminal is too narrow. Keep the size stable while presenting or recording.

The session is ready when the human and agent see the same settled Neovim screen and the agent can inspect it through Terminal Control.

Establish The Journey

  1. Ask what the viewer should understand or be able to explain afterward when the outcome is unclear.
  2. Read the relevant code and run the narrowest command that proves its current behavior.
  3. Inspect the actual visible result. Do not write notes from an expected or remembered result.
  4. Choose one conceptual journey. A useful journey often moves from public behavior to the mechanism that produces it, then to the observed result.

Do not combine an overview, failure diagnosis, implementation tour, and fix into one sequence. The journey is established when each planned stop is necessary to answer one coherent question.

Author One Immutable Tour

Create a JSON file outside the source tree when the tour is temporary. Use literal patterns when they are unique and stable; use line numbers only when exact positions are the point.

[
  {
    "file": "src/example.test.ts",
    "pattern": "it(\"updates subscribers\"",
    "end_pattern": "expect(runs).toBe(2)",
    "message": "The public contract starts here: one write must cause one additional run."
  },
  {
    "file": "src/example.ts",
    "pattern": "export function notify",
    "end_pattern": "subscriber()",
    "message": "The implementation reaches every subscriber through this loop."
  }
]

Load it without modifying it:

:NaviLoad /absolute/path/to/tour.json

Apply these rules:

  • Create at most one tour per assistant response.
  • Treat a shown tour as immutable. Do not rewrite its stops or notes in the same response.
  • Start at the behavior or call site before entering implementation details.
  • Use one range stop for adjacent lines that form one simple mechanism.
  • Use multiple stops only for a genuine journey between distinct locations.
  • Put most of the explanation in short, casual Navi notes; keep chat brief.
  • Keep concise verified output at the decisive assertion or result when it helps explain the behavior.
  • If verification disproves the explanation, stop and say so. Clear or replace the tour only in the next response.

The tour is complete when every stop resolves, the first stop is visible, and its notes agree with the verified code and output.

Present The Tour

Let the viewer control the pace unless asked to drive:

]n           next stop
[n           previous stop
<leader>np  pick a stop
<leader>nc  clear the tour

These are recommended mappings, not Navi defaults. If they are unavailable, use :NaviNext, :NaviPrev, :NaviPick, and :NaviClear.

Pause for questions without replacing the active tour. A follow-up explanation may focus the current range or inspect output, but a different conceptual journey belongs in a later tour.

Record With OBS

Use OBS when the desired artifact is the human-facing presentation, including natural pacing, narration, window chrome, or other visual context.

  1. Add a Window Capture source for the terminal window containing termctrl run.
  2. Crop unrelated tabs, prompts, notifications, and private paths before recording.
  3. Set the terminal size, font size, OBS canvas, and capture crop before authoring the tour so notes wrap exactly as they will in the recording.
  4. Perform a short test recording. Verify text legibility, microphone level, terminal contrast, and that Navi notes fit without clipping.
  5. Start OBS recording, present the immutable tour, then stop recording after the final frame has held long enough to read.

OBS is the primary recording in this branch. Terminal Control remains the agent-control and verification surface.

Retain Terminal Evidence

Use Terminal Control artifacts when the user wants a terminal-native replay, a screenshot, or debugging evidence rather than a full OBS presentation.

  • Capture the current screen at any time with termctrl save walkthrough --format png --out artifacts/current.
  • Recording must be enabled when the session starts; it cannot currently be added to an already-running foreground session.
  • For a terminal-native recording, restart deliberately with --record before presenting:

``bash termctrl run walkthrough --record artifacts/walkthrough.termctrl -- nvim ``

  • Add markers at meaningful moments, then inspect or export the recording after the session ends:

``bash termctrl mark walkthrough contract termctrl mark walkthrough mechanism termctrl markers artifacts/walkthrough.termctrl termctrl video artifacts/walkthrough.termctrl --out artifacts/walkthrough.mp4 ``

Do not record or retain terminal input, source, paths, or output that may contain secrets unless the user explicitly needs that artifact.

Finish

Clear the tour and stop the session unless the user wants it left open:

:NaviClear
termctrl stop walkthrough

Report the verified behavior, the journey presented, and any retained artifact paths. The walkthrough is complete when the viewer has traversed the journey, the terminal session has the requested final state, and every promised artifact has been checked.

Tool References