- Core engine: simulator, game mechanics, triggers (138 tests) - Fog-of-war per-player state tracking - Meeting flow: interrupt, discussion, voting, consolidation - Prompt assembler with strategy injection tiers - LLM client with fallbacks for models without JSON/system support - Prompt templates: action, discussion, voting, reflection - Full integration in main.py orchestrator - Verified working with free OpenRouter models (Gemma)
50 lines
469 B
Plaintext
50 lines
469 B
Plaintext
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
*.log
|
|
|
|
# Node.js
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Secrets
|
|
.gitea_token
|
|
|
|
# Project specific
|
|
available_models.json
|
|
fetch_models.py
|
|
from_user/
|
|
venv/
|
|
|
|
# Generated Data & Scripts
|
|
available_models.json
|
|
fetch_models.py
|
|
from_user/
|
|
venv/
|
|
|