gitextract_4b3igp5s/ ├── .editorconfig ├── .envrc ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── flake-checker.yml │ ├── flake-updater.yml │ ├── lint-pr.yml │ ├── lint-shellcheck.yml │ ├── publish-release.yml │ ├── test-build-quickemu.yml │ └── test-quickget.yml ├── .gitignore ├── .gitmodules ├── AGENTS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── chunkcheck ├── debian/ │ ├── changelog │ ├── control │ ├── copyright │ ├── install │ ├── rules │ └── source/ │ └── format ├── devshell.nix ├── docs/ │ ├── Makefile │ ├── pandoc-man.mk │ ├── quickemu.1 │ ├── quickemu.1.md │ ├── quickemu_conf.5 │ ├── quickemu_conf.5.md │ ├── quickget.1 │ └── quickget.1.md ├── flake.lock ├── flake.nix ├── package.nix ├── quickemu ├── quickget └── quickreport