status is agent-read markdown (skill) from leeyudok/agents-scaffold: 프로젝트 상태 한눈에 보기. Git 상태·빌드·테스트·최근 이슈·브랜치 현황을 한 번에 조회. 작업 시작 전 또는 상태 점검 시 사용..
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# 프로젝트 상태 조회
## 실행 순서 (병렬로)
### 1. Git 상태
```bash
git status --short
git log --oneline -5
git branch -a | grep -v remotes | head -10
```
### 2. 빌드 상태 (스택 감지)
```bash
# 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. 테스트 현황
```bash
# 가장 최근 테스트 결과 (있으면)
find . -name "*.xml" -path "*/test-results/*" -newer package.json 2>/dev/null | head -3
```
### 4. 미완료 이슈 (GitLab)
```bash
command -v glab >/dev/null && glab issue list --state=opened -P 1 --per-page 5 2>/dev/null || true
```
### 5. 프로세스 상태 (pm2/포트)
```bash
command -v pm2 >/dev/null && pm2 list 2>/dev/null | head -20 || true
```
### 6. 오늘 사용량 (옵션 — `ccusage` 가 있을 때만)
```bash
…
Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
GET https://markdownregistry.com/api/v1/artifacts/art_yyfdc6er4cq7euyz
GET https://markdownregistry.com/api/v1/resolve?ref=leeyudok/agents-scaffold/status
GET https://markdownregistry.com/api/v1/blob/fc19998c97d4b896ff0ff98b73ce92de074e41082b7d7251155b9192beb2b18a
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.
leeyudok/agents-scaffold · .claude/skills/docs-sync/SKILL.md · 코드·설정·프리셋 변경 뒤 문서를 현행화한다. "문서 현행화", "README 갱신", "문서 최신화" 요청 시, 그리고 동작·경로·버전·수치를 바꾼 PR 을 올리기 직전에 사용. 문서의 주장을 실제 코드·명령…
leeyudok/agents-scaffold · .claude/skills/grill-me/SKILL.md · 사용자가 /grill-me 를 호출하거나 아이디어·기능 요청·스펙을 구현 전에 굽고(grill)·압박 검증하고·심문해 달라고 할 때 사용. superpowers:brainstorming 의 opt-in 대체재 —…
leeyudok/agents-scaffold · .claude/skills/handoff/SKILL.md · 세션을 끊고 다음 세션에 넘긴다 — 재개 가능한 상태를 HANDOFF.md 에 적고, 협업 인프라(GitHub·GitLab·Forgejo·Jira·Plane·Slack)가 있으면 같은 내용으로 이슈를 만들어 URL…
leeyudok/agents-scaffold · .claude/skills/memory-factcheck/SKILL.md · 에이전트 영속 메모리를 실제 소스와 대조 — 각 메모리의 핵심 단언을 코드·DB·이슈 트래커·파일시스템에 대조해 stale 을 정정하고 dead 를 아카이브 후보로 리포트. 메모리가 30개를 넘거나, 스택/인프라…
leeyudok/agents-scaffold · .claude/skills/review/SKILL.md · 코드 변경사항 전체 리뷰. code-reviewer 에이전트 + security-audit 에이전트를 순차 실행하는 래퍼 스킬. PR/MR 생성 전 또는 리뷰 요청 시 사용.
leeyudok/agents-scaffold · .claude/skills/search-first/SKILL.md · 코드를 새로 짜기 전에 기존 솔루션(레포 내부 → 사내 미러 → 패키지 레지스트리 → MCP/스킬 → GitHub)을 먼저 검색하는 워크플로. 새 기능/유틸/의존성 추가 직전, "X 기능 넣어줘" 요청에 코드부터…
leeyudok/agents-scaffold · .claude/skills/security-precheck/SKILL.md · 외부 보안팀 코드 검사 전 자체 사전점검. security-audit 에이전트(+ 설정돼 있으면 SonarQube 보안 핫스팟)를 돌려 P0/P1/P2로 정리하고, 발견사항을 이슈로 쪼개 병렬 서브에이전트로…
leeyudok/agents-scaffold · .claude/skills/skill-evolve/SKILL.md · 스킬 실행 후 피드백을 받아 해당 SKILL.md를 자동 개선하는 메타 스킬. 스킬이 틀렸거나 누락이 있을 때, 또는 새로 배운 함정을 기록할 때 사용.
leeyudok/agents-scaffold · presets/lang-en/base/.claude/skills/docs-sync/SKILL.md · Bring documentation back in line with the code after changes to behavior, paths, versions, or generated output. Use on…
leeyudok/agents-scaffold · presets/lang-en/base/.claude/skills/example-skill/SKILL.md · Duplicate this file to create a project skill. Write the trigger condition concretely in the description.
jeremylongshore/tons-of-skills-marketplace · plugins/ai-agency/hyperflow/skills/status/SKILL.md · Use when the user wants a one-screen view of current hyperflow project state — version, profile freshness, memory…
indranilbanerjee/digital-marketing-pro · skills/status/SKILL.md · Print a read-only status snapshot of the active brand via scripts/dm-status.py: profile summary, engagements with…
hashgraph-online/hol-guard · integrations/claude-code-plugin/skills/status/SKILL.md · Check HOL Guard local protection status for Claude Code without changing configuration. Use when the user asks whether…
karanb192/claude-code-hooks · plugins/cache-tax/skills/status/SKILL.md · Show this session's prompt-cache state, the cold-comeback price, and the cache writes paid so far
akashgit/remote-factory · skills/status/SKILL.md · Show the current Factory status for this project, including project state, experiment history, eval scores, and active…