Create and maintain user personas from research data for product targeting
Creates and maintains detailed user personas from research data to guide product targeting decisions.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for creating and maintaining user personas from research data. Enables product teams to develop rich, data-driven personas that guide product decisions and marketing strategies.
This skill integrates with the following processes:
user-story-mapping.js - Persona-driven story mappingjtbd-analysis.js - Jobs per persona analysisfeature-definition-prd.js - Persona targeting in PRDsproduct-launch-gtm.js - Persona-based launch targeting{
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": ["create", "update", "analyze", "map"],
"description": "Operation mode"
},
"researchData": {
"type": "object",
"properties": {
"interviews": { "type": "array", "items": { "type": "object" } },
"surveys": { "type": "array", "items": { "type": "object" } },
"analytics": { "type": "object" },
"supportTickets": { "type": "array", "items": { "type": "object" } }
},
"description": "Research data sources for persona creation"
},
"existingPersonas": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"description": { "type": "string" },
"attributes": { "type": "object" }
}
}
},
"segmentationCriteria": {
"type": "array",
"items": { "type": "string" },
"description": "Criteria for persona segmentation"
},
"productFeatures": {
"type": "array",
"items": { "type": "string" },
"description": "Features to map to personas"
}
},
"required": ["mode"]
}
{
"type": "object",
"properties": {
"personas": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"tagline": { "type": "string" },
"demographics": {
"type": "object",
"properties": {
"role": { "type": "string" },
"industry": { "type": "string" },
"companySize": { "type": "string" },
"experience": { "type": "string" }
}
},
"psychographics": {
"type": "object",
"properties": {
"goals": { "type": "array", "items": { "type": "string" } },
"frustrations": { "type": "array", "items": { "type": "string" } },
"motivations": { "type": "array", "items": { "type": "string" } },
"behaviors": { "type": "array", "items": { "type": "string" } }
}
},
"jobs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"job": { "type": "string" },
"importance": { "type": "string" },
"currentSolution": { "type": "string" }
}
}
},
"quotes": { "type": "array", "items": { "type": "string" } },
"marketSize": {
"type": "object",
"properties": {
"tam": { "type": "string" },
"sam": { "type": "string" },
"som": { "type": "string" }
}
}
}
}
},
"featureMapping": {
"type": "object",
"description": "Mapping of features to personas with priority"
},
"comparisonMatrix": {
"type": "object",
"description": "Comparison of personas across key dimensions"
},
"recommendations": {
"type": "array",
"items": { "type": "string" }
}
}
}
const personas = await executeSkill('persona-development', {
mode: 'create',
researchData: {
interviews: [
{ id: 'int-1', role: 'Product Manager', painPoints: ['...'], goals: ['...'] },
{ id: 'int-2', role: 'Developer', painPoints: ['...'], goals: ['...'] }
],
analytics: {
userSegments: ['enterprise', 'smb', 'startup'],
behaviorPatterns: ['power-user', 'casual', 'admin']
}
},
segmentationCriteria: ['role', 'company_size', 'use_case']
});
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 an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.