code-review
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md [1/6] Description: --- name: code-review description: Review code for AEM Edge Delivery Services projects.
Tool: SKILL.md [2/6] Description: specificity instead */ main .my-block .button { color: white; } /* BAD: Mixed breakpoint directions */ @media (max-width: 600px) { } @media (min-width: 900px) { } /* GOOD: Consistent mobile-first */ @media (min-width: 600px) { } @media (min-width: 900px) { } /* BAD: CSS in JS patterns */ element.innerHTML = '<style>.foo { color: red; }</style>'; /* GOOD: Use external CSS files */ ``` #### 3.3 HTML Review - [ ] Semantic HTML5 elements used appropriately - [ ] Pro
Tool: SKILL.md [3/6] Description: URLs Validated - [ ] Before: [URL] - [ ] After: [URL] ### Visual Preview #### Desktop (1200px)  #### Mobile (375px)  <details> <summary>Additional Screenshots</summary> #### Tablet (768px)  #### Block Detail  </details> ### Visual Assessment - [ ] Layout renders correctly across viewports - [
Tool: SKILL.md [4/6] Description: ✅ Error handling improvements - ✅ CSS selector refactoring (removes linter disables) After applying, run \`npm run lint\` to verify all checks pass!
Tool: SKILL.md [5/6] Description: Reduced review cycles - ✅ Better PR author experience #### Real-World Example **PR #196: Support unpublished pages in diff tool** Issues identified in review: 1.
Tool: SKILL.md [6/6] Description: - Breaking existing functionality - Performance regressions (Lighthouse score drop) - Accessibility violations - Modifications to `aem.js` ### Should Fix (High Priority) Issues that SHOULD be resolved: - `!important` usage without justification - Unscoped CSS selectors - Hardcoded values that should be configurable - Missing error handling - Console statements left in code - CSS in JavaScript ### Consider (Suggestions) Improvements to consider: - Code organizati
Malicious tool definition detected
Tool: resources/review-checklist.md [1/2] Description: # PR Review Checklist Detailed checklist for reviewing Edge Delivery Services pull requests.
Tool: resources/review-checklist.md [2/2]
Malicious tool definition detected
Tool: scripts/capture-screenshots.js Description: /** * Screenshot capture utility for PR reviews * * Captures screenshots of preview URLs at multiple viewport sizes * for visual validation during PR review.
Malicious tool definition detected
Tool: scripts/package.json Description: { "name": "code-review-scripts", "version": "1.0.0", "description": "Screenshot capture utilities for code review skill", "type": "module",