Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

build-feature-store构建特征存储

Agent Skill

build-feature-store 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

456

周安装

19

GitHub Stars

12

下载量

152
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:build-feature-store(构建特征存储)
来源仓库:https://github.com/pjt222/development-guides
仓库路径:skills/build-feature-store
安装命令:
npx skills add https://github.com/pjt222/development-guides --skill build-feature-store
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pjt222/development-guides --skill build-feature-store

简介

基于 Feast 框架建立中心化特征管理平台。

  • 确保训练与推理阶段的特征一致性,支持历史回溯。
  • 适用于多模型团队协作与防特征泄漏场景。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需提供特征定义、转换逻辑与版本控制完整配置模板。
  • build-feature-store 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Build Feature Store

See Extended Examples for complete configuration files and templates.

Implement centralized feature management with Feast for consistent feature serving across training and inference.

When to Use

  • Managing features for multiple ML models across teams
  • Ensuring training-serving consistency for features
  • Implementing point-in-time correct historical features
  • Serving low-latency features for real-time inference
  • Reusing feature definitions across projects
  • Versioning feature transformations
  • Building feature catalog for discovery and governance
  • Preventing feature leakage in training pipelines

Inputs

  • Required: Raw data sources (databases, data lakes, data warehouses)
  • Required: Python environment with Feast installed
  • Required: Offline store backend (BigQuery, Snowflake, Redshift, or Parquet files)
  • Required: Online store backend (Redis, DynamoDB, Cassandra, or SQLite for dev)
  • Optional: Feature transformation logic (Python, SQL, Spark)
  • Optional: Entity key definitions (user_id, product_id, etc.)
  • Optional: Kubernetes cluster for Feast server deployment

Procedure

Step 1: Initialize Feast Feature Repository

Set up Feast project structure and configure storage backends.

# Install Feast with required extras
pip install 'feast[redis,postgres]'  # Add backends as needed

# Initialize new feature repository
feast init my_feature_repo
cd my_feature_repo

# Directory structure created:
# my_feature_repo/
# ├── feature_store.yaml       # Configuration
# ├── features.py              # Feature definitions
# └── data/                    # Sample data (dev only)

Configure feature_store.yaml:

# feature_store.yaml
project: customer_analytics
registry: data/registry.db  # SQLite for dev, use S3/GCS for prod
provider: local

# Offline store for training data
offline_store:
  type: postgres
# ... (see EXAMPLES.md for complete implementation)

Production configuration with cloud backends:

# feature_store.prod.yaml
project: customer_analytics
registry: s3://feast-registry/prod/registry.db
provider: aws

offline_store:
  type: bigquery
  project_id: my-gcp-project
# ... (see EXAMPLES.md for complete implementation)

Expected: Feast repository initialized with config file, sample feature definitions created, offline and online stores configured, registry path accessible.

On failure: Verify database/Redis credentials (psql -U feast_user -h localhost), check connection strings format, ensure databases exist (CREATE DATABASE feature_store), verify cloud permissions for S3/BigQuery/DynamoDB, test connectivity to storage backends, check Feast version compatibility with backends (feast version).

Step 2: Define Entities and Data Sources

Create entity definitions and connect to raw data sources.

# entities.py
from feast import Entity, ValueType

# Define entities (primary keys for features)
customer = Entity(
    name="customer",
    description="Customer entity",
    value_type=ValueType.INT64,
# ... (see EXAMPLES.md for complete implementation)

Define data sources:

# data_sources.py
from feast import FileSource, BigQuerySource, RedshiftSource
from feast.data_format import ParquetFormat
from datetime import timedelta

# Development: File-based source
customer_transactions_source = FileSource(
    path="data/customer_transactions.parquet",
# ... (see EXAMPLES.md for complete implementation)

Expected: Entity definitions reference correct ID columns, data sources connect to raw data successfully, event_timestamp_column exists in source data, created_timestamp_column allows point-in-time queries.

On failure: Verify source data files exist and are readable, check BigQuery/Redshift credentials and table access, ensure timestamp columns have correct format (Unix timestamp or ISO8601), verify Kafka connectivity and topic existence, check schema compatibility between sources and entities.

Step 3: Define Feature Views with Transformations

Create feature views that define how raw data becomes ML-ready features.

# feature_views.py
from feast import FeatureView, Field
from feast.types import Float32, Int64, String, Bool
from datetime import timedelta
from entities import customer, product
from data_sources import customer_features_source

# Simple feature view without transformations
# ... (see EXAMPLES.md for complete implementation)

Expected: Feature views registered successfully, schema matches source data, transformations execute without errors, TTL values appropriate for use case, on-demand views combine batch and request features.

On failure: Verify field names match source columns exactly, check dtype compatibility (Int64 vs Int32), ensure entity references exist, validate transformation logic with sample data, check for division by zero in calculations, verify request source schema matches inference payload.

Step 4: Apply Feature Definitions and Materialize Features

Deploy feature definitions to registry and materialize to online store.

# Apply feature definitions to registry
feast apply

# Expected output:
# Created entity customer
# Created feature view customer_stats
# Created on demand feature view customer_segments

# ... (see EXAMPLES.md for complete implementation)

Programmatic materialization:

# materialize_features.py
from feast import FeatureStore
from datetime import datetime, timedelta

# Initialize feature store
fs = FeatureStore(repo_path=".")

# Materialize all feature views
# ... (see EXAMPLES.md for complete implementation)

Expected: Feature definitions applied to registry without conflicts, materialization job completes successfully, online store populated with features, feature freshness within configured TTL.

On failure: Check offline store query succeeds (feast feature-views describe customer_stats), verify time range has data, ensure online store writable (Redis/DynamoDB permissions), check for duplicate feature names across views, verify entity keys exist in source data, monitor materialization job logs for errors, check disk space for local stores.

Step 5: Retrieve Features for Training

Fetch point-in-time correct historical features for model training.

# get_training_data.py
from feast import FeatureStore
import pandas as pd
from datetime import datetime

# Initialize feature store
fs = FeatureStore(repo_path=".")

# ... (see EXAMPLES.md for complete implementation)

Point-in-time correctness validation:

# validate_pit_correctness.py
import pandas as pd
from datetime import datetime, timedelta

def validate_point_in_time_correctness(training_df, entity_df):
    """
    Ensure features don't leak future information.
    """
# ... (see EXAMPLES.md for complete implementation)

Expected: Historical features retrieved successfully, entity_df timestamps preserved, no NaN values for materialized features, point-in-time correctness guaranteed (no future data leakage), feature service groups features logically.

On failure: Check entity_df has required columns (entity names + event_timestamp), verify feature view names match registry, ensure offline store has data for requested time range, check for timezone mismatches (use UTC), verify entity IDs exist in source data, inspect logs for SQL query errors, validate feature view TTL covers requested time range.

Step 6: Serve Features for Real-Time Inference

Retrieve low-latency features from online store for model serving.

# serve_features.py
from feast import FeatureStore
import time

# Initialize feature store
fs = FeatureStore(repo_path=".")

def get_inference_features(customer_ids: list, request_data: dict = None):
# ... (see EXAMPLES.md for complete implementation)

FastAPI integration:

# api.py
from fastapi import FastAPI
from pydantic import BaseModel
from feast import FeatureStore
import mlflow

app = FastAPI()
fs = FeatureStore(repo_path=".")
# ... (see EXAMPLES.md for complete implementation)

Expected: Online features retrieved in <10ms for single entity, batch retrieval scales efficiently, on-demand transformations execute correctly, request-time features merged with batch features, API responds quickly (<50ms end-to-end).

On failure: Check online store populated (run materialize if empty), verify Redis/DynamoDB connectivity and latency, ensure entity keys exist in online store, check for cold start issues (warm up cache), verify on-demand transformation logic, monitor online store memory/CPU usage, check network latency between service and online store.

Validation

  • Feast repository initialized and configured
  • Offline and online stores connected successfully
  • Entity definitions match source data
  • Feature views registered in registry
  • On-demand transformations execute correctly
  • Materialization completes without errors
  • Historical features retrieved with point-in-time correctness
  • Online features served with low latency (<10ms)
  • Feature freshness within configured TTL
  • Training-serving consistency verified
  • Feature catalog accessible for discovery

Common Pitfalls

  • Feature leakage: Using future data in historical features - always validate point-in-time correctness, use created_timestamp column
  • Inconsistent transformations: Different logic for training vs serving - use Feast on-demand views for consistency
  • Stale features: Online store not materialized regularly - set up scheduled materialization jobs (cron/Airflow)
  • Missing entity keys: Entities in training set not in online store - ensure comprehensive materialization, handle missing keys gracefully
  • Type mismatches: Schema types don't match source data - validate dtypes before apply, use explicit Field definitions
  • Slow online retrieval: Network latency or overloaded online store - co-locate feature store with inference service, use connection pooling
  • Large feature views: Materializing millions of entities is slow - partition by date, use incremental materialization, optimize offline queries
  • No feature versioning: Breaking changes affect production models - version feature views, maintain backward compatibility
  • Timezone confusion: Mixing timezones causes incorrect joins - always use UTC for timestamps
  • Ignoring TTL: Serving expired features - set appropriate TTL values, monitor feature freshness

Related Skills

  • track-ml-experiments - Log feature metadata in MLflow experiments
  • orchestrate-ml-pipeline - Schedule feature materialization jobs
  • version-ml-data - Version raw data sources for feature engineering
  • deploy-ml-model-serving - Integrate feature store with model serving
  • serialize-data-formats - Choose efficient storage formats for features
  • design-serialization-schema - Design schemas for feature sources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.48%
按下载量换算58

Claude

28%
按下载量换算43

Cursor

20.83%
按下载量换算32

Gemini CLI

10.53%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills