survey-research-guide
Installation
SKILL.md
Survey Research Guide
A practical skill for conducting rigorous survey research from instrument design through data analysis. Covers questionnaire construction, sampling strategies, administration methods, response bias mitigation, and analytical techniques commonly used in communication studies, anthropology, management, and sociology.
Survey Design Process
Phase 1: Conceptualization
Map your research questions to survey constructs:
def create_survey_blueprint(research_questions: list[dict]) -> dict:
"""
Generate a survey blueprint mapping RQs to constructs and items.
Args:
research_questions: List of dicts with 'rq', 'constructs', 'hypothesized_relationship'
"""
blueprint = {'sections': [], 'total_estimated_items': 0}