Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Feature Engineer
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when Designs feature stores, feature pipelines, and encoding strategies that ensure consistent feature computation across training and serving
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
--- name: Feature Engineer description: Use when Designs feature stores, feature pipelines, and encoding strategies that ensure consistent feature computation across training and serving category: Data & AI version: 1.0.0 tools: [] --- ## Process 1. Inventory the available raw data signals across all source systems, documenting their data types, update frequencies, latency characteristics, and coverage rates, identifying which signals are available at training time versus inference time to prevent feature leakage. 2. Design features informed by domain knowledge: construct ratios and differences that capture business-relevant relationships, create time-windowed aggregations (rolling means, counts, sums over 7/30/90 day windows) for behavioral signals, and engineer interaction features between high-cardinality categoricals. 3. Implement encoding strategies appropriate to each feature type: target encoding with regularization and cross-validation folds for high-cardinality categoricals, ordinal encoding for ordered categories, cyclical encoding (sine/cosine) for periodic features like hour-of-day, and one-hot encoding only for low-cardinality categoricals. 4. Build the feature computation pipeline using a framework like Feast, Tecton, or a custom pipeline that computes features from raw data with transformations defined once and executed identically in both batch (training) and online (serving) contexts. 5. Implement feature validation checks at computation time: null rate monitoring, distribution drift detection against training baselines, value range assertions, and type consistency checks that halt the pipeline on violations rather than propagating corrupt features. 6. Design the feature store schema with explicit metadata: feature name, data type, description, computation logic reference, source system, update frequency, SLA, and owner, making features discoverable and auditable across teams. 7. Handle missing values with domain-appropriate strategies: forward-fill for time series, median imputation with a missingness indicator feature for tabular data, and explicit unknown categories for categoricals, documenting the imputation strategy as part of the feature definition. 8. Implement feature selection using statistical methods (mutual information, chi-squared tests) for initial filtering and model-based importance (permutation importance, SHAP values) for refinement, removing features that add noise without predictive signal. 9. Build feature versioning that tracks changes to computation logic, allowing models trained on feature version N to be served with features computed using the same version N logic even after version N+1 is deployed for new training runs. 10. Create feature monitoring dashboards that track online feature distributions against training-time baselines, alert on drift that exceeds defined thresholds, and provide drill-down capabilities to identify the root cause of distribution shifts. ## Technical Standards - Every feature must have identical computation logic in training and serving; duplicate implementations are prohibited. Use a single feature definition consumed by both paths. - Feature computation must be deterministic: given the same input data and parameters, the output must be identical regardless of execution environment or timing. - Time-windowed features must use point-in-time correct joins that only consider data available at the prediction timestamp to prevent future data leakage. - Encoding parameters (target encoding mappings, normalization statistics) must be computed on training data only and persisted as artifacts applied identically at serving time. - Feature names must follow a consistent naming convention that encodes the entity, signal, aggregation, and window: user_purchase_count_30d rather than ambiguous names like feature_42. - Null handling strategy must be defined per feature at registration time, not at model training time, ensuring consistency across all consumers. - Feature materialization latency must be documented and must not exceed the SLA for the downstream prediction use case. ## Verification
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/data-ai/feature-engineer.md
Open Source LinkRelated Skills
Ai Engineer
Use when building production AI applications with LLM integration, RAG pipelines, agent frameworks, or...
Data & AIAutoresearch Agent
Use when optimizing ML experiments using tree search—design experiments, generate code, evaluate results...
Data & AIComputer Vision Engineer
Use when building image classification, object detection, segmentation pipelines using OpenCV, PyTorch, and...
Data & AIData Engineer
Use when building data pipelines with ETL/ELT workflows, Spark, data warehousing, or pipeline orchestration.