gitextract_gm363zlf/ ├── .dockerignore ├── .githooks/ │ └── pre-push ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── docker.yml │ ├── release-desktop.yml │ └── release.yml ├── .gitignore ├── .release-please-manifest.json ├── AGENTS.md ├── API.md ├── CHANGELOG.md ├── CNAME ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── MODELS.md ├── Makefile ├── README.md ├── README.zh.md ├── data/ │ └── hf_models.json ├── flake.nix ├── index.html ├── install.sh ├── llmfit-core/ │ ├── Cargo.toml │ ├── data/ │ │ ├── docker_models.json │ │ └── hf_models.json │ └── src/ │ ├── fit.rs │ ├── hardware.rs │ ├── lib.rs │ ├── models.rs │ ├── plan.rs │ └── providers.rs ├── llmfit-desktop/ │ ├── Cargo.toml │ ├── build.rs │ ├── capabilities/ │ │ └── default.json │ ├── src/ │ │ └── main.rs │ ├── tauri.conf.json │ └── ui/ │ ├── app.js │ ├── index.html │ └── styles.css ├── llmfit-tui/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── display.rs │ ├── main.rs │ ├── serve_api.rs │ ├── theme.rs │ ├── tui_app.rs │ ├── tui_events.rs │ └── tui_ui.rs ├── llmfit-web/ │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.jsx │ │ ├── App.test.jsx │ │ ├── api.js │ │ ├── api.test.js │ │ ├── main.jsx │ │ ├── styles.css │ │ └── test-setup.js │ └── vite.config.js ├── scripts/ │ ├── install-openclaw-skill.sh │ ├── scrape_docker_models.py │ ├── scrape_hf_models.py │ ├── test_api.py │ ├── update_models.sh │ └── verify_models.py └── skills/ └── llmfit-advisor/ └── SKILL.md