4x-game-agent
LLM-powered AI agent framework for 4X mobile strategy games (Rise of Kingdoms, Evony, Lords Mobile, etc.). 5-layer hybrid architecture: OCR → FSM → World Model → Workflows → LLM Vision. 99% cheaper than pure LLM approach.
파일 탐색기
- bug_report.md
- feature_request.md
- new_game.md
- ci.yml
- PULL_REQUEST_TEMPLATE.md
- __init__.py
- test_llm.py
- test_reflection.py
- __init__.py
- adb.py
- dashboard.py
- llm.py
- ocr.py
- reflection.py
- template_match.py
- devto_article.md
- hackernews.md
- reddit_gamedev.md
- reddit_machinelearning.md
- twitter.md
- adding-a-game.md
- architecture.md
- cost-analysis.md
- config.yaml
- coordinate_map.py
- knowledge.py
- main.py
- README.md
- screen_analyzer.py
- state_machine.py
- __init__.py
- building_finder.py
- config.yaml
- coordinate_map.py
- engine.py
- knowledge.py
- main.py
- ocr.py
- prompts.py
- README.md
- screen_analyzer.py
- state_machine.py
- strategy.py
- workflow_engine.py
- world_model.py
- .gitignore
- CLAUDE.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE
- Makefile
- pyproject.toml
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
adb devices
설명 보기 ▼
adb devices
List connected Android devices.
adb devices
List devices:
adb devices -l
List devices and their system info:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
