feature-store

feature-store is a skill for Kiro from ihatesea69/kiro-kit. It costs 30 tokens per session (294 once invoked), scanned A, original, MIT.

A system for storing and serving reusable inputs, called features, for machine-learning models. Features are prepared data points such as purchase totals or average order value.

In plain words
What is it for?
It helps build shared feature pipelines, track feature versions and origins, retrieve historical training data, serve features for predictions, and monitor changes in feature data.
Why use it?
It prevents teams from calculating the same inputs in different ways for training and live predictions, which can make model results inconsistent.

Skill for Kiro

Written for Kiro: installed under .kiro/.

Good fit It helps build shared feature pipelines, track feature versions and origins, retrieve historical training data, serve features for predictions, and monitor changes in feature data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ihatesea69/kiro-kit/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 ihatesea69/kiro-kit --skill feature-store
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/kiro-kit

Made for: Kiro.

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 feature-store

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/feature-store/github.svg)](https://agentmods.dev/skills/ihatesea69/kiro-kit/feature-store)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/feature-store"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/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 feature-store

Your own site · 80×15
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/feature-store"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/feature-store.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 294 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.00030 $0.00294
Opus 5 $0.00015 $0.00147
Sonnet 5 $0.00006 $0.00059
Haiku 4.5 $0.00003 $0.00029

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

Security

Grade A, and why

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 5d 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.

.kiro/skills/feature-store/SKILL.md · 57 lines

What it actually says

Feature Store

Activate this skill when working with feature engineering at scale.

When to Use

  • Building reusable feature computation pipelines
  • Managing feature versioning and lineage
  • Serving features for online inference
  • Sharing features across ML models
  • Ensuring training-serving consistency

Tools

  • Feast: Open-source feature store
  • Hopsworks: Full-featured platform
  • Custom: pandas + SQL + caching

Patterns

from feast import FeatureStore, Entity, FeatureView

store = FeatureStore(repo_path="feature_repo/")

# Define features
user_features = FeatureView(
    name="user_features",
    entities=[user_entity],
    schema=[
        Field(name="total_purchases", dtype=Int64),
        Field(name="avg_order_value", dtype=Float64),
    ],
    source=user_source,
)

# Retrieve for training
training_df = store.get_historical_features(
    entity_df=entity_df,
    features=["user_features:total_purchases"],
).to_df()

Rules

  • Compute features once, use everywhere
  • Version features alongside model versions
  • Monitor feature distributions for drift
  • Document feature semantics and business logic
  • Test feature pipelines with known inputs
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. 5d ago First seen · 57 lines · 30 tokens per session scan A ed4fa95e1bf6

Subscribe to this mod's changes

feature-store is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 20d ago), licensed MIT. It adds 30 tokens to every session and 294 once invoked, about $0.0002 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

connect-review

Review an Amazon Connect contact-center solution built on Lex bots and Bedrock-backed conversational logic: contact flows, bot design, Lambda integrations, prompts, latency budget, state handling, observability and cost per contact. Produces a severity-ranked findings report with a latency table, a cost estimate and…

timurgaleev/vibestack · 98 tokens

claude-api

Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports anthropic/@anthropic-ai/sdk; user asks for…

Zandereins/schliff · 193 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens

groq-inference

Ultra-fast LLM inference on custom LPU hardware. OpenAI-compatible API at api.groq.com. Lowest latency in the industry (500-1000+ tok/s). Supports chat completions, vision, audio (Whisper STT + TTS), tool calling, JSON mode, and streaming. Free tier available. Inference only — no training.

synthetic-sciences/openscience · 77 tokens

printing-press

Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…

mvanhorn/cli-printing-press · 86 tokens

llm-provider

Adds a new LLM provider implementing LLMProvider interface with call() and stream() methods. Integrates with provider factory in src/llm/index.ts, config detection in src/llm/config.ts, and error handling via tracking and recovery. Use when adding a new model backend, integrating a third-party LLM API, or extending…

caliber-ai-org/ai-setup · 100 tokens