Agent skill
search-notes
Always use this skill at the start of a task to check whether relevant information already exists. Use when users ask to recall, search memories, or subscribe to updates. Triggers on "recall", "search memories", "list keys", "share", "subscribe to", or any persistent storage request.
Install this agent skill to your Project
npx add-skill https://github.com/timbuchinger/loadout/tree/main/skills/search-notes
SKILL.md
Also use when:
- Unsure how to proceed
- Working with internal services, products, or processes
- Knowledge required is not publicly available
- The task relates to a specific repo, environment, or system
Treat this skill as:
Your internal memory lookup
What this skill does
Performs a hybrid search (dense + sparse) over stored notes.
Uses the Qdrant MCP server via the qdrant-search-notes tool.
The tool performs:
- Dense semantic search
- Sparse keyword search
- Result fusion using Reciprocal Rank Fusion (RRF)
Collection
Search is always performed against notes-hybrid.
How to search effectively
1. Construct the query
Use a natural language description of what you are trying to do.
Examples:
- restart a stuck kubernetes deployment
- internal api endpoint for resetting user passwords
- terraform s3 lifecycle drift issues
This query is used for:
- Dense embedding generation
- Sparse keyword extraction
2. Apply filters when appropriate
Use filters to narrow results when the domain is known.
Common filters:
- type = cli
- tool = kubectl / aws / terraform
- language = bash
- source = repo:infra
Example:
{
"must": [
{ "key": "type", "match": { "value": "cli" } },
{ "key": "tool", "match": { "value": "kubectl" } }
]
}
3. Interpret results carefully
- Prefer notes with clear context
- Prefer newer notes if multiple exist
- Refine and re-run search if results are close but incomplete
Tool usage
Use the qdrant-search-notes MCP tool with:
- Query text
- Optional payload filters
- Result limit (typically 5–10)
The tool:
- Executes dense and sparse searches
- Fuses results using RRF
- Returns ranked, agent-readable notes
Agent reminder
Before inventing a solution, check memory first.
If no relevant note exists and you learn something new:
- Complete the task
- Immediately use add-note to store the new knowledge
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
brainstorming
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
add-note
Use this skill whenever important information is learned during a task or when the user explicitly asks to store something. Use when users ask to remember. Triggers on "remember this", "update memory", "share" or any persistent storage request.
user-story
Creates well-structured user stories for software development and project management. Use when the user asks to write, create, or format a user story, or needs to document requirements, features, or tasks in user story format.
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code - write the test first, watch it fail, write minimal code to pass; ensures tests actually verify behavior by requiring failure first
kubernetes-troubleshoot
Troubleshoot and manage Kubernetes clusters, including resource inspection, debugging, pod logs, events, and cluster operations. Use when the user needs to diagnose issues, inspect workloads, analyze pod failures, or perform Kubernetes cluster operations.
writing-plans
Use when design is complete and you need detailed implementation tasks - creates comprehensive implementation plans with exact file paths, complete code examples, and verification steps assuming minimal codebase familiarity
Didn't find tool you were looking for?