Below you will find pages that utilize the taxonomy term βRoomkangaliβ
June 2, 2026
Droid LLM Hunter
Version updated for https://github.com/roomkangali/droid-llm-hunter to version 1.1.8.
This action is used across all versions by ? repositories. Action Type This is a Docker action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed Droid LLM Hunter β Update v1.1.8 BUGFIX UPDATE: “CLI Stability, JSON Parser Fix & Documentation Restructure”
π Bug Fixes [1] dlh.py β create_profile() destroys settings.yaml π΄ CRITICAL Problem os.rename() permanently deleted settings.yaml after profile creation, causing the tool to crash on the next run. Fix Safe backup-restore flow: Backup β Run wizard β Copy to profile β Restore original. [2] dlh.py β config model silently fails for anthropic / openrouter π HIGH Problem Only 4 providers handled (ollama, gemini, groq, openai). Calling config model with anthropic or openrouter did nothing β no error, no save. Fix Replaced if/elif chain with provider_model_key dict. All 6 providers now supported with a clear error message for unknown providers. [3] dlh.py β config wizard missing anthropic / openrouter support π HIGH Problem Wizard printed “Invalid provider selected.” for anthropic and openrouter. Fix Added branches for both providers with default model prompts. Also fixed a deep merge bug β wizard now only updates the llm key, preserving analysis, rules, and other config sections. [4] dlh.py β list-rules linter error from hidden=True π‘ MEDIUM Problem @app.command("list-rules", hidden=True) caused a VS Code linter error. hidden= is not a valid parameter in most Typer versions. Fix Removed hidden=True. Command is now visible in --help output. [5] dlh.py β scan command returns exit code 0 on failure π‘ MEDIUM Problem On scan error, process exited with code 0. CI/CD pipelines could not detect scan failures. Fix Added raise typer.Exit(code=1) after the error log. [6] core/engine.py β JSON parse fails on nested LLM responses π΄ CRITICAL Problem Regex \{.*?\} (non-greedy) stopped at the first } found. Nested JSON from gemini-2.5-flash was truncated and discarded silently (is_vulnerable: false). Fix Changed capture group to [\s\S]*? β captures all content between markdown fences. _extract_json_str() (brace-counting) handles the actual JSON boundary correctly. π Documentation Restructure README.md was too long (619 lines) and hard to navigate on GitHub. Restructured into focused files with backlinks.