agentsclimarketplace

Proc code review

Skill barcelosvinicius/basic-engineering/plugins/be/skills/proc-code-review

Claude Code plugin + npm base for AI-assisted engineering: 25 skills, 12 agents, slash commands, session-continuity hook. Also works with Copilot, Cursor, and others.

Install
npx -y skills add barcelosvinicius/basic-engineering --skill proc-code-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when reviewing a PR, requesting review from another agent, or implementing a quality gate before merge. Structured review protocol — per-layer checklists, responsibility by change type, feedback categories, and delegation between agents.

SKILL.md

5.1 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Skill: Code Review Protocol

What this skill is

Defines the structured protocol for code review between agents and humans. Use when reviewing a PR, requesting review from another agent, or implementing a quality gate before merge.

Principle: Code review is not style auditing. It is the moment to catch what the author cannot see because they are too close to the code.


Responsibility by change type

Change typePrimary reviewerAdditional reviewer
New endpoint or DTObackend-developersecurity-reviewer
Change in authentication/authorizationsecurity-reviewerqa-engineer
New UI componentfrontend-developerQA (if there is E2E)
Change in business calculationbackend-developerdomain-expert
Complex JPQL/SQL querybackend-developerdata-analyst
Database migrationbackend-developerPM (confirm window)
Upload or file processingsecurity-reviewerbackend-developer
Full feature (backend + frontend)project-manager coordinatesAll of the above

What to review — by layer

Backend

Correctness:

  • Does the implemented logic match the requirement (RF-XX)?
  • Are edge cases handled (null, empty, zero value, overflow)?
  • Are database transactions correct (readOnly on reads, rollback on failures)?
  • Is N+1 avoided (batch queries, no select loops)?

Security:

  • Is the new endpoint mapped in SecurityConfig (public or protected)?
  • Is authorization checked on the server, not only on the client?
  • Is input validated before use (Bean Validation, sanitization)?
  • Is the JPA entity not returned directly (use DTO)?
  • Are secrets out of the code?

Quality:

  • Constructor injection used (not field @Autowired)?
  • Are custom exceptions thrown (not generic exceptions)?
  • Do unit tests cover the new behavior?
  • Was a versioned migration created if the schema changed? (see be-db-migrations)

Frontend

Correctness:

  • Does the component consume the API correctly (typing, error handling)?
  • Is a loading state present for async operations?
  • Is the empty state handled for lists?

UX (see the fe-ux-patterns skill):

  • Visual feedback after actions (toast, button disable)?
  • Confirmation before destructive actions?
  • Clear visual hierarchy (is the most important thing highlighted)?

Accessibility (see the fe-accessibility-patterns skill):

  • Interactive elements with semantic tags?
  • Inputs with associated labels?
  • Visible focus on all interactive elements?

Performance:

  • Chart instances destroyed in OnDestroy?
  • Subscriptions canceled in OnDestroy?
  • Debounce on search fields?

General

  • No console.log / println of sensitive data?
  • Comments explain why, not what; no stale or commented-out code? (see proc-code-documentation)
  • Naming consistent with the rest of the system?
  • Does the PR reference an issue with Closes #N?
  • Were docs updated if there was an architectural decision?

How to give review feedback

Tone and structure

❌ "This is wrong."

✅ "This method may generate N+1 when `transactions` has many records.
   Consider using @Query with JOIN FETCH or a batch fetch.
   Ref: engineering-principles.md §4.3"

Comment categories:

  • [BLOCKING] — cannot merge without resolving
  • [SUGGESTION] — improvement, not mandatory for this PR
  • [QUESTION] — understand the intent before judging
  • [PRAISE] — acknowledge good practices found

What is NOT review responsibility

  • Code style covered by linter (leave it to automation)
  • Personal preferences without technical justification
  • Nitpicks in code that will be refactored next sprint

Delegation protocol between agents

When an agent identifies something outside its area during review:

backend-developer reviews PR → finds Angular component with XSS potential
→ Trigger security-reviewer: "Line 42 of transaction-list.component.html
  uses innerHTML without sanitization. See OWASP A03."

security-reviewer reviews PR → finds incorrect commitment calculation
→ Trigger domain-expert: "Formula in DashboardService.calcComprometimento()
  divides expenses by gross_income. Confirm whether it should be net_income."

Automatic gates before merge

# What must be green before any merge:
- Build: no compilation errors
- Tests: all passing (coverage ≥ project target)
- Linter: no errors (warnings tolerated)
- Static analysis: no critical issues
- Security scan: no unmitigated critical/high CVEs
- 1 human approval: mandatory (agents do not approve merge)

Reference: engineering-principles.md §10.2 (Branch Protection), §11.3 (Checklist)

Gives 0 of the 12 instructions most code review skills give in ~1.1k tokens

Counted across 610 of the 674 authors here whose files we hold, read 2026-08-06

  • push back with technical reasoning if wrongin 60 of 610, across 24 files
  • ask for clarification on unclear itemsin 51 of 610, across 16 files
  • fix critical issues immediatelyin 45 of 610, across 29 files
  • implement one item at a timein 45 of 610, across 11 files
  • group findings by severityin 44 of 610, across 43 files
  • verify feedback against the codebasein 42 of 610, across 8 files
  • dispatch a code reviewer subagentin 39 of 610, across 23 files
  • fix important issues before proceedingin 37 of 610, across 22 files
  • test each fix individuallyin 35 of 610, across 7 files
  • reply in github comment threadsin 33 of 610, across 5 files
  • check for security vulnerabilitiesin 31 of 610, across 27 files
  • factualize corrections without over-explainingin 30 of 610, across 2 files

Said here and by no other author read

  • expose data transfer objects not entities
  • confirm authorization checks on the server
  • add loading and empty states for asynchronous operations
  • cancel subscriptions on destroy
  • categorize review feedback as blocking or suggestion
  • delegate outside areas to other agents

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.