library/specializations/ux-ui-design/skills/survey-platform/SKILL.md
Integrate with survey platforms to create, distribute, and analyze user surveys
npx skillsauth add a5c-ai/babysitter survey-platformInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Integrate with survey platforms to create surveys, collect responses, and calculate standardized usability metrics like SUS, NPS, and CSAT.
{
"type": "object",
"properties": {
"platform": {
"type": "string",
"enum": ["typeform", "surveymonkey", "google-forms", "custom"]
},
"action": {
"type": "string",
"enum": ["create", "distribute", "collect", "analyze"]
},
"surveyType": {
"type": "string",
"enum": ["sus", "nps", "csat", "custom"]
},
"surveyConfig": {
"type": "object",
"description": "Survey configuration for creation"
},
"responsesPath": {
"type": "string",
"description": "Path to responses data"
},
"targetAudience": {
"type": "object",
"description": "Distribution targeting criteria"
}
},
"required": ["platform", "action"]
}
{
"type": "object",
"properties": {
"surveyId": {
"type": "string",
"description": "Created survey identifier"
},
"surveyUrl": {
"type": "string",
"description": "Survey distribution URL"
},
"responseCount": {
"type": "number",
"description": "Number of responses collected"
},
"scores": {
"type": "object",
"properties": {
"sus": { "type": "number" },
"nps": { "type": "number" },
"csat": { "type": "number" }
}
},
"analysis": {
"type": "object",
"description": "Statistical analysis of responses"
},
"reportPath": {
"type": "string",
"description": "Path to generated report"
}
}
}
const result = await skill.execute({
platform: 'typeform',
action: 'analyze',
surveyType: 'sus',
responsesPath: './survey-responses.json'
});
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.