Using Kimi K2.6 to Properly Uninstall macOS Apps by Finding Hidden App Directories

✍️ OpenClawRadar📅 Published: April 30, 2026🔗 Source
Using Kimi K2.6 to Properly Uninstall macOS Apps by Finding Hidden App Directories
Ad

A developer on Reddit shared their experience using Kimi K2.6 as a desktop agent to properly uninstall macOS applications. After 10+ years on macOS, they realized that simply dragging an app to Trash leaves behind hidden directories the OS doesn't remove. Their agent automatically ran commands to find and delete everything related to an app, including ~/.appname directories and files in ~/Library/Application Support/. They discovered numerous leftover directories from apps they hadn't used in years, such as the old Windsurf editor.

Ad

Key Details

  • The agent used find ~/Library/Application\ Support -name '*AppName*' recursively, which took too long. After feedback, they switched to glob matching at the top level instead of recursing.
  • They instructed Kimi to edit its base knowledge (similar to a SOUL.md file) to always use glob matching for uninstalling apps, improving speed significantly.
  • The developer prefers their own agent (openmnk) over Claude for voice input, OSS model compatibility, tiny codebase (total control without nerfs), and a query bar/text editor that doesn't require extensive arrow key usage.
  • GitHub repo: https://github.com/Emericen/openmnk

The post highlights a practical workflow: an LLM agent that learns from user feedback and persists domain knowledge into written processes, potentially representing a new era of software development where teaching and improving domain knowledge is automated.

📖 Read the full source: r/LocalLLaMA

Ad

👀 See Also

100 Parallel Claude Agents Reverse-Engineer Open Source Marketing: A Playbook from r/ClaudeAI
Use Cases

100 Parallel Claude Agents Reverse-Engineer Open Source Marketing: A Playbook from r/ClaudeAI

Developer spawns 100 parallel Claude+Codex sessions to analyze why their open-source project got zero upvotes — agents returned a 7-point marketing playbook and uncovered Anthropic's plugin registry as a low-competition channel.

OpenClawRadar
Qwen3.5 35B-A3B MoE runs 27-step agentic workflow locally on mid-range hardware
Use Cases

Qwen3.5 35B-A3B MoE runs 27-step agentic workflow locally on mid-range hardware

A developer ran Qwen3.5 35B-A3B MoE at Q4_K_M quantization locally on a Lenovo P53 laptop, executing a 27-step video processing workflow with zero errors. The model handled transcription, subtitle editing, and video processing through sequential tool calls without human intervention.

OpenClawRadar
OpenClaw News Assistant: $100 Burned on Sports + Tech Dedupe & Hallucination Fixes
Use Cases

OpenClaw News Assistant: $100 Burned on Sports + Tech Dedupe & Hallucination Fixes

A developer spent ~$100 building a personal news assistant with OpenClaw for sports and tech/AI news. Key issues: hallucination (rumors treated as fact, merged incorrect stories), deduplication across 10+ sources, freshness vs resurfacing old stories, and token cost. Stricter prompts, caching, dedupe, ranking, verification, and diff logic improved results but cost became prohibitive.

OpenClawRadar
Cross-Platform Graphics Testing Workflow for AI-Assisted Development
Use Cases

Cross-Platform Graphics Testing Workflow for AI-Assisted Development

A developer shares a workflow for testing Windows D3D11/D3D12 graphics code on headless Linux CI runners without a GPU, using MinGW-w64, Wine, DXVK/VKD3D-Proton, Lavapipe, and llvmpipe. The approach enables comprehensive validation of AI-generated code through CI pipelines.

OpenClawRadar