SkillAgentSearch skills...

AutoCleaner

Minimalist macOS memory cleaner prototype wrapped as a .app using Automator and bash. Terminates non-system processes to free RAM — CleanMyMac-style experiment.

Install / Use

/learn @Yogerasim/AutoCleaner
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

🧹 AutoCleaner

Star

Minimalist macOS memory cleaner that kills background processes and frees RAM — CleanMyMac-style, without subscriptions.

License: CC BY-NC-SA 4.0 Platform: macOS Status


📥 Installation

⬇️ Download AutoCleaner.zip

  1. Download and unzip AutoCleaner.zip
  2. Open the .dmg and drag the app into Applications

🧠 What it does

  • Frees up memory by closing user-space apps (non-system)
  • Uses Terminal and bash for full transparency
  • No setup, no permissions, no installer
  • Lightweight, offline, no telemetry

Preview

<img src="Screenshots/drag-to-install.png" width="600" alt="Drag to install UI">

🧾 License

This project is licensed under the Creative Commons BY-NC-SA 4.0 license.

You may:

  • Use it for personal purposes
  • Modify it
  • Share it with attribution

You may not:

  • Sell it
  • Use it in commercial products
  • Publish it as your own work

For commercial licensing, please contact: yogerrasim@gmail.com


How it works

AutoCleanerByGerasim is powered by a minimalistic bash script wrapped inside a macOS .app via Automator. Here’s what happens when you run it:

  1. ✅ You launch the .app

  2. 🖥 A Terminal window opens

  3. 🔍 It runs:

    ps axo pid,comm
    

    ...to find all running processes

  4. 🧠 It filters out critical system processes: Finder, Dock, loginwindow, etc.

  5. 💀 It terminates all others with:

    kill $PID
    sleep 0.1
    kill -9 $PID (if still alive)
    
  6. ✅ Displays “Cleanup complete!” in Terminal

This approach simulates the "Free Memory" feature from commercial tools like CleanMyMac — but in a fully transparent and scriptable way.

Related Skills

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated24d ago
Forks0

Security Score

70/100

Audited on Mar 9, 2026

No findings