원클릭으로
project-cleanup-guidelines
Guidelines for keeping the repository clean of temporary and build files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for keeping the repository clean of temporary and build files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
| name | Project Cleanup Guidelines |
| description | Guidelines for keeping the repository clean of temporary and build files |
This skill ensures the repository stays clean of temporary files.
Do NOT create these file types in the repository:
build_log*.txt - Build output logs*.log - Log files*.hprof - Heap dumpsoutput*.txt - Command output capturestemp*.txt / tmp*.txt - Temporary filesgradlew --info or --debug - For verbose output$env:TEMP\build_output.txt
Run cleanup check:
# Check for stray files
Get-ChildItem -Path . -File | Where-Object { $_.Name -match "(build_log|output|temp|tmp|detailed_build)" }
# Remove if found
Remove-Item -Path "build_log*.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "detailed_build_log.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "*.log" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "*.txt" -Force -ErrorAction SilentlyContinue
Remove-Item -Path "build_final*.txt" -Force -ErrorAction SilentlyContinue
The .gitignore should already exclude:
/build//.gradle//.idea/*.log*.hprof*.log (Build and compilation logs)*.txt (Temporary execution captures)build_final*.txt (Final validation logs)app/build/.gradle/local.properties (unless required for CI)*.hprofCapture build output in memory or terminal, not files. Use tools that return output directly rather than redirecting to files in the repo.