From kde-plasma
Inspect, pause, resume, and reset the Baloo file indexer. Use when search is missing files, indexing is hammering disk/CPU, or the user wants to add/remove indexed paths.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin kde-plasmaThis skill uses the workspace's default tool permissions.
Baloo backs KRunner file search and Dolphin's content search. Daemon: `baloo_file`. CLI: `balooctl6` (Plasma 6) / `balooctl` (Plasma 5).
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Baloo backs KRunner file search and Dolphin's content search. Daemon: baloo_file. CLI: balooctl6 (Plasma 6) / balooctl (Plasma 5).
balooctl6 status
balooctl6 monitor # live progress
balooctl6 indexSize # disk usage of the index
balooctl6 suspend
balooctl6 resume
balooctl6 disable # stop daemon and disable on boot
balooctl6 enable
balooctl6 purge # wipe and rebuild
# Or nuke the on-disk index manually:
balooctl6 disable
rm -rf ~/.local/share/baloo
balooctl6 enable
Config: ~/.config/baloofilerc.
[General]
exclude folders[$e]=$HOME/Downloads,$HOME/.cache,$HOME/VirtualBox VMs
only basic indexing=false
Apply:
balooctl6 disable && balooctl6 enable
balooctl6 indexed /path/to/file # is it indexed?
balooctl6 fileinfo /path/to/file # extracted metadata
~/.local/share/baloo/index.balooctl6 suspend, then exclude noisy directories before resuming.