Skip to content

Instalación

Parley corre en cualquier sistema con Go 1.22+ como binario único. No necesita runtime, no modifica el sistema, no crea servicios.

La forma más rápida en macOS y Linux:

Terminal window
brew install pigu-ing/tap/parley
Terminal window
go install github.com/pigu-ing/parley@latest
Terminal window
parley --version

Terminal window
parley scan . --recursive
Terminal window
parley scan handlers/auth.go
Terminal window
parley scan --staged --severity HIGH
Terminal window
parley scan . --recursive --format sarif --output results.sarif
Terminal window
parley rules list --language go
parley rules list --language python
parley rules list --language typescript
parley rules list --language javascript

parley — AI code security scanner
3 file(s) scanned
handlers/auth.go
[CRITICAL] G001 Hardcoded Credentials line 12
password := "hunter2"
→ Use os.Getenv() or a secrets manager such as HashiCorp Vault.