원클릭으로
review-quality
Use when reviewing omeinsum-rs code changes for correctness, DRY, KISS, cohesion/coupling, CLI/HCI quality, and test quality
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when reviewing omeinsum-rs code changes for correctness, DRY, KISS, cohesion/coupling, CLI/HCI quality, and test quality
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use when preparing, versioning, tagging, or publishing an omeinsum-rs crate release
Use when an omeinsum-rs pull request has review comments, local CI failures, or coverage gaps to address
Use when turning a GitHub issue for omeinsum-rs into a scoped implementation plan, branch, and pull request
SOC 직업 분류 기준
| name | review-quality |
| description | Use when reviewing omeinsum-rs code changes for correctness, DRY, KISS, cohesion/coupling, CLI/HCI quality, and test quality |
Read-only review workflow for omeinsum-rs.
This skill reports issues. It does not edit files, commit, or push.
/review-quality - auto-detect the review range from git/review-quality <base>..<head> - review a specific diff rangeFor Codex, open this SKILL.md directly and treat slash-command forms as aliases.
Determine the review range:
BASE=$(git merge-base HEAD main 2>/dev/null || git rev-parse HEAD~1)
echo "$BASE"
git diff --stat "$BASE"..HEAD
git diff "$BASE"..HEAD
If the worktree is dirty, also inspect the uncommitted delta:
git diff --stat
git diff
Read every changed file in full before making judgments.
Prioritize behavioral risks over style.
Check for:
[], not [1], unless the API explicitly says otherwise.Look for duplicated orchestration logic, especially duplicated forward/backward drivers, repeated normalization code, or copy-pasted backend allocation paths.
Flag:
Flag:
Only check these if the diff touches omeinsum-cli/ or CLI docs:
optimize, contract, and autodiff behavior should be consistent between expression and topology inputs.Flag tests that:
Prefer small exact tensors with hand-checkable expected values.
## Quality Review
### Correctness
- OK / ISSUE — description with file:line
### Design Principles
- DRY: OK / ISSUE — description with file:line
- KISS: OK / ISSUE — description with file:line
- HC/LC: OK / ISSUE — description with file:line
### CLI / HCI
- OK / ISSUE — description with file:line, or N/A
### Test Quality
- OK / ISSUE — description with test file references
### Issues
#### Critical
[correctness bugs and regressions]
#### Important
[design problems and missing regressions]
#### Minor
[cleanup opportunities]