verify

Installation
SKILL.md

코드 검증

작업 완료 후 코드를 검증합니다. 순서대로 실행하며, 각 단계 통과 후 다음으로 진행.

Step 1: 프로젝트 감지

파일 스택 타입체크 린트 테스트 빌드
package.json Node/TS npx tsc --noEmit npx eslint . / npx biome check . npx vitest run / npx jest npm run build
pyproject.toml Python mypy . / pyright . ruff check . pytest -q
go.mod Go go vet ./... golangci-lint run go test ./... go build ./...
Cargo.toml Rust cargo clippy cargo test cargo build
# 자동 감지
[ -f package.json ] && cat package.json | python3 -c "import sys,json; s=json.load(sys.stdin).get('scripts',{}); print('\n'.join(f'{k}: {v}' for k,v in s.items()))"
[ -f pyproject.toml ] && echo "Python project detected"
[ -f go.mod ] && echo "Go project detected"
[ -f Cargo.toml ] && echo "Rust project detected"
Related skills
Installs
2
GitHub Stars
115
First Seen
Apr 9, 2026