Feature/gemini support and cli ux#7
Open
saeed-vayghan wants to merge 5 commits into
Open
Conversation
This commit adds 'gemini-3.5-flash' to the model registries across various providers to prevent token-limit warnings. It also updates the exception handling in mcp_tool_poisoning to gracefully catch non-fatal LLM check failures without printing noisy tracebacks.
…overy - Swapped the synchronous graph invoke for a streamed execution when verbose mode is off. - Integrated rich.progress to provide immediate feedback to users during long-running security scans. - Added a file tree breakdown right after the context is built, so users know exactly which files are being picked up for analysis. - Explicitly suppressed Pydantic's serializer warnings that were cluttering the terminal output during structured LLM generation. - The UI now actively ticks off the analyzer rules as they finish, removing the guesswork when waiting on slower LLM checks.
- Provided a clear snippet for using the Gemini API via the OpenAI compatibility layer.
- Prevented the new progress UI from corrupting stdout when using --format json or sarif.
- Added `report*` to .gitignore to prevent accidentally committing local scan reports.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature: Gemini Support & CLI UX Improvements
Overview
This PR adds support for
gemini-3.5-flashand significantly improves the CLI by adding real-time visual progress tracking for long scans.Key Changes
stderr, ensuringstdoutremains perfectly clean when using--format json.gemini-3.5-flashto prevent token limit errors and added a setup example to theREADME.md.report*to.gitignore.Testing
skillspector scan ./my-skill/to see the new progress bar.skillspector scan ./my-skill/ --format json > out.jsonto verify the JSON output remains uncorrupted.