One-click install
npx skills add https://github.com/thuantan2060/facebook-sale-tracking --skill load-docs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: load-docs
Source: https://github.com/thuantan2060/facebook-sale-tracking/tree/main/.agents/skills/load-docs
Command: npx skills add https://github.com/thuantan2060/facebook-sale-tracking --skill load-docs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The load-docs skill solves the problem of needing key information from files or URLs available in the main agent’s context, without manually reading and re-summarizing everything yourself.

Core Features & Use Cases

  • Full-document ingestion: Reads every specified document end-to-end so later turns can answer questions, summarize, or use the content reliably.
  • Supports files, folders, and URLs: Loads single files, recursively loads folders with sensible filtering, and fetches remote content via URL retrieval.
  • Chunk-safe reading for large inputs: Continues reading until the entire file or PDF page range is covered, preventing accidental truncation.
  • Single-turn workflow: Runs once per invocation and deactivates after the skill completes with DONE.

Quick Start

Ask the skill to load the documents you specify (for example, “Load the folder docs and everything inside it”) and it will read them completely, then respond DONE.

Frequently Asked Questions about load-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I load full documents into agent context for question answering?

Document ingestion loads specified local files, recursively filtered folders, or remote URLs into the agent context completely. This grounds the agent with full content, enabling reliable follow-up question answering and content summarization without manual reading.

Can I ingest large PDFs without content truncation?

Yes, large PDFs are ingested safely using chunk-safe reading that traverses entire page ranges via a checklist. This prevents accidental content truncation, ensuring the full document is loaded into the context before the skill completes.

Does document ingestion support fetching remote URLs and local folders?

Yes, document ingestion supports fetching remote URLs via web retrieval and recursively loading local folders with sensible filtering. This allows you to populate the agent context with diverse content sources for knowledge grounding.

What is the best way to ground an agent using local files and web content?

The best way to ground an agent is through full-document ingestion. By completely reading specified local files, folders, and remote URLs into the context, the agent can reliably reason from and summarize the ingested knowledge base.

How to summarize documents loaded from a folder automatically?

To summarize documents loaded from a folder, first ingest the folder contents recursively into the agent context. Once the full content is loaded and the skill signals DONE, the agent can directly answer questions and summarize the ingested material.

Why does the document loading skill stop after one turn?

The document loading skill stops after one turn because it operates on a single-turn workflow. It runs once per invocation to completely load the specified documents, then deactivates after signaling DONE to prevent unnecessary context window consumption.