一键导入
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 职业分类
| 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.
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.