App Audit Protocol
Goal
To provide a comprehensive analysis of the user's installed software environment, identifying redundant tools and grouping applications by function to help the user streamline their device.
Workflow
1. Data Collection
First, gather the complete list of installed software from both the Termux environment and the Android system.
Execute the following commands:
pkg list-installed(Termux packages)python3 %SKILL_DIR%/scripts/get_app_labels.py(Android apps with Friendly Names)
Note: The Python script requires aapt to be installed. If it fails, check if aapt is present or fall back to cmd package list packages -3.
2. Analysis Strategy
Once the lists are retrieved, analyze them using the following heuristics. Do NOT output the raw lists unless explicitly asked.
Categorization
Group apps into functional categories such as:
- Development (Compilers, Editors, Git)
- Network & Admin (SSH, VPN, Wifi Tools, Sync)
- Communication (Messengers, Email)
- Media & Entertainment (Music, Video, Games)
- Productivity (Tasks, Notes, Finance)
- Physical World (Weather, Maps, Fitness, Transport)
Redundancy Detection
Look for multiple apps serving the exact same primary purpose.
- Common Overlaps:
- Multiple Weather apps (e.g., Windy vs. native vs. ad-heavy free apps).
- Multiple Remote Desktop tools (TeamViewer vs. AnyDesk vs. RDP).
- Multiple To-Do list managers.
- Multiple Flight Trackers.
- Termux tools overlapping with Android apps (e.g.,
syncthingin Termux vs Android App).
3. Reporting
Present the findings in a structured report:
- Summary: Total count of apps and packages.
- Redundancy Alerts: A high-priority section listing specifically identified redundancies with a recommendation (e.g., "Keep X, remove Y and Z").
- Category Breakdown: A concise grouping of the apps.
- Cleanup Suggestions: Specific
pkg uninstallorcmd package archivecommands for the identified redundant items.