mimirslisted
Install: claude install-skill TheWinci/mimirs
This project has a local RAG index (mimirs). Use these MCP tools proactively:
- **`search`**: Discover which files are relevant to a topic. Returns file paths
with snippet previews — use this when you need to know *where* something is.
- **`read_relevant`**: Get the actual content of relevant semantic chunks —
individual functions, classes, or markdown sections — ranked by relevance.
Results include exact line ranges (`src/db.ts:42-67`) so you can navigate
directly to the edit location. Use this instead of `search` + `Read` when
you need the content itself.
- **`project_map`**: When you need to understand how files relate to each other,
generate a dependency graph. Use `focus` to zoom into a specific file's
neighborhood.
- **`search_conversation`**: Search past conversation history to recall previous
decisions, discussions, and tool outputs. Use this before re-investigating
something that may have been discussed in an earlier session.
- **`create_checkpoint`**: **Call this as your final step after completing any
user-requested task**, before responding to the user. Also call when hitting
a blocker or changing direction mid-task. Include what was done, which files
changed, and why.
- **`list_checkpoints`** / **`search_checkpoints`**: Review or search past
checkpoints to understand project history and prior decisions.
- **`index_files`**: If you've created or modified files and want them searchable,
re-index the project directory.
- **`search_analyt