diff --git a/README.md b/README.md index 8742a51..097080d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Ghost Security Poltergeist -High-performance secret scanner for source code, using [Vectorscan/Hyperscan](https://github.com/VectorCamp/vectorscan) for fast multi-pattern matching. Poltergeist is designed to be easy to use by humans and AI agents alike. +High-performance secret scanner for source code, using [Vectorscan/Hyperscan](https://github.com/VectorCamp/vectorscan) for fast multi-pattern matching. Poltergeist is designed to be easy to use by humans and AI agents alike. For AI agent integration, see [Ghost Security Skills](https://github.com/ghostsecurity/skills). ![Demo](./docs/demo.gif) diff --git a/scripts/install.sh b/scripts/install.sh index c7ae1dd..fa1bcc8 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -34,7 +34,7 @@ detect_platform() { # Get latest release version get_latest_version() { - curl -s "https://api.github.com/repos/${REPO}/releases/latest" | \ + curl -sL "https://updates.ghostsecurity.ai/repos/${REPO}/releases/latest" | \ grep '"tag_name":' | \ sed -E 's/.*"([^"]+)".*/\1/' }