소스 정보
- 저장소
- ilovekushgola/business-operating-system
- 최근 소스 활동
- 2026년 4월 24일 09:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ilovekushgola/business-operating-system --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | code-review |
| description | Code review practices, quality gates, security review |
| version | 2.0.0 |
| tags | ["engineering","code-review","quality"] |
| agents | ["universal"] |
Comprehensive code review including practices, checklists, and security considerations.
USE THIS SKILL when:
DO NOT USE for:
AUTHOR SUBMITS → REVIEWERS ASSIGNED → REVIEW HAPPENS → FEEDBACK GIVEN → CHANGES MADE → APPROVED → MERGE
↓
CHANGES REQUESTED
| Priority | Category | Examples |
|---|---|---|
| CRITICAL | Security | Hardcoded secrets, SQL injection |
| HIGH | Correctness | Bugs, logic errors |
| HIGH | Performance | N+1 queries, no caching |
| MEDIUM | Code quality | Duplication, complexity |
| LOW | Style | Formatting, naming |
### Security (CRITICAL) - Check All
- [ ] No hardcoded secrets (API keys, passwords)
- [ ] No SQL injection vulnerabilities
- [ ] No XSS vulnerabilities
- [ ] Authentication properly implemented
- [ ] Authorization checks in place
- [ ] Input validation
- [ ] Output encoding
- [ ] No sensitive logging
- [ ] Dependencies up to date
### Correctness (HIGH) - Check All
- [ ] Logic correct for all cases
- [ ] Edge cases handled
- [ ] Error handling complete
- [ ] No null pointer exceptions
- [ ] Race conditions handled
- [ ] Concurrent access safe
- [ ] Memory management correct
### Performance (MEDIUM) - Check All
- [ ] No N+1 queries
- [ ] Appropriate indexing
- [ ] Caching implemented
- [ ] Pagination for large data
- [ ] Lazy loading where appropriate
- [ ] Batch operations used
- [ ] No unnecessary loops
### Code Quality (LOW) - Check All
- [ ] Functions < 50 lines
- [ ] Files < 500 lines
- [ ] No code duplication
- [ ] Clear naming
- [ ] Comments for complex logic
- [ ] Tests included
- [ ] No commented-out code
Good Feedback:
### Suggestion - [Category]
**Issue**: [Brief description of issue]
**Why**: [Impact of the issue]
**Suggestion**: [How to fix]
[Code example if applicable]
Example Good Feedback:
### Concern - Security
**Issue**: API key hardcoded at line 42
**Why**: Exposing secrets in source code is a security risk. These will be committed to git history.
**Suggestion**: Use environment variables:
const apiKey = process.env.API_KEY;
| Situation | Language |
|---|---|
| Must change | "This needs to be fixed before merge" |
| Should change | "Consider updating this" |
| Nice to have | "Optional: could improve by..." |
| Nitpick | "Nit: prefer [X]" |
| Question | "Question: why did you choose [X]?" |
| Praise | "Nice solution!" |
## Code Review: [PR #NUMBER]
### Summary
| Category | Count | Status |
|----------|-------|--------|
| Security | 1 | Changes needed |
| Correctness | 2 | Changes needed |
| Performance | 0 | None |
| Quality | 3 | Suggestions |
### Issues to Address
1. [CRITICAL] - [Issue 1]
2. [HIGH] - [Issue 2]
3. [HIGH] - [Issue 3]
### Suggestions
1. [Optional suggestion 1]
2. [Optional suggestion 2]
### What's Good
- Clean function structure
- Good error handling
- Tests included
### Decision
- [ ] APPROVED - Merge
- [ ] CHANGES REQUESTED - Address issues then re-review
- [ ] REJECTED - Needs redesign
| PR Size | Expected Review Time |
|---|---|
| <100 lines | Same day |
| 100-400 lines | 24 hours |
| 400+ lines | Split into smaller PRs |
### #1: Hardcoded Secrets
// BAD
const apiKey = "sk-abc123";
// GOOD
const apiKey = process.env.API_KEY;
// BAD - SQL Injection
const query = `SELECT * FROM users WHERE id = ${userId}`;
// GOOD - Parameterized query
const query = `SELECT * FROM users WHERE id = $1`;
await db.query(query, [userId]);
### #2: Authentication Issues
// BAD - Missing auth check
app.post('/api/delete', (req, res) => {
deleteItem(req.body.id);
});
// GOOD - Auth check
app.post('/api/delete', requireAuth, (req, res) => {
deleteItem(req.body.id);
});
| Metric | Target |
|---|---|
| Review coverage | 100% |
| Review completion | <48 hours |
| Bugs post-merge | <5% |
| Security issues | 0 critical |
All SKILL.md agents ✅