questionnaire-reading
Installation
SKILL.md
Questionnaire Reading Skill
This skill converts a raw questionnaire design document into a structured
questionnaire-design.md file. The output becomes the authoritative reference
for survey structure, routing logic, and metadata — enabling an AI agent to
understand the data before writing any survy code.
1. Input Formats
Accept any of the following:
| Format | How to read |
|---|---|
.docx |
Use python-docx (pip install python-docx) to extract paragraphs and tables |
.xlsx / .xls |
Use openpyxl (pip install openpyxl) or polars.read_excel() to iterate rows |
.pdf |
Use pdfplumber (pip install pdfplumber) to extract text page by page |
.txt / .md |
Read directly — plain text, no library needed |
Related skills