gitextract_k0pw2u6b/ ├── .github/ │ ├── CODEOWNERS │ ├── release-please.yml │ └── workflows/ │ ├── gemini-review.yml │ ├── license.yml │ └── package-and-upload-assets.yml ├── .gitignore ├── .release-please-manifest.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GEMINI.md ├── LICENSE ├── README.md ├── SECURITY.md ├── commands/ │ └── security/ │ ├── analyze-full.toml │ ├── analyze-github-pr.toml │ └── analyze.toml ├── docs/ │ └── releases.md ├── gemini-extension.json ├── mcp-server/ │ ├── package.json │ ├── src/ │ │ ├── constants.ts │ │ ├── filesystem.test.ts │ │ ├── filesystem.ts │ │ ├── index.ts │ │ ├── knowledge/ │ │ │ └── path_traversal.md │ │ ├── knowledge.integration.test.ts │ │ ├── knowledge.test.ts │ │ ├── knowledge.ts │ │ ├── parser.test.ts │ │ ├── parser.ts │ │ ├── poc.test.ts │ │ ├── poc.ts │ │ ├── security.test.ts │ │ ├── security.ts │ │ └── tools/ │ │ ├── poc_context.ts │ │ ├── run_poc.ts │ │ ├── security_patch_context.test.ts │ │ └── security_patch_context.ts │ └── tsconfig.json ├── release-please-config.json └── skills/ ├── dependency-manager/ │ └── SKILL.md ├── poc/ │ └── SKILL.md └── security-patcher/ └── SKILL.md