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

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.
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
👀 See Also

Building a Technical Book with Claude Code: Process and Pitfalls
A developer created an EPUB book about intermediate Claude Code features by using Claude to collect Anthropic documentation, researching real-world examples in finance, and structuring chapters with technical features followed by practical applications. The process revealed specific workflow constraints when using agents.

OpenClaw Agent Voice Call Demo with Streaming TTS and Barge-in
A developer demonstrated their OpenClaw agent making phone calls via Telegram, featuring streaming text-to-speech that responds sentence-by-sentence and supports barge-in for natural conversations.

Project Slayer: Halo-inspired browser shooter built with Claude Code
A developer built Project Slayer, a Halo-inspired arena shooter playable in browser, using Claude Code (Opus 4.6) over two weeks with approximately 200 working hours and over 400 git commits. The game runs on FP Engine, a custom game engine built on Babylon.js.

Building Non-Coding AI Agents with Claude Code: Three Practical Examples
A Reddit user shares their personal setup for creating AI agents using Claude Code, detailing three specific implementations: an automated morning briefing agent pulling from emails, todos, and calendar; a tmux-based pipeline for capturing Substack articles; and a meeting summarization agent.