
Read and address code review findings from .scratch/reviews/ for the current branch.
Systematic debugging — root cause first, then fix. No fixes without understanding why it's broken.
This skill should be used when about to perform an irreversible or hard-to-undo action on a device, system, or production environment. Trigger when deploying payloads, flashing firmware, writing to hardware, modifying boot sequences, overwriting files on embedded devices, sending destructive USB commands, triggering device reboots with staged changes, or any action where failure means bricking or requiring physical recovery. Also applies to database migrations, production deployments, and any 'point of no return' operation.
Must read guide on creating/editing mermaid charts with valiation tools
Plan a change — refactor, architecture update, or generic task.
Research a topic and distill into reference docs. Use 'deep' for parallel multi-source research.
Code review from a fresh context. Run in a separate session — no knowledge of implementation decisions.
Remote control tmux sessions for interactive CLIs (python, gdb, etc.) by sending keystrokes and scraping pane output.
Structured performance optimization workflow: edit, benchmark, compare, decide (keep/revert). Prevents common anti-patterns like over-tuning, re-deriving known results, and missing reverts.
Save current session state for handoff to a new context.
Full audit of llm-context/, CLAUDE.md, and README against actual codebase.
Read this skill before making git commits
Update llm-context/ and CLAUDE.md to reflect recent code changes.
Ship — run checks, bump version, changelog, push, create PR.
Initial project plan — architecture, MVP scope, and vision. Used once at the start of a project.
Plan and start a new feature on a branch.
Analyze coding agent session transcripts to improve existing skills or create new ones. Use when asked to improve a skill based on a session, or extract a new skill from session history.
Retrospective — analyze recent work patterns and outcomes from git history.
Allows to interact with web pages by performing actions such as clicking buttons, filling out forms, and navigating links. It works by remote controlling Google Chrome or Chromium browsers using the Chrome DevTools Protocol (CDP). When Claude needs to browse the web, it can use this skill to do so.
Fetch a URL or convert a local file (PDF/DOCX/HTML/etc.) into Markdown using `uvx markitdown`, optionally it can summarize
Design and implement distinctive, production-ready frontend interfaces with strong aesthetic direction. Use when asked to create or restyle web pages, components, or applications (HTML/CSS/JS, React, Vue, etc.).
Cache and refresh remote git repositories under ~/.cache/checkouts/<host>/<org>/<repo> so future references can reuse a local copy. Use this skill when the user points you to a remote git repository as reference or you encountered a remote git repo through other means.