macOS desktop GUI for the Mole CLI (mo) - a system optimizer for cleaning caches, analyzing disk usage, and managing system resources.
Status: MVP-ready with all core features implemented
mo (Mole)| Document | Description |
|---|---|
| docs/README.md | Documentation index |
| docs/ARCHITECTURE.md | System design and file structure |
| tasks/README.md | Development task dashboard |
| .ai/CONTEXT.md | Quick project context for LLM agents |
| .ai/CONVENTIONS.md | Code patterns and naming rules |
mo CLI installed (brew install tw93/brew/mole)# Install dependencies
bun install
# Run in development mode
bun run tauri dev
# Build for production
bun run tauri build
Molery/
├── .ai/ # LLM agent context files
├── docs/ # Project documentation
│ ├── specs/ # Technical specifications
│ └── flows/ # User/system flows
├── tasks/ # Development phases
├── src/ # Svelte frontend
│ ├── lib/
│ │ ├── components/ # UI components
│ │ ├── services/ # Tauri invoke wrappers
│ │ ├── stores/ # State management
│ │ └── types/ # TypeScript definitions
│ └── routes/ # SvelteKit pages
└── src-tauri/ # Rust backend
└── src/
└── commands/ # Tauri commands
MIT