Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
45 of your 81 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 40.67s for a 166.6 MB repo slow.
  • Repobility's analysis ran in 39.86s after the clone landed.

GNOME/gimp

https://github.com/GNOME/gimp · scanned 2026-06-05 20:52 UTC (4 days, 12 hours ago) · 10 languages

315 raw signals (81 security + 234 graph) 11/13 scanners ran 23rd percentile · C · huge (>500K LoC) System graph score 99 (lower by 37)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 12 hours ago · v2 · 119 actionable findings from 2 signal sources. 79 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 65.0 0.15 9.75
security_score 100.0 0.25 25.00
testing_score 15.0 0.20 3.00
documentation_score 76.0 0.15 11.40
practices_score 57.0 0.15 8.55
code_quality 47.0 0.10 4.70
Overall 1.00 62.4
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C+ (62/100). Dimensions: security 100, maintainability 65. 81 findings. 1,137,584 lines analyzed.

Showing 99 of 119 actionable findings. 198 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `html` used but not imported: The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes.
Add `import html` at the top of the file.
plug-ins/python/colorxhtml.py:146
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self.buildroot` used but never assigned in __init__: Method `get_build_dir` of class `MesonStatus` reads `self.buildroot`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.buildroot = <default>` in __init__, or add a class-level default.
2 files, 25 locations
tools/performance-log-viewer.py:430, 433, 454, 455, 460, 477, 492, 493, +7 more (15 hits)
tools/meson_install_subdir.py:35, 41, 43, 47, 48, 49, 52, 53, +1 more (10 hits)
high System graph security security conf 1.00 Insecure pattern 'eval_used' in plug-ins/python/python-console/pyconsole.py:279
Found a known-risky pattern (eval_used). Review and replace if possible.
plug-ins/python/python-console/pyconsole.py:279 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in tools/performance-log-viewer.py:722
Found a known-risky pattern (eval_used). Review and replace if possible.
tools/performance-log-viewer.py:722 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in plug-ins/python/python-console/pyconsole.py:722
Found a known-risky pattern (exec_used). Review and replace if possible.
plug-ins/python/python-console/pyconsole.py:722 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in plug-ins/python/python-eval.py:42
Found a known-risky pattern (exec_used). Review and replace if possible.
plug-ins/python/python-eval.py:42 Exec used
medium Security checks quality Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
low Security checks quality Error handling conf 0.55 ✓ Repobility 14 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
10 files, 14 locations
plug-ins/generate_mime_ext.py:14, 76, 121 (3 hits)
plug-ins/python/python-console/pyconsole.py:803, 828 (2 hits)
tools/in-build-gimp.py:191, 209 (2 hits)
meson_dist_script.py:38
plug-ins/python/python-eval.py:43
tools/lib_bundle.py:150
tools/man2md.py:47
tools/meson_install_subdir.py:80
Error handlingquality
high Security checks quality Quality conf 0.82 6 occurrences Parallel implementation file sits beside a canonical file
Merge the intended change into the canonical file, update tests/imports, and delete the parallel implementation if it is not the active entry point.
6 files, 6 locations
app/core/gimpimage-new.c:1
app/core/gimpimage-new.h:1
app/core/gimplayer-new.c:1
app/core/gimplayer-new.h:1
app/path/gimpstroke-new.c:1
app/path/gimpstroke-new.h:1
medium Security checks quality Quality conf 0.78 3 occurrences Suspicious implementation file appears unreferenced
Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes.
3 files, 3 locations
app/core/gimplayer-new.c:1
app/core/gimplayer-new.h:1
plug-ins/imagemap/imap_cmd_copy.c:1
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in tools/performance-log-viewer.py:147
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
tools/performance-log-viewer.py:147 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — desktop/test-appdata.py:10
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — pdb/meson-enumcode.py:16
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — pdb/meson-enumgen.py:16
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — pdb/meson-pdbgen.py:16
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/check-gimp-data.py:7
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/in-build-gimp.py:121
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/lib_bundle.py:171
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/make-mac-typelib.py:52
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
low Security checks quality Quality conf 0.60 19 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 13 locations
app/core/gimpimageproxy.c:259, 349 (2 hits)
app/actions/paths-commands.c:102
app/actions/quick-mask-commands.c:2
app/actions/tool-presets-commands.c:12
app/app.h:7
app/config/gimprc.c:83
app/core/gimp-internal-data.c:210
app/core/gimp-transform-3d-utils.h:48
duplicationquality
low Security checks quality Quality conf 0.70 Generated build artifact directory is present at repository root
Remove generated output from version control, add it to .gitignore and .dockerignore where relevant, and regenerate it in CI or release jobs.
build:1
high Security checks quality Quality conf 0.62 3 occurrences Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
3 files, 3 locations
app/gimp-update.c:1
app/gimp-update.h:1
plug-ins/imagemap/imap_cmd_copy.c:1
low System graph quality Maintenance conf 1.00 40 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: app/tests/test-save-and-export.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/test-appdata.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: devel-docs/reference/gimp-ui/urlmap.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: devel-docs/reference/gimp/urlmap.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test-resource-class.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test_brush.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test_font.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test_gradient.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test_palette.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/test/test_pattern.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/libgimp-run-c-test.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/libgimp-run-python-test.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-export-options.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-image.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-palette.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-selection-float.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libgimp/tests/test-unit.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: meson_dist_script.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: pdb/meson-enumcode.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: pdb/meson-enumgen.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: pdb/meson-pdbgen.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: plug-ins/generate_mime_ext.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: plug-ins/python/tests/test-file-plug-ins/batch-export-tests.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: plug-ins/python/tests/test-file-plug-ins/batch-import-tests.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: plug-ins/script-fu/server/servertest.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/check-gimp-data.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/defcheck.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/man2md.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/meson-mkenums.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/meson_install_win_debug.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/module-dependencies.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/performance-log-coalesce.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/performance-log-deduce.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/performance-log-progressive-coalesce.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/performance-log-resolve.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 10 places
Functions with the same first-5-line body hash: tools/performance-log-viewer.py:record, tools/performance-log-viewer.py:update, tools/performance-log-viewer.py:update, tools/performance-log-viewer.py:update This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://…
duplicatesduplication
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: tools/performance-log-viewer.py:format_float, tools/performance-log-viewer.py:f This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: tools/performance-log-viewer.py:select, tools/performance-log-viewer.py:select, tools/performance-log-viewer.py:select This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or d…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: tools/performance-log-viewer.py:do_map, tools/performance-log-viewer.py:do_map, tools/performance-log-viewer.py:do_map, tools/performance-log-viewer.py:do_map This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: tools/performance-log-viewer.py:selection_change_complete, tools/performance-log-viewer.py:selection_change_complete, tools/performance-log-viewer.py:selection_change_complete, tools/performance-log-viewer.py:selection_change_complete This is *the* A…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `brush_copy` in libgimp/test/test-resource-class.py:139
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `make_backup` in plug-ins/python/gradients-save-as-css.py:110
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: col_clicked
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2503
low System graph software Dead code conf 1.00 Possibly dead Python function: do_activate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1992
low System graph software Dead code conf 1.00 Possibly dead Python function: do_button_press_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:985
low System graph software Dead code conf 1.00 Possibly dead Python function: do_button_release_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1023
low System graph software Dead code conf 1.00 Possibly dead Python function: do_create_procedure
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
extensions/goat-exercises/goat-exercise-py3.py:38
low System graph software Dead code conf 1.00 Possibly dead Python function: do_draw
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1134
low System graph software Dead code conf 1.00 Possibly dead Python function: do_get_preferred_height
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:948
low System graph software Dead code conf 1.00 Possibly dead Python function: do_get_preferred_width
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:945
low System graph software Dead code conf 1.00 Possibly dead Python function: do_key_release_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1129
low System graph software Dead code conf 1.00 Possibly dead Python function: do_leave_notify_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1049
low System graph software Dead code conf 1.00 Possibly dead Python function: do_motion_notify_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1035
low System graph software Dead code conf 1.00 Possibly dead Python function: do_query_procedures
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
extensions/goat-exercises/goat-exercise-py3.py:35
low System graph software Dead code conf 1.00 Possibly dead Python function: find_samples
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:717
low System graph software Dead code conf 1.00 Possibly dead Python function: format_filename_col
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2092
low System graph software Dead code conf 1.00 Possibly dead Python function: format_float
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: format_time_col
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1726
low System graph software Dead code conf 1.00 Possibly dead Python function: format_view_source_col
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2157
low System graph software Dead code conf 1.00 Possibly dead Python function: format_view_source_tooltip
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2164
low System graph software Dead code conf 1.00 Possibly dead Python function: frames_query_tooltip
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2313
low System graph software Dead code conf 1.00 Possibly dead Python function: frames_row_activated
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2281
low System graph software Dead code conf 1.00 Possibly dead Python function: function
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:748
low System graph software Dead code conf 1.00 Possibly dead Python function: graph_query_tooltip
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:1479
low System graph software Dead code conf 1.00 Possibly dead Python function: source_get
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:3470
low System graph software Dead code conf 1.00 Possibly dead Python function: source_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:3473
low System graph software Dead code conf 1.00 Possibly dead Python function: threads_row_activated
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2237
low System graph software Dead code conf 1.00 Possibly dead Python function: threads_selection_changed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:2257
low System graph software Dead code conf 1.00 Possibly dead Python function: tree_selection_changed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:3359
low System graph software Dead code conf 1.00 Possibly dead Python function: var_toggled
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/performance-log-viewer.py:856
low System graph quality Integrity conf 1.00 Stub function `complete` (body is just `pass`/`return`) — plug-ins/python/python-console/pyconsole.py:660
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `style_set` (body is just `pass`/`return`) — plug-ins/python/python-console/python-console.py:125
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: plug-ins/python/spyro-plus.py (2377 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tools/performance-log-viewer.py (3662 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/66dc998a-4854-4cf6-8a53-ea600f408e03/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/66dc998a-4854-4cf6-8a53-ea600f408e03/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.