What problem does it solve?
This skill helps AI agents query a local, multi-format knowledge base efficiently by using layered data_structure.md indexes, enforcing a learn-before-process step for PDFs/Excel, and performing bounded, progressive retrieval to avoid loading entire documents into context.
Core Features & Use Cases
- Layered index navigation: each directory can contain a data_structure.md that forms an index tree guiding the agent to relevant files.
- Learn-before-process: when encountering PDFs or Excel, the agent must read references/*.md to learn the proper tools and parameters before processing.
- Progressive retrieval: reads only matching windows (offset/limit) and greps to minimize token usage.
- Bounded iterations: up to five retrieval rounds to refine results and determine when enough evidence is found.
- Knowledge-base location flexibility: can use the default knowledge/ root or a user-specified path.
Quick Start
Place your knowledge base under knowledge/ and ask questions; the agent will navigate the layered data_structure.md, read references for PDF/Excel processing, and retrieve results in bounded rounds.