Repository Analysis

browser-use/browser-harness

Browser Harness | Self-healing harness that enables LLMs to complete any task.

10.2 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of browser-use/browser-harness, a Python project with 17,214 GitHub stars. SynthScan v2.0 examined 43,922 lines of code across 171 source files, recording 369 pattern matches distributed across 12 syntactic categories. The overall adjusted score of 10.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).

10.2
Adjusted Score
10.2
Raw Score
100%
Time Factor
2026-08-28
Last Push
17.2K
Stars
Python
Language
43.9K
Lines of Code
171
Files
369
Pattern Hits
2026-08-29
Scan Date
0.07
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 12MEDIUM 18LOW 339

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 369 distinct pattern matches across 12 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 Identifiers176 hits · 171 pts
SeverityFileLineSnippetContext
LOWagent-workspace/domain-skills/wellfound/scraping.md417def dismiss_wellfound_login_modal():STRING
LOW…workspace/domain-skills/job-boards/indeed-glassdoor.md399def dismiss_glassdoor_login_modal():STRING
LOWagent-workspace/domain-skills/booking-com/scraping.md524def get_hotel_urls_for_country(cc: str, lang: str = "en-gb", max_shards: int = 2) -> list[str]:STRING
LOWagent-workspace/domain-skills/glassdoor/scraping.md361def dismiss_glassdoor_login_modal():STRING
LOWagent-workspace/domain-skills/weread/read.md165def pick_book_from_new_ranking():STRING
LOWtests/unit/test_ipc.py4def test_runtime_stem_uses_name_in_shared_runtime_dir(monkeypatch):CODE
LOWtests/unit/test_ipc.py11def test_runtime_stem_uses_bare_name_in_isolated_runtime_dir(monkeypatch):CODE
LOWtests/unit/test_ipc.py18def test_tmp_stem_uses_name_in_shared_tmp_dir(monkeypatch):CODE
LOWtests/unit/test_ipc.py38def test_identify_returns_pid_for_well_formed_ping_reply(monkeypatch):CODE
LOWtests/unit/test_ipc.py44def test_identify_rejects_boolean_pid(monkeypatch):CODE
LOWtests/unit/test_ipc.py53def test_identify_rejects_boolean_false_pid(monkeypatch):CODE
LOWtests/unit/test_ipc.py60def test_identify_returns_none_when_pid_field_missing(monkeypatch):CODE
LOWtests/unit/test_ipc.py69def test_identify_handles_non_dict_ping_payload(monkeypatch):CODE
LOWtests/unit/test_ipc.py80def test_identify_returns_none_when_pong_is_not_true(monkeypatch):CODE
LOWtests/unit/test_ipc.py86def test_identify_rejects_zero_and_negative_pids(monkeypatch):CODE
LOWtests/unit/test_ipc.py105def test_ping_returns_true_for_well_formed_pong(monkeypatch):CODE
LOWtests/unit/test_ipc.py111def test_ping_handles_non_dict_payload(monkeypatch):CODE
LOWtests/unit/test_ipc.py123def test_ping_returns_false_when_pong_field_is_missing_or_not_true(monkeypatch):CODE
LOWtests/unit/test_admin.py51def test_cleanup_unattached_browser_launch_keeps_cdp_browser(monkeypatch):CODE
LOWtests/unit/test_admin.py59def test_cleanup_unattached_browser_launch_ignores_unowned_launch(monkeypatch):CODE
LOWtests/unit/test_admin.py69def test_explicit_chrome_path_retains_matching_profile_on_linux(monkeypatch, tmp_path, env_key):CODE
LOWtests/unit/test_admin.py162def test_local_chrome_mode_is_false_when_env_provides_remote_cdp():CODE
LOWtests/unit/test_admin.py166def test_require_existing_daemon_fails_without_spawning(monkeypatch):CODE
LOWtests/unit/test_admin.py173def test_require_existing_daemon_probes_cdp(monkeypatch):CODE
LOWtests/unit/test_admin.py39def test_cleanup_unattached_browser_launch_stops_posix_process_group(monkeypatch):CODE
LOWtests/unit/test_admin.py97def test_explicit_chrome_path_remains_unowned_without_platform_cleanup(monkeypatch, tmp_path, system):CODE
LOWtests/unit/test_admin.py120def test_explicit_unknown_browser_path_remains_unowned(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py138def test_update_banner_can_be_disabled_without_network_or_cache_access(monkeypatch, value):CODE
LOWtests/unit/test_admin.py146def test_update_banner_remains_enabled_by_default(monkeypatch):CODE
LOWtests/unit/test_admin.py184def test_strict_remote_stop_propagates_daemon_error(monkeypatch):CODE
LOWtests/unit/test_admin.py196def test_remote_start_retries_cleanup_and_preserves_both_failures(monkeypatch):CODE
LOWtests/unit/test_admin.py227def test_local_chrome_mode_is_false_when_process_env_provides_remote_cdp(monkeypatch):CODE
LOWtests/unit/test_admin.py233def test_handshake_timeout_needs_chrome_remote_debugging_prompt():CODE
LOWtests/unit/test_admin.py245def test_stale_websocket_does_not_open_chrome_inspect():CODE
LOWtests/unit/test_admin.py251def test_daemon_endpoint_names_discovers_valid_socket_names(tmp_path, monkeypatch):CODE
LOWtests/unit/test_admin.py263def test_daemon_endpoint_names_with_bh_runtime_dir_returns_local_name_when_sock_exists(tmp_path, monkeypatch):CODE
LOWtests/unit/test_admin.py274def test_daemon_endpoint_names_with_bh_runtime_dir_returns_empty_when_sock_missing(tmp_path, monkeypatch):CODE
LOWtests/unit/test_admin.py284def test_daemon_endpoint_names_with_shared_bh_runtime_dir_discovers_named_sockets(tmp_path, monkeypatch):CODE
LOWtests/unit/test_admin.py297def test_active_browser_connections_counts_only_healthy_daemons(monkeypatch):CODE
LOWtests/unit/test_admin.py312def test_daemon_browser_ready_checks_the_selected_daemon(monkeypatch):CODE
LOWtests/unit/test_admin.py324def test_active_browser_connections_skips_daemons_reporting_cdp_disconnected(monkeypatch):CODE
LOWtests/unit/test_admin.py337def test_browser_connections_returns_attached_page(monkeypatch):CODE
LOWtests/unit/test_admin.py353def test_chrome_running_detects_helium_on_linux(monkeypatch):CODE
LOWtests/unit/test_admin.py376def test_doctor_probe_preserves_snap_bin_env_symlink(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py395def test_doctor_probe_preserves_snap_bin_path_symlink(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py419def test_run_doctor_prints_snap_detect_on_linux_when_probe_is_snap(monkeypatch, capsys):CODE
LOWtests/unit/test_admin.py440def test_run_doctor_skips_snap_detect_on_non_linux(monkeypatch, capsys):CODE
LOWtests/unit/test_admin.py458def test_run_doctor_reports_bad_stored_cloud_auth_without_crashing(monkeypatch, capsys):CODE
LOWtests/unit/test_admin.py476def test_run_doctor_fix_snap_prints_steps(capsys):CODE
LOWtests/unit/test_admin.py485def test_run_doctor_prints_active_browser_connections_and_active_pages(monkeypatch, capsys):CODE
LOWtests/unit/test_admin.py512def test_doctor_page_output_truncates_long_text(monkeypatch, capsys):CODE
LOWtests/unit/test_admin.py535def test_start_remote_daemon_stops_created_browser_when_daemon_start_fails(monkeypatch):CODE
LOWtests/unit/test_admin.py562def test_start_remote_daemon_stops_created_browser_when_daemon_start_is_interrupted(monkeypatch, exc_type):CODE
LOWtests/unit/test_admin.py589def test_stop_cloud_browser_swallows_baseexception_from_stop_request(monkeypatch, exc_type):CODE
LOWtests/unit/test_admin.py594def test_start_remote_daemon_does_not_stop_created_browser_on_success(monkeypatch):CODE
LOWtests/unit/test_admin.py618def test_restart_daemon_does_not_signal_when_daemon_unreachable(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py644def test_restart_daemon_signals_pid_returned_by_identify_not_pid_file(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py699def test_restart_daemon_sends_shutdown_to_pre_upgrade_daemon_without_pid_in_ping(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py737def test_restart_daemon_skips_sigterm_if_pid_was_reused_during_wait(monkeypatch, tmp_path):CODE
LOWtests/unit/test_admin.py782def test_restart_daemon_sigterms_via_start_time_fingerprint_when_socket_gone(monkeypatch, tmp_path):CODE
116 more matches not shown…
Excessive Try-Catch Wrapping80 hits · 91 pts
SeverityFileLineSnippetContext
LOWmcp_server.py131 except Exception as exc:CODE
MEDIUMmcp_server.py125def wrapper(*args, **kwargs):CODE
LOWagent-workspace/domain-skills/spotify/scraping.md76 except Exception as e:CODE
LOWagent-workspace/domain-skills/quora/scraping.md75 except Exception:CODE
LOWagent-workspace/domain-skills/quora/scraping.md112 except Exception:CODE
LOWagent-workspace/domain-skills/musicbrainz/scraping.md254 except Exception:CODE
LOWagent-workspace/domain-skills/crossref/scraping.md116 except Exception as e:CODE
MEDIUMagent-workspace/domain-skills/crossref/scraping.md105def fetch_work(doi):CODE
LOWagent-workspace/domain-skills/dev-to/scraping.md276 except Exception as e:CODE
LOWagent-workspace/domain-skills/youtube/scraping.md56 except Exception as e:CODE
LOWagent-workspace/domain-skills/ebay/scraping.md227 except Exception:CODE
LOWagent-workspace/domain-skills/stackoverflow/scraping.md76except Exception as e:CODE
LOWagent-workspace/domain-skills/github/scraping.md166 except Exception as e:STRING
LOWagent-workspace/domain-skills/zillow/scraping.md286 except Exception:CODE
LOWagent-workspace/domain-skills/itch-io/scraping.md320 except Exception:CODE
LOWsrc/browser_harness/auth.py236 except Exception:CODE
LOWsrc/browser_harness/auth.py310 except Exception:CODE
LOWsrc/browser_harness/run.py11 except Exception: passCODE
LOWsrc/browser_harness/run.py233 except Exception:CODE
LOWsrc/browser_harness/run.py269 except Exception as exc:CODE
MEDIUMsrc/browser_harness/run.py100def _cloud_auth_configured():CODE
LOWsrc/browser_harness/recorder.py233 except Exception:CODE
LOWsrc/browser_harness/recorder.py257 except Exception:CODE
LOWsrc/browser_harness/recorder.py269 except Exception:CODE
LOWsrc/browser_harness/recorder.py288 except Exception:CODE
MEDIUMsrc/browser_harness/recorder.py78def _load_config():CODE
LOWsrc/browser_harness/telemetry.py78 except Exception:CODE
LOWsrc/browser_harness/telemetry.py184except Exception:CODE
LOWsrc/browser_harness/telemetry.py243 except Exception:CODE
LOWsrc/browser_harness/telemetry.py293 except Exception:CODE
MEDIUMsrc/browser_harness/telemetry.py52def _load_config() -> dict:CODE
MEDIUMsrc/browser_harness/admin.py135def _log_tail(name):CODE
MEDIUMsrc/browser_harness/admin.py827def _cache_read():CODE
LOWsrc/browser_harness/admin.py1072 except Exception:CODE
LOWsrc/browser_harness/admin.py1076 except Exception:CODE
LOWsrc/browser_harness/admin.py353 except Exception:CODE
LOWsrc/browser_harness/admin.py472 except Exception as exc:CODE
LOWsrc/browser_harness/admin.py545 except Exception as exc:CODE
LOWsrc/browser_harness/admin.py646 except Exception as e:CODE
LOWsrc/browser_harness/admin.py808 except Exception:CODE
LOWsrc/browser_harness/admin.py854 except Exception:CODE
LOWsrc/browser_harness/admin.py912 except Exception:CODE
LOWsrc/browser_harness/video_render.py175except Exception:CODE
LOWsrc/browser_harness/video_render.py189 except Exception:CODE
LOWsrc/browser_harness/video_render.py193 except Exception:CODE
LOWsrc/browser_harness/video_render.py196 except Exception:CODE
LOWsrc/browser_harness/video_render.py201 except Exception:CODE
LOWsrc/browser_harness/video_render.py342except Exception:CODE
LOWsrc/browser_harness/video_render.py376except Exception:CODE
LOWsrc/browser_harness/video_render.py381except Exception:CODE
LOWsrc/browser_harness/video_render.py386 except Exception:CODE
LOWsrc/browser_harness/video_render.py392 except Exception:STRING
LOWsrc/browser_harness/helpers.py184 except Exception as e:CODE
LOWsrc/browser_harness/helpers.py318 except Exception: passCODE
LOWsrc/browser_harness/helpers.py346 except Exception: passCODE
LOWsrc/browser_harness/helpers.py370 except Exception:CODE
LOWsrc/browser_harness/helpers.py396 except Exception:CODE
MEDIUMsrc/browser_harness/helpers.py129def _runtime_evaluate(expression, session_id=None, await_promise=False):CODE
MEDIUMsrc/browser_harness/daemon.py200def _silent(coro):CODE
MEDIUMsrc/browser_harness/daemon.py519def enable_one(d):CODE
20 more matches not shown…
Cross-Language Confusion10 hits · 61 pts
SeverityFileLineSnippetContext
HIGH…ce/domain-skills/claude-ai/extract-share-transcript.py37 if (u) turns.push({role: "user", text: u.innerText.trim()});CODE
HIGH…ce/domain-skills/claude-ai/extract-share-transcript.py38 else if (a) turns.push({role: "assistant", text: a.innerText.trim()});CODE
HIGHtests/unit/test_ipc.py113 replies with a list / scalar / null, ping() must return False rather thanSTRING
HIGHtests/unit/test_admin.py10 def __init__(self, response=b'{"target_id":"target-1","session_id":"session-1","page":null}\n'):CODE
HIGHsrc/browser_harness/macos.py18 return trueCODE
HIGHsrc/browser_harness/macos.py23 if my clickAllow(childRef) then return trueCODE
HIGHsrc/browser_harness/macos.py26 return falseCODE
HIGHsrc/browser_harness/video_render.py141 if js('window.videoReady && window.videoReady()'):CODE
HIGHsrc/browser_harness/video_render.py348 if js('window.videoReady && window.videoReady()'):CODE
HIGHsrc/browser_harness/video_render.py358 window.__exported = null; window.__exportError = null;CODE
Over-Commented Block45 hits · 45 pts
SeverityFileLineSnippetContext
LOWagent-workspace/domain-skills/letterboxd/scraping.md121data = extract_film_data('the-godfather')COMMENT
LOWagent-workspace/domain-skills/letterboxd/scraping.md141# 'poster_url': 'https://a.ltrbxd.com/resized/film-poster/.../51818-the-godfather-0-230-0-345-crop.jpg...',COMMENT
LOWagent-workspace/domain-skills/openstreetmap/scraping.md21 q = urllib.parse.quote(query)COMMENT
LOWagent-workspace/domain-skills/openstreetmap/scraping.md421COMMENT
LOWagent-workspace/domain-skills/steam/scraping.md21 )COMMENT
LOWagent-workspace/domain-skills/steam/scraping.md41# game["supported_languages"]-> HTML string with language list (use html.unescape())COMMENT
LOWagent-workspace/domain-skills/steam/scraping.md441```pythonCOMMENT
LOWagent-workspace/domain-skills/steam/scraping.md481COMMENT
LOWagent-workspace/domain-skills/BOSS-zhipin/job-search.md241COMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md81COMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md181# editions_resp['entries'] == [...] (up to limit items)COMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md241# book['title'] == 'The Great Gatsby'COMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md281# author['name'] == 'J.R.R. Tolkien'COMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md301#### Author searchCOMMENT
LOWagent-workspace/domain-skills/open-library/scraping.md381r = json.loads(http_get("https://openlibrary.org/subjects/science_fiction.json?limit=5"))COMMENT
LOWagent-workspace/domain-skills/duckduckgo/scraping.md341# r['infobox']['Founded'] == 'December 08, 2015'COMMENT
LOWagent-workspace/domain-skills/spotify/scraping.md21 resource_type: 'track', 'album', 'playlist', or 'artist'COMMENT
LOWagent-workspace/domain-skills/spotify/scraping.md41# "version": "1.0",COMMENT
LOWagent-workspace/domain-skills/spotify/scraping.md201# entity keys: type, name, uri, id, title, artists, releaseDate, duration,COMMENT
LOWagent-workspace/domain-skills/spotify/scraping.md221# ---- ALBUM (includes full track list) ----COMMENT
LOWagent-workspace/domain-skills/substack/scraping.md161# Free post (audience == "everyone"):COMMENT
LOWagent-workspace/domain-skills/substack/scraping.md221# {COMMENT
LOWagent-workspace/domain-skills/gutenberg/scraping.md61# [768] Wuthering Heights — Brontë, Emily (72,775)COMMENT
LOWagent-workspace/domain-skills/quora/scraping.md181# 'id': 'UXVlc3Rpb25AMDoyODYx',COMMENT
LOWagent-workspace/domain-skills/etsy/scraping.md261# product fields:COMMENT
LOWagent-workspace/domain-skills/youtube/scraping.md21 Returns title, author, thumbnail URL, and embed iframe HTML.COMMENT
LOWagent-workspace/domain-skills/youtube/scraping.md141video = scrape_video("dQw4w9WgXcQ")COMMENT
LOWagent-workspace/domain-skills/youtube/scraping.md221COMMENT
LOWagent-workspace/domain-skills/ebay/scraping.md301# 'price': 74.99,COMMENT
LOWagent-workspace/domain-skills/ebay/scraping.md321```pythonCOMMENT
LOWagent-workspace/domain-skills/walmart/scraping.md281COMMENT
LOWagent-workspace/domain-skills/rawg/scraping.md81# game['rating_top'] -> 5COMMENT
LOWagent-workspace/domain-skills/soundcloud/scraping.md21 Works for:COMMENT
LOWagent-workspace/domain-skills/soundcloud/scraping.md101# track['created_at'] = "2007-09-22T14:45:46Z"COMMENT
LOWagent-workspace/domain-skills/soundcloud/scraping.md121# user['country_code'] = "DE"COMMENT
LOW…workspace/domain-skills/package-registries/npm-pypi.md141COMMENT
LOWagent-workspace/domain-skills/archive-org/scraping.md201# name, source ('original'|'derivative'|'metadata'), format, size (bytes as str),COMMENT
LOWagent-workspace/domain-skills/genius/scraping.md61 return http_get(url, headers=headers)COMMENT
LOWagent-workspace/domain-skills/genius/scraping.md81# song["stats"]["accepted_annotations"] → 20COMMENT
LOWagent-workspace/domain-skills/itch-io/scraping.md61 if get(k) is not NoneCOMMENT
LOWagent-workspace/domain-skills/itch-io/scraping.md141COMMENT
LOWagent-workspace/domain-skills/itch-io/scraping.md241COMMENT
LOWagent-workspace/domain-skills/itch-io/scraping.md261# Paid game:COMMENT
LOWagent-workspace/domain-skills/sec-edgar/scraping.md181 breakCOMMENT
LOWsrc/browser_harness/_ipc.py141 resp = request(c, token, {"meta": "ping"})COMMENT
Structural Annotation Overuse17 hits · 21 pts
SeverityFileLineSnippetContext
LOWagent-workspace/domain-skills/wellfound/scraping.md313# Step 1: Load any Wellfound page so the session cookie + DataDome cookie are setSTRING
LOWagent-workspace/domain-skills/wellfound/scraping.md318# Step 2: Extract CSRF token from meta tagSTRING
LOWagent-workspace/domain-skills/wellfound/scraping.md325# Step 3: Execute GraphQL query via fetch() from within the browserSTRING
LOWagent-workspace/domain-skills/ebay/scraping.md386# Step 1: SearchCOMMENT
LOWagent-workspace/domain-skills/ebay/scraping.md397# Step 2: Fetch details for top results (with delay)COMMENT
LOWagent-workspace/domain-skills/weather/scraping.md68### Step 1: city name → coordinates (geocoding)COMMENT
LOW…nt-workspace/domain-skills/wayback-machine/scraping.md148# WARNING: This API is BROKEN — returns empty archived_snapshotsCOMMENT
LOWagent-workspace/domain-skills/pubmed/scraping.md13# Step 1: search → get PMIDsCOMMENT
LOWagent-workspace/domain-skills/pubmed/scraping.md21# Step 2: fetch lightweight metadata for all PMIDs in one callCOMMENT
LOWagent-workspace/domain-skills/pubmed/scraping.md233# Step 1: ESearch with usehistory=y — NCBI holds result set on serverCOMMENT
LOWagent-workspace/domain-skills/pubmed/scraping.md245# Step 2: EFetch pages using WebEnv (no re-searching)COMMENT
LOWagent-workspace/domain-skills/flipkart/shopping.md103# Step 1: Find and click the pincode input or "Change" linkCOMMENT
LOWagent-workspace/domain-skills/flipkart/shopping.md114# Step 2: Clear and type new pincodeCOMMENT
LOWagent-workspace/domain-skills/flipkart/shopping.md118# Step 3: Wait and read delivery estimateCOMMENT
LOWagent-workspace/domain-skills/weread/read.md51## Step 1: Login FlowCOMMENT
LOWagent-workspace/domain-skills/weread/read.md94## Step 2: Reading Progress ManagementSTRING
LOWagent-workspace/domain-skills/weread/read.md202## Step 3: Auto ReadingSTRING
Unused Imports15 hits · 15 pts
SeverityFileLineSnippetContext
LOW…ace/domain-skills/browser-use-cloud/cleanup-zombies.py23CODE
LOWsrc/browser_harness/auth.py6CODE
LOWsrc/browser_harness/run.py13CODE
LOWsrc/browser_harness/run.py13CODE
LOWsrc/browser_harness/run.py13CODE
LOWsrc/browser_harness/run.py13CODE
LOWsrc/browser_harness/run.py33CODE
LOWsrc/browser_harness/macos.py3CODE
LOWsrc/browser_harness/paths.py2CODE
LOWsrc/browser_harness/telemetry.py3CODE
LOWsrc/browser_harness/video_render.py4CODE
LOWsrc/browser_harness/helpers.py546CODE
LOWsrc/browser_harness/helpers.py546CODE
LOWsrc/browser_harness/helpers.py546CODE
LOWsrc/browser_harness/video.py4CODE
AI Slop Vocabulary6 hits · 15 pts
SeverityFileLineSnippetContext
MEDIUM…ce/domain-skills/claude-ai/extract-share-transcript.py22new_tab(share_url) # noqa: F821 — provided by browser-harnessCODE
MEDIUMsrc/browser_harness/auth.py31# escape hatch so a dedicated browser-harness client can be used once issued.COMMENT
MEDIUMsrc/browser_harness/macos.py81 "chrome://inspect/#remote-debugging, then run `browser-harness mac-approve` again",STRING
MEDIUMsrc/browser_harness/_ipc.py12# then to the browser-harness runtime dir.COMMENT
MEDIUMsrc/browser_harness/admin.py486 # restarts anything on its own; a follow-up `browser-harness`COMMENT
MEDIUMsrc/browser_harness/daemon.py453 # Freshly launched browser (ex: harness relaunching closed Chrome)COMMENT
Deep Nesting14 hits · 12 pts
SeverityFileLineSnippetContext
LOW…ace/domain-skills/browser-use-cloud/cleanup-zombies.py87CODE
LOWsrc/browser_harness/auth.py508CODE
LOWsrc/browser_harness/run.py301CODE
LOWsrc/browser_harness/recorder.py261CODE
LOWsrc/browser_harness/recorder.py294CODE
LOWsrc/browser_harness/telemetry.py128CODE
LOWsrc/browser_harness/admin.py340CODE
LOWsrc/browser_harness/admin.py492CODE
LOWsrc/browser_harness/video_render.py413CODE
LOWsrc/browser_harness/helpers.py451CODE
LOWsrc/browser_harness/video.py438CODE
LOWsrc/browser_harness/daemon.py228CODE
LOWsrc/browser_harness/daemon.py767CODE
LOWsrc/browser_harness/daemon.py614CODE
Synthetic Comment Markers1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHagent-workspace/domain-skills/tiktok/upload.md75### 4. AI-generated content disclosureCOMMENT
Magic Placeholder Names1 hit · 5 pts
SeverityFileLineSnippetContext
HIGHagent-workspace/domain-skills/rawg/scraping.md194All endpoints live at `https://api.rawg.io/api/`. Append `&key=YOUR_API_KEY` to every request.CODE
Fake / Example Data3 hits · 3 pts
SeverityFileLineSnippetContext
LOWagent-workspace/domain-skills/duckduckgo/scraping.md96text, kind = ddg_answer("lorem ipsum")CODE
LOWagent-workspace/domain-skills/duckduckgo/scraping.md253- Random: `random number`, `generate password`, `lorem ipsum`CODE
LOW…space/domain-skills/centilebrain/generate-estimates.md67 e.value='user@example.com';CODE
AI Structural Patterns1 hit · 1 pts
SeverityFileLineSnippetContext
LOWsrc/browser_harness/telemetry.py247CODE