Automatically predict demographics when analyzing person data.
Automatically predicts demographics like age, gender, and ethnicity from person data including names, images, and profiles. Triggered when analyzing customer records, enriching profiles, or processing batch person data.
/plugin marketplace add JesseHenson/person_demographic_prediction/plugin install jessehenson-person-demographic-prediction@JesseHenson/person_demographic_predictionThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Automatically predict demographics when analyzing person data.
This skill is automatically invoked when:
Use these MCP tools for predictions:
predict_age: Age estimation from name/imagepredict_gender: Gender classificationpredict_ethnicity: Ethnicity analysisanalyze_name: Name-based demographic signalsbatch_predict: Process multiple records// Single prediction
const result = await tools.predict_age({
name: "John Smith",
image_url: "https://...",
context: "LinkedIn profile"
});
// Batch prediction
const results = await tools.batch_predict({
records: [
{ id: 1, name: "Jane Doe" },
{ id: 2, name: "Carlos Rodriguez" }
],
predictions: ["age", "gender", "ethnicity"]
});
Always return structured predictions:
{
"predictions": {
"age": {
"value": "25-34",
"confidence": 0.85,
"method": "name_analysis"
},
"gender": {
"value": "female",
"confidence": 0.92,
"method": "name_analysis"
},
"ethnicity": {
"value": "hispanic",
"confidence": 0.78,
"method": "name_analysis"
}
},
"metadata": {
"timestamp": "2025-11-08T...",
"model_version": "0.1.0",
"processing_time_ms": 150
}
}
null values for unpredictable attributesUse when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.