프로젝트 상태 조회
SkillAI & modelsProject status at a glance. Check Git status, build, tests, recent issues, and branch status in one go. Use before starting work or for a status check.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the 프로젝트 상태 조회 skill
What this skill tells your AI
The instructions your AI receives, as published by leeyudok/agents-scaffold in .claude/skills/status/SKILL.md and read by ahel’s review.
실행 순서 (병렬로)
1. Git 상태
git status --short
git log --oneline -5
git branch -a | grep -v remotes | head -10
2. 빌드 상태 (스택 감지)
# package.json 있으면
[ -f package.json ] && (
echo "=== TypeScript ===" && (bunx tsc --noEmit 2>&1 | tail -5 || npx tsc --noEmit 2>&1 | tail -5)
echo "=== 빌드 ===" && (bun run build 2>&1 | tail -5 || npm run build 2>&1 | tail -5)
) || true
# go.mod 있으면
[ -f go.mod ] && echo "=== Go build ===" && go build ./... 2>&1 | tail -5 || true
# Cargo.toml 있으면
[ -f Cargo.toml ] && echo "=== Cargo check ===" && cargo check 2>&1 | tail -5 || true
# build.gradle 있으면
[ -f build.gradle ] || [ -f build.gradle.kts ] && echo "=== Gradle ===" && ./gradlew compileJava 2>&1 | tail -5 || true
3. 테스트 현황
# 가장 최근 테스트 결과 (있으면)
find . -name "*.xml" -path "*/test-results/*" -newer package.json 2>/dev/null | head -3
4. 미완료 이슈 (GitLab)
command -v glab >/dev/null && glab issue list --state=opened -P 1 --per-page 5 2>/dev/null || true
5. 프로세스 상태 (pm2/포트)
command -v pm2 >/dev/null && pm2 list 2>/dev/null | head -20 || true
6. 오늘 사용량 (옵션 — ccusage 가 있을 때만)
# ccusage 는 Claude Code 전용 사용량 도구다. 설치돼 있지 않으면 조용히 건너뛴다
# (Codex·agy 등 다른 하네스에서는 해당 없음).
command -v ccusage >/dev/null && ccusage daily --since "$(date +%Y%m%d)" --json 2>/dev/null \
| python3 -c "import json,sys; d=json.load(sys.stdin).get('daily') or [{}]; r=d[0]; print(f\"오늘 {r.get('totalTokens',0):,} 토큰 / \${r.get('totalCost',0):.2f}\")" 2>/dev/null || true
출력 형식
## 프로젝트 상태 — {{PROJECT_NAME}} (YYYY-MM-DD HH:MM:SS)
### Git
브랜치: feature/issue-42-xxx
변경: 3 modified, 1 untracked
최근 커밋: abc1234 fix: ...
### 빌드
TypeScript: ✅ 에러 없음 / ❌ N개 에러
빌드: ✅ 성공 / ❌ 실패
### 이슈 (오픈)
#42 [feature] ...
#38 [bug] ...
### 사용량 (ccusage 있을 때만)
오늘 1,207,480,323 토큰 / $1227.00
### 다음 할 일
- (현재 브랜치 기준 TODO 코멘트나 남은 작업)
Learned warnings
(실행 중 발견한 주의사항이 여기에 누적됩니다)
Signals
- GitHub stars
- 25
- Forks
- 4
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
status-leeyudok- Source
- github.com/leeyudok/agents-scaffold