Repository Analysis

lightningpixel/modly

Desktop app to generate 3D models from images or prompt using local AI — runs entirely on your GPU

14.9 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of lightningpixel/modly, a TypeScript project with 7,312 GitHub stars. SynthScan v2.0 examined 44,747 lines of code across 204 source files, recording 384 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 14.9 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

14.9
Adjusted Score
14.9
Raw Score
100%
Time Factor
2026-08-28
Last Push
7.3K
Stars
TypeScript
Language
44.7K
Lines of Code
204
Files
384
Pattern Hits
2026-08-29
Scan Date
0.02
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.

No multi-scan history yet — run the scanner again to build trend data.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 5MEDIUM 122LOW 257

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 384 distinct pattern matches across 13 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Decorative Section Separators119 hits · 357 pts
SeverityFileLineSnippetContext
MEDIUMscripts/download-python-embed.js28// ── Helpers ───────────────────────────────────────────────────────────────────COMMENT
MEDIUMscripts/download-python-embed.js75// ── Main ──────────────────────────────────────────────────────────────────────COMMENT
MEDIUM.github/workflows/release.yml12 # ─── Create a single release ────────────────────────────────────────────────COMMENT
MEDIUM.github/workflows/release.yml29 # ─── Windows build ────────────────────────────────────────────────────────────COMMENT
MEDIUM.github/workflows/release.yml67 # ─── macOS build (arm64) ─────────────────────────────────────────────────────COMMENT
MEDIUM.github/workflows/release.yml109 # ─── Linux build ─────────────────────────────────────────────────────────────COMMENT
MEDIUMapi/routers/optimize.py125 # ── Textured path: OBJ intermediate to preserve UV coordinates ──────COMMENT
MEDIUMapi/routers/optimize.py163 # ── Geometry-only path: PLY (fast, no texture to worry about) ────────COMMENT
MEDIUMapi/routers/optimize.py282# ---------------------------------------------------------------------------COMMENT
MEDIUMapi/routers/optimize.py293# ---------------------------------------------------------------------------COMMENT
MEDIUMelectron/main/extension-path-guard.ts52// ─── Internal (non-extension) dir names inside extensionsDir ─────────────────COMMENT
MEDIUMelectron/main/ipc-handlers.ts63// ─── GPU detect (best-effort, no Python required) ─────────────────────────────COMMENT
MEDIUMelectron/main/ipc-handlers.ts111// ─── Run an extension's setup.py directly (no FastAPI needed) ─────────────────COMMENT
MEDIUMelectron/main/ipc-handlers.ts1821 // ── Workflows ────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts31// ─── Environment ─────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts50// ─── Path helpers ─────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts77// ─── Setup state ──────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts154// ─── AppImage: stable Python runtime ─────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts187// ─── Setup steps ─────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts272// ─── Unix dev helper ─────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/python-setup.ts293// ─── Public orchestrator ──────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/process-runner.ts6// ─── Worker code for JS process extensions ────────────────────────────────────COMMENT
MEDIUMelectron/main/process-runner.ts47// ─── Types ────────────────────────────────────────────────────────────────────COMMENT
MEDIUMelectron/main/process-runner.ts72// ─── JS ProcessRunner (Worker thread) ────────────────────────────────────────COMMENT
MEDIUMelectron/main/process-runner.ts156// ─── Python ProcessRunner (subprocess, one process per run) ───────────────────COMMENT
MEDIUMelectron/main/process-runner.ts257// ─── Helper: find Python executable for an extension ─────────────────────────COMMENT
MEDIUMelectron/main/process-runner.ts270// ─── Registry (one runner per extension id, reused across calls) ──────────────COMMENT
MEDIUMsrc/areas/settings/SettingsPage.tsx93// ─── Page shell ───────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/settings/components/AgentSection.tsx5// ─── Helpers ──────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/settings/components/AgentSection.tsx26// ─── Component ────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/settings/components/StorageSection.tsx4// ─── MoveFolderModal ──────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/settings/components/StorageSection.tsx72// ─── StorageSection ───────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/setup/FirstRunSetup.tsx4// ─── Logo (shared) ──────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/setup/FirstRunSetup.tsx37// ─── Panels ─────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/setup/FirstRunSetup.tsx236// ─── Main component ─────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts10// ─── Types ────────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts54// ─── For Each iterator (image / text / mesh) ───────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts144// ─── Topological sort (DFS preorder, branch-first) ───────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts176// ─── While container geometry ──────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts208// ─── Branch identification ────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts253// ─── For Each iterator execution ───────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts281// ─── Per-node execution ──────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts490// ─── Wait dependency helpers ───────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts530// ─── Store ────────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts650 // ── For Each iterators → resolve their folders up front ────────────────────COMMENT
MEDIUMsrc/areas/workflows/workflowRunStore.ts670 // ── Loop table ─────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx36// ─── Constants ────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx62// ─── IO badge ─────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx79// ─── Helpers ──────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx92// ─── Extensions panel ────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx329// ─── Page ─── toggle button icon ─────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx341// ─── Node palette (Space to open) ────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx548// ─── Help modal ───────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx697// ─── Connection type helpers ──────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx723// ─── Workflow canvas (inner, requires ReactFlowProvider) ──────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx758 // ─── Undo / Redo ──────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx1362// ─── Mini graph preview ───────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/WorkflowsPage.tsx1474// ─── Page ─────────────────────────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/nodeBehaviors.ts3// ─── Node behaviors registry ──────────────────────────────────────────────────COMMENT
MEDIUMsrc/areas/workflows/nodeBehaviors.ts36// ─── Helpers ──────────────────────────────────────────────────────────────────COMMENT
59 more matches not shown…
Hyper-Verbose Identifiers171 hits · 188 pts
SeverityFileLineSnippetContext
LOWtools/modly-cli/test_agent.py255 def test_main_converts_unexpected_exceptions_to_json(self) -> None:CODE
LOWtools/modly-cli/test_agent.py265 def test_main_converts_argparse_errors_to_json(self) -> None:CODE
LOWtools/modly-cli/test_agent.py272 def test_generate_from_workflow_downloads_direct_asset_without_modly_health(self) -> None:CODE
LOWtools/modly-cli/test_agent.py404 def test_patch_positive_cliptextencode(self) -> None:CODE
LOWtools/modly-cli/test_agent.py413 def test_patch_raises_when_no_text_input(self) -> None:CODE
LOWtools/modly-cli/test_agent.py420 def test_patch_fallback_to_prompt_key(self) -> None:CODE
LOWtools/modly-cli/test_agent.py428 def test_patch_seed_noise_seed(self) -> None:CODE
LOWtools/modly-cli/test_agent.py435 def test_rejects_editor_format(self) -> None:CODE
LOWtools/modly-cli/test_agent.py445 def test_deep_copy_no_mutation(self) -> None:CODE
LOWtools/modly-cli/test_agent.py452 def test_default_api_dir_checks_all_windows_localappdata_candidates(self) -> None:CODE
LOWtools/modly-cli/test_agent.py24 def test_compact_json_is_one_line(self) -> None:CODE
LOWtools/modly-cli/test_agent.py32 def test_status_combines_health_and_model(self) -> None:CODE
LOWtools/modly-cli/test_agent.py52 def test_params_auto_uses_validated_active_model_id(self) -> None:CODE
LOWtools/modly-cli/test_agent.py79 def test_explicit_model_id_must_exist_in_model_all(self) -> None:CODE
LOWtools/modly-cli/test_agent.py91 def test_export_downloads_workspace_path(self) -> None:CODE
LOWtools/modly-cli/test_agent.py101 def test_export_rejects_unsafe_workspace_paths(self) -> None:CODE
LOWtools/modly-cli/test_agent.py117 def test_workspace_relative_path_rejects_unsafe_server_output(self) -> None:CODE
LOWtools/modly-cli/test_agent.py130 def test_workflow_workspace_path_rejects_unsafe_scene_candidate_path(self) -> None:CODE
LOWtools/modly-cli/test_agent.py136 def test_generate_uses_workflow_run_and_recovery_metadata(self) -> None:CODE
LOWtools/modly-cli/test_agent.py193 def test_workflow_run_status_and_cancel_use_canonical_endpoints(self) -> None:CODE
LOWtools/modly-cli/test_agent.py217 def test_capability_and_process_fail_closed_when_contract_is_absent(self) -> None:CODE
LOWtools/modly-cli/test_agent.py233 def test_process_run_start_uses_recovery_meta_with_custom_base_url(self) -> None:CODE
LOWtools/modly-cli/test_agent.py313 def test_generate_from_workflow_falls_back_to_modly_for_image_only_outputs(self) -> None:CODE
LOWtools/modly-cli/test_agent.py354 def test_generate_from_workflow_fails_when_history_has_no_supported_output(self) -> None:CODE
LOWtools/modly-cli/test_agent.py362 def test_batch_processes_images_sequentially(self) -> None:CODE
LOWtools/modly-cli/test_agent.py382 def test_batch_accepts_manifest_json(self) -> None:CODE
LOWtools/modly-cli/test_agent.py465 def test_load_modly_settings_checks_all_windows_appdata_candidates(self) -> None:CODE
LOWtools/modly-cli/test_agent.py477 def test_malformed_timeout_environment_does_not_break_module_import(self) -> None:CODE
LOWtools/modly-cli/test_agent.py486 def test_resolve_serve_config_explicit_paths(self) -> None:CODE
LOWtools/modly-cli/test_agent.py512 def test_canonical_dev_experimental_and_legacy_subcommands_parse(self) -> None:CODE
LOWtools/modly-cli/test_agent.py536 def test_hidden_aliases_are_not_documented_as_canonical(self) -> None:CODE
LOWtools/modly-cli/agent.py141def _is_windows_drive_component(component: str) -> bool:CODE
LOWtools/modly-cli/agent.py229def _request_supported_contract(method: str, url: str, *, timeout: float, data: bytes | None = None, headers: dict[str, CODE
LOWtools/modly-cli/agent.py621def _download_comfy_image_output(args: argparse.Namespace, comfy: dict[str, Any]) -> dict[str, Any]:CODE
LOWtools/modly-cli/agent.py659def cmd_generate_from_workflow(args: argparse.Namespace) -> int:CODE
LOWtools/modly-cli/agent.py696def _canonical_generation_params(args: argparse.Namespace) -> dict[str, Any]:CODE
LOWtools/modly-cli/agent.py811def _ensure_no_external_texture_process(args: argparse.Namespace) -> None:CODE
LOWapi/routers/optimize.py321def _convert_gaussian_ply_to_splat(ply_path: Path, out_path: str) -> None:CODE
LOWapi/routers/model.py400def _resolve_direct_download_url(url: str, headers: dict[str, str]) -> str:CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py14 def _box_assign_vertex_to_cube_face(CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py123 def _assign_faces_uv_to_atlas_index(CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py149 def _find_slice_offset_and_scale(CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py279 def _rotate_uv_slices_consistent_space(CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py477 def _distribute_individual_uvs_in_atlas(CODE
LOWapi/uv_unwrapper/uv_unwrapper/unwrap.py537 def _align_mesh_with_main_axis(CODE
LOWapi/tests/test_generator_registry.py428 def test_wrong_capability_token_cannot_bypass_pending_state(self) -> None:CODE
LOWapi/tests/test_generator_registry.py437 def test_capability_id_and_sidecar_path_must_match(self) -> None:CODE
LOWapi/tests/test_generator_registry.py446 def test_capability_destination_folder_must_match(self) -> None:CODE
LOWapi/tests/test_generator_registry.py455 def test_authorization_rejects_duplicate_folder_declaring_same_manifest_id(self) -> None:CODE
LOWapi/tests/test_generator_registry.py74 def _write_registration_capability(CODE
LOWapi/tests/test_generator_registry.py103 def _make_loadable_pending_extension(self, extension_id: str) -> dict[str, str]:CODE
LOWapi/tests/test_generator_registry.py120 def test_legacy_generator_supports_eager_and_lazy_sibling_imports(self) -> None:CODE
LOWapi/tests/test_generator_registry.py158 def test_reload_preserves_legacy_path_owned_by_the_host(self) -> None:CODE
LOWapi/tests/test_generator_registry.py184 def test_reload_stops_subprocess_runtime_instead_of_only_unloading_model(self) -> None:CODE
LOWapi/tests/test_generator_registry.py198 def test_reload_evicts_owned_helper_modules_and_reads_updated_source(self) -> None:CODE
LOWapi/tests/test_generator_registry.py236 def test_legacy_extensions_with_same_helper_name_remain_isolated(self) -> None:CODE
LOWapi/tests/test_generator_registry.py271 def test_setup_script_without_platform_venv_surfaces_repair_error_per_node(self) -> None:CODE
LOWapi/tests/test_generator_registry.py291 def test_discovery_failures_remain_visible_under_actionable_keys(self) -> None:CODE
LOWapi/tests/test_generator_registry.py334 def test_incomplete_model_install_is_reported_for_each_node(self) -> None:CODE
LOWapi/tests/test_generator_registry.py346 def test_pending_registration_is_not_loaded_when_startup_restore_cannot_finish(self) -> None:CODE
111 more matches not shown…
Excessive Try-Catch Wrapping36 hits · 36 pts
SeverityFileLineSnippetContext
LOWtools/modly-cli/agent.py1354 except Exception as exc:CODE
LOWdocs/running-on-jetson.md187 except Exception:CODE
LOWapi/runner.py103 except Exception:CODE
LOWapi/runner.py124 except Exception:CODE
LOWapi/runner.py178 except Exception as exc:CODE
LOWapi/runner.py205 except Exception:CODE
LOWapi/mcp_server.py161 except Exception as e:CODE
LOWapi/routers/optimize.py417 except Exception as err: # noqa: BLE001 — surface a clean error, never 500-crashCODE
LOWapi/routers/optimize.py475 except Exception as err: # noqa: BLE001CODE
LOWapi/routers/generation.py162 except Exception:CODE
LOWapi/routers/generation.py238 except Exception as exc:CODE
LOWapi/routers/workflow_runs.py125 except Exception:CODE
LOWapi/routers/model.py95 except Exception:CODE
LOWapi/routers/model.py152 except Exception:CODE
LOWapi/routers/model.py163 except Exception:CODE
LOWapi/routers/model.py271 except Exception as exc:CODE
LOWapi/routers/extensions.py88 except Exception:CODE
LOWapi/routers/agent.py369 except Exception as e:STRING
LOWapi/routers/agent.py419 except Exception:CODE
LOWapi/routers/agent.py513 except Exception:CODE
LOWapi/services/extension_process.py283 except Exception:CODE
LOWapi/services/extension_process.py320 except Exception:CODE
LOWapi/services/extension_process.py335 except Exception:CODE
LOWapi/services/extension_process.py391 except Exception as exc:CODE
LOWapi/services/generator_registry.py409 except Exception as exc:CODE
LOWapi/services/generator_registry.py560 except Exception as exc:CODE
LOWapi/services/generator_registry.py629 except Exception as exc:CODE
LOWapi/services/generator_registry.py668 except Exception:CODE
LOWapi/services/generators/base.py136 except Exception:CODE
LOWsrc/areas/workflows/nodes/mesh-repair/processor.py112 except Exception as e:CODE
LOWsrc/areas/workflows/nodes/mesh-repair/processor.py116 except Exception as e:CODE
LOWsrc/areas/workflows/nodes/mesh-repair/processor.py127 except Exception as e:CODE
LOWsrc/areas/workflows/nodes/mesh-repair/processor.py151 except Exception as exc:CODE
LOWsrc/areas/workflows/nodes/mesh-smoother/processor.py122 except Exception as exc:CODE
LOWsrc/areas/workflows/nodes/mesh-remesher/processor.py111 except Exception:CODE
LOWsrc/areas/workflows/nodes/mesh-remesher/processor.py129 except Exception as exc:CODE
Deep Nesting22 hits · 22 pts
SeverityFileLineSnippetContext
LOWtools/modly-cli/test_agent.py101CODE
LOWtools/modly-cli/agent.py88CODE
LOWtools/modly-cli/agent.py242CODE
LOWtools/modly-cli/agent.py453CODE
LOWtools/modly-cli/agent.py501CODE
LOWtools/modly-cli/agent.py981CODE
LOWtools/modly-cli/agent.py1018CODE
LOWapi/runner.py118CODE
LOWapi/mcp_server.py167CODE
LOWapi/routers/optimize.py321CODE
LOWapi/routers/model.py126CODE
LOWapi/routers/model.py281CODE
LOWapi/routers/model.py175CODE
LOWapi/routers/agent.py254CODE
LOWapi/services/extension_process.py195CODE
LOWapi/services/extension_process.py287CODE
LOWapi/services/generator_registry.py251CODE
LOWapi/services/generator_registry.py372CODE
LOWapi/services/generator_registry.py123CODE
LOWapi/services/generator_registry.py155CODE
LOWapi/services/generator_registry.py585CODE
LOWsrc/areas/workflows/nodes/mesh-remesher/processor.py36CODE
Cross-Language Confusion (JS/TS)4 hits · 20 pts
SeverityFileLineSnippetContext
HIGHelectron/main/ipc-handlers.ts158 return FalseCODE
HIGHelectron/main/ipc-handlers.ts187 print("[Modly setup compat] Removed CUDA-only PyTorch index on macOS; pip will use macOS wheels.", file=sys.stdeCODE
HIGHelectron/main/ipc-handlers.ts193 return FalseCODE
HIGHelectron/main/ipc-handlers.ts204 print("[Modly setup compat] Removed --no-cache-dir so pip reuses the shared wheel cache.", file=sys.stderr)CODE
Unused Imports13 hits · 12 pts
SeverityFileLineSnippetContext
LOWtools/modly-cli/test_agent.py3CODE
LOWtools/modly-cli/agent.py8CODE
LOWapi/routers/optimize.py18CODE
LOWapi/routers/optimize.py18CODE
LOWapi/uv_unwrapper/setup.py5CODE
LOWapi/uv_unwrapper/uv_unwrapper/__init__.py1CODE
LOWapi/uv_unwrapper/uv_unwrapper/__init__.py3CODE
LOWapi/uv_unwrapper/uv_unwrapper/__init__.py4CODE
LOWapi/texture_baker/texture_baker/__init__.py1CODE
LOWapi/texture_baker/texture_baker/__init__.py3CODE
LOWapi/texture_baker/texture_baker/__init__.py4CODE
LOWapi/services/generators/__init__.py3CODE
LOWapi/services/generators/__init__.py3CODE
AI Slop Vocabulary3 hits · 8 pts
SeverityFileLineSnippetContext
MEDIUMapi/routers/optimize.py364 # splats. Centre x/z on the robust 1–99 percentile box and scale to fit soCOMMENT
MEDIUMapi/routers/optimize.py376 # flips the splat 180° about Z (3DGS is Y-down), negating Y so the robustCOMMENT
MEDIUMsrc/areas/generate/components/SplatViewer.tsx213 gpuAcceleratedSort: false, // CPU sort — most robust across GPUs/ElectronCODE
Synthetic Comment Markers1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHsrc/areas/generate/components/Viewer3D.tsx278 // Ensure vertex normals exist — AI-generated meshes often skip thisCOMMENT
Over-Commented Block7 hits · 7 pts
SeverityFileLineSnippetContext
LOWscripts/after-pack.js1// @ts-checkCOMMENT
LOWapi/routers/optimize.py281COMMENT
LOWapi/uv_unwrapper/uv_unwrapper/csrc/bvh.h1#pragma onceCOMMENT
LOWapi/uv_unwrapper/uv_unwrapper/csrc/unwrapper.cpp1#include "bvh.h"COMMENT
LOWapi/texture_baker/texture_baker/csrc/baker.cpp1#include <ATen/ATen.h>COMMENT
LOWapi/texture_baker/texture_baker/csrc/baker.h1#pragma onceCOMMENT
LOWsrc/areas/workflows/nodeBehaviors.ts1import type { WFNode, WFEdge } from '@shared/types/electron.d'COMMENT
Modern Structural Boilerplate3 hits · 3 pts
SeverityFileLineSnippetContext
LOWapi/uv_unwrapper/uv_unwrapper/__init__.py6__all__ = ["Unwrapper"]CODE
LOWapi/services/generator_registry.py784 def update_paths(self, models_dir: Optional[Path], workspace_dir: Optional[Path]) -> None:CODE
LOWapi/services/generators/__init__.py5__all__ = ["BaseGenerator", "smooth_progress"]CODE
Verbosity Indicators2 hits · 3 pts
SeverityFileLineSnippetContext
LOWapi/uv_unwrapper/uv_unwrapper/csrc/unwrapper.cpp55// Step 1: Detect intersections in parallelCOMMENT
LOWapi/uv_unwrapper/uv_unwrapper/csrc/unwrapper.cpp90 // Step 2: Process unique intersectionsCOMMENT
Structural Annotation Overuse2 hits · 3 pts
SeverityFileLineSnippetContext
LOWapi/uv_unwrapper/uv_unwrapper/csrc/unwrapper.cpp55// Step 1: Detect intersections in parallelCOMMENT
LOWapi/uv_unwrapper/uv_unwrapper/csrc/unwrapper.cpp90 // Step 2: Process unique intersectionsCOMMENT
Redundant / Tautological Comments1 hit · 2 pts
SeverityFileLineSnippetContext
LOWapi/routers/generation.py183 # Check if the model needs to be loaded BEFORE calling get_active(),COMMENT