Feature store management skill for online/offline feature serving, feature registration, and training-serving consistency.
Manages feature definitions for machine learning models.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdFeature store management skill using Feast for online/offline feature serving, feature registration, and ensuring training-serving consistency in ML systems.
{
"type": "object",
"required": ["action"],
"properties": {
"action": {
"type": "string",
"enum": ["apply", "materialize", "get-online", "get-historical", "list", "teardown"],
"description": "Feast action to perform"
},
"featureRepo": {
"type": "string",
"description": "Path to feature repository"
},
"features": {
"type": "array",
"items": { "type": "string" },
"description": "Feature references (feature_view:feature_name)"
},
"entityDf": {
"type": "string",
"description": "Path to entity DataFrame for historical retrieval"
},
"materializationWindow": {
"type": "object",
"properties": {
"startDate": { "type": "string" },
"endDate": { "type": "string" }
}
}
}
}
{
"type": "object",
"required": ["status", "action"],
"properties": {
"status": {
"type": "string",
"enum": ["success", "error"]
},
"action": {
"type": "string"
},
"features": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"dtype": { "type": "string" },
"featureView": { "type": "string" },
"freshness": { "type": "string" }
}
}
},
"materializationStatus": {
"type": "object",
"properties": {
"lastMaterialized": { "type": "string" },
"rowsProcessed": { "type": "integer" }
}
},
"retrievedData": {
"type": "string",
"description": "Path to retrieved feature data"
}
}
}
{
kind: 'skill',
title: 'Retrieve training features',
skill: {
name: 'feast-feature-store',
context: {
action: 'get-historical',
featureRepo: 'feature_repo/',
features: ['user_features:age', 'user_features:tenure', 'transaction_features:avg_amount'],
entityDf: 'data/training_entities.parquet'
}
}
}
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.