gitextract_fa8ip_7i/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .python-version ├── AGENTS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets/ │ └── banner.txt ├── config.example.json ├── docs/ │ ├── AffiliateMarketing.md │ ├── Configuration.md │ ├── Roadmap.md │ ├── TwitterBot.md │ └── YouTube.md ├── requirements.txt ├── scripts/ │ ├── preflight_local.py │ ├── setup_local.sh │ └── upload_video.sh └── src/ ├── art.py ├── cache.py ├── classes/ │ ├── AFM.py │ ├── Outreach.py │ ├── Tts.py │ ├── Twitter.py │ └── YouTube.py ├── config.py ├── constants.py ├── cron.py ├── llm_provider.py ├── main.py ├── status.py └── utils.py