npx skills add smithery/manastalukdar --skill cleanproject
manastalukdar/ai-devstudio
cleanproject
Remove debug artifacts and temporary files safely with git checkpoint protection
Installation
npx skills add manastalukdar/ai-devstudio --skill cleanproject
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsPre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure…
567.7K installsConfigure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: sem…
566.3K installsAzure VM/VMSS router. WHEN: create / provision / deploy / spin-up VM, recommend VM size, compar…
510K installsPostgres best practices maintained by Supabase, for Postgres running anywhere. Load this skill …
391.6K installsAlso in this package
Other skills from manastalukdar/ai-devstudio · top by installs.
npx skills add manastalukdar/ai-devstudio
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,128 B -
docs
SUMMARY.md100 B
History
- First seen on skills.sh
- First recorded snapshot · 6 installs
SKILL.md
Clean Project
I'll help clean up development artifacts while preserving your working code.
Strategic Thinking Process
<think> Before cleaning, I need to carefully consider:
- Artifact Identification
- What patterns indicate temporary/debug files? - Which files might look temporary but are actually important? - Are there project-specific conventions for temp files? - What about generated files that should be kept?
- Safety Analysis
- Which deletions are definitely safe? - Which require more careful inspection? - Are there active processes using these files? - Could removing these break the development environment?
- Common Pitfalls
- .env files might look like artifacts but contain config - .cache directories might be needed for performance - Some .tmp files might be active session data - Debug logs might contain important error information
- Cleanup Strategy
- Start with obvious artifacts (.log, .tmp, *~) - Check file age - older files are usually safer to remove - Verify with git status what's tracked vs untracked - Group similar files for batch decision making </think>
Based on this analysis, I'll create a git checkpoint for safety:
git add -A
git commit -m "Pre-cleanup checkpoint" || echo "No changes to commit"
Important: I will NEVER:
- Add "Co-authored-by" or any Claude signatures
- Include "Generated with Claude Code" or similar messages
- Modify git config or user credentials
- Add any AI/assistant attribution to the commit
- Use emojis in commits, PRs, or git-related content
I'll identify cleanup targets using native tools:
- Glob tool to find temporary and debug files
- Grep tool to detect debug statements in code
- Read tool to verify file contents before removal
Critical directories are automatically protected:
- .claude directory (commands and configurations)
- .git directory (version control)
- node_modules, vendor (dependency directories)
- Essential configuration files
When I find multiple items to clean, I'll create a todo list to process them systematically.
I'll show you what will be removed and why before taking action:
- Debug/log files and temporary artifacts
- Failed implementation attempts
- Development-only files
- Debug statements in code
After cleanup, I'll verify project integrity and report what was cleaned.
If any issues occur, I can restore from the git checkpoint created at the start.
This keeps only clean, working code while maintaining complete safety.
Token Optimization
Expected range: 50–100 tokens (already clean), 300–500 tokens (typical cleanup)
Caching: Caches cleanup patterns and protected path lists in .claude/cache/cleanproject/ for 7 days. Invalidated when .gitignore changes.
Early exit: Returns immediately if no artifacts match known cleanup patterns.
Patterns used: Bash-only operations, early exit, template-based pattern matching