gitextract_vc2g9202/ ├── .github/ │ ├── copilot-instructions.md │ ├── dependabot.yml │ └── workflows/ │ ├── codeql.yml │ ├── linter.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .vscode/ │ └── launch.json ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── go.mod ├── go.sum ├── internal/ │ ├── fixtures/ │ │ └── test-private-key.test.pem │ ├── generate.go │ ├── generate_flags.go │ ├── generate_test.go │ ├── installations.go │ ├── installations_flags.go │ ├── installations_test.go │ ├── key.go │ ├── revoke.go │ ├── revoke_flags.go │ └── revoke_test.go ├── main.go └── version.go