AI-assisted code review prompts for Linux kernel and systemd development. Works with Claude Code and other AI tools.
cd kernel/scripts
./claude-setup.shcd systemd/scripts
./claude-setup.shcd kernel/scripts && ./claude-setup.sh
cd ../systemd/scripts && ./claude-setup.sh| Project | Review | Debug | Verify |
|---|---|---|---|
| Kernel | /kreview |
/kdebug |
/kverify |
| systemd | /systemd-review |
/systemd-debug |
/systemd-verify |
- Kernel Review Prompts - Linux kernel specific patterns and protocols
- systemd Review Prompts - systemd specific patterns and protocols
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
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
These prompts work best with semcode for fast code navigation and semantic search.
See kernel/LICENSE for license information.