# mind-engine-lab **Repository Path**: bai_entj_a/mind-engine-lab ## Basic Information - **Project Name**: mind-engine-lab - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2026-02-23 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mind-engine-lab (Python) Researcher-facing Mind Engine sandbox: 1) Import world config Excel (Object_Table_world_config_v0_4.xlsx) 2) Generate/load Observation (offline, reproducible) 3) Configure ActionMeaning (DSL) + choose built-in plugins 4) Compile to YAML 5) Test with Observation -> L2/L3/L4 outputs + trace ## Install ```bash python -m venv .venv source .venv/bin/activate pip install -r requirements.txt ``` ## WebUI ```bash streamlit run app.py ``` ## CLI 一般不使用 CLI,除非需要批量生成 Observation 或自动化测试: ```bash mind-engine import-world --xlsx /path/to/world_config.xlsx --out data/world.json mind-engine gen-obs --world data/world.json --out data/observations.json --n 20 --seed 42 mind-engine init-config --out data/config.yaml mind-engine test --config data/config.yaml --world data/world.json --obs data/observations.json --index 0 ```