원클릭으로
sentinel-criteria
Evaluation criteria for the SENTINEL reviewer agent
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Evaluation criteria for the SENTINEL reviewer agent
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Core coding skill for the FORGE builder agent
Planning skill for the FORGE builder agent
Review skill for the SENTINEL reviewer agent
Create generative, code-based art and visualizations using P5.JS and algorithmic principles.
Visual philosophy and design principles for creating impactful visual content.
Create distinctive, production-grade frontend interfaces with high design quality. Focuses on premium aesthetics and avoiding "AI slop".
| name | sentinel-criteria |
| description | Evaluation criteria for the SENTINEL reviewer agent |
Does the implementation correctly handle all cases described in CONTRACT.md? Does it handle the error paths, edge cases, and boundary conditions?
FAIL: any CONTRACT criterion not met, any obvious logic error
Are all changed files covered by tests? Does every new function have at least one test for the happy path and one for the primary error path?
FAIL: any changed file with no tests, any new function with no test
Does the implementation follow orchestration/agent/standards/CODING.md?
Does it use the patterns in orchestration/agent/arch/patterns.md?
Does it respect the API contracts in orchestration/agent/arch/api-contracts.md?
FAIL: any violation of the team's written standards
Is the code readable? Are names clear? Is complexity justified? Is there duplication that should be extracted?
NOTE: This criterion is advisory - it cannot block alone. It informs feedback but a single quality concern is not a blocker.
Do all existing tests still pass? Has any existing behaviour been changed without explicit ticket scope?
FAIL: any previously passing test now failing
Use this checklist for every segment review:
## Evaluation Checklist
### Correctness
- [ ] All CONTRACT criteria verified
- [ ] Error paths handled
- [ ] Edge cases covered
- [ ] Boundary conditions tested
### Test Coverage
- [ ] All changed files have tests
- [ ] New functions have happy path tests
- [ ] New functions have error path tests
- [ ] Integration tests where needed
### Standards Compliance
- [ ] CODING.md rules followed
- [ ] patterns.md patterns used
- [ ] API contracts respected
- [ ] Naming conventions followed
### Code Quality
- [ ] Readable and clear
- [ ] No unnecessary duplication
- [ ] Appropriate abstraction level
- [ ] Comments where needed
### No Regressions
- [ ] All existing tests pass
- [ ] No unintended behavior changes
When writing feedback, indicate severity:
## Specific feedback
- `src/auth/login.ts:23` [BLOCKER]: Missing error handling for `fetchUser()`. Required: Add try-catch with `AppError('USER_NOT_FOUND', 404)`
- `src/auth/login.ts:67` [MAJOR]: Hardcoded timeout value. Required: Use `config.timeout` from `src/config.ts`
- `src/auth/login.ts:89` [MINOR]: Variable name `tmp` is unclear. Consider: `userSession`
| Situation | Verdict |
|---|---|
| All criteria pass | APPROVED |
| Any BLOCKER items | CHANGES_REQUESTED |
| Multiple MAJOR items | CHANGES_REQUESTED |
| Only MINOR items | APPROVED (with notes) |
| Tests failing | CHANGES_REQUESTED |
| Lint warnings | CHANGES_REQUESTED |
| Standards violation | CHANGES_REQUESTED |