File size: 851 Bytes
f0fa6fd ef86137 f0fa6fd 49687b5 68bda1e 49687b5 68bda1e 49687b5 f0fa6fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
license: mit
sdk: gradio
emoji: π
colorFrom: green
colorTo: yellow
sdk_version: 5.49.1
---
# Agent Skills β Progressive Disclosure Demo (Hugging Face Space)
**Published Oct 16, 2025 (concept)**
This Space demonstrates *Agent Skills* built as folders that contain a `SKILL.md` plus
optional reference files and executable tools. It includes a sample **PDF Form Assistant** skill
that can extract form fields from a user-provided PDF via a Python tool.
## What's in here
- `app.py`: Gradio UI that lists installed skills, shows metadata, loads `SKILL.md`, opens linked files, and runs the PDF tool.
- `skills/pdf/SKILL.md`: YAML-frontmatter metadata + core guidance.
- `skills/pdf/reference.md`, `skills/pdf/forms.md`: deeper context for progressive disclosure.
- `skills/pdf/tools/extract_form_fields.py`: a small tool callable from the UI. |