gitextract_cksaviai/ ├── .dockerignore ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── emoji_request.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── labels.json │ ├── labels.yaml │ └── workflows/ │ ├── build.yml │ ├── codeql-analysis.yml │ ├── create-labels.yml │ ├── label-pull-requests.yml │ ├── lint.yml │ ├── stale.yml │ └── test-results.yml ├── .gitignore ├── .security.txt ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── cdbot/ │ ├── __init__.py │ ├── __main__.py │ ├── bot.py │ ├── cogs/ │ │ ├── admin.py │ │ ├── cyber.py │ │ ├── fun.py │ │ ├── general.py │ │ ├── help.py │ │ └── maths.py │ ├── constants.py │ ├── data/ │ │ ├── assess.json │ │ ├── game.json │ │ ├── legacy/ │ │ │ ├── game.json │ │ │ └── headquarters2018.json │ │ └── readme.json │ └── log.py ├── docker-compose.yml ├── pyproject.toml └── tox.ini