Ai Project Template
Description
Unified Python starter for AI projects: classical ML, deep learning, LLM apps, RAG, and agents. uv + Ruff + pytest.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
AI Project Template
[](https://github.com/Sagargupta16/ai-project-template/actions/workflows/ci.yml) [](https://github.com/Sagargupta16/ai-project-template/actions/workflows/codeql.yml) [](LICENSE) [](https://www.python.org/downloads/)
A unified Python starter for **every AI use case** -- classical ML, deep learning, LLM apps, RAG, and agents. One layout, optional extras, opinionated tooling.
Why this template
Most AI templates pick a niche. Cookiecutter Data Science assumes sklearn + notebooks. Production RAG templates assume a FastAPI service with a vector store. This template assumes **your project will span several of those** (ML model → RAG retriever → agent tool → API) and gives each concern its own home without forcing you to install frameworks you don't need.
Quick start
# Install uv (https://docs.astral.sh/uv/)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install base + the extras you need
make setup # base only
uv sync --extra ml --extra llm --extra rag # targeted
make dev # everything
# Run
make test # tests
make api # FastAPI dev server on :8000
make eval # offline evals on the golden dataset
make notebook # Jupyter
Extras
Base install is deliberately lean -- just `pydantic`, `pydantic-settings`, `python-dotenv`, `tqdm`. Everything heavy is an opt-in extra:
| Extra | Adds | Use when |
|---|---|---|
ml |
numpy, pandas, sklearn, matplotlib | Classical ML, data science |
dl |
torch | Deep learning |
llm |
anthropic, openai, tiktoken | Calling LLMs |
Related Skills
Spec Kit
💫 Toolkit to help you get started with Spec-Driven Development
Testing Webapp Testing
Test local web applications using Playwright for UI verification and debugging
Testing #29
, [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/ever
Testing Fix Issue
by metabase - Addresses GitHub issues by taking issue number as parameter, analyzing context, implementing sol
Testing Pypict Test Design
Design comprehensive test cases using PICT (Pairwise Independent Combinatorial Testing) for optimized test sui
Testing gstack
| 15,000+ | Garry Tan's exact Claude Code setup: 6 opinionated tools that serve as CEO, Eng Manager, Release M
Testing