What problem does it solve? Setting up a new machine learning service from scratch involves repetitive boilerplate: folder structures, pinned dependencies, model classes, API endpoints, training scripts, and test files. This Skill automates the entire bootstrap of an AI inference module for battery State-of-Health prediction and anomaly detection in one orchestrated run. ## Core Features & Use Cases - Full Project Scaffolding: Creates the directory tree (api/, data/, models/, train/, tests/), pinned requirements.txt, pytest.ini, and .gitignore in one pass. - Orchestrated Sub-Skills: Sequentially invokes scaffold-model, scaffold-preprocessing, scaffold-training, scaffold-fastapi-endpoint, and scaffold-unit-tests to generate every source file. - Production-Ready Templates: Generates a FastAPI app with lifespan-based artifact loading (LSTM, Isolation Forest, MinMaxScaler), a /predict endpoint enforcing 30-timestep input windows, and a /health endpoint. - Use Case: When starting the AI module for the solar battery monitoring capstone, run this once to get a complete, importable, testable codebase ready for training on the NASA dataset. ## Quick Start Ask the AI to run /scaffold-ai-module in an empty repository to bootstrap the entire AI module structure with models, API, training scripts, and tests.