MANOJ21K

13 mods across 1 repository, 2 stars between them.

agentic-code-review

02

MANOJ21K/agentic-code-review

Plugin Claude Code

Multi-agent code review that fans out to specialized subagents (bugs, security, CLAUDE.md compliance, git history, test coverage), scores findings by confidence, filters noise, and reports to the terminal or as inline GitHub PR comments.

2 1mo ago A tokens not measured

bug-hunter

03

MANOJ21K/agentic-code-review

Agent

Hunts correctness bugs that are provable from the code as written — logic errors, off-by-one, null/undefined dereferences, unresolved references, inverted conditions, wrong operators, unreachable code. Requires a concrete failure scenario for every finding. Refuses style, performance speculation, and…

2 1mo ago A 78 tokens

compliance-reviewer

04

MANOJ21K/agentic-code-review

Agent

Reviews changed code for violations of explicit CLAUDE.md rules, and nothing else. Spawned twice in parallel with the changed-file set split between the two instances. Flags only concrete breaches of stated, checkable rules — never general style or quality opinions. Use when the change set is governed by one or more…

2 1mo ago A 73 tokens

context-scout

05

MANOJ21K/agentic-code-review

Agent

Scouts the context a review needs before the reviewers run. Locates every relevant CLAUDE.md file (repo root plus any directory containing a modified file), reads them, and produces a structured summary of the diff — files touched, nature of each change, and where the risk concentrates. Its output is embedded verbatim…

2 1mo ago A 88 tokens

history-analyst

06

MANOJ21K/agentic-code-review

Agent

Reviews a diff against the git history of the files it touches. Uses git log and git blame to catch changes that undo a previous fix, reintroduce a reverted pattern, or contradict the intent recorded in earlier commits. Adds the dimension a code-only reviewer misses — the past. Use when the changed files have…

2 1mo ago A 73 tokens

pr-gatekeeper

07

MANOJ21K/agentic-code-review

Agent

Pre-review gate for pull requests. Given PR metadata, decides whether a full review should run or be skipped (closed, draft, bot-authored, trivial/generated diff, or already reviewed by this tool). Runs first and cheaply so the expensive parallel reviewers never spin up on a PR that shouldn't be reviewed. Use only in…

2 1mo ago A 74 tokens

security-reviewer

08

MANOJ21K/agentic-code-review

Agent

Reviews changed code for security defects introduced or touched by the diff — injection (SQL, shell, path), hardcoded secrets, missing authorization on new endpoints, unsafe deserialization/eval, and sensitive data written to logs. Only flags issues in the changed surface, with a concrete exploit scenario. Use on any…

2 1mo ago A 81 tokens

MANOJ21K/agentic-code-review

Agent

Reviews a diff for test-coverage gaps that matter — new or changed behavior with no covering test, deleted or weakened assertions, and tests that can no longer fail. Flags meaningful gaps in the changed surface; does not demand a coverage percentage or nitpick well-tested code. Use when the diff changes behavior…

2 1mo ago A 75 tokens

code-review

10

MANOJ21K/agentic-code-review

Command

Multi-agent code review of a GitHub PR or the local diff. Fans out to parallel specialized reviewers (bugs, security, CLAUDE.md compliance, git history, test coverage), scores findings by confidence, filters noise, and reports to the terminal or as inline PR comments.

2 1mo ago A 56 tokens

confidence-scoring

12

MANOJ21K/agentic-code-review

Skill Claude CodeCodex

Shared rubric for scoring code-review findings 0-100 and rejecting false positives. Every reviewer agent in the agentic-code-review plugin cites this before emitting a finding, and the orchestrator applies the same threshold when filtering. Use when scoring a review finding or deciding whether an issue is real signal.

2 1mo ago A 63 tokens

review-reporting

13

MANOJ21K/agentic-code-review

Skill Claude CodeCodex

How the agentic-code-review orchestrator renders findings — the terminal report format and the GitHub inline-comment mechanics (gh api calls, full-SHA anchoring, suggestion blocks, one-comment-per-issue dedupe). Use when formatting a code-review result for the terminal or posting review comments to a pull request.

2 1mo ago C 67 tokens