gitextract__g7p_t3q/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── broken-link-checker.yml │ ├── pr-review-automation.yml │ └── update-db.yml ├── .gitignore ├── .lycheeignore ├── .prettierignore ├── API.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── db/ │ ├── categories.json │ └── resources.json ├── package.json ├── scripts/ │ ├── db/ │ │ └── update-db.js │ └── pr-review-automation.js └── utils/ └── db/ ├── format-categories.js ├── format-json.js ├── format-resources.js ├── group-row-content.js ├── separate-tables.js └── write-to-file.js