github

masoncl / review-prompts

  • среда, 4 февраля 2026 г. в 00:00:01
https://github.com/masoncl/review-prompts

AI review prompts



Review Prompts for AI-Assisted Code Review

AI-assisted code review prompts for Linux kernel and systemd development. Works with Claude Code and other AI tools.

Quick Start

Install Kernel Prompts Only

cd kernel/scripts
./claude-setup.sh

Install systemd Prompts Only

cd systemd/scripts
./claude-setup.sh

Install Both

cd kernel/scripts && ./claude-setup.sh
cd ../systemd/scripts && ./claude-setup.sh

Available Commands

Project Review Debug Verify
Kernel /kreview /kdebug /kverify
systemd /systemd-review /systemd-debug /systemd-verify

Project Documentation

How It Works

Each project has:

  • Skill file - Automatically loads context when working in the project tree
  • Slash commands - Quick access to review, debug, and verify workflows
  • Subsystem files - Domain-specific knowledge loaded on demand

The skills detect your working directory and load appropriate context:

  • In a kernel tree: kernel skill loads automatically
  • In a systemd tree: systemd skill loads automatically

Structure

review-prompts/
├── kernel/                    # Linux kernel prompts
│   ├── skills/               # Skill template
│   ├── slash-commands/       # /kreview, /kdebug, /kverify
│   ├── scripts/              # Setup script and utilities
│   ├── patterns/             # Bug pattern documentation
│   └── *.md                  # Subsystem and protocol files
│
├── systemd/                   # systemd prompts
│   ├── skills/               # Skill template
│   ├── slash-commands/       # /systemd-review, /systemd-debug, /systemd-verify
│   ├── scripts/              # Setup script
│   ├── patterns/             # Bug pattern documentation
│   └── *.md                  # Subsystem and protocol files
│
└── README.md                  # This file

Semcode Integration

These prompts work best with semcode for fast code navigation and semantic search.

License

See kernel/LICENSE for license information.