claude/ai-resources-plugin/skills/changes-tour-guide/SKILL.md
--- name: changes-tour-guide description: Walk through recent code changes pedagogically: a two-phase markdown guide (overview, then detailed explanations) in dependency order. allowed-tools: Read, Write, Bash(git diff:*), Bash(git log:*), Bash(git status:*), Bash(git show:*) disable-model-invocation: true --- # Code Change Review Guide Creator Create a structured markdown document that walks a reader through code changes in a clear, logical, and pedagogical manner using a two-phase approach.
npx skillsauth add amhuppert/my-ai-resources claude/ai-resources-plugin/skills/changes-tour-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a structured markdown document that walks a reader through code changes in a clear, logical, and pedagogical manner using a two-phase approach.
<user_scope> $ARGUMENTS </user_scope>
% git log --oneline -20
!`git log --oneline -20`
% git status --short
!`git status --short`
% git diff --stat
!`git diff --stat`
% git diff --cached --stat
!`git diff --cached --stat`
Determine which code changes to include in this review guide:
git diff, git show, or read files directly to gather full change detailsBefore writing the review guide, plan your approach inside a <planning> section in your thinking block:
Thorough planning leads to better guides. It's OK for the planning section to be long.
Phase 1: High-Level Overview
Phase 2: Detailed Walkthrough
Include:
Avoid:
After completing planning in the thinking block, write the review guide inside <review_guide> tags following this structure:
<review_guide>
# Code Change Review Guide
## Overview
[High-level summary of all changes]
## Phase 1: High-Level Overview
### [First Component/File - in logical order]
[Brief explanation]
### [Second Component/File - in logical order]
[Brief explanation]
## Phase 2: Detailed Walkthrough
### [First Component/File - same order as Phase 1]
[Detailed explanation with code snippets and rationale]
### [Second Component/File - same order as Phase 1]
[Detailed explanation with code snippets and rationale]
## Summary
[Key takeaways]
</review_guide>
Save the guide as a markdown file in the memory-bank/ directory with a descriptive filename based on the changes reviewed (e.g., memory-bank/auth-refactor-review-guide.md). The final output should contain only the review guide — do not duplicate planning work from the thinking block.
tools
Use when picking or vetting a keyboard shortcut on macOS. Triggers include "what hotkey should I use for X", "is `<combo>` available", "does this shortcut conflict", "recommend a keybinding for…", "check `<combo>` against my setup", "pick a hotkey for…", or any mention of choosing/binding/changing a shortcut in WezTerm, tmux, Zed, Chrome, Claude Code, or macOS. Determines whether a proposed combo collides with OS-reserved bindings, app defaults, or the user's customizations, and recommends ergonomic alternatives when needed.
development
Detect and remove dead code with knip. Use when the user asks to "run knip", "find unused files", "find unused exports", "find unused dependencies", "clean up dead code", "remove dead code", "set up knip", "configure knip", "knip.json", "knip false positive", "knip CI", or mentions a `knip` config, dependency bloat, bundle bloat from unused imports, or tree-shaking unused exports. Covers the configuration-first workflow, confidence-gated deletion, framework-specific gotchas (Next.js 15+, Tailwind, Storybook, Jest, Bun's test runner and `bun build --compile`), monorepos, CI integration, and performance tuning.
tools
This skill should be used when the user asks to "set up react-scan", "install react-scan", "diagnose React re-renders", "find unnecessary renders", "find unstable props", "automate React render checks with Playwright", "react-scan + playwright", "measure component renders programmatically", "check why a React component is slow", or mentions React rendering issues, slow React interactions, render counts, or component-level perf attribution. Covers install across Next.js/Vite/Remix/script-tag/browser-extension, the lite headless API for CI, and the canonical render-attribution → fix → validate loop driven through Playwright.
documentation
This skill should be used when integrating source material into a knowledge base, including when the user asks to "integrate this document into the knowledge base", "add this transcript to the memory bank", "ingest this document", "update the knowledge base", "analyze a new source document", or "sync current-state docs with this source".