원클릭으로
status
Show project status including git, dependencies, and environment
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show project status including git, dependencies, and environment
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Scan the codebase and update the codemap in .claude/rules/codemap.md. Use when files are added, removed, renamed, or significantly restructured.
Build and release Tauri v2 desktop app (macOS + Linux installers). Use when building desktop installers, checking desktop release status, or troubleshooting Tauri builds.
Deploy web app to HuggingFace Spaces, check deployment status, verify HF Space logs. Use when deploying the web app, checking HF logs, or troubleshooting HuggingFace Spaces.
Upload ML model weights to GitHub Releases. Use when managing model files, re-uploading weights, or setting up model hosting on GitHub Releases.
Create a new version release — triggers deployment to all targets (HuggingFace Spaces, desktop app, model weights). Use when releasing a new version.
| name | status |
| description | Show project status including git, dependencies, and environment |
| allowed-tools | Bash, Read |
Show comprehensive project status.
git branch --show-currentgit status --short | head -10git log -1 --onelinegit describe --tags --abbrev=0 2>/dev/null || echo "No tags"cd backend && source venv/bin/activate 2>/dev/null && python --version 2>&1 || echo "venv not found"test -d backend/venv && echo "Yes" || echo "No"cd backend && source venv/bin/activate 2>/dev/null && ruff --version 2>&1 || echo "Not installed"cd backend && source venv/bin/activate 2>/dev/null && ty --version 2>&1 || echo "Not installed"node --version 2>&1 || echo "Not installed"npm --version 2>&1 || echo "Not installed"test -d frontend/node_modules && echo "Yes" || echo "No"test -d frontend/dist && echo "Yes" || echo "No"docker --version 2>&1 | head -1 || echo "Not installed"docker images ccbell-sound-generator --format "{{.Tag}}" | head -1 || echo "No"Based on the status above:
/setupcd frontend && npm installcd frontend && npm run builduvicorn app.main:app --reload --port 8000) and frontend (cd frontend && npm run dev)/verifyTo verify the project is ready for development:
# Backend health
cd backend && source venv/bin/activate && python -c "import fastapi; print('FastAPI OK')"
# Frontend health
cd frontend && npm run build --dry-run 2>/dev/null && echo "Frontend OK" || npm install