Repository Analysis

abi/screenshot-to-code

Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)

11.2 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of abi/screenshot-to-code, a Python project with 75,509 GitHub stars. SynthScan v2.0 examined 50,781 lines of code across 293 source files, recording 506 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 11.2 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).

11.2
Adjusted Score
11.2
Raw Score
100%
Time Factor
2026-08-14
Last Push
75.5K
Stars
Python
Language
50.8K
Lines of Code
293
Files
506
Pattern Hits
2026-08-29
Scan Date
0.01
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

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

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 3MEDIUM 16LOW 487

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 506 distinct pattern matches across 14 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.

Hyper-Verbose Identifiers324 hits · 330 pts
SeverityFileLineSnippetContext
LOWdesign-docs/commits-and-variants.md120async def process_variant_completion(index: int, task: asyncio.Task):CODE
LOWfrontend/src/components/settings/GenerationSettings.tsx33 function setSelectedDesignSystemId(id: string | null) {CODE
LOW…c/components/select-and-edit/SelectAndEditControls.tsx7export function SelectAndEditToolbarButton() {CODE
LOWfrontend/src/components/select-and-edit/utils.ts39export function buildSelectedElementInstruction(CODE
LOW…omponents/select-and-edit/useEscapeToExitSelectMode.ts6export function useEscapeToExitSelectMode() {CODE
LOWfrontend/src/components/agent/generation-time.ts36export function formatCompletedGenerationDuration(CODE
LOWfrontend/src/components/agent/activity-order.ts11export function groupCompletedAgentEvents(CODE
LOWfrontend/src/components/agent/AgentActivity.tsx131function getExtractedAssetPreviewUrl(asset: unknown): string | null {CODE
LOWfrontend/src/components/agent/AgentActivity.tsx143function isSuccessfulExtractedAsset(asset: unknown): boolean {CODE
LOW…tend/src/components/unified-input/UnifiedInputPane.tsx48 function setSelectedDesignSystemId(id: string | null) {CODE
LOWfrontend/src/components/preview/download.ts15function filenameFromContentDisposition(contentDisposition: string | null) {CODE
LOWfrontend/src/lib/design-systems.ts46export function createHttpDesignSystemsRequest(CODE
LOWfrontend/src/lib/design-systems.ts67export function createDesignSystemsClient(CODE
LOWfrontend/src/lib/prompt-history.ts69export function resolveAssetIdsToDataUrls(CODE
LOWfrontend/src/lib/prompt-history.ts104export function buildAssistantHistoryMessage(CODE
LOWfrontend/src/lib/prompt-history.ts115export function buildUpdateGenerationRequest({CODE
LOWbackend/asset_extraction.py134def _normalize_image_for_detection(image: Image.Image) -> Image.Image:STRING
LOWbackend/asset_extraction.py144def _data_url_to_source_image(CODE
LOWbackend/asset_extraction.py240def _parse_detection_response(STRING
LOWbackend/asset_extraction.py346async def extract_assets_from_images(STRING
LOWbackend/llm.py166def get_openai_reasoning_effort(model: Llm) -> str | None:CODE
LOWbackend/main.py35async def probe_screenshot_preview_on_startup() -> None:CODE
LOWbackend/video/utils.py21def get_video_bytes_and_mime_type(video_data_url: str) -> tuple[bytes, str]:CODE
LOWbackend/evals/runner.py19def normalize_local_asset_urls(html: str) -> str:CODE
LOWbackend/evals/runner.py76def get_eval_output_subfolder(stack: Stack, model: str) -> str:CODE
LOWbackend/uploaded_assets/store.py38def configure_uploaded_asset_routes(app: FastAPI) -> None:CODE
LOWbackend/uploaded_assets/store.py43def infer_local_asset_base_url(websocket: WebSocket) -> str:CODE
LOWbackend/uploaded_assets/store.py83def _content_type_for_extension(extension: str) -> str:CODE
LOWbackend/uploaded_assets/store.py208def persist_data_url_as_temporary_asset(CODE
LOWbackend/uploaded_assets/store.py240async def persist_data_url_as_asset(CODE
LOWbackend/uploaded_assets/store.py261async def promote_temporary_asset_id(CODE
LOWbackend/uploaded_assets/tools.py49def summarize_save_assets_input(args: Dict[str, Any]) -> Dict[str, Any]:CODE
LOWbackend/uploaded_assets/prompts.py41def append_uploaded_asset_ids_to_prompt(STRING
LOWbackend/uploaded_assets/prompts.py52def append_uploaded_asset_ids_to_history(STRING
LOWbackend/tests/test_status_broadcast.py15async def test_video_update_broadcasts_two_variants() -> None:CODE
LOWbackend/tests/test_status_broadcast.py68async def test_image_update_broadcasts_two_variants() -> None:CODE
LOWbackend/tests/test_agent_engine.py63async def test_asset_extraction_is_only_offered_for_still_image_inputs(CODE
LOWbackend/tests/test_agent_engine.py72 def fake_create_provider_session(**kwargs: Any) -> NoToolProviderSession:CODE
LOWbackend/tests/test_screenshot.py8 def test_url_without_protocol(self):CODE
LOWbackend/tests/test_screenshot.py14 def test_url_with_http_protocol(self):CODE
LOWbackend/tests/test_screenshot.py19 def test_url_with_https_protocol(self):CODE
LOWbackend/tests/test_screenshot.py24 def test_url_with_path_and_params(self):CODE
LOWbackend/tests/test_websocket_communicator.py11async def test_send_message_ignores_already_completed_websocket() -> None:CODE
LOWbackend/tests/test_websocket_communicator.py28async def test_receive_params_marks_websocket_closed_on_disconnect() -> None:CODE
LOWbackend/tests/test_websocket_communicator.py40async def test_close_ignores_already_completed_websocket() -> None:CODE
LOWbackend/tests/test_websocket_communicator.py57async def test_throw_error_ignores_already_completed_websocket() -> None:CODE
LOWbackend/tests/test_anthropic_many_image_limit.py65def _first_prompt_image_source(session: AnthropicProviderSession) -> dict[str, Any]:CODE
LOWbackend/tests/test_anthropic_many_image_limit.py99def test_initial_request_uses_stricter_limit_only_above_twenty_images(CODE
LOWbackend/tests/test_anthropic_many_image_limit.py109async def test_crossing_limit_with_tool_images_resizes_history_and_future_images() -> None:CODE
LOWbackend/tests/test_design_systems.py18async def test_design_system_crud_persists_to_backend_file(CODE
LOWbackend/tests/test_openai_input_compare.py9def test_compare_openai_inputs_returns_none_for_identical_inputs() -> None:CODE
LOWbackend/tests/test_openai_input_compare.py26def test_compare_openai_inputs_finds_first_different_block_and_field() -> None:CODE
LOWbackend/tests/test_openai_input_compare.py70def test_compare_openai_inputs_accepts_raw_input_arrays() -> None:CODE
LOWbackend/tests/test_capabilities.py8async def test_capabilities_reports_screenshot_preview_available(CODE
LOWbackend/tests/test_capabilities.py22async def test_capabilities_reports_screenshot_preview_unavailable(CODE
LOWbackend/tests/test_request_parsing.py4def test_parse_prompt_content_with_valid_data() -> None:CODE
LOWbackend/tests/test_request_parsing.py20def test_parse_prompt_content_filters_invalid_media_types() -> None:CODE
LOWbackend/tests/test_request_parsing.py36def test_parse_prompt_content_defaults_for_invalid_payload() -> None:CODE
LOWbackend/tests/test_request_parsing.py42def test_parse_prompt_history_with_valid_entries() -> None:CODE
LOWbackend/tests/test_request_parsing.py76def test_parse_prompt_history_filters_invalid_items() -> None:CODE
264 more matches not shown…
Unused Imports59 hits · 59 pts
SeverityFileLineSnippetContext
LOWbackend/video/__init__.py1CODE
LOWbackend/video/__init__.py1CODE
LOWbackend/costs/token_usage.py1CODE
LOWbackend/uploaded_assets/__init__.py1CODE
LOWbackend/uploaded_assets/__init__.py1CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/uploaded_assets/__init__.py5CODE
LOWbackend/image_generation/core.py1CODE
LOWbackend/image_generation/core.py1CODE
LOWbackend/agent/tools/__init__.py1CODE
LOWbackend/agent/tools/__init__.py2CODE
LOWbackend/agent/tools/__init__.py2CODE
LOWbackend/agent/tools/__init__.py2CODE
LOWbackend/agent/tools/__init__.py7CODE
LOWbackend/agent/tools/__init__.py7CODE
LOWbackend/agent/tools/__init__.py8CODE
LOWbackend/agent/tools/__init__.py8CODE
LOWbackend/agent/tools/__init__.py9CODE
LOWbackend/agent/tools/__init__.py9CODE
LOWbackend/agent/tools/__init__.py9CODE
LOWbackend/agent/tools/runtime.py4CODE
LOWbackend/agent/providers/__init__.py1CODE
LOWbackend/agent/providers/__init__.py1CODE
LOWbackend/agent/providers/__init__.py2CODE
LOWbackend/agent/providers/__init__.py2CODE
LOWbackend/agent/providers/__init__.py2CODE
LOWbackend/agent/providers/__init__.py2CODE
LOWbackend/agent/providers/__init__.py2CODE
LOWbackend/agent/providers/__init__.py9CODE
LOWbackend/agent/providers/__init__.py10CODE
LOWbackend/agent/providers/__init__.py10CODE
LOWbackend/agent/providers/__init__.py11CODE
LOWbackend/agent/providers/__init__.py11CODE
LOWbackend/agent/providers/__init__.py11CODE
LOWbackend/agent/providers/types.py1CODE
LOWbackend/agent/providers/types.py1CODE
LOWbackend/agent/providers/types.py1CODE
LOWbackend/agent/providers/anthropic/__init__.py1CODE
LOWbackend/agent/providers/anthropic/__init__.py1CODE
LOWbackend/agent/providers/anthropic/__init__.py1CODE
LOWbackend/fs_logging/agent_runs.py48CODE
LOWbackend/fs_logging/agent_runs.py49CODE
LOWbackend/fs_logging/agent_runs.py49CODE
LOWbackend/prompts/__init__.py1CODE
LOWbackend/prompts/update/__init__.py1CODE
LOWbackend/prompts/update/__init__.py2CODE
LOWbackend/routes/evals.py4CODE
LOWbackend/preview_screenshot/__init__.py12CODE
LOWbackend/preview_screenshot/__init__.py12CODE
LOWbackend/preview_screenshot/__init__.py13CODE
LOWbackend/preview_screenshot/__init__.py14CODE
LOWbackend/preview_screenshot/__init__.py14CODE
LOWbackend/preview_screenshot/__init__.py14CODE
LOWbackend/preview_screenshot/__init__.py14CODE
Excessive Try-Catch Wrapping44 hits · 50 pts
SeverityFileLineSnippetContext
LOWplan.md61 except Exception as e:CODE
LOWbackend/asset_extraction.py163 except Exception:CODE
LOWbackend/run_image_generation_evals.py203 except Exception as exc:CODE
LOWbackend/evals/runner.py181 except Exception as e:CODE
LOWbackend/evals/runner.py370 except Exception as e_write:CODE
LOWbackend/evals/runner.py401 except Exception as e_as_completed:CODE
LOWbackend/evals/runner.py436 except Exception as e:CODE
MEDIUMbackend/evals/runner.py437 print(f"Error writing timing file {timing_file_path}: {e}")CODE
LOWbackend/evals/runner.py446 except Exception as e:CODE
MEDIUMbackend/evals/runner.py447 print(f"Error writing failed tasks log {failed_log_path}: {e}")CODE
LOWbackend/image_generation/replicate.py100 except Exception as exc:CODE
LOWbackend/agent/tools/screenshot_preview.py64 except Exception as exc:CODE
LOWbackend/agent/tools/parsing.py73 except Exception:CODE
LOWbackend/agent/tools/extract_assets.py94 except Exception as exc:CODE
LOWbackend/agent/providers/gemini.py130 except Exception:CODE
LOWbackend/agent/providers/gemini.py400 except Exception as exc:CODE
LOWbackend/fs_logging/prompt_reports.py146 except Exception as e:CODE
LOWbackend/fs_logging/agent_runs.py224 except Exception:STRING
LOWbackend/fs_logging/agent_runs.py395 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py424 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py467 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py565 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py585 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py642 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py681 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py711 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py721 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py837 except Exception as exc:CODE
LOWbackend/fs_logging/agent_runs.py950 except Exception as exc:CODE
MEDIUMbackend/routes/generate_code.py186 print(f"Error (variant {variantIndex + 1}): {value}")CODE
LOWbackend/routes/generate_code.py443 except Exception:CODE
LOWbackend/routes/generate_code.py527 except Exception:CODE
LOWbackend/routes/generate_code.py709 except Exception as e:CODE
MEDIUMbackend/routes/generate_code.py710 print(f"Error in variant {index + 1}: {e}")CODE
LOWbackend/routes/generate_code.py865 except Exception as e:CODE
LOWbackend/routes/evals.py49 except Exception as e:CODE
LOWbackend/routes/evals.py103 except Exception as e:CODE
LOWbackend/routes/evals.py369 except Exception as e:CODE
LOWbackend/routes/evals.py504 except Exception as e:CODE
LOWbackend/routes/export.py357 except Exception as exc:CODE
LOWbackend/routes/screenshot.py105 except Exception as e:CODE
LOWbackend/debug/DebugFileWriter.py26 except Exception as e:CODE
LOWbackend/preview_screenshot/playwright_backend.py53 except Exception as exc:CODE
LOWbackend/preview_screenshot/playwright_backend.py85 except Exception:CODE
Decorative Section Separators12 hits · 45 pts
SeverityFileLineSnippetContext
MEDIUMbackend/tests/test_token_usage.py41# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py43# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py106# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py108# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py276# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py278# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py12# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py14# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py168# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py170# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py228# ---------------------------------------------------------------------------COMMENT
MEDIUMbackend/tests/test_token_usage.py230# ---------------------------------------------------------------------------COMMENT
Deep Nesting27 hits · 27 pts
SeverityFileLineSnippetContext
LOWbackend/utils.py12CODE
LOWbackend/utils.py39CODE
LOWbackend/utils.py100CODE
LOWbackend/utils.py172CODE
LOWbackend/evals/runner.py202CODE
LOWbackend/evals/asset_extraction_benchmark.py571CODE
LOWbackend/agent/engine.py218CODE
LOWbackend/agent/tools/extract_assets.py43CODE
LOWbackend/agent/providers/gemini.py136CODE
LOWbackend/agent/providers/openai.py28CODE
LOWbackend/agent/providers/openai.py90CODE
LOWbackend/agent/providers/openai.py173CODE
LOWbackend/agent/providers/openai.py93CODE
LOWbackend/agent/providers/openai.py496CODE
LOWbackend/agent/providers/anthropic/provider.py273CODE
LOWbackend/agent/providers/anthropic/provider.py445CODE
LOWbackend/fs_logging/agent_runs.py194CODE
LOWbackend/fs_logging/agent_runs.py842CODE
LOWbackend/fs_logging/openai_input_formatting.py96CODE
LOWbackend/routes/prompt_reports.py168CODE
LOWbackend/routes/generate_code.py172CODE
LOWbackend/routes/generate_code.py284CODE
LOWbackend/routes/generate_code.py451CODE
LOWbackend/routes/agent_runs.py179CODE
LOWbackend/routes/agent_runs.py229CODE
LOWbackend/routes/evals.py56CODE
LOWbackend/routes/evals.py401CODE
Cross-Language Confusion3 hits · 15 pts
SeverityFileLineSnippetContext
HIGHbackend/asset_extraction.py235- If the described occurrence is absent, not uniquely distinguishable, substantially occluded, or cannot be isolated froCODE
HIGHbackend/evals/asset_extraction_benchmark.py355- If the asset is not visible, return {{"image_index": null, "box_2d": null, "label": "not found"}}.CODE
HIGHbackend/tests/test_asset_extraction.py198 assert "image_index=null, box_2d=null" in promptCODE
Modern Structural Boilerplate14 hits · 14 pts
SeverityFileLineSnippetContext
LOWbackend/video/__init__.py6__all__ = [CODE
LOWbackend/evals/sessions.py188def set_model_order(session_id: str, models: list[str]) -> None:CODE
LOWbackend/evals/sessions.py204def set_model_notes(session_id: str, model: str, notes: str) -> None:CODE
LOWbackend/uploaded_assets/__init__.py15__all__ = [CODE
LOWbackend/image_generation/core.py7__all__ = [CODE
LOWbackend/agent/tools/__init__.py15__all__ = [CODE
LOWbackend/agent/providers/__init__.py13__all__ = [CODE
LOWbackend/agent/providers/types.py11__all__ = [CODE
LOWbackend/agent/providers/anthropic/__init__.py7__all__ = [CODE
LOWbackend/prompts/__init__.py3__all__ = [CODE
LOWbackend/prompts/update/__init__.py4__all__ = [CODE
LOWbackend/prompts/create/__init__.py48__all__ = ["build_create_prompt_from_input"]CODE
LOWbackend/preview_screenshot/registry.py16def set_screenshot_backend(backend: ScreenshotBackend) -> None:CODE
LOWbackend/preview_screenshot/__init__.py21__all__ = [CODE
Fake / Example Data10 hits · 11 pts
SeverityFileLineSnippetContext
LOWbackend/tests/test_batching.py43 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_batching.py81 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_batching.py113 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_batching.py146 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_tool_image_outputs.py204 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_tool_image_outputs.py286 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_tool_image_outputs.py323 monkeypatch.setattr("agent.tools.runtime.REPLICATE_API_KEY", "fake-key")CODE
LOWbackend/tests/test_prompt_summary.py17 {"role": "system", "content": "lorem ipsum dolor sit amet"},CODE
LOWbackend/tests/test_prompt_summary.py17 {"role": "system", "content": "lorem ipsum dolor sit amet"},CODE
LOWbackend/tests/test_prompt_summary.py35 assert "SYSTEM: lorem ipsum" in summaryCODE
Redundant / Tautological Comments3 hits · 4 pts
SeverityFileLineSnippetContext
LOWbackend/routes/generate_code.py850 # Check if all variants failedCOMMENT
LOWbackend/routes/screenshot.py20 # Check if we have a schemeCOMMENT
LOWbackend/routes/screenshot.py28 # Check if this might be a domain with port (like example.com:8080)COMMENT
Over-Commented Block4 hits · 4 pts
SeverityFileLineSnippetContext
LOWfrontend/src/index.css161 90deg,COMMENT
LOWfrontend/src/components/select-and-edit/overlays.ts1// Devtools-style indicators for select-and-edit mode, rendered asCOMMENT
LOWbackend/.pre-commit-config.yaml1# See https://pre-commit.com for more informationCOMMENT
LOWbackend/.pre-commit-config.yaml21 # # entry: poetry run --directory backend pyrightCOMMENT
Verbosity Indicators2 hits · 4 pts
SeverityFileLineSnippetContext
LOWbackend/tests/test_agent_runs.py93 # Step 1: thinking + assistant deltas, one tool callCOMMENT
LOWbackend/tests/test_agent_runs.py140 # Step 2: final assistant turn, no toolsCOMMENT
Structural Annotation Overuse2 hits · 4 pts
SeverityFileLineSnippetContext
LOWbackend/tests/test_agent_runs.py93 # Step 1: thinking + assistant deltas, one tool callCOMMENT
LOWbackend/tests/test_agent_runs.py140 # Step 2: final assistant turn, no toolsCOMMENT
Slop Phrases1 hit · 2 pts
SeverityFileLineSnippetContext
LOWdocker-compose.yml14 #- BACKEND_PORT=7001 # if you change the port, make sure to also change the VITE_WS_BACKEND_URL at frontend/.envCOMMENT
AI Structural Patterns1 hit · 1 pts
SeverityFileLineSnippetContext
LOWbackend/evals/runner.py202CODE