- Root pyproject.toml + uv.lock: one pinned Python 3.12 environment for every cluster (the Project Manual's rule), as a uv workspace; cluster code folders are workspace members. - AICONTROL/: the AI & Control cluster package. spaces.py builds the 64-value observation and 4-value action spaces from configs/env.yaml; interface draft for the November session with Simulations; tests; clone-and-run README. - .gitignore: Python environment, caches, W&B runs, raw data downloads. - CLAUDE.md: repository guidance for Claude Code. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
36 lines
681 B
Text
36 lines
681 B
Text
# Node / web build artifacts (website/)
|
|
node_modules/
|
|
dist/
|
|
.astro/
|
|
.wrangler/
|
|
|
|
# Claude Code local config / session data
|
|
.claude/
|
|
|
|
# OS junk
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
.DS_Store
|
|
|
|
# MATLAB / Simulink autosaves and build artefacts
|
|
*.asv
|
|
*.autosave
|
|
slprj/
|
|
*.slxc
|
|
*.slx.r20*
|
|
|
|
# Personal data — recruitment notes on named candidates. Kept locally, never committed.
|
|
# Root-anchored so it cannot catch the generic question template in docs/.
|
|
/Interview Questions-*.md
|
|
|
|
# Python — the shared environment is rebuilt from uv.lock with `uv sync`; never commit it
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
|
|
# Experiment logs and local data downloads
|
|
wandb/
|
|
**/data/raw/
|