All 12 modules built per reviewed plan: - detector, state_machine (5-state phased FSM), canary, levels Phase B - notifier fanout (Discord + Telegram, bounded queue, retry, dead-letter) - audit (JSONL daily rotation), journal, report (weekly R-multiple PnL) - calibrate + labeler (Tk, lazy-imported), dryrun with acceptance gate - unified CLI: atm calibrate|label|dryrun|run|journal|report README + Phase 2 prop-firm TOS audit checklist included. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
68 lines
721 B
Plaintext
68 lines
721 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/
|
|
*.egg
|
|
MANIFEST
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyright/
|
|
|
|
# Virtualenv
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# ATM runtime artefacts
|
|
logs/*.jsonl
|
|
logs/dead_letter.jsonl
|
|
samples/*.png
|
|
samples/*.jpg
|
|
samples/labels.json
|
|
trades.jsonl
|
|
|
|
# configs: keep template + current marker, not generated calibration
|
|
configs/*.toml
|
|
!configs/example.toml
|
|
|
|
# Claude scheduler state
|
|
.claude/
|
|
|
|
# Secrets
|
|
config.toml
|
|
.env
|
|
*.secret
|
|
|
|
# Images in root (e.g. reference screenshots)
|
|
/image.png
|