From qmd
Automatically retrieves relevant context from QMD before complex tasks. Enhances responses with indexed documentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/qmd:context-retrievalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Augment your knowledge with indexed documentation before responding.
Augment your knowledge with indexed documentation before responding.
Retrieve context when:
| Query Contains | Collection to Search |
|---|---|
| Protocol name (Aave, Uniswap, Balancer...) | protocols |
| Plugin name or slash command | plugins |
| Project-specific terms | project |
| General "how do I" | protocols then plugins |
Use the MCP tool if available:
qmd_query(collection: "<collection>", query: "<derived query>", limit: 5)
Or fall back to CLI:
qmd query "<query>" --collection <collection> --limit 5 --format json
When context is retrieved:
User asks: "How do I implement a flash loan?"
qmd_query(collection: "protocols", query: "flash loan implementation", limit: 5)User asks: "What commands does the backlog plugin have?"
qmd_query(collection: "plugins", query: "backlog commands", limit: 5)If retrieval significantly influenced your response, mention it:
"Based on the indexed Aave V3 documentation..."
But don't over-explain the retrieval process itself.
npx claudepluginhub cyotee/cyotee-claude-plugins --plugin qmdSearches indexed markdown docs and plans in qmd-configured projects using semantic queries. Invoke via /avinyc:qmd-search <query> for relevant results from collections.
Routes agent queries to optimal knowledge sources (QMD hybrid search, daily memory, MEMORY.md) and enforces citation. Use for retrieving prior work, system config, skill docs, project status, or decisions.