From f8daed1b2a490bd5c5e553391dbf3d05c6efe9ac Mon Sep 17 00:00:00 2001 From: Paolo Checchin <86971195+P4o1o@users.noreply.github.com> Date: Fri, 6 Mar 2026 17:39:09 +0100 Subject: [PATCH 1/2] Update .vibesafeignore to ignore test-data directory test-data may contain unsafe code and vibesafe detects it as unsafe. This makes the build pipeline fails because one of the step is to check if vibesafe itself is unsafe and in this check we shouldnt consider the test-data directory --- .vibesafeignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vibesafeignore b/.vibesafeignore index 641f29b..1ac7656 100644 --- a/.vibesafeignore +++ b/.vibesafeignore @@ -1,2 +1,2 @@ -# Ignore specific test files for self-scan -test-data/config.js \ No newline at end of file +# Ignore test directory for self-scan (tests can be unsafe) +test-data/ From 15efd7835039840ddb3e7a8a66a55b0e9a38699e Mon Sep 17 00:00:00 2001 From: Paolo Checchin <86971195+P4o1o@users.noreply.github.com> Date: Fri, 6 Mar 2026 17:42:15 +0100 Subject: [PATCH 2/2] Fix formatting in README for scan command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a42e98..88928dc 100644 --- a/README.md +++ b/README.md @@ -111,9 +111,9 @@ To generate fix suggestions in the Markdown report, you need an OpenAI API key. OPENAI_API_KEY=sk-YourActualOpenAIKeyHere ``` 3. Run the scan with the report flag: - ```bash +```bash vibesafe scan -r ai-report.md - ``` +``` **Show Only High/Critical Issues:**