Skip to content
BeClaude

shipcheck

New
10GitHub TrendingGeneralby lohani-mohit

🚦 Senior-QA review skill for Claude Code: runs a regression hunter + a change reviewer in parallel, then gives one read-only SIGN OFF / DO NOT SHIP verdict with file:line evidence.

Summary

Shipcheck runs a regression hunter and a change reviewer in parallel to analyze code changes, then delivers a single read-only verdict of SIGN OFF or DO NOT SHIP with file:line evidence.

  • It helps developers catch regressions and review changes efficiently before merging.

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/shipcheck.md https://raw.githubusercontent.com/lohani-mohit/shipcheck/main/SKILL.md
3
Invoke in Claude Code
/shipcheck

Use Cases

Run a regression check on a pull request to identify potential side effects before merging.
Review a set of changes for code quality and correctness with file-level evidence.
Get a quick sign-off or block signal for a commit before deployment.
Analyze a branch diff for both regressions and review issues in one pass.
Validate that a hotfix doesn't introduce new bugs while also checking code standards.
Use as a pre-merge gate to ensure code meets quality criteria without manual review.

Usage Examples

1

/shipcheck analyze the current branch diff and give a verdict.

2

Run shipcheck on the latest commit to check for regressions and review issues.

3

/shipcheck review the changes in pull request #42 and provide evidence for any problems.

View source on GitHub
code-review

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is shipcheck?

Shipcheck runs a regression hunter and a change reviewer in parallel to analyze code changes, then delivers a single read-only verdict of SIGN OFF or DO NOT SHIP with file:line evidence. It helps developers catch regressions and review changes efficiently before merging.

How to install shipcheck?

To install shipcheck: create the skills directory (mkdir -p .claude/skills), then run: mkdir -p .claude/skills && curl -o .claude/skills/shipcheck.md https://raw.githubusercontent.com/lohani-mohit/shipcheck/main/SKILL.md. Finally, /shipcheck in Claude Code.

What is shipcheck best for?

shipcheck is a skill categorized under General. It is designed for: code-review. Created by lohani-mohit.

What can I use shipcheck for?

shipcheck is useful for: Run a regression check on a pull request to identify potential side effects before merging.; Review a set of changes for code quality and correctness with file-level evidence.; Get a quick sign-off or block signal for a commit before deployment.; Analyze a branch diff for both regressions and review issues in one pass.; Validate that a hotfix doesn't introduce new bugs while also checking code standards.; Use as a pre-merge gate to ensure code meets quality criteria without manual review..