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.

TheKillerey/MapgeoAddon

https://github.com/TheKillerey/MapgeoAddon · scanned 2026-06-16 04:40 UTC (1 month, 2 weeks ago)

104 raw signals (0 security + 104 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v1 · 86 actionable findings from 1 signal source. 18 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 94.3/100 with 44.4% coverage. It contains 1727 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 104 findings — concentrated in quality (75), software (28), security (1). Risk profile is low: 0 critical, 0 high, 21 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 76 of 86 actionable findings. 104 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.

medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for c in …` triggers a query per row — vfx_visualizer.py:1012
The loop iterates a Django queryset and accesses `c.objects.unlink` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries ins…
vfx_visualizer.py:1012 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for c in …` triggers a query per row — vfx_visualizer.py:1035
The loop iterates a Django queryset and accesses `c.objects.link` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries inste…
vfx_visualizer.py:1035 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for col in …` triggers a query per row — ui_panel.py:2475
The loop iterates a Django queryset and accesses `col.name.endswith` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries in…
ui_panel.py:2475 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for col in …` triggers a query per row — ui_panel.py:3804
The loop iterates a Django queryset and accesses `col.objects.unlink` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
ui_panel.py:3804 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for coll in …` triggers a query per row — ui_panel.py:1777
The loop iterates a Django queryset and accesses `coll.name.endswith` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
ui_panel.py:1777 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for coll in …` triggers a query per row — ui_panel.py:499
The loop iterates a Django queryset and accesses `coll.name.endswith` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
ui_panel.py:499 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for collection in …` triggers a query per row — ui_panel.py:3160
The loop iterates a Django queryset and accesses `collection.objects.link` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 quer…
ui_panel.py:3160 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for f in …` triggers a query per row — legacy_map_ui.py:1020
The loop iterates a Django queryset and accesses `f.name.lower` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries instead…
legacy_map_ui.py:1020 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for f in …` triggers a query per row — legacy_map_ui.py:795
The loop iterates a Django queryset and accesses `f.name.lower` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries instead…
legacy_map_ui.py:795 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for f in …` triggers a query per row — legacy_map_ui.py:810
The loop iterates a Django queryset and accesses `f.name.lower` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries instead…
legacy_map_ui.py:810 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for obj in …` triggers a query per row — light_management.py:185
The loop iterates a Django queryset and accesses `obj.data.copy` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries instea…
light_management.py:185 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for obj in …` triggers a query per row — ui_panel.py:2511
The loop iterates a Django queryset and accesses `obj.name.lower` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries inste…
ui_panel.py:2511 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for obj in …` triggers a query per row — ui_panel.py:3155
The loop iterates a Django queryset and accesses `obj.location.copy` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries in…
ui_panel.py:3155 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for obj in …` triggers a query per row — ui_panel.py:3799
The loop iterates a Django queryset and accesses `obj.data.materials` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
ui_panel.py:3799 N plus onePerformance
medium System graph quality Integrity conf 1.00 Likely N+1 query: `for obj in …` triggers a query per row — ui_panel.py:588
The loop iterates a Django queryset and accesses `obj.data.materials` per row, which fires an additional database query each iteration. Add `.select_related('<fk_field>')` for FK / O2O relations or `.prefetch_related('<m2m_or_reverse>')` for many-related lookups, to load everything in 1-2 queries i…
ui_panel.py:588 N plus onePerformance
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — map_auto_updater.py:1229
`subprocess.Popen(...)` 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 — project_manager.py:4496
`subprocess.Popen(...)` 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 — release_addon.py:37
`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.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 51 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 618 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 12 places
Functions with the same first-5-line body hash: propertybin_editor_ui.py:execute, propertybin_editor_ui.py:execute, propertybin_editor_ui.py:execute, propertybin_editor_ui.py:execute This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 17 places
Functions with the same first-5-line body hash: materials_bin_manager.py:execute, materials_bin_manager.py:execute, materials_bin_manager.py:execute, materials_bin_manager.py:execute This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). …
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: troybin_parser.py:read_f32, cfgbin_reader.py:read_f32 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.
8 occurrences
repo-level (8 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: vfx_visualizer.py:execute, vfx_visualizer.py:execute, vfx_visualizer.py:execute 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.
6 occurrences
repo-level (6 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: materials_bin_manager.py:draw_item, materials_bin_manager.py:draw_item, materials_bin_manager.py:draw, materials_bin_manager.py:draw This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Co…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: propertybin_editor_ui.py:draw_item, propertybin_editor_ui.py:draw_item, propertybin_editor_ui.py:draw, propertybin_editor_ui.py:draw This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Co…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 9 places
Functions with the same first-5-line body hash: project_checker.py:execute, project_checker.py:execute, project_checker.py:execute, project_checker.py:execute This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document …
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_lut_backup` in lut_recolor.py:13
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 `_parse_lighting_v2` in project_manager.py:1531
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 `_read_material_old` in legacy_nvr_import.py:114
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 `is_legacy` in skn_skl_import.py:453
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 `map_patcher_diff_v1` in map_patcher.py:24
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 `MAPUPD_OT_recover_backup` in map_auto_updater.py:1032
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 `materials_old` in prey_format.py:1375
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 `ok_copy` in material_editor_ui.py:3293
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: calculate_bounding_box
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:36
low System graph software Dead code conf 1.00 Possibly dead Python function: calculate_bounding_sphere
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:10
low System graph software Dead code conf 1.00 Possibly dead Python function: clamp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:192
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_catalog
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
shaders_bin_reader.py:311
low System graph software Dead code conf 1.00 Possibly dead Python function: create_debug_empty
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:145
low System graph software Dead code conf 1.00 Possibly dead Python function: create_material_collection
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
import_materials_blender.py:325
low System graph software Dead code conf 1.00 Possibly dead Python function: draw_header
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
project_checker.py:2550
low System graph software Dead code conf 1.00 Possibly dead Python function: draw_item
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
project_checker.py:2495
low System graph software Dead code conf 1.00 Possibly dead Python function: ensure_material
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:207
low System graph software Dead code conf 1.00 Possibly dead Python function: filter_items
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
project_checker.py:2517
low System graph software Dead code conf 1.00 Possibly dead Python function: finish
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:232
low System graph software Dead code conf 1.00 Possibly dead Python function: format_file_size
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:183
low System graph software Dead code conf 1.00 6 occurrences Possibly dead Python function: invoke
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
6 files, 6 locations
export_materials_blender.py:490
import_materials_blender.py:440
mapgeo_debug.py:197
project_checker.py:2398
skn_skl_import.py:1545
vfx_visualizer.py:1216
low System graph software Dead code conf 1.00 Possibly dead Python function: lerp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:197
low System graph software Dead code conf 1.00 Possibly dead Python function: list_material_properties
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
import_materials_blender.py:339
low System graph software Dead code conf 1.00 Possibly dead Python function: list_to_matrix
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:68
low System graph software Dead code conf 1.00 Possibly dead Python function: matrix_to_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: menu_func_import
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skn_skl_import.py:1728
low System graph software Dead code conf 1.00 Possibly dead Python function: print_mapgeo_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:154
low System graph software Dead code conf 1.00 Possibly dead Python function: section_field_hash
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
troybin_parser.py:353
low System graph software Dead code conf 1.00 Possibly dead Python function: select_objects
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:96
low System graph software Dead code conf 1.00 Possibly dead Python function: validate_mesh_for_export
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:122
low System graph software Dead code conf 1.00 Possibly dead Python function: vector_to_tuple
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
utils.py:202
low System graph quality Complexity conf 1.00 Very large file: character_bin_updater.py (1359 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: export_mapgeo.py (1824 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: import_mapgeo.py (2796 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: league_material_enums.py (1397 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: map_auto_updater.py (1532 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: map_porter.py (2187 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: material_editor_ui.py (5722 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: material_loader.py (3417 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: prey_format.py (3456 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: project_checker.py (2710 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: project_manager.py (5986 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: skn_skl_import.py (1766 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: ui_panel.py (5229 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: vfx_visualizer.py (1373 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: wad_tool.py (1726 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/c03ce377-8b81-4452-a313-5c5638ebbb6f/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/c03ce377-8b81-4452-a313-5c5638ebbb6f/

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.