library/specializations/ux-ui-design/skills/persona-template/SKILL.md
Generate user persona documents and empathy maps from templates
npx skillsauth add a5c-ai/babysitter persona-templateInstall 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.
Generate professional user persona documents and empathy map visualizations from structured data and templates.
{
"type": "object",
"properties": {
"personaData": {
"type": "object",
"properties": {
"name": { "type": "string" },
"photo": { "type": "string" },
"demographics": {
"type": "object",
"properties": {
"age": { "type": "number" },
"occupation": { "type": "string" },
"location": { "type": "string" },
"education": { "type": "string" }
}
},
"goals": { "type": "array", "items": { "type": "string" } },
"frustrations": { "type": "array", "items": { "type": "string" } },
"behaviors": { "type": "array", "items": { "type": "string" } },
"quote": { "type": "string" },
"bio": { "type": "string" }
}
},
"empathyMap": {
"type": "object",
"properties": {
"says": { "type": "array" },
"thinks": { "type": "array" },
"does": { "type": "array" },
"feels": { "type": "array" }
}
},
"templateStyle": {
"type": "string",
"enum": ["minimal", "detailed", "visual", "ux-agency"],
"default": "detailed"
},
"outputFormat": {
"type": "string",
"enum": ["pdf", "png", "markdown", "html"],
"default": "markdown"
}
},
"required": ["personaData"]
}
{
"type": "object",
"properties": {
"personaDocument": {
"type": "string",
"description": "Path to generated persona document"
},
"empathyMapDocument": {
"type": "string",
"description": "Path to generated empathy map"
},
"cardImage": {
"type": "string",
"description": "Path to persona card image"
},
"markdownContent": {
"type": "string",
"description": "Markdown content if applicable"
}
}
}
const result = await skill.execute({
personaData: {
name: 'Sarah Chen',
demographics: {
age: 34,
occupation: 'Product Manager',
location: 'San Francisco, CA'
},
goals: ['Streamline team workflows', 'Reduce meeting overhead'],
frustrations: ['Too many tools', 'Information silos'],
quote: 'I need to see the big picture while managing details'
},
empathyMap: {
says: ['We need better collaboration'],
thinks: ['Is there an easier way?'],
does: ['Checks multiple apps daily'],
feels: ['Overwhelmed by notifications']
},
templateStyle: 'detailed',
outputFormat: 'pdf'
});
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.