Skip to main content

security-review

Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.

설치로 이동

소스 정보

저장소
hoangsonww/AI-Agents-Orchestrator
최근 소스 활동
2026년 4월 4일 03:50
감지된 SKILL.md 언어
영어
스타
84
포크
27

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
security-review
description
Review code changes for security vulnerabilities, authentication gaps, injection risks, and unsafe patterns. Use before merging PRs or after security-sensitive changes.
## Diff to review Review the current branch changes against main: ```bash git diff main...HEAD ``` If no diff is available, review the most recent commit: ```bash git diff HEAD~1 ``` ## Audit the changes for: 1. **Injection vulnerabilities** — SQL injection, XSS, command injection via unsanitized input 2. **Authentication & authorization gaps** — missing auth checks, broken RBAC, token handling issues 3. **Hardcoded secrets** — API keys, passwords, tokens in source code 4. **Path traversal** — unsanitized file paths that could escape intended directories 5. **Unsafe subprocess calls** — raw subprocess without CLICommunicator, shell=True usage 6. **Dependency issues** — known vulnerable packages, pinning concerns ## Use the checklist in this skill directory See `references/checklist.md` for the full security review checklist. ## Report format For each finding: - **Severity**: Critical / High / Medium / Low - **File**: path and line number - **Issue**: what the vulnerability is - **Fix**: concrete remediation steps
GitHub에서 보기