GraphCanon updated today · GitHub synced today
Decision brief
PentAGI is a fully autonomous AI agent system specifically designed for complex penetration testing tasks, offering a comprehensive framework that operates in an automated fashion to enhance security evaluations.
Good fit when
- Use PentAGI when you need a fully autonomous solution for handling intricate penetration tests with minimal human intervention.
- Choose PentAGI if your environment requires significant scalability and flexibility through the use of AI-driven agents, especially those capable of adapting strategies based on real-time data and API
Avoid when
- Avoid using PentAGI in scenarios where legacy systems cannot support Docker or require manual oversight for each penetration test step.
- Do not utilize PentAGI if you prefer a proprietary model over open-source solutions, as it operates under the MIT license.
- Requirements:
- Min 4 GB RAM; Requires Docker; Docker and Docker Compose (or Podman) is required; System must have a minimum of 2 vCPUs.; At least 20GB free disk space needed.
Observed Jul 11, 2026 · Source: enrich:decision_facts
Verify the decision
Adoption
Package downloads where a registry match exists. GitHub stars (21,902) are secondary evidence.
- Docker Hub pulls (30d)
- 264,610·Docker Hub API·today
Maintenance and security
Full trust report- Maintenance
- Active (13d since push)
- As of today
- Provenance
- Not a fork · Organization account
- As of today
- Security (OSV)
- No lockfile
- As of 1mo
Public GitHub metadata and optional OSV scans. Signals, not a guarantee. Trust methodology.
Install
go get github.com/vxcontrol/pentagi pkg.go.devHow it fits your stack(5)
Typed graph edges - alternatives, integrations, successors, and dependencies. Ranked by relationship type, not raw GitHub stars.
Alternative
Relationship graph
Optional deeper exploration of typed edges and category neighbours.
Similar tools
Same-category neighbours not already linked as typed edges.
Evidence and technical details
Sourced facts, taxonomy, compatibility claims, README excerpt, and machine-readable endpoints.
Overview
Provides an autonomous AI agents framework for performing complex security-related penetration testing tasks in a fully automated manner.
Capability facts
- Deploy
- Self-host
Source: dockerfile:Dockerfile · Aug 20, 2026
- Docker
- Dockerfile present
Source: dockerfile:Dockerfile · Aug 20, 2026
- Languages
- go
Source: github.language · Aug 20, 2026
Categories
Graph entities
Tags
README
Quick Start
For a step-by-step walkthrough that connects installation, configuration, LLM and embedding provider testing, and your first login, see the Installing and Configuring PentAGI guide. The sections below remain the detailed reference for each step.
System Requirements
- Docker and Docker Compose (or Podman - see Podman configuration)
- Minimum 2 vCPU
- Minimum 4GB RAM
- 20GB free disk space
- Internet access for downloading images and updates
Create installation directory
mkdir -p pentagi && cd pentagi
Manual Installation
- Create a working directory or clone the repository:
mkdir pentagi && cd pentagi
- Copy
.env.exampleto.envor download it:
curl -o .env https://raw.githubusercontent.com/vxcontrol/pentagi/master/.env.example
- Touch examples files (
example.custom.provider.yml,example.ollama.provider.yml) or download it:
curl -o example.custom.provider.yml https://raw.githubusercontent.com/vxcontrol/pentagi/master/examples/configs/custom-openai.provider.yml
curl -o example.ollama.provider.yml https://raw.githubusercontent.com/vxcontrol/pentagi/master/examples/configs/ollama-llama318b.provider.yml
- Fill in the required API keys in
.envfile.
---
# Optional: Local LLM provider (zero-cost inference)
OLLAMA_SERVER_URL=http://localhost:11434
OLLAMA_SERVER_MODEL=your_model_name
---
# Using pre-built Ollama Cloud configuration (included in Docker image)
OLLAMA_SERVER_URL=https://ollama.com
OLLAMA_SERVER_API_KEY=your_ollama_cloud_api_key
OLLAMA_SERVER_CONFIG_PATH=/opt/pentagi/conf/ollama-cloud.provider.yml
The pre-built ollama-cloud.provider.yml configuration includes optimized model assignments for all agent types:
- Simple/Assistant:
nemotron-3-super:cloud- Fast general-purpose model - Primary Agent:
qwen3-coder-next:cloud- Advanced reasoning with high effort mode - Coder/Pentester:
qwen3-coder-next:cloud- Specialized coding models - Searcher:
qwen3.5:397b-cloud- Large context for information gathering - Refiner/Refactor:
glm-5:cloud- High-quality text refinement - Adviser/Enricher:
minimax-m2.7:cloud- Efficient advisory tasks - Installer:
devstral-2:123b-cloud- Installation and setup tasks
Custom Configuration (Advanced)
To create your own agent configuration, mount a custom file from your host filesystem:
---
# Mount custom configuration from host filesystem (in .env or docker-compose override)
PENTAGI_OLLAMA_SERVER_CONFIG_PATH=/path/on/host/my-ollama-config.yml
The PENTAGI_OLLAMA_SERVER_CONFIG_PATH environment variable maps your host configuration file to /opt/pentagi/conf/ollama.provider.yml inside the container.
Example custom configuration (my-ollama-config.yml):
primary_agent:
model: "qwen3-coder-next:cloud"
temperature: 1.0
top_p: 0.9
max_tokens: 32768
reasoning:
effort: high
coder:
model: "qwen3-coder:32b"
temperature: 1.0
max_tokens: 20480
Local Ollama Configuration
For self-hosted Ollama instances:
---
# Using pre-built configurations from Docker image
OLLAMA_SERVER_CONFIG_PATH=/opt/pentagi/conf/ollama-llama318b.provider.yml
---
### Docker Image Configuration
PentAGI allows you to configure Docker image selection for executing various tasks. The system automatically chooses the most appropriate image based on the task type, but you can constrain this selection by specifying your preferred images:
| Variable | Default | Description |
| ---------------------------------- | ---------------------- | ----------------------------------------------------------- |
| `PENTAGI_IMAGE` | `vxcontrol/pentagi:latest` | Docker image used for the main PentAGI application service |
| `DOCKER_DEFAU
For agents
This page has a .md twin and JSON over the API.