Install
openclaw skills install nerua1-vibe-safe-starterProvides a minimal, zero-config security starter pack for Vibe coders to detect known vulnerabilities, unmaintained packages, and credential leaks before ins...
openclaw skills install nerua1-vibe-safe-starter3 files. 2 minutes. No more "it works on my machine" disasters.
You vibe-code with AI agents. Cool. But here's what AI won't tell you: 67% of npm packages used in AI-generated projects have known vulnerabilities. The AI doesn't check. It just imports.
This starter pack catches the obvious stuff before it catches you.
Every time an AI agent writes npm install or pip install without checking:
| Risk | Reality |
|---|---|
| Known CVEs | Public vulnerabilities that attackers already exploit |
| Abandoned packages | Last updated in 2022. No fixes coming. |
| Credential leaks | .env files committed to git. API keys in code. |
| Supply chain attacks | Malicious packages that look legitimate |
| Unmaintained dependencies | 47% of npm packages have no active maintainer |
One vulnerable dependency → your entire project is compromised.
.github/workflows/security.ymlDrop this into any repo. Runs on every push.
audit.shRun before npm install. Catches critical CVEs.
checklib.shCheck a library before adding it to your project.
# Clone into your project
git clone https://github.com/nerua1/vibe-safe-starter.git
cp vibe-safe-starter/.github/workflows/security.yml .github/workflows/
cp vibe-safe-starter/audit.sh .
cp vibe-safe-starter/checklib.sh .
chmod +x audit.sh checklib.sh
# Check a library before installing
./checklib.sh react
./checklib.sh flask
# Audit your dependencies
./audit.sh
Your AI agent will happily install all of them. This pack won't.
This is the minimum. If you want more:
| Need | Solution |
|---|---|
| VS Code integration | VibeSafe Extension |
| AI-powered risk explanation | VibeSafe AI Explain |
| Multi-agent HARNESS | VibeSafe HARNESS §14 |
| Full audit pipeline | VibeSafe Full |
| Dashboard | vibe-safe/tools/dashboard.py --html |
Built by nerua1. ⭐ Star if this saves you from a security incident.