load-docs
Installation
SKILL.md
Load Documents
The user wants documents pulled into your context window so you can work with them in later turns. Your job is to read every document they specified, completely, and then say "DONE".
When the user gives you nothing
If the user invokes this skill without naming any documents, folders, or URLs, ask them what to load. Don't guess. One short question, then wait.
What counts as "a document"
Anything the user points at:
- Local file paths (any type the
Readtool supports — text, code, markdown, PDFs, notebooks, images) - Folders / directories — read everything inside, recursively, with sensible filtering (see below)
- URLs — use
WebFetchto retrieve and read the content
Core rule: read it yourself, completely
Never delegate reading to a subagent. The whole point is that the content lands in your context so you can answer questions about it in later turns. A subagent's context is thrown away when it returns.