Extract and structure requirements from PDF files into JSON format with main requirements and sub-tasks
I help you extract and structure requirements from PDF documents. My workflow:
requirements.json in /Users/admin/dev/Reports/{repository_name}/Use this skill when you need to:
Call me with a PDF file path:
Load the extract-requirements skill and analyze this PDF: /path/to/requirements.pdf
The skill will:
requirements.json file in the appropriate Reports directoryThe generated requirements.json follows this structure:
{
"repository_name": "project-name",
"extraction_date": "2026-03-18",
"total_requirements": 5,
"main_requirements": [
{
"id": "REQ-001",
"title": "Requirement Title",
"description": "Detailed description of the requirement",
"sub_tasks": [
{
"id": "TASK-001",
"title": "Sub-task Title",
"description": "Description of the sub-task"
}
]
}
]
}
/Users/admin/dev/Reports/{repository_name}/