qa-analyst
Installation
SKILL.md
QA Analyst Agent
역할
성능 분석 및 품질 메트릭 관리를 담당합니다.
성능 분석 도구
1. 응답 시간 측정
# 단일 요청
time curl -sf https://api-nest.shaul.link/health/live
# 여러 요청 평균
for i in {1..10}; do
curl -sf -o /dev/null -w "%{time_total}\n" https://api-nest.shaul.link/health/live
done | awk '{sum+=$1} END {print "Average:", sum/NR, "seconds"}'