- Set up Python package structure with pyproject.toml - Created MCP server, optimization engine, and NX journals modules - Added configuration templates - Implemented pluggable result extractor architecture - Comprehensive README with architecture overview - Project ready for GitHub push 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
83 lines
717 B
Plaintext
83 lines
717 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# NX/FEA Files
|
|
*.op2
|
|
*.f06
|
|
*.f04
|
|
*.xdb
|
|
*.log
|
|
*.diag
|
|
*.pch
|
|
*.master
|
|
*.dball
|
|
*.ldra
|
|
*.sdb
|
|
*.sim.bak
|
|
*.prt.bak
|
|
|
|
# Optimization Results
|
|
optuna_study.db
|
|
optuna_study.db-journal
|
|
history.csv
|
|
history.bak
|
|
next.exp
|
|
RMS_log.csv
|
|
archives/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Node modules (for dashboard)
|
|
node_modules/
|
|
.npm
|
|
.cache
|
|
dist/
|
|
build/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# OS
|
|
Thumbs.db
|
|
desktop.ini
|