← All plugins
review-sentinel
v1.4.2Code review skills for agent workflows: diff triage, test-gap detection, and API surface checks that run before a human ever opens the PR.
3 skills
by LoomworksMIT4.9kupdated 1 month ago
Install
git clone https://github.com/loomworks/review-sentinelClone into your agent client’s plugin directory — components are discovered from fixed locations per the spec.
Layout
review-sentinel/
├── plugin.json└── skills/├── changelog-check/│ └── SKILL.md├── pr-review/│ └── SKILL.md└── security-pass/└── SKILL.md
Skills3
changelog-checkskills/changelog-check/
Verify the changelog entry matches the actual change and flags breaking changes explicitly.
pr-reviewskills/pr-review/
Review a pull request diff for correctness, missing tests, and unreviewed API surface changes.
security-passskills/security-pass/
Second-pass review focused on injection risks, authz checks, and unsafe deserialization in the diff.
Manifest
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "review-sentinel",
"version": "1.4.2",
"description": "Code review skills for agent workflows: diff triage, test-gap detection, and API surface checks that run before a human ever opens the PR.",
"author": {
"name": "Loomworks"
},
"repository": "https://github.com/loomworks/review-sentinel",
"license": "MIT",
"keywords": [
"code-review",
"quality",
"git"
]
}