Design and analyze surveys for product validation and user research
Builds and analyzes surveys to validate products and gather user research data.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for designing and analyzing surveys for product validation. Enables product teams to gather structured feedback through well-designed surveys and interpret results with statistical rigor.
This skill integrates with the following processes:
product-market-fit.js - PMF survey design and analysisbeta-program.js - Beta participant surveyscustomer-advisory-board.js - CAB feedback collectionjtbd-analysis.js - Jobs-based survey questions{
"type": "object",
"properties": {
"surveyType": {
"type": "string",
"enum": ["pmf", "nps", "csat", "feature-validation", "exit", "onboarding", "custom"],
"description": "Type of survey to design"
},
"objective": {
"type": "string",
"description": "Primary objective of the survey"
},
"targetAudience": {
"type": "string",
"description": "Target survey respondents"
},
"hypotheses": {
"type": "array",
"items": { "type": "string" },
"description": "Hypotheses to validate through survey"
},
"maxQuestions": {
"type": "number",
"default": 10,
"description": "Maximum number of questions"
},
"responseData": {
"type": "array",
"description": "Survey response data for analysis (if analyzing existing survey)"
}
},
"required": ["surveyType", "objective"]
}
{
"type": "object",
"properties": {
"survey": {
"type": "object",
"properties": {
"title": { "type": "string" },
"introduction": { "type": "string" },
"questions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"type": { "type": "string" },
"text": { "type": "string" },
"options": { "type": "array", "items": { "type": "string" } },
"required": { "type": "boolean" },
"logic": { "type": "object" }
}
}
},
"estimatedTime": { "type": "string" }
}
},
"analysisFramework": {
"type": "object",
"properties": {
"keyMetrics": { "type": "array", "items": { "type": "string" } },
"segmentationCriteria": { "type": "array", "items": { "type": "string" } },
"successThresholds": { "type": "object" }
}
},
"analysis": {
"type": "object",
"description": "Analysis results if response data was provided",
"properties": {
"responseRate": { "type": "number" },
"keyFindings": { "type": "array", "items": { "type": "string" } },
"segmentInsights": { "type": "object" },
"statisticalConfidence": { "type": "object" },
"recommendations": { "type": "array", "items": { "type": "string" } }
}
}
}
}
const survey = await executeSkill('survey-design', {
surveyType: 'pmf',
objective: 'Measure product-market fit for new analytics feature',
targetAudience: 'Active users who have used analytics at least 3 times',
hypotheses: [
'Users find the analytics feature valuable for their workflow',
'Users would be disappointed if the feature was removed'
],
maxQuestions: 8
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.