build-feature-store

build-feature-store is a skill for Claude Code from pjt222/agent-almanac. It costs 86 tokens per session (2,430 once invoked), scanned A, original, MIT.

A central system for defining, storing, and serving machine-learning features using Feast. Features are input values for models, such as a user's recent activity, kept consistent between training and live predictions.

In plain words
What is it for?
Use it to configure offline and online feature stores, create feature views, support real-time inference, and make time-correct historical joins.
Why use it?
It reduces mismatches between training data and production data, and helps teams reuse and version feature definitions.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agent-almanac plugin — 122 skills, 76 agents shipped together

Good fit Use it to configure offline and online feature stores, create feature views, support real-time inference, and make time-correct historical joins.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pjt222/agent-almanac/build-feature-store
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add pjt222/agent-almanac --skill build-feature-store
Clone the repo
git clone --depth 1 https://github.com/pjt222/agent-almanac

Made for: Claude Code.

Or install agent-almanac, the plugin that ships this one along with the rest of its 122 skills, 76 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for build-feature-store

README.md
[![agentmods](https://agentmods.dev/badge/skills/pjt222/agent-almanac/build-feature-store/github.svg)](https://agentmods.dev/skills/pjt222/agent-almanac/build-feature-store)
Your own site
<a href="https://agentmods.dev/skills/pjt222/agent-almanac/build-feature-store"><img src="https://agentmods.dev/badge/skills/pjt222/agent-almanac/build-feature-store/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for build-feature-store

Your own site · 80×15
<a href="https://agentmods.dev/skills/pjt222/agent-almanac/build-feature-store"><img src="https://agentmods.dev/badge/skills/pjt222/agent-almanac/build-feature-store.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.02430
Opus 5 $0.00043 $0.01215
Sonnet 5 $0.00017 $0.00486
Haiku 4.5 $0.00009 $0.00243

Measured 7d ago against content hash 6191a18ab637, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

build-feature-store scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

i18n/caveman-lite/skills/build-feature-store/SKILL.md · 299 lines

How it starts

The opening of the file, as written. The whole thing — 299 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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)

Read the full file on GitHub · 299 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 299 lines · 86 tokens per session scan A 6191a18ab637

Subscribe to this mod's changes

build-feature-store is a skill published in the GitHub repository pjt222/agent-almanac (32 stars, last pushed yesterday), licensed MIT. It adds 86 tokens to every session and 2,430 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

coverage-tracker

Run a Google Alerts-style keyword coverage tracker. Uses news-search for recent keyword queries, lets the LLM dedupe and classify real features versus junk, stores decisions in SQLite, and alerts only on new real coverage.

elvisun/newsjack · 47 tokens

aws-cloudformation-elasticache

Provides AWS CloudFormation patterns for ElastiCache Redis or Memcached infrastructure, including subnet groups, parameter groups, security controls, and cross-stack outputs. Use when designing cache tiers, high-availability replication groups, encryption settings, or reusable CloudFormation templates for application…

giuseppe-trisciuoglio/developer-kit · 61 tokens

loom-caching

Caching strategies for performance optimization — cache-aside, write-through, write-behind, TTL policies, eviction, and stampede prevention.

cosmix/loom · 31 tokens

semantic-caching

Redis semantic caching for LLM apps — vector similarity matching, multi-level cache, TTL strategies, cache warming.

ArieGoldkin/claude-forge · 25 tokens

caching

Caching strategies, invalidation, eviction policies, HTTP caching, distributed caching, and anti-patterns. Use when designing cache layers, choosing eviction policies, debugging stale data, or optimizing read-heavy workloads.

wpank/ai · 43 tokens

langchain4j-vector-stores-configuration

Provides configuration patterns for LangChain4J vector stores in RAG applications. Use when building semantic search, integrating vector databases (PostgreSQL/pgvector, Pinecone, MongoDB, Milvus, Neo4j), implementing embedding storage/retrieval, setting up hybrid search, or optimizing vector database performance for…

giuseppe-trisciuoglio/developer-kit · 77 tokens