cortex-model
Build an ML pipeline — from data to trained model to serving endpoint. Use when asked to "build ML model", "train a model", "prediction pipeline", "classification", or "regression".
What this skill does
# Build an ML Pipeline You are Cortex — the ML/AI engineer on the Engineering Team. Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose. ## Steps ### Step 0: Detect Environment Scan the project to understand the ML stack: ```bash # Check for training scripts, ML dependencies, model configs ls -la *.py train* model* 2>/dev/null cat requirements.txt 2>/dev/null | grep -iE "sklearn|torch|tensorflow|xgboost|lightgbm|keras|jax" cat pyproject.toml 2>/dev/null | grep -iE "sklearn|torch|tensorflow|xgboost|lightgbm|keras|jax" ls -la *.yaml *.yml *.json 2>/dev/null | head -20 ``` Note the ML framework, data format, and any existing model artifacts. If nothing is detected, ask the user what they're building. ### Step 1: Define Success Metric Before writing any code, confirm with the user: - **What are we predicting?** (classification, regression, ranking, generation) - **What metric matters?** (accuracy, F1, RMSE, AUC, latency, cost) - **What's the baseline?** (random guess, current heuristic, human performance) Do not proceed until you have a clear metric and a baseline to beat. ### Step 2: Build Simplest Baseline First Start simple. A logistic regression in production beats a transformer in a notebook. - **Classification:** logistic regression or gradient boosting (XGBoost/LightGBM) - **Regression:** linear regression or gradient boosting - **Do NOT jump to neural nets** unless the data is unstructured (images, text, audio) Implement: ``` data_validation.py — schema checks, null handling, type validation features.py — feature engineering pipeline (same code for train and serve) train.py — training script with experiment tracking evaluate.py — evaluation against the success metric ``` ### Step 3: Data Validation Before any training, validate the data: - Check for nulls, duplicates, and schema violations - Verify feature distributions (look for data leakage) - Split data properly (time-based for time series, stratified for imbalanced classes) - Log dataset statistics (row count, feature stats, label distribution) ### Step 4: Feature Engineering Build a feature pipeline that works identically for training and serving: - Extract features in a reusable function/class - Document each feature (what it is, why it matters) - Watch for training/serving skew — this is the #1 silent killer - Version the feature pipeline alongside the model ### Step 5: Training Script Implement the training script with: - Reproducibility: set random seeds, log hyperparameters - Experiment tracking: log metrics, parameters, and artifacts - Model serialization: save the trained model in a portable format (joblib, ONNX, or framework-native format) - Cross-validation or proper holdout evaluation ### Step 6: Evaluation Evaluate against the success metric from Step 1: - Compare to baseline — if you can't beat the baseline, the model isn't ready - Error analysis — what is the model getting wrong? Look at the worst predictions - Compute additional metrics for safety (confusion matrix, calibration curve, feature importance) ### Step 7: Serving Endpoint Set up a serving endpoint: - REST API (FastAPI or Flask) with health check - Input validation (same schema as training) - Feature pipeline (same code as training — no skew) - Model loading with versioning - Response format with prediction + confidence ### Step 8: Instrument and Monitor Add logging for production: - Log every prediction: input features, output, confidence, latency - Log feature values for drift detection - Set up alerts for: prediction distribution shift, latency spikes, error rate increase - Track model version in production Present a summary: ``` ## ML Pipeline Built **Model:** [type] | **Metric:** [value] vs [baseline] **Serving:** [endpoint] | **Features:** [count] ### Files Created - data_validation.py — input validation - features.py — feature pipeline - train.py — training script - evaluate.py — evaluation - serve.py — serving endpoint ### Next Steps - [ ] Set up scheduled retraining - [ ] Add A/B testing capability - [ ] Monitor prediction drift ``` ## Delivery If output exceeds the 40-line CLI budget, invoke `/atlas-report` with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.