بنقرة واحدة
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.