gitextract_tn_9uzpl/ ├── .github/ │ └── workflows/ │ ├── build-release.yml │ └── test.yml ├── .gitignore ├── .serena/ │ ├── .gitignore │ ├── memories/ │ │ ├── code_style_conventions.md │ │ ├── files_feature_overview.md │ │ ├── project_overview.md │ │ ├── project_structure.md │ │ ├── suggested_commands.md │ │ ├── task_completion_checklist.md │ │ └── testing_patterns.md │ └── project.yml ├── CLAUDE.md ├── LICENSE ├── README.md ├── cmd/ │ ├── cmd_test.go │ ├── download.go │ ├── integration_test.go │ ├── list.go │ ├── main.go │ ├── root.go │ └── version.go ├── go.mod ├── go.sum ├── lib/ │ ├── extractor.go │ ├── extractor_test.go │ ├── fetcher.go │ ├── fetcher_test.go │ ├── files.go │ ├── files_test.go │ ├── images.go │ └── images_test.go ├── main.go └── specs/ ├── archive-index-page.md └── file-attachment-download.md