Repository Analysis

HKUDS/DeepCode

"DeepCode: Open Agentic Coding (Agent Harness & Loop Engineering & Multi-Agent Orchestration)"

16.2 Moderate AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of HKUDS/DeepCode, a Python project with 16,443 GitHub stars. SynthScan v2.0 examined 229,881 lines of code across 785 source files, recording 3362 pattern matches distributed across 19 syntactic categories. The overall adjusted score of 16.2 places this repository in the Moderate 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).

16.2
Adjusted Score
16.2
Raw Score
100%
Time Factor
2026-08-28
Last Push
16.4K
Stars
Python
Language
229.9K
Lines of Code
785
Files
3.4K
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

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 18MEDIUM 134LOW 3210

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 3362 distinct pattern matches across 19 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 Identifiers1642 hits · 1684 pts
SeverityFileLineSnippetContext
LOWtools/code_implementation_server.py1006def _extract_file_section_from_summary(CODE
LOWtools/code_implementation_server.py1126def _extract_file_section_alternative(CODE
LOWtools/command_executor.py397def generate_execution_summary(CODE
LOWtools/command_executor.py425def format_single_command_result(CODE
LOWtools/pdf_downloader.py745 def process_markdown_with_images(CODE
LOWtools/pdf_downloader.py130async def _request_with_safe_redirects(CODE
LOWtools/pdf_downloader.py170async def perform_document_conversion(CODE
LOWtools/pdf_downloader.py256async def convert_document_to_markdown(CODE
LOWtools/pdf_downloader.py289def format_file_operation_result(CODE
LOWtools/document_segmentation_server.py1110 def _identify_research_paper_sections(self, content: str) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py1115 def _enhance_section_with_context(self, section: Dict, content: str) -> Dict:CODE
LOWtools/document_segmentation_server.py1119 def _identify_concept_implementation_pairs(self, content: str) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py1123 def _merge_concept_with_implementation(self, pair: Dict, content: str) -> Dict:CODE
LOWtools/document_segmentation_server.py1127 def _detect_semantic_boundaries(self, content: str) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py204 def _calculate_weighted_score(CODE
LOWtools/document_segmentation_server.py226 def detect_segmentation_strategy(self, content: str, doc_type: str) -> str:CODE
LOWtools/document_segmentation_server.py249 def _calculate_algorithm_density(self, content: str) -> float:CODE
LOWtools/document_segmentation_server.py273 def _calculate_concept_complexity(self, content: str) -> float:CODE
LOWtools/document_segmentation_server.py286 def _calculate_implementation_detail_level(self, content: str) -> float:CODE
LOWtools/document_segmentation_server.py397 def _segment_preserve_algorithm_integrity(CODE
LOWtools/document_segmentation_server.py431 def _segment_research_paper_semantically(CODE
LOWtools/document_segmentation_server.py456 def _segment_concept_implementation_hybrid(CODE
LOWtools/document_segmentation_server.py481 def _segment_by_enhanced_semantic_chunks(CODE
LOWtools/document_segmentation_server.py585 def _detect_academic_sections(self, content: str) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py644 def _segment_by_semantic_chunks(self, content: str) -> List[DocumentSegment]:CODE
LOWtools/document_segmentation_server.py743 def _identify_algorithm_blocks(self, content: str) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py883 def _merge_related_content_blocks(CODE
LOWtools/document_segmentation_server.py1008 def _extract_enhanced_keywords(self, content: str, content_type: str) -> List[str]:CODE
LOWtools/document_segmentation_server.py1063 def _calculate_enhanced_relevance_scores(CODE
LOWtools/document_segmentation_server.py1173 def _calculate_paragraph_importance(CODE
LOWtools/document_segmentation_server.py1198 def _calculate_optimal_chunk_size(self, content: str) -> int:CODE
LOWtools/document_segmentation_server.py1209 def _create_content_aware_chunks(self, content: str, chunk_size: int) -> List[Dict]:CODE
LOWtools/document_segmentation_server.py1354 def _calculate_relevance_scores(CODE
LOWtools/document_segmentation_server.py1431def ensure_segments_dir_exists(segments_dir: str):CODE
LOWtools/document_segmentation_server.py1467async def analyze_and_segment_document(CODE
LOWtools/document_segmentation_server.py1813def _calculate_adaptive_char_limit(CODE
LOWtools/document_segmentation_server.py1838def _calculate_enhanced_keyword_score(CODE
LOWtools/document_segmentation_server.py1869def _calculate_completeness_bonus(CODE
LOWtools/document_segmentation_server.py1892def _select_segments_with_integrity(CODE
LOWtools/code_reference_indexer.py69def load_index_files_from_directory(indexes_directory: str) -> Dict[str, Dict]:CODE
LOWtools/code_reference_indexer.py136def calculate_relevance_score(CODE
LOWtools/code_reference_indexer.py179def find_relevant_references_in_cache(CODE
LOWtools/code_reference_indexer.py202def find_direct_relationships_in_cache(CODE
LOWtools/code_indexer.py955 async def _process_files_sequentially(self, files_to_analyze: list) -> tuple:CODE
LOWtools/code_indexer.py975 async def _process_files_concurrently(self, files_to_analyze: list) -> tuple:CODE
LOWtools/code_indexer.py1177 def _extract_repository_statistics(self, repo_index: RepoIndex) -> Dict[str, Any]:CODE
LOWtools/code_indexer.py1229 def generate_statistics_report(self, statistics_data: List[Dict[str, Any]]) -> str:CODE
LOWtools/code_indexer.py856 async def _analyze_single_file_with_relationships(STRING
LOWcore/verification.py42def discover_verification_commands(root: Path) -> tuple[VerificationCommand, ...]:CODE
LOWcore/config.py812def load_config_for_workspace(workspace: str | Path) -> DeepCodeConfig:CODE
LOWcore/agent_setup.py166def _legacy_execution_profile(CODE
LOWcore/private_storage.py217def open_existing_private_file(CODE
LOWcore/compat/runtime.py151 def resolve_execution_profile(CODE
LOWcore/compat/agent.py95def _mcp_supervisor_close_timeout_s() -> float:CODE
LOWcore/plugins/host.py296 def _registry_and_component_token(self) -> object:CODE
LOWcore/providers/timeouts.py27def resolve_request_timeout_s(explicit: float | None = None) -> float | None:CODE
LOWcore/providers/timeouts.py44def resolve_stream_max_runtime_s(explicit: float | None = None) -> float | None:CODE
LOWcore/providers/timeouts.py66def resolve_stream_idle_timeout_s() -> float:CODE
LOWcore/providers/timeouts.py87async def iter_with_stream_idle_timeout(CODE
LOWcore/providers/timeouts.py145def _normalize_optional_timeout(value: float) -> float | None:CODE
1582 more matches not shown…
Unused Imports791 hits · 739 pts
SeverityFileLineSnippetContext
LOW__init__.py4CODE
LOW__init__.py5CODE
LOWtools/document_conversion.py13CODE
LOWtools/pdf_downloader_server.py9CODE
LOWtools/pdf_converter.py13CODE
LOWcore/verification.py3CODE
LOWcore/config.py29CODE
LOWcore/agent_setup.py17CODE
LOWcore/platform_file_lock.py8CODE
LOWcore/platform_compat.py9CODE
LOWcore/file_lock.py3CODE
LOWcore/reasoning.py9CODE
LOWcore/private_storage.py14CODE
LOWcore/llm_runtime.py9CODE
LOWcore/llm_runtime.py21CODE
LOWcore/llm_runtime.py21CODE
LOWcore/schedule/keepalive.py11CODE
LOWcore/schedule/__init__.py15CODE
LOWcore/schedule/__init__.py15CODE
LOWcore/schedule/__init__.py16CODE
LOWcore/schedule/scheduler.py10CODE
LOWcore/compat/mcp_app.py16CODE
LOWcore/compat/request_params.py16CODE
LOWcore/compat/__init__.py26CODE
LOWcore/compat/__init__.py26CODE
LOWcore/compat/__init__.py26CODE
LOWcore/compat/__init__.py26CODE
LOWcore/compat/__init__.py26CODE
LOWcore/compat/__init__.py33CODE
LOWcore/compat/__init__.py34CODE
LOWcore/compat/__init__.py35CODE
LOWcore/compat/__init__.py36CODE
LOWcore/compat/__init__.py36CODE
LOWcore/compat/__init__.py36CODE
LOWcore/compat/__init__.py36CODE
LOWcore/compat/runtime.py18CODE
LOWcore/compat/agent.py20CODE
LOWcore/compat/parallel.py8CODE
LOWcore/agent_presets/__init__.py36CODE
LOWcore/plugins/domain.py3CODE
LOWcore/plugins/registry.py3CODE
LOWcore/plugins/host.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py3CODE
LOWcore/plugins/__init__.py14CODE
LOWcore/plugins/__init__.py15CODE
LOWcore/plugins/__init__.py16CODE
LOWcore/plugins/mcp.py3CODE
LOWcore/plugins/resolver.py3CODE
LOWcore/plugins/skill_provider.py3CODE
LOWcore/plugins/formats/agent_plugins_v1.py3CODE
LOWcore/plugins/formats/__init__.py3CODE
LOWcore/plugins/formats/__init__.py3CODE
731 more matches not shown…
Decorative Section Separators105 hits · 351 pts
SeverityFileLineSnippetContext
MEDIUMcore/config.py58# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py60# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py73# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py75# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py133# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py135# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py213# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py215# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py237# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py239# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py253# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py255# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py356# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py358# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py552# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py554# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py826# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/config.py828# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/providers/catalog.py68# --------------------------------------------------------------------------COMMENT
MEDIUMcore/providers/catalog.py76# --------------------------------------------------------------------------COMMENT
MEDIUMcore/providers/catalog.py118# --------------------------------------------------------------------------COMMENT
MEDIUMcore/providers/catalog.py125# --------------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py409 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py411 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py613 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py615 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py1147 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/openai_compat.py1149 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py180 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py182 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py359 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py361 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py405 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py407 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py448 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py450 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py530 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py532 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py616 # ------------------------------------------------------------------COMMENT
MEDIUMcore/providers/anthropic.py618 # ------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py77# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py79# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py91# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py93# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py203# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py205# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py233# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py235# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py302# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/observability/bus.py304# ---------------------------------------------------------------------------COMMENT
MEDIUMcore/harness/windows_sandbox.py40# ── Job Object constants (winnt.h) ──────────────────────────────────────COMMENT
MEDIUMcore/sessions/store.py83 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py85 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py220 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py222 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py372 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py374 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py476 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py478 # ------------------------------------------------------------------COMMENT
MEDIUMcore/sessions/store.py540 # ------------------------------------------------------------------COMMENT
45 more matches not shown…
Excessive Try-Catch Wrapping296 hits · 295 pts
SeverityFileLineSnippetContext
LOWdeepcode.py83 except Exception as e: # noqa: BLE001 - top-level CLI error boundaryCODE
LOWdeepcode.py116 except Exception:CODE
LOWtools/code_implementation_server.py165 except Exception as e:CODE
LOWtools/code_implementation_server.py334 except Exception as file_error:CODE
LOWtools/code_implementation_server.py386 except Exception as e:CODE
LOWtools/code_implementation_server.py460 except Exception as e:CODE
LOWtools/code_implementation_server.py618 except Exception as file_error:CODE
LOWtools/code_implementation_server.py667 except Exception as e:CODE
LOWtools/code_implementation_server.py764 except Exception as e:CODE
LOWtools/code_implementation_server.py862 except Exception as e:CODE
LOWtools/code_implementation_server.py991 except Exception as e:CODE
LOWtools/code_implementation_server.py1255 except Exception as e:CODE
LOWtools/code_implementation_server.py1287 except Exception as e:CODE
LOWtools/code_implementation_server.py1400 except Exception as e:CODE
LOWtools/code_implementation_server.py1466 except Exception as e:CODE
LOWtools/code_implementation_server.py1504 except Exception as e:CODE
LOWtools/pdf_utils.py45 except Exception as e:CODE
LOWtools/command_executor.py137 except Exception as e:CODE
LOWtools/command_executor.py230 except Exception as e:CODE
LOWtools/command_executor.py321 except Exception as e:CODE
LOWtools/command_executor.py331 except Exception as e:CODE
LOWtools/command_executor.py389 except Exception as e:CODE
LOWtools/document_conversion.py310 except Exception as exc:CODE
LOWtools/pdf_downloader.py733 except Exception as img_error:CODE
LOWtools/pdf_downloader.py740 except Exception as e:CODE
LOWtools/pdf_downloader.py211 except Exception as exc:CODE
LOWtools/pdf_downloader.py234 except Exception as exc:CODE
LOWtools/pdf_downloader.py640 except Exception as e:CODE
LOWtools/pdf_downloader.py671 except Exception:CODE
LOWtools/pdf_downloader.py689 except Exception:CODE
LOWtools/pdf_downloader.py879 except Exception as e:CODE
LOWtools/pdf_downloader.py988 except Exception as e:CODE
LOWtools/pdf_downloader.py1034 except Exception as e:CODE
LOWtools/pdf_downloader.py1129 except Exception as e:CODE
LOWtools/pdf_downloader.py1182 except Exception as e:CODE
LOWtools/git_command.py135 except Exception:CODE
LOWtools/git_command.py160 except Exception as e:CODE
LOWtools/git_command.py250 except Exception as e:CODE
LOWtools/git_command.py351 except Exception as e:CODE
LOWtools/document_segmentation_server.py1451 except Exception as exc:CODE
LOWtools/document_segmentation_server.py1541 except Exception as e:CODE
LOWtools/document_segmentation_server.py1547 except Exception as e:CODE
LOWtools/document_segmentation_server.py1617 except Exception as e:CODE
LOWtools/document_segmentation_server.py1739 except Exception as e:CODE
LOWtools/document_segmentation_server.py1798 except Exception as e:CODE
LOWtools/code_reference_indexer.py85 except Exception as e:CODE
LOWtools/code_reference_indexer.py404 except Exception as e:CODE
LOWtools/code_reference_indexer.py474 except Exception as e:CODE
LOWtools/pdf_converter.py273 except Exception as e:CODE
LOWtools/pdf_converter.py314 except Exception as e:CODE
LOWtools/pdf_converter.py420 except Exception:CODE
LOWtools/pdf_converter.py433 except Exception:CODE
LOWtools/pdf_converter.py435 except Exception:CODE
LOWtools/pdf_converter.py517 except Exception as e:CODE
LOWtools/pdf_converter.py534 except Exception as e:CODE
LOWtools/pdf_converter.py664 except Exception:CODE
LOWtools/pdf_converter.py742 except Exception as e:CODE
LOWtools/code_indexer.py288 except Exception as e:CODE
LOWtools/code_indexer.py362 except Exception as e:CODE
LOWtools/code_indexer.py447 except Exception as e:CODE
236 more matches not shown…
Modern Structural Boilerplate160 hits · 160 pts
SeverityFileLineSnippetContext
LOW__init__.py11__all__ = [CODE
LOWtools/code_implementation_server.py41logger = logging.getLogger(__name__)CODE
LOWtools/document_segmentation_server.py79logger = logging.getLogger(__name__)CODE
LOWtools/code_reference_indexer.py35logger = logging.getLogger(__name__)CODE
LOWcore/config.py928__all__ = [CODE
LOWcore/version.py5__all__ = ["__version__"]CODE
LOWcore/platform_file_lock.py130__all__ = ["acquire_file_lock", "release_file_lock"]CODE
LOWcore/file_lock.py97__all__ = ["FileLease", "exclusive_file_lock"]CODE
LOWcore/reasoning.py131__all__ = [CODE
LOWcore/private_storage.py313__all__ = [CODE
LOWcore/schedule/__init__.py18__all__ = ["Continuation", "ContinuationDecision", "run_scheduled"]CODE
LOWcore/compat/__init__.py43__all__ = [CODE
LOWcore/compat/runtime.py226def set_runtime(runtime: DeepCodeRuntime | None) -> None:CODE
LOWcore/agent_presets/__init__.py365__all__ = [CODE
LOWcore/plugins/domain.py190__all__ = [CODE
LOWcore/plugins/registry.py83 def set_enabled(self, selector: str, enabled: bool) -> None:CODE
LOWcore/plugins/registry.py302__all__ = [CODE
LOWcore/plugins/host.py39logger = logging.getLogger(__name__)CODE
LOWcore/plugins/host.py335__all__ = [CODE
LOWcore/plugins/__init__.py18__all__ = [CODE
LOWcore/plugins/mcp.py395__all__ = [CODE
LOWcore/plugins/resolver.py85__all__ = ["MAX_PLUGIN_MANIFEST_BYTES", "resolve_plugin"]CODE
LOWcore/plugins/skill_provider.py277__all__ = ["PluginSkillProvider"]CODE
LOWcore/plugins/formats/agent_plugins_v1.py272__all__ = [CODE
LOWcore/plugins/formats/__init__.py8__all__ = ["AGENT_PLUGIN_SCHEMA", "AgentPluginsV1Adapter"]CODE
LOWcore/providers/credentials.py149__all__ = ["CredentialStore", "default_credentials_path"]CODE
LOWcore/providers/catalog_service.py533__all__ = ["CatalogModel", "ModelCatalog", "ModelCatalogService"]CODE
LOWcore/providers/__init__.py25__all__ = [CODE
LOWcore/providers/timeouts.py157__all__ = [CODE
LOWcore/providers/reasoning.py195__all__ = [CODE
LOWcore/providers/profiles.py434__all__ = [CODE
LOWcore/providers/openai_responses/__init__.py18__all__ = [CODE
LOWcore/network/__init__.py17__all__ = [CODE
LOWcore/network/hostnames.py60__all__ = ["is_domain_allowed", "normalize_domain"]CODE
LOWcore/network/safe_http.py481__all__ = [CODE
LOWcore/mcp/models.py561__all__ = [CODE
LOWcore/mcp/presets.py88__all__ = ["McpPreset", "McpPresetBundle", "McpPresetCatalog"]CODE
LOWcore/mcp/naming.py43__all__ = ["MAX_TOOL_NAME_LENGTH", "visible_tool_name"]CODE
LOWcore/mcp/tools.py161__all__ = ["McpToolAdapter"]CODE
LOWcore/mcp/__init__.py34__all__ = [CODE
LOWcore/mcp/runtime.py455__all__ = ["McpServerRuntimeStatus", "McpSessionRuntime"]CODE
LOWcore/mcp/connection.py411def _set_header(headers: dict[str, str], name: str, value: str) -> None:CODE
LOWcore/mcp/connection.py509__all__ = [CODE
LOWcore/mcp/probe.py80__all__ = ["McpProbeResult", "probe_mcp_server"]CODE
LOWcore/mcp/resolver.py290__all__ = ["McpConfigResolver", "resolve_plugin_servers"]CODE
LOWcore/mcp/oauth.py97 async def set_tokens(self, tokens: OAuthToken) -> None:CODE
LOWcore/mcp/oauth.py110 async def set_client_info(self, client_info: OAuthClientInformationFull) -> None:CODE
LOWcore/mcp/oauth.py200 def _set_field(self, name: str, value: Any) -> None:CODE
LOWcore/mcp/oauth.py684__all__ = [CODE
LOWcore/mcp/schema.py57__all__ = ["normalize_schema_for_openai"]CODE
LOWcore/observability/records.py182__all__ = [CODE
LOWcore/observability/__init__.py49__all__ = [CODE
LOWcore/observability/bus.py208def set_task_dir(task_id: str, task_dir: Path | str) -> None:CODE
LOWcore/observability/bus.py436__all__ = [CODE
LOWcore/observability/context.py78__all__ = [CODE
LOWcore/harness/skills.py207__all__ = [CODE
LOWcore/harness/__init__.py29__all__ = [CODE
LOWcore/harness/tools/web.py211__all__ = ["MAX_FETCH_CHARACTERS", "WebFetchTool"]CODE
LOWcore/harness/tools/__init__.py29__all__ = [CODE
LOWcore/harness/tools/goal.py94__all__ = ["GetGoalTool", "UpdateGoalTool"]CODE
100 more matches not shown…
Deep Nesting185 hits · 152 pts
SeverityFileLineSnippetContext
LOWdeepcode.py124CODE
LOWtools/code_implementation_server.py176CODE
LOWtools/code_implementation_server.py471CODE
LOWtools/code_implementation_server.py1126CODE
LOWtools/code_implementation_server.py1176CODE
LOWtools/code_implementation_server.py1301CODE
LOWtools/code_implementation_server.py1327CODE
LOWtools/pdf_utils.py9CODE
LOWtools/command_executor.py31CODE
LOWtools/command_executor.py239CODE
LOWtools/document_conversion.py315CODE
LOWtools/document_conversion.py406CODE
LOWtools/document_conversion.py201CODE
LOWtools/document_conversion.py240CODE
LOWtools/pdf_downloader.py170CODE
LOWtools/pdf_downloader.py1043CODE
LOWtools/pdf_downloader.py419CODE
LOWtools/pdf_downloader.py459CODE
LOWtools/pdf_downloader.py564CODE
LOWtools/pdf_downloader.py692CODE
LOWtools/git_command.py165CODE
LOWtools/git_command.py27CODE
LOWtools/document_segmentation_server.py1467CODE
LOWtools/document_segmentation_server.py1627CODE
LOWtools/document_segmentation_server.py158CODE
LOWtools/document_segmentation_server.py226CODE
LOWtools/document_segmentation_server.py309CODE
LOWtools/document_segmentation_server.py327CODE
LOWtools/document_segmentation_server.py585CODE
LOWtools/document_segmentation_server.py1063CODE
LOWtools/document_segmentation_server.py1156CODE
LOWtools/document_segmentation_server.py1173CODE
LOWtools/document_segmentation_server.py1328CODE
LOWtools/code_reference_indexer.py202CODE
LOWtools/pdf_converter.py86CODE
LOWtools/pdf_converter.py319CODE
LOWtools/pdf_converter.py616CODE
LOWtools/code_indexer.py450CODE
LOWtools/code_indexer.py473CODE
LOWtools/code_indexer.py658CODE
LOWtools/code_indexer.py770CODE
LOWtools/code_indexer.py975CODE
LOWtools/code_indexer.py1096CODE
LOWtools/code_indexer.py477CODE
LOWcore/platform_compat.py26CODE
LOWcore/compat/agent.py36CODE
LOWcore/compat/agent.py104CODE
LOWcore/compat/agent.py390CODE
LOWcore/plugins/host.py219CODE
LOWcore/providers/openai_compat.py337CODE
LOWcore/providers/openai_compat.py629CODE
LOWcore/providers/openai_compat.py780CODE
LOWcore/providers/openai_compat.py926CODE
LOWcore/providers/openai_compat.py1054CODE
LOWcore/providers/openai_compat.py1151CODE
LOWcore/providers/openai_compat.py1209CODE
LOWcore/providers/anthropic.py109CODE
LOWcore/providers/anthropic.py184CODE
LOWcore/providers/anthropic.py535CODE
LOWcore/providers/base.py232CODE
125 more matches not shown…
Cross-Language Confusion12 hits · 68 pts
SeverityFileLineSnippetContext
HIGHcore/persistence/migrations.py1247 '{"accessPreset":null,"permissionMode":"plan","commandSandbox":true,"filesystemScope":"workspace","approvalPolicCODE
HIGHcore/persistence/migrations.py1249 '{"accessPreset":null,"permissionMode":"full_auto","commandSandbox":true,"filesystemScope":"workspace","approvalCODE
HIGHcore/persistence/migrations.py1251 '{"accessPreset":null,"permissionMode":"default","commandSandbox":true,"filesystemScope":"workspace","approvalPoCODE
HIGH…e/skills/builtin/webapp-testing/scripts/with_server.py12 --server "cd backend && python server.py" --port 3000 \STRING
HIGH…e/skills/builtin/webapp-testing/scripts/with_server.py13 --server "cd frontend && npm run dev" --port 5173 \STRING
HIGHtests/test_exec_sandbox_wiring.py123 f"cat ~/.aws/credentials > {stolen} 2>/dev/null || echo done", timeout=30CODE
HIGHtests/test_verification.py12 '{"scripts":{"test":"echo Error: no test specified && exit 1"}}',CODE
HIGHtests/contract/test_protocol_schema.py171 assert "executionPermissionMode?: ExecutionPermissionMode | null;" in generatedCODE
HIGHtests/contract/test_protocol_schema.py256 assert "accessPresetOverride: ExecutionAccessPreset | null;" in generatedCODE
HIGHtests/contract/test_protocol_schema.py257 assert "executionSecurityProfile?: ExecutionSecurityProfile | null;" in generatedCODE
HIGHtests/contract/test_protocol_schema.py380 assert "goalId: string | null;" in generatedCODE
HIGHtests/contract/test_protocol_schema.py384 assert "nextOffset: number | null;" in generatedCODE
Redundant / Tautological Comments45 hits · 65 pts
SeverityFileLineSnippetContext
LOWtools/code_implementation_server.py428 # Write fileCOMMENT
LOWtools/code_implementation_server.py577 # Write fileCOMMENT
LOWtools/code_implementation_server.py1036 # Check if paths match using multiple strategiesCOMMENT
LOWtools/code_implementation_server.py1147 # Check if this matches our targetCOMMENT
LOWtools/document_segmentation_server.py338 # Check if line is a headerCOMMENT
LOWtools/document_segmentation_server.py900 # Check if can merge with the next blockCOMMENT
LOWtools/document_segmentation_server.py1497 # Check if analysis already exists and is recentCOMMENT
LOWtools/document_segmentation_server.py1859 # Check if in important position (first 25% of content)COMMENT
LOWtools/pdf_converter.py125 # Check if LibreOffice is availableCOMMENT
LOWtools/code_indexer.py617 # Check if it's in the selected listCOMMENT
LOWtools/code_indexer.py1467 # Display resultsSTRING
LOWcore/skills/builtin/skill-creator/scripts/init_skill.py278 # Check if directory already existsCOMMENT
LOWworkflows/agent_orchestration_engine.py1120 # Check if file is actually a PDF by reading the first few bytesCOMMENT
LOWworkflows/agent_orchestration_engine.py1058 # Check if reference analysis already existsCOMMENT
LOWworkflows/agent_orchestration_engine.py1327 # Check if plan is empty or invalidCOMMENT
LOWworkflows/agent_orchestration_engine.py1394 # Verify if any repositories were actually downloadedCOMMENT
LOWworkflows/agent_orchestration_engine.py1460 # Check if code_base directory exists and has contentCOMMENT
LOWworkflows/agent_orchestration_engine.py1469 # Check if there are any repositories in the code_base directoryCOMMENT
LOWworkflows/agent_orchestration_engine.py1605 # Check if initial plan file existsCOMMENT
LOWworkflows/interactions/plan_review.py59 # Check if disabledCOMMENT
LOWworkflows/interactions/plan_review.py63 # Check if already reviewedCOMMENT
LOWworkflows/interactions/plan_review.py67 # Check if we have a plan to reviewCOMMENT
LOWworkflows/interactions/requirement_analysis.py69 # Check if disabled in contextCOMMENT
LOWworkflows/interactions/requirement_analysis.py73 # Check if already processedCOMMENT
LOWworkflows/interactions/requirement_analysis.py77 # Check if we have user input to analyzeCOMMENT
LOWworkflows/agents/code_implementation_agent.py459 # Check if result is a CallToolResult objectCOMMENT
LOWworkflows/agents/code_implementation_agent.py173 # Check if read tools are disabledCOMMENT
LOWworkflows/agents/code_implementation_agent.py296 # Check if a summary exists for this file using read_code_mem MCP toolCOMMENT
LOWworkflows/agents/code_implementation_agent.py311 # Check if any summaries were found in the resultsCOMMENT
LOWworkflows/agents/code_implementation_agent.py632 # Check if we should trigger summary / 检查是否应触发总结COMMENT
LOWworkflows/agents/code_implementation_agent.py869 # Check if recent calls are all read_file or search_reference_code / 检查最近的调用是否都是read_file或search_reference_codeCOMMENT
LOWworkflows/agents/memory_agent_concise.py320 # Check if file has a code extensionCOMMENT
LOWworkflows/agents/memory_agent_concise.py546 # Check if it's a known file extensionCOMMENT
LOWworkflows/agents/memory_agent_concise.py703 # Check if it looks like a file (has extension)COMMENT
LOWworkflows/agents/memory_agent_concise.py987 # Check if we've already seen this file (exact match)COMMENT
LOWworkflows/agents/memory_agent_concise.py1386 # Check if file exists to determine if we need headerSTRING
LOWworkflows/agents/memory_agent_concise.py1588 "read_file", # Read file contentsSTRING
LOWworkflows/agents/memory_agent_concise.py1589 "write_file", # Write file contents (important for tracking implementations)STRING
LOWworkflows/agents/document_segmentation_agent.py124 # Check if markdown file existsCOMMENT
LOWutils/file_processor.py30 # Check if it's a file path (existing or not)COMMENT
LOWutils/file_processor.py114 # Check if line is a headerCOMMENT
LOWutils/file_processor.py190 # Check if file is actually a PDF by reading the first few bytesCOMMENT
LOWutils/file_processor.py213 # Read file contentCOMMENT
LOWutils/file_processor.py375 # Check if it's a file path (existing or not)COMMENT
LOWutils/file_processor.py416 # Read file contentCOMMENT
Structural Annotation Overuse33 hits · 53 pts
SeverityFileLineSnippetContext
LOWtools/code_reference_indexer.py356 # Step 1: Load index files from specified directoryCOMMENT
LOWtools/code_reference_indexer.py369 # Step 2: Parse keywordsCOMMENT
LOWtools/code_reference_indexer.py374 # Step 3: Find relevant reference codeCOMMENT
LOWtools/code_reference_indexer.py379 # Step 4: Find direct relationshipsCOMMENT
LOWtools/code_reference_indexer.py382 # Step 5: Format outputCOMMENT
LOWtools/code_indexer.py876 # Step 1: Generate file treeCOMMENT
LOWtools/code_indexer.py880 # Step 2: Get all filesCOMMENT
LOWtools/code_indexer.py884 # Step 3: LLM pre-filtering of relevant filesCOMMENT
LOWtools/code_indexer.py892 # Step 4: Filter file list based on filtering resultsCOMMENT
LOWtools/code_indexer.py904 # Step 5: Analyze filtered files (concurrent or sequential)COMMENT
LOWtools/code_indexer.py918 # Step 6: Create repository indexCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md236### Step 1: Understanding the Skill with Concrete ExamplesCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md253### Step 2: Planning the Reusable Skill ContentsCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md277### Step 3: Initializing the SkillCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md317### Step 4: Edit the SkillCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md349### Step 5: Validate the SkillCOMMENT
LOWcore/skills/builtin/skill-creator/SKILL.md359### Step 6: IterateCOMMENT
LOWcore/skills/builtin/mcp-builder/reference/evaluation.md176### Step 1: Documentation InspectionCOMMENT
LOWcore/skills/builtin/mcp-builder/reference/evaluation.md184### Step 2: Tool InspectionCOMMENT
LOWcore/skills/builtin/mcp-builder/reference/evaluation.md191### Step 3: Developing UnderstandingCOMMENT
LOWcore/skills/builtin/mcp-builder/reference/evaluation.md200### Step 4: Read-Only Content InspectionCOMMENT
LOWcore/skills/builtin/mcp-builder/reference/evaluation.md214### Step 5: Task GenerationCOMMENT
LOWworkflows/codebase_index_workflow.py424 # Step 1: Determine initial plan file pathSTRING
LOWworkflows/codebase_index_workflow.py428 # Step 2: Load target structureSTRING
LOWworkflows/codebase_index_workflow.py443 # Step 3: Check codebase pathSTRING
LOWworkflows/codebase_index_workflow.py453 # Step 4: Create output directorySTRING
LOWworkflows/codebase_index_workflow.py457 # Step 5: Load configurationSTRING
LOWworkflows/codebase_index_workflow.py463 # Step 6: Create code indexerSTRING
LOWworkflows/codebase_index_workflow.py580 # Step 7: Build all indexesSTRING
LOWworkflows/codebase_index_workflow.py583 # Step 8: Generate summary reportSTRING
LOWworkflows/agent_orchestration_engine.py1096 # Step 1: Check if any markdown files existCOMMENT
LOWworkflows/agent_orchestration_engine.py1117 # Step 2: Read document content to determine sizeCOMMENT
LOWworkflows/agent_orchestration_engine.py1164 # Step 3: Determine if segmentation should be usedCOMMENT
Verbosity Indicators22 hits · 34 pts
SeverityFileLineSnippetContext
LOWtools/code_reference_indexer.py356 # Step 1: Load index files from specified directoryCOMMENT
LOWtools/code_reference_indexer.py369 # Step 2: Parse keywordsCOMMENT
LOWtools/code_reference_indexer.py374 # Step 3: Find relevant reference codeCOMMENT
LOWtools/code_reference_indexer.py379 # Step 4: Find direct relationshipsCOMMENT
LOWtools/code_reference_indexer.py382 # Step 5: Format outputCOMMENT
LOWtools/code_indexer.py876 # Step 1: Generate file treeCOMMENT
LOWtools/code_indexer.py880 # Step 2: Get all filesCOMMENT
LOWtools/code_indexer.py884 # Step 3: LLM pre-filtering of relevant filesCOMMENT
LOWtools/code_indexer.py892 # Step 4: Filter file list based on filtering resultsCOMMENT
LOWtools/code_indexer.py904 # Step 5: Analyze filtered files (concurrent or sequential)COMMENT
LOWtools/code_indexer.py918 # Step 6: Create repository indexCOMMENT
LOWworkflows/codebase_index_workflow.py424 # Step 1: Determine initial plan file pathSTRING
LOWworkflows/codebase_index_workflow.py428 # Step 2: Load target structureSTRING
LOWworkflows/codebase_index_workflow.py443 # Step 3: Check codebase pathSTRING
LOWworkflows/codebase_index_workflow.py453 # Step 4: Create output directorySTRING
LOWworkflows/codebase_index_workflow.py457 # Step 5: Load configurationSTRING
LOWworkflows/codebase_index_workflow.py463 # Step 6: Create code indexerSTRING
LOWworkflows/codebase_index_workflow.py580 # Step 7: Build all indexesSTRING
LOWworkflows/codebase_index_workflow.py583 # Step 8: Generate summary reportSTRING
LOWworkflows/agent_orchestration_engine.py1096 # Step 1: Check if any markdown files existCOMMENT
LOWworkflows/agent_orchestration_engine.py1117 # Step 2: Read document content to determine sizeCOMMENT
LOWworkflows/agent_orchestration_engine.py1164 # Step 3: Determine if segmentation should be usedCOMMENT
Docstring Block Structure5 hits · 25 pts
SeverityFileLineSnippetContext
HIGHtools/pdf_downloader.py1044 Download files from URLs or move local files mentioned in natural language instructions. Args: instrucSTRING
HIGHtools/git_command.py166 Download GitHub repositories from natural language instructions. Args: instruction: Natural language tSTRING
HIGHcore/skills/builtin/skill-creator/scripts/init_skill.py263 Initialize a new skill directory with template SKILL.md. Args: skill_name: Name of the skill pSTRING
HIGH…lls/builtin/mcp-builder/reference/python_mcp_server.md282 Search for users in the Example system by name, email, or team. This tool searches across all user profiles inSTRING
HIGHutils/file_processor.py172 Read the content of a file asynchronously. Args: file_path: Path to the file to read STRING
AI Structural Patterns22 hits · 21 pts
SeverityFileLineSnippetContext
LOWcore/agent_setup.py236CODE
LOWcore/compat/request_params.py86CODE
LOWcore/providers/openai_compat.py1209CODE
LOWcore/providers/anthropic.py663CODE
LOWcore/providers/base.py530CODE
LOWcore/providers/base.py579CODE
LOWcore/providers/base.py619CODE
LOWcore/observability/bus.py238CODE
LOWcore/harness/agents/control.py135CODE
LOWcore/skills/runtime.py93CODE
LOWcore/application/agent_adapter.py51CODE
LOWcore/application/agent_adapter.py106CODE
LOWcore/application/mcp_service.py294CODE
LOWcore/application/application.py69CODE
LOWcore/application/application.py261CODE
LOWcore/application/turn_service.py323CODE
LOWcore/application/turn_service.py368CODE
LOWcore/application/turn_service.py471CODE
LOWcore/application/goal_turn_port.py32CODE
LOWcore/application/thread_service.py133CODE
LOWcore/application/execution_coordinator.py96CODE
LOWcore/events/session.py379CODE
AI Slop Vocabulary7 hits · 20 pts
SeverityFileLineSnippetContext
MEDIUMcore/harness/sandbox.py322 # ``python -m core.harness.windows_sandbox -- <inner argv...>`` createsCOMMENT
MEDIUMcore/harness/agents/external_backend.py43# harness's own provider keys must not leak into a spawned CLI implicitly.COMMENT
MEDIUMcore/application/execution_security_policy.py138 # Direct legacy harness callers keep their established client defaults.COMMENT
MEDIUMworkflows/agent_orchestration_engine.py1726 # Set higher token output for comprehensive planningCOMMENT
MEDIUMworkflows/agent_orchestration_engine.py1737 formatted_message = f"""Please analyze the following coding requirements and generate a comprehensive implemCODE
MEDIUMprompts/code_prompts.py463CODE_PLANNING_PROMPT = """You are creating a DETAILED, COMPLETE reproduction plan by integrating comprehensive analysis CODE
MEDIUMprompts/code_prompts.py1556CODE_PLANNING_PROMPT_TRADITIONAL = """You are creating a DETAILED, COMPLETE reproduction plan by integrating comprehensiCODE
Over-Commented Block19 hits · 16 pts
SeverityFileLineSnippetContext
LOWcore/team/worktree.py21 "-c",COMMENT
LOWcore/agent_runtime/runner.py81_MAX_LENGTH_RECOVERIES = 3COMMENT
LOWcore/agent_runtime/runner.py181 llm_timeout_s: float | None = NoneCOMMENT
LOWcore/agent_runtime/runner.py201 # A blocking PreToolUse becomes an errors-as-data result (the tool neverCOMMENT
LOWcore/agent_runtime/runner.py1761 # clothes — keep the original and let _snip_history bound the prompt.COMMENT
LOWcore/events/session.py421 self._session_end_fired = FalseCOMMENT
LOWcore/events/session.py441 # (terminated by the authoritative AgentMessage). InteractiveCOMMENT
LOWworkflows/agents/memory_agent_concise.py1301 llm_summary: LLM-generated summary contentCOMMENT
LOWworkflows/agents/memory_agent_concise.py1721 knowledge_base_message["content"] += (COMMENT
LOWworkflows/agents/memory_agent_concise.py1741 # # If no tool results yet, add guidance for next stepsCOMMENT
LOWcli/tui/theme.py21COMMENT
LOWcli/tui/theme.py101# -- pickers (prompt_toolkit dialect; it has no dim attribute, so theCOMMENT
LOWcli/tui/renderer.py201 # line reads the newest, each elbow pops its own.COMMENT
LOWprompts/code_prompts.py861# - **CONTINUOUS**: Implement files continuously until plan completionCOMMENT
LOWprompts/code_prompts.py881# ```COMMENT
LOWprompts/code_prompts.py901# - Apply: Found patterns while maintaining project requirementsCOMMENT
LOWprompts/code_prompts.py921# Next Target: [next_file_to_implement]COMMENT
LOWprompts/code_prompts.py1061COMMENT
LOWprompts/code_prompts.py1081COMMENT
Self-Referential Comments5 hits · 15 pts
SeverityFileLineSnippetContext
MEDIUMtools/code_indexer.py430 # Create a hash of the prompt for filenameCOMMENT
MEDIUMworkflows/agent_orchestration_engine.py1698 # Create the chat planning agentCOMMENT
MEDIUMworkflows/agent_orchestration_engine.py2007 # Create a skipped indexing resultCOMMENT
MEDIUMworkflows/agents/code_implementation_agent.py991 # Create a simulated read_file tool callCOMMENT
MEDIUMworkflows/agents/memory_agent_concise.py1104 # Create the formatted summary for file saving (without Next Steps)COMMENT
Modern AI Meta-Vocabulary3 hits · 8 pts
SeverityFileLineSnippetContext
MEDIUMcore/providers/base.py109 # private chain of thought.COMMENT
MEDIUMcore/harness/tools/goal.py78 # The call records a constrained orchestration request; it cannotCOMMENT
MEDIUMworkflows/__init__.py25 "execute_multi_agent_research_pipeline", # Main multi-agent pipeline functionCODE
Fake / Example Data8 hits · 8 pts
SeverityFileLineSnippetContext
LOW…ltin/webapp-testing/examples/static_html_automation.py21 page.fill("#name", "John Doe")CODE
LOW…lls/builtin/mcp-builder/reference/python_mcp_server.md306 "name": str, # Full name (e.g., "John Doe")STRING
LOW…lls/builtin/mcp-builder/reference/python_mcp_server.md572 return {"id": user_id, "name": "John Doe", "email": "john@example.com"}CODE
LOW…kills/builtin/mcp-builder/reference/node_mcp_server.md173 "name": string, // Full name (e.g., "John Doe")CODE
LOWtests/test_session_compaction.py69 big = "lorem ipsum dolor sit amet " * 250 # ~6.7K chars ≈ 1.7K tokens eachCODE
LOWtests/test_session_compaction.py69 big = "lorem ipsum dolor sit amet " * 250 # ~6.7K chars ≈ 1.7K tokens eachCODE
LOWtests/test_session_compaction.py183 big = "lorem ipsum dolor sit amet " * 250CODE
LOWtests/test_session_compaction.py183 big = "lorem ipsum dolor sit amet " * 250CODE
Magic Placeholder Names1 hit · 5 pts
SeverityFileLineSnippetContext
HIGHcore/skills/builtin/mcp-builder/reference/evaluation.md557export ANTHROPIC_API_KEY=your_api_keyCODE
Slop Phrases1 hit · 2 pts
SeverityFileLineSnippetContext
LOWutils/file_processor.py136 # Don't forget to save the last sectionCOMMENT