Interactive architecture diagrams for codebases
This report presents the forensic synthetic code analysis of CodeBoarding/CodeBoarding, a Python project with 2,404 GitHub stars. SynthScan v2.0 examined 81,185 lines of code across 354 source files, recording 2856 pattern matches distributed across 20 syntactic categories. The overall adjusted score of 41.7 places this repository in the Strong 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).
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.
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.
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.
The scanner identified 2856 distinct pattern matches across 20 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.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | install.py | 104 | def bootstrapped_npm_cli_path(target_dir: Path) -> Path: | CODE |
| LOW | install.py | 364 | def install_vcpp_redistributable() -> bool: | CODE |
| LOW | install.py | 511 | def install_package_manager_lsp_servers(target_dir: Path, on_progress: ProgressCallback | None = None) -> None: | CODE |
| LOW | install.py | 575 | def _language_checks_from_registry(target_dir: Path) -> list[LanguageSupportCheck]: | CODE |
| LOW | install.py | 670 | def print_language_support_summary(npm_available: bool, target_dir: Path): | CODE |
| LOW | main.py | 72 | def _inject_default_subcommand(argv: list[str]) -> list[str]: | STRING |
| LOW | diagram_analysis/file_index.py | 24 | def build_file_methods_from_nodes( | CODE |
| LOW | diagram_analysis/file_index.py | 112 | def refresh_method_spans_from_cfg( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 105 | def _component_expansion_seeds(components: list[Component], max_depth: int) -> list[tuple[Component, int]]: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 276 | def _capture_baseline_member_keys( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 296 | def _capture_membership_baseline( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 331 | def _restore_unchanged_metadata( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 386 | def _fully_unchanged_component_ids( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 420 | def _restore_unchanged_subtrees( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 455 | def _incremental_changed_component_ids( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 713 | def _complete_agent_initialization( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 744 | def _prepare_incremental_clustering( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 971 | def _changed_files_for_static_analysis(self) -> set[Path] | None: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 986 | def _get_static_with_injected_analyzer(self) -> StaticAnalysisResults: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1004 | def _get_static_with_new_analyzer(self) -> StaticAnalysisResults: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1020 | def _persist_static_analysis_artifact(self) -> None: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1028 | def _source_tree_fingerprint_map(self) -> dict[str, str]: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1389 | def _build_file_coverage_summary(self) -> FileCoverageSummary | None: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1436 | def _apply_incremental_hierarchy( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1474 | def generate_analysis_incremental( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1642 | def _collect_components_by_id( | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1660 | def _drop_removed_subtree_analyses(sub_analyses: dict[str, AnalysisInsights], removed_ids: set[str]) -> None: | CODE |
| LOW | diagram_analysis/tree_shape.py | 14 | def absorb_single_child_components( | CODE |
| LOW | diagram_analysis/io_utils.py | 49 | def _compute_expandable_components( | CODE |
| LOW | diagram_analysis/io_utils.py | 267 | def load_expandable_component_ids(output_dir: Path) -> set[str]: | CODE |
| LOW | diagram_analysis/analysis_json.py | 161 | def _build_files_index_from_analysis( | CODE |
| LOW | diagram_analysis/analysis_json.py | 182 | def _source_reference_method_key(reference: SourceCodeReference, repo_dir: Path) -> str: | CODE |
| LOW | diagram_analysis/analysis_json.py | 213 | def _to_component_file_method_refs(file_methods: list[FileMethodGroup]) -> list[ComponentFileMethodGroupJson]: | CODE |
| LOW | diagram_analysis/analysis_json.py | 228 | def _method_refs_to_placeholders(method_names: list[str]) -> list[MethodEntry]: | CODE |
| LOW | diagram_analysis/analysis_json.py | 240 | def _build_methods_index_from_files(files_index: dict[str, FileEntry]) -> dict[str, MethodIndexEntry]: | CODE |
| LOW | diagram_analysis/analysis_json.py | 255 | def _build_file_entry_json_from_files(files_index: dict[str, FileEntry]) -> dict[str, FileEntryJson]: | CODE |
| LOW | diagram_analysis/analysis_json.py | 267 | def _hydrate_component_methods_from_refs( | CODE |
| LOW | diagram_analysis/analysis_json.py | 317 | def from_component_to_json_component( | CODE |
| LOW | diagram_analysis/analysis_json.py | 447 | def build_unified_analysis_json( | CODE |
| LOW | diagram_analysis/analysis_json.py | 570 | def _extract_analysis_recursive( | CODE |
| LOW | output_generators/rendering.py | 32 | def project_relations_to_level( | CODE |
| LOW | output_generators/html_template.py | 317 | def _generate_cytoscape_script(cytoscape_json: str) -> str: | STRING |
| LOW | health/runner.py | 68 | def _collect_checks_for_language( | CODE |
| LOW | health/runner.py | 122 | def _aggregate_file_summaries( | CODE |
| LOW | health/config.py | 69 | def _load_health_exclude_patterns(health_config_dir: Path) -> list[str]: | CODE |
| LOW | health/checks/circular_deps.py | 10 | def check_circular_dependencies(package_dependencies: dict, config: HealthCheckConfig) -> CircularDependencyCheck: | CODE |
| LOW | health/checks/unused_code_diagnostics.py | 265 | def check_unused_code_diagnostics( | CODE |
| LOW | tests/test_telemetry_events.py | 27 | def test_track_analysis_on_error_marks_status_and_forwards_exception(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 47 | def test_track_analysis_success_has_no_exception(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 58 | def test_capture_error_forwards_to_posthog(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 71 | def test_exception_attached_telemetry_properties_are_forwarded(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 89 | def test_capture_error_merges_exception_telemetry_properties(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 98 | def test_track_analysis_reads_run_id_from_self_for_generator_methods(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 118 | def test_track_analysis_propagates_run_id_to_nested_repo_scanned(captured): | CODE |
| LOW | tests/test_telemetry_events.py | 135 | def test_repo_scanned_reads_run_id_from_env_without_track_analysis(captured, monkeypatch): | CODE |
| LOW | tests/test_telemetry_events.py | 143 | def test_lsp_analysis_result_marks_zero_nodes_as_error(captured, monkeypatch): | CODE |
| LOW | tests/test_telemetry_events.py | 170 | def test_lsp_analysis_result_warns_when_summary_fields_missing(captured, caplog): | CODE |
| LOW | tests/test_telemetry_events.py | 181 | def test_track_analysis_env_run_id_overrides_self(captured, monkeypatch): | CODE |
| LOW | tests/test_view_instructions.py | 9 | def test_prints_webview_url_and_file_path(self): | CODE |
| LOW | tests/test_view_instructions.py | 22 | def test_missing_file_warns_and_does_not_print_instructions(self): | CODE |
| 2040 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | diagram_analysis/io_utils.py | 227 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | diagram_analysis/io_utils.py | 229 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | diagram_analysis/io_utils.py | 242 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | diagram_analysis/io_utils.py | 244 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/output_generators/test_rendering.py | 123 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/output_generators/test_rendering.py | 125 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/output_generators/test_rendering.py | 21 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/output_generators/test_rendering.py | 23 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 278 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 280 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 406 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 408 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 440 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 442 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 485 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 487 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 515 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 517 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 545 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/health/test_unused_code_diagnostics.py | 547 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/health/test_unused_code_diagnostics.py | 332 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/health/test_unused_code_diagnostics.py | 334 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/repo_utils/test_non_ascii_paths.py | 40 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/repo_utils/test_non_ascii_paths.py | 42 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/repo_utils/test_non_ascii_paths.py | 81 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/repo_utils/test_non_ascii_paths.py | 83 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/repo_utils/test_non_ascii_paths.py | 211 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/repo_utils/test_non_ascii_paths.py | 213 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …ts/static_analyzer/test_reference_resolve_real_refs.py | 27 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …ts/static_analyzer/test_reference_resolve_real_refs.py | 29 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …ts/static_analyzer/test_reference_resolve_real_refs.py | 83 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …ts/static_analyzer/test_reference_resolve_real_refs.py | 85 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 95 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 97 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 114 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 116 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 232 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 234 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 354 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 356 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 403 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 405 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 475 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 477 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 601 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_result_converter.py | 603 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 24 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 26 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 184 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 186 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 511 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 513 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 576 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | tests/static_analyzer/test_result_converter.py | 578 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 350 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 352 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 424 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 426 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 453 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/static_analyzer/test_edge_builder.py | 455 | # --------------------------------------------------------------------------- | COMMENT |
| 34 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | utils.py | 10 | CODE | |
| LOW | utils.py | 10 | CODE | |
| LOW | utils.py | 11 | CODE | |
| LOW | utils.py | 11 | CODE | |
| LOW | diagram_analysis/run_mode.py | 3 | CODE | |
| LOW | diagram_analysis/__init__.py | 1 | CODE | |
| LOW | diagram_analysis/diagram_generator.py | 81 | CODE | |
| LOW | diagram_analysis/file_coverage.py | 17 | CODE | |
| LOW | diagram_analysis/file_coverage.py | 18 | CODE | |
| LOW | output_generators/rendering.py | 13 | CODE | |
| LOW | output_generators/rendering.py | 14 | CODE | |
| LOW | output_generators/rendering.py | 15 | CODE | |
| LOW | output_generators/rendering.py | 16 | CODE | |
| LOW | output_generators/__init__.py | 3 | CODE | |
| LOW | output_generators/__init__.py | 3 | CODE | |
| LOW | output_generators/__init__.py | 3 | CODE | |
| LOW | core/plugin_loader.py | 3 | CODE | |
| LOW | core/protocols.py | 3 | CODE | |
| LOW | core/protocols.py | 12 | CODE | |
| LOW | core/protocols.py | 12 | CODE | |
| LOW | core/protocols.py | 13 | CODE | |
| LOW | core/protocols.py | 13 | CODE | |
| LOW | core/protocols.py | 13 | CODE | |
| LOW | core/__init__.py | 17 | CODE | |
| LOW | core/__init__.py | 22 | CODE | |
| LOW | core/__init__.py | 22 | CODE | |
| LOW | core/__init__.py | 23 | CODE | |
| LOW | core/__init__.py | 23 | CODE | |
| LOW | core/__init__.py | 23 | CODE | |
| LOW | core/__init__.py | 24 | CODE | |
| LOW | core/__init__.py | 25 | CODE | |
| LOW | health/__init__.py | 1 | CODE | |
| LOW | health/checks/__init__.py | 3 | CODE | |
| LOW | health/checks/__init__.py | 3 | CODE | |
| LOW | tests/test_registry_coverage.py | 14 | CODE | |
| LOW | tests/test_vscode_constants.py | 2 | CODE | |
| LOW | tests/test_logging_config.py | 1 | CODE | |
| LOW | tests/diagram_analysis/test_tree_shape.py | 13 | CODE | |
| LOW | tests/health/test_unused_code_diagnostics.py | 5 | CODE | |
| LOW | tests/agents/test_monitoring.py | 1 | CODE | |
| LOW | tests/agents/test_monitoring.py | 4 | CODE | |
| LOW | tests/agents/prompts/test_prompts.py | 2 | CODE | |
| LOW | tests/agents/prompts/test_prompts.py | 2 | CODE | |
| LOW | tests/repo_utils/test_non_ascii_paths.py | 23 | CODE | |
| LOW | tests/static_analyzer/test_call_graph.py | 6 | CODE | |
| LOW | tests/static_analyzer/test_call_graph.py | 9 | CODE | |
| LOW | tests/static_analyzer/test_call_graph.py | 10 | CODE | |
| LOW | tests/static_analyzer/test_go_adapter.py | 5 | CODE | |
| LOW | tests/static_analyzer/test_java_utils.py | 5 | CODE | |
| LOW | tests/static_analyzer/test_java_utils.py | 10 | CODE | |
| LOW | tests/static_analyzer/test_cluster_helpers.py | 2 | CODE | |
| LOW | tests/static_analyzer/test_cluster_helpers.py | 2 | CODE | |
| LOW | tests/static_analyzer/test_csharp_adapter.py | 3 | CODE | |
| LOW | tests/static_analyzer/test_leiden_utils.py | 6 | CODE | |
| LOW | tests/static_analyzer/test_java_config_scanner.py | 9 | CODE | |
| LOW | tests/static_analyzer/test_edge_builder.py | 5 | CODE | |
| LOW | tests/static_analyzer/test_edge_builder.py | 6 | CODE | |
| LOW | …ts/static_analyzer/test_analysis_cache_partial_save.py | 12 | CODE | |
| LOW | tests/static_analyzer/test_call_site_locations.py | 4 | CODE | |
| LOW | …ts/static_analyzer/scripts/edge_recovery_diagnostic.py | 4 | CODE | |
| 194 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | output_generators/mdx.py | 0 | generate an html header for a component with its name and a link to its details. | STRING |
| HIGH | output_generators/markdown.py | 0 | generate an html header for a component with its name and a link to its details. | STRING |
| HIGH | output_generators/html.py | 0 | generate an html header for a component with its name and a link to its details. | STRING |
| HIGH | agents/prompts/kimi_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/glm_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/deepseek_prompts.py | 0 | name and describe the final component architecture. the clusters have already been partitioned into a fixed set of group | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | mandatory: you must correct the output below. do not regenerate from scratch — preserve all correct parts and only fix t | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | mandatory: you must correct the output below. do not regenerate from scratch — preserve all correct parts and only fix t | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | mandatory: you must correct the output below. do not regenerate from scratch — preserve all correct parts and only fix t | STRING |
| HIGH | agents/prompts/glm_prompts.py | 0 | mandatory: you must correct the output below. do not regenerate from scratch — preserve all correct parts and only fix t | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | you are a software architecture expert analyzing a subsystem of `{project_name}`. project context: {meta_context} instru | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | you are a software architecture expert analyzing a subsystem of `{project_name}`. project context: {meta_context} instru | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | you are a software architecture expert analyzing a subsystem of `{project_name}`. project context: {meta_context} instru | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | create final sub-component architecture for the `{component}` subsystem optimized for flow representation. the clusters | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | create final sub-component architecture for the `{component}` subsystem optimized for flow representation. the clusters | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | create final sub-component architecture for the `{component}` subsystem optimized for flow representation. the clusters | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | analyze the component api surfaces. components: {component_summaries} known static call evidence between components (inc | STRING |
| HIGH | agents/prompts/glm_prompts.py | 0 | analyze the component api surfaces. components: {component_summaries} known static call evidence between components (inc | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | analyze the component api surfaces. components: {component_summaries} known static call evidence between components (inc | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | analyze the component api surfaces. components: {component_summaries} known static call evidence between components (inc | STRING |
| HIGH | agents/prompts/gemini_flash_prompts.py | 0 | discover architectural communication relations between the components. components: {component_summaries} component api s | STRING |
| HIGH | agents/prompts/glm_prompts.py | 0 | discover architectural communication relations between the components. components: {component_summaries} component api s | STRING |
| HIGH | agents/prompts/gpt_prompts.py | 0 | discover architectural communication relations between the components. components: {component_summaries} component api s | STRING |
| HIGH | agents/prompts/claude_prompts.py | 0 | discover architectural communication relations between the components. components: {component_summaries} component api s | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | health_main.py | 26 | logger = logging.getLogger(__name__) | CODE |
| LOW | utils.py | 13 | logger = logging.getLogger(__name__) | CODE |
| LOW | github_action.py | 13 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/__init__.py | 3 | __all__ = ["DiagramGenerator", "RunContext", "RunPaths", "DEFAULT_DEPTH_LEVEL", "configure_models"] | CODE |
| LOW | diagram_analysis/diagram_generator.py | 93 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/scope_plan.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/tree_shape.py | 9 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/file_coverage.py | 20 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/io_utils.py | 36 | logger = logging.getLogger(__name__) | CODE |
| LOW | diagram_analysis/analysis_json.py | 20 | logger = logging.getLogger(__name__) | CODE |
| LOW | output_generators/rendering.py | 19 | logger = logging.getLogger(__name__) | CODE |
| LOW | output_generators/html.py | 10 | logger = logging.getLogger(__name__) | CODE |
| LOW | output_generators/__init__.py | 5 | __all__ = ["FORMAT_EXTENSIONS", "SUPPORTED_FORMATS", "render"] | CODE |
| LOW | core/plugin_loader.py | 12 | logger = logging.getLogger(__name__) | CODE |
| LOW | core/registry.py | 5 | logger = logging.getLogger(__name__) | CODE |
| LOW | core/__init__.py | 27 | logger = logging.getLogger(__name__) | CODE |
| LOW | core/__init__.py | 92 | __all__ = [ | CODE |
| LOW | health/runner.py | 26 | logger = logging.getLogger(__name__) | CODE |
| LOW | health/config.py | 14 | logger = logging.getLogger(__name__) | CODE |
| LOW | health/models.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | health/__init__.py | 3 | __all__ = ["run_health_checks"] | CODE |
| LOW | health/checks/function_size.py | 14 | logger = logging.getLogger(__name__) | CODE |
| LOW | health/checks/circular_deps.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | health/checks/__init__.py | 8 | __all__ = [ | CODE |
| LOW | health/checks/unused_code_diagnostics.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | tests/static_analyzer/scripts/diagnose_relations.py | 30 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/repair.py | 13 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/details_agent.py | 49 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/meta_agent.py | 15 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/dependency_discovery.py | 9 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/model_capabilities.py | 14 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/planner_agent.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/scope_ids.py | 3 | __all__ = ["ROOT_SCOPE_ID"] | CODE |
| LOW | agents/retry.py | 36 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/incremental_agent.py | 52 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/agent.py | 31 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/abstraction_agent.py | 49 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/llm_config.py | 24 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/agent_responses.py | 17 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/static_analysis_enricher_mixin.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/validation.py | 22 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/get_external_deps.py | 8 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_source.py | 9 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/toolkit.py | 18 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_packages.py | 6 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_docs.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/list_git_changes.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/get_method_invocations.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_file_structure.py | 9 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_cfg.py | 6 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_file.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/component_bridge_edges.py | 8 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/tools/read_structure.py | 7 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/prompts/__init__.py | 53 | __all__ = [ | CODE |
| LOW | agents/prompts/prompt_factory.py | 20 | logger = logging.getLogger(__name__) | CODE |
| LOW | agents/llm_renderers/__init__.py | 16 | __all__ = [ | CODE |
| LOW | agents/llm_renderers/call_graph.py | 13 | logger = logging.getLogger(__name__) | CODE |
| LOW | repo_utils/git_ops.py | 24 | logger = logging.getLogger(__name__) | CODE |
| LOW | repo_utils/__init__.py | 15 | logger = logging.getLogger(__name__) | CODE |
| LOW | repo_utils/fingerprint_diff.py | 16 | logger = logging.getLogger(__name__) | CODE |
| 60 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | install.py | 94 | except Exception as e: | CODE |
| MEDIUM | install.py | 255 | print("Error: npm is required. Install Node.js from https://nodejs.org/en/download and retry.") | CODE |
| LOW | install.py | 424 | except Exception as e: | CODE |
| LOW | install.py | 570 | except Exception: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 896 | except Exception as e: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1200 | except Exception: | CODE |
| LOW | diagram_analysis/diagram_generator.py | 1374 | except Exception: | CODE |
| LOW | diagram_analysis/io_utils.py | 80 | except Exception as e: | CODE |
| LOW | diagram_analysis/io_utils.py | 305 | except Exception: | CODE |
| LOW | core/plugin_loader.py | 38 | except Exception: | CODE |
| LOW | core/__init__.py | 72 | except Exception: | CODE |
| LOW | core/__init__.py | 87 | except Exception: | CODE |
| LOW | health/config.py | 51 | except Exception as e: | CODE |
| LOW | health/config.py | 89 | except Exception as e: | CODE |
| LOW | health/config.py | 139 | except Exception as e: | CODE |
| LOW | tests/agents/test_agent.py | 577 | except Exception: | CODE |
| LOW | tests/agents/test_agent.py | 607 | except Exception: | CODE |
| MEDIUM | tests/static_analyzer/scripts/diagnose_relations.py | 211 | print(f"Error: {repo_path} does not exist") | CODE |
| LOW | agents/model_capabilities.py | 107 | except Exception as e: | CODE |
| LOW | agents/model_capabilities.py | 201 | except Exception as e: | CODE |
| LOW | agents/retry.py | 88 | except Exception as exc: | CODE |
| LOW | agents/agent.py | 211 | except Exception as e: | CODE |
| LOW | agents/agent.py | 416 | except Exception as e: | CODE |
| MEDIUM | agents/agent.py | 204 | def invoke_target(): | CODE |
| MEDIUM | agents/agent.py | 411 | def call_once(): | CODE |
| LOW | agents/tools/read_docs.py | 91 | except Exception as e: | CODE |
| LOW | repo_utils/ignore.py | 267 | except Exception as e: | CODE |
| LOW | repo_utils/ignore.py | 333 | except Exception as e: | CODE |
| LOW | repo_utils/ignore.py | 350 | except Exception as e: | CODE |
| LOW | static_analyzer/analysis_cache.py | 226 | except Exception as e: | CODE |
| LOW | static_analyzer/analysis_cache.py | 257 | except Exception as e: | CODE |
| LOW | static_analyzer/analysis_cache.py | 272 | except Exception as e: | CODE |
| LOW | static_analyzer/analysis_cache.py | 346 | except Exception: | CODE |
| MEDIUM | static_analyzer/analysis_cache.py | 138 | def _read_tag_sha_unlocked(self) -> str | None: | CODE |
| LOW | static_analyzer/__init__.py | 309 | except Exception as exc: | CODE |
| LOW | static_analyzer/__init__.py | 336 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 382 | except Exception as exc: | CODE |
| LOW | static_analyzer/__init__.py | 424 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 427 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 439 | except Exception as e: | CODE |
| LOW | static_analyzer/__init__.py | 556 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 621 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 717 | except Exception as exc: | CODE |
| LOW | static_analyzer/__init__.py | 741 | except Exception as e: | CODE |
| LOW | static_analyzer/__init__.py | 758 | except Exception: | CODE |
| LOW | static_analyzer/__init__.py | 877 | except Exception as e: | CODE |
| LOW | static_analyzer/reference_resolver.py | 176 | except Exception as error: | CODE |
| LOW | static_analyzer/java_config_scanner.py | 196 | except Exception as e: | CODE |
| LOW | static_analyzer/incremental_orchestrator.py | 179 | except Exception as exc: | CODE |
| LOW | static_analyzer/incremental_orchestrator.py | 238 | except Exception: | CODE |
| LOW | static_analyzer/incremental_orchestrator.py | 253 | except Exception: | CODE |
| LOW | static_analyzer/incremental_orchestrator.py | 390 | except Exception: | CODE |
| LOW | static_analyzer/incremental_orchestrator.py | 462 | except Exception: | CODE |
| LOW | static_analyzer/clustering/grouping.py | 160 | except Exception as e: # noqa: BLE001 - a bad resolution shouldn't abort the sweep | CODE |
| LOW | static_analyzer/clustering/engine.py | 158 | except Exception: | CODE |
| LOW | static_analyzer/clustering/delta.py | 280 | except Exception as e: | CODE |
| LOW | static_analyzer/engine/edge_builder.py | 137 | except Exception as e: | CODE |
| LOW | static_analyzer/engine/edge_builder.py | 371 | except Exception as e: | CODE |
| LOW | static_analyzer/engine/edge_builder.py | 468 | except Exception as e: | CODE |
| LOW | static_analyzer/engine/edge_builder.py | 591 | except Exception as e: | CODE |
| 42 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | vscode_constants.py | 15 | CODE | |
| LOW | logging_config.py | 123 | CODE | |
| LOW | install.py | 364 | CODE | |
| LOW | install.py | 458 | CODE | |
| LOW | install.py | 575 | CODE | |
| LOW | diagram_analysis/file_index.py | 112 | CODE | |
| LOW | diagram_analysis/diagram_generator.py | 296 | CODE | |
| LOW | diagram_analysis/diagram_generator.py | 420 | CODE | |
| LOW | diagram_analysis/diagram_generator.py | 1121 | CODE | |
| LOW | diagram_analysis/io_utils.py | 125 | CODE | |
| LOW | diagram_analysis/analysis_json.py | 267 | CODE | |
| LOW | diagram_analysis/analysis_json.py | 403 | CODE | |
| LOW | output_generators/sphinx.py | 47 | CODE | |
| LOW | output_generators/mdx.py | 51 | CODE | |
| LOW | output_generators/html.py | 64 | CODE | |
| LOW | output_generators/markdown.py | 44 | CODE | |
| LOW | health/runner.py | 122 | CODE | |
| LOW | health/runner.py | 151 | CODE | |
| LOW | health/config.py | 69 | CODE | |
| LOW | tests/test_windows_encoding.py | 7 | CODE | |
| LOW | tests/test_registry_coverage.py | 123 | CODE | |
| LOW | tests/test_registry_coverage.py | 171 | CODE | |
| LOW | tests/test_tool_registry.py | 961 | CODE | |
| LOW | tests/test_tool_registry.py | 1059 | CODE | |
| LOW | tests/test_main.py | 227 | CODE | |
| LOW | tests/health/test_runner.py | 184 | CODE | |
| LOW | tests/agents/test_llm_config.py | 653 | CODE | |
| LOW | tests/static_analyzer/test_java_utils.py | 189 | CODE | |
| LOW | tests/static_analyzer/test_java_utils.py | 310 | CODE | |
| LOW | tests/static_analyzer/test_java_utils.py | 325 | CODE | |
| LOW | tests/static_analyzer/test_clustering_engine.py | 10 | CODE | |
| LOW | tests/static_analyzer/scripts/diagnose_relations.py | 100 | CODE | |
| LOW | agents/incremental_agent.py | 670 | CODE | |
| LOW | agents/incremental_agent.py | 97 | CODE | |
| LOW | agents/incremental_agent.py | 375 | CODE | |
| LOW | agents/relation_edges.py | 35 | CODE | |
| LOW | agents/agent_responses.py | 37 | CODE | |
| LOW | agents/agent_responses.py | 71 | CODE | |
| LOW | agents/tools/read_docs.py | 51 | CODE | |
| LOW | agents/tools/read_file_structure.py | 104 | CODE | |
| LOW | agents/tools/read_file_structure.py | 39 | CODE | |
| LOW | agents/tools/base.py | 50 | CODE | |
| LOW | agents/llm_renderers/call_graph.py | 73 | CODE | |
| LOW | repo_utils/change_detector.py | 97 | CODE | |
| LOW | repo_utils/change_detector.py | 180 | CODE | |
| LOW | static_analyzer/typescript_config_scanner.py | 135 | CODE | |
| LOW | static_analyzer/__init__.py | 124 | CODE | |
| LOW | static_analyzer/__init__.py | 569 | CODE | |
| LOW | static_analyzer/__init__.py | 690 | CODE | |
| LOW | static_analyzer/__init__.py | 707 | CODE | |
| LOW | static_analyzer/language_results.py | 79 | CODE | |
| LOW | static_analyzer/reference_resolver.py | 281 | CODE | |
| LOW | static_analyzer/reference_resolver.py | 401 | CODE | |
| LOW | static_analyzer/java_config_scanner.py | 39 | CODE | |
| LOW | static_analyzer/java_config_scanner.py | 132 | CODE | |
| LOW | static_analyzer/incremental_orchestrator.py | 203 | CODE | |
| LOW | static_analyzer/incremental_orchestrator.py | 347 | CODE | |
| LOW | static_analyzer/incremental_orchestrator.py | 439 | CODE | |
| LOW | static_analyzer/java_utils.py | 37 | CODE | |
| LOW | static_analyzer/clustering/service.py | 449 | CODE | |
| 34 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | diagram_analysis/analysis_json.py | 605 | # Create the component for this level (non-nested) | COMMENT |
| MEDIUM | output_generators/sphinx.py | 34 | # Create a link to the component's details file | COMMENT |
| MEDIUM | output_generators/markdown.py | 31 | # Create a link to the component's details file | COMMENT |
| MEDIUM | health/config.py | 26 | # This file is automatically loaded by health checks to exclude specified | COMMENT |
| MEDIUM | health/checks/unused_code_diagnostics.py | 294 | # Create a descriptive entity name from the message | COMMENT |
| MEDIUM⚡ | tests/test_vscode_constants.py | 65 | # Create a test directory structure | COMMENT |
| MEDIUM⚡ | tests/test_vscode_constants.py | 69 | # Create the file we're looking for | COMMENT |
| MEDIUM⚡ | tests/test_vscode_constants.py | 88 | # Create a file in wrong directory | COMMENT |
| MEDIUM | tests/test_logging_config.py | 211 | # Create a stream that uses cp1251 encoding with strict error handling, | COMMENT |
| MEDIUM | tests/diagram_analysis/test_diagram_analysis.py | 853 | # Create a simple test file | COMMENT |
| MEDIUM | tests/agents/test_llm_config.py | 679 | # Create an agent | COMMENT |
| MEDIUM | tests/agents/tools/test_cfg_tools.py | 66 | # Create a component with some files from the static analysis | COMMENT |
| MEDIUM | tests/agents/tools/test_external_deps.py | 14 | # Create a temporary directory for testing | COMMENT |
| MEDIUM⚡ | repo_utils/ignore.py | 22 | # This file is automatically loaded by CodeBoarding analysis tools to exclude | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH⚡ | tests/static_analyzer/test_engine_configs.py | 71 | "src/b.tsx": "export const B = () => null;\n", | CODE |
| HIGH | tests/static_analyzer/test_edge_builder.py | 178 | target_file.write_text("class T { public static string Target() { return null; } }\n") | CODE |
| HIGH | …tatic_analyzer/scripts/csharp_mixed_framework_repro.py | 13 | cd /tmp/repro && dotnet restore Synthetic.slnx | STRING |
| HIGH | repo_utils/__init__.py | 177 | origin.push() | CODE |
| HIGH | telemetry/device_id.py | 20 | """Mirror ``cat /var/lib/dbus/machine-id || cat /etc/machine-id``.""" | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 566 | # Step 1: Expand Core | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 573 | # Step 2: Also expand Messaging | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 589 | # Step 1: Core at depth 2 only | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 596 | # Step 2: Expand Users (2.1) to depth 3 -> Auth (2.1.1), Profiles (2.1.2) | COMMENT |
| LOW⚡ | repo_utils/ignore.py | 17 | # NOTE: The following are ALWAYS excluded (not configurable): | COMMENT |
| LOW | static_analyzer/analysis_result.py | 96 | # Step 1: collect type-param names from the trailing declaration | COMMENT |
| LOW | static_analyzer/analysis_result.py | 114 | # Step 2: replace type param names inside (…) with "object" | COMMENT |
| LOW⚡ | static_analyzer/analysis_result.py | 127 | # Step 3: strip <…> groups until stable | COMMENT |
| LOW⚡ | static_analyzer/analysis_result.py | 133 | # Step 4: remove residual whitespace | COMMENT |
| LOW | monitoring/callbacks.py | 61 | # IMPORTANT: Do not change this log line format. Any change must be approved by IVAN. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 566 | # Step 1: Expand Core | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 573 | # Step 2: Also expand Messaging | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 589 | # Step 1: Core at depth 2 only | COMMENT |
| LOW⚡ | tests/static_analyzer/test_global_relations.py | 596 | # Step 2: Expand Users (2.1) to depth 3 -> Auth (2.1.1), Profiles (2.1.2) | COMMENT |
| LOW | static_analyzer/analysis_result.py | 96 | # Step 1: collect type-param names from the trailing declaration | COMMENT |
| LOW | static_analyzer/analysis_result.py | 114 | # Step 2: replace type param names inside (…) with "object" | COMMENT |
| LOW⚡ | static_analyzer/analysis_result.py | 127 | # Step 3: strip <…> groups until stable | COMMENT |
| LOW⚡ | static_analyzer/analysis_result.py | 133 | # Step 4: remove residual whitespace | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | install.py | 544 | # Check if pre-commit is installed (only available with dev dependencies) | COMMENT |
| LOW | output_generators/html.py | 118 | # Check if there's a linked file for this component | COMMENT |
| LOW | health/checks/unused_code_diagnostics.py | 221 | # Check if code contains any known patterns | COMMENT |
| LOW | tests/agents/tools/test_read_source_tool.py | 24 | # Check if we have any references to work with | COMMENT |
| LOW | agents/tools/read_file_structure.py | 129 | # Check if we've exceeded the maximum number of lines | COMMENT |
| LOW | agents/tools/read_file.py | 63 | # Read the file content | COMMENT |
| LOW | static_analyzer/java_config_scanner.py | 63 | # Check if a Maven project already exists at the same root | COMMENT |
| LOW | static_analyzer/engine/symbol_table.py | 350 | # Check if any co-located symbol (alias at same position) has a parent | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | tests/agents/test_static_analysis_enricher_mixin.py | 209 | "src.components.DiffViewer.DiffViewer.existingByLine.groupByLine() callback", | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | README.md | 121 | ## Configuration | COMMENT |
| LOW | user_config.py | 61 | # Location: ~/.codeboarding/config.toml | COMMENT |
| LOW | diagram_analysis/diagram_generator.py | 541 | # unscoped (no drift filtering). | COMMENT |
| LOW | repo_utils/ignore.py | 21 | # | COMMENT |
| LOW | static_analyzer/analysis_cache.py | 41 | COMMENT | |
| LOW | static_analyzer/engine/lsp_client.py | 181 | ], | COMMENT |
| LOW | .github/workflows/integration-tests.yml | 81 | # access: a same-repo PR runs this workflow's PR-modified copy *with* | COMMENT |
| LOW | codeboarding_cli/bootstrap.py | 41 | # repairs a deleted ~/.codeboarding/servers/nodeenv/ independently of the | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/static_analyzer/test_java_utils.py | 159 | # Simple approach: just return True for the paths we want to exist | COMMENT |
| MEDIUM | agents/prompts/gpt_prompts.py | 19 | SYSTEM_MESSAGE = """You are an expert software architect. Your task is to create comprehensive documentation and interac | CODE |
| MEDIUM | agents/prompts/claude_prompts.py | 49 | SYSTEM_MESSAGE = """You are a software architecture expert analyzing {project_name} with comprehensive diagram generatio | CODE |
| MEDIUM | agents/prompts/claude_prompts.py | 133 | META_INFORMATION_PROMPT = """Analyze project '{project_name}' to extract architectural metadata for comprehensive analys | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | tests/static_analyzer/test_global_relations.py | 402 | # Root LLM "1"->"2" label "orchestrates" -> inherited two levels down by | COMMENT |
| MEDIUM | agents/validation.py | 133 | # Check 3: Components referencing non-existent group names (typos/hallucinations) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | static_analyzer/java_utils.py | 187 | Create command to launch JDTLS. Args: jdtls_root: Root directory of JDTLS installation workspa | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/static_analyzer/test_reference_resolver.py | 21 | (self.repo_dir / "module" / "file.py").write_text("def test_function():\n pass\n") | CODE |
| LOW⚡ | tests/static_analyzer/test_edge_builder.py | 466 | src.write_text("def main():\n helper()\n\ndef helper():\n pass\n") | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/static_analyzer/test_analysis_cache.py | 364 | (self.src_dir / STATIC_ANALYSIS_PKL).write_bytes(b"placeholder") | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | agents/details_agent.py | 184 | CODE |