Skip to content

Latest commit

 

History

History
42 lines (42 loc) · 1.11 KB

PROJECT_STRUCTURE.md

File metadata and controls

42 lines (42 loc) · 1.11 KB

pentest-agent-system/ ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PROJECT_STRUCTURE.md ├── README.md ├── SYSTEM_OVERVIEW.md ├── deno/ │ ├── deno.json │ ├── deps.ts │ ├── init-deno.sh │ ├── main_test.ts │ └── main.ts ├── docs/ │ ├── api_documentation.md │ ├── contributing.md │ ├── overview.md │ ├── setup_guide.md │ └── usage_guide.md ├── logs/ ├── python/ │ ├── init-python.sh │ ├── main.py │ ├── makefile │ ├── pyproject.toml │ ├── README.md │ ├── requirements.txt │ ├── research_output.txt │ ├── ruff.toml │ ├── uv.lock │ ├── modules/ │ │ ├── oai-agent-00.py │ │ ├── react-agent.py │ │ └── tools.py │ ├── src/ │ │ └── pentest_agent_system/ │ │ └── init.py │ └── tests/ │ └── db_debug.py └── storage/ ├── data.db └── data.json