gitextract_uu2bikk7/ ├── .claude/ │ └── settings.local.json ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ └── add-a-project.md │ ├── MAINTENANCE.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── broken_links.yml │ ├── deploy-pages.yml │ ├── health_report.yml │ └── pull_request.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── Makefile ├── README.md ├── cmd/ │ └── awesome-docker/ │ └── main.go ├── config/ │ ├── exclude.yaml │ ├── health_cache.yaml │ └── website.tmpl.html ├── go.mod ├── go.sum ├── index.html └── internal/ ├── builder/ │ ├── builder.go │ └── builder_test.go ├── cache/ │ ├── cache.go │ └── cache_test.go ├── checker/ │ ├── github.go │ ├── github_test.go │ ├── http.go │ └── http_test.go ├── linter/ │ ├── fixer.go │ ├── fixer_test.go │ ├── linter.go │ ├── linter_test.go │ └── rules.go ├── parser/ │ ├── parser.go │ ├── parser_test.go │ └── types.go ├── scorer/ │ ├── scorer.go │ └── scorer_test.go └── tui/ ├── model.go ├── styles.go ├── tree.go ├── tree_test.go └── tui.go