👩🚒 Good content deserves good paper.
This report presents the forensic synthetic code analysis of tw93/Kami, a HTML project with 10,963 GitHub stars. SynthScan v2.0 examined 90,246 lines of code across 242 source files, recording 445 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 4.9 places this repository in the Likely human-written 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 445 distinct pattern matches across 11 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 | plugins/kami/skills/kami/scripts/build_metadata.py | 516 | def should_include_skill_mirror_file(path: Path) -> bool: | CODE |
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 261 | def _assert_beautiful_mermaid(svg: str) -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/site_facts.py | 152 | def _drop_language_redirect_script(rows: list[str]) -> list[str]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 345 | def _document_custom_properties(raw: str) -> dict[str, str]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 898 | def _implicitly_closed_by_start(open_tag: str, new_tag: str) -> bool: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 924 | def _implicitly_closed_by_end(open_tag: str, end_tag: str) -> bool: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 938 | def _implicit_start_boundaries(new_tag: str) -> set[str]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1129 | def _handle_ambiguous_starttag( | CODE |
| LOW | plugins/kami/skills/kami/scripts/shared.py | 58 | def configure_weasyprint_runtime() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/shared.py | 207 | def public_document_template_kinds() -> set[str]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/shared.py | 220 | def public_document_template_count() -> int: | CODE |
| LOW | plugins/kami/skills/kami/scripts/content.py | 214 | def _handle_ambiguous_starttag( | CODE |
| LOW | plugins/kami/skills/kami/scripts/content.py | 425 | def _changelog_contract_issues(content: dict) -> list[str]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 79 | def _strip_css_block_comments(text: str) -> str: | CODE |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 445 | def _emphasis_container_findings(path: Path) -> list[Finding]: | CODE |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 575 | def _undefined_token_findings( | CODE |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 700 | def check_cross_template_consistency(verbose: bool = False) -> int: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 1482 | def test_check_placeholders_passes_clean() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 1492 | def test_markdown_residue_flags_raw_markers() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 1669 | def test_last_content_y_sparse_page() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 1678 | def test_last_content_y_blank_page() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 1686 | def test_density_threshold_buckets() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2166 | def test_mermaid_theme_matches_tokens() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2175 | def test_mermaid_theme_drift_flags_token_mismatch() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2185 | def test_mermaid_normalize_defaults_match_theme() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2199 | def test_mermaid_color_mix_srgb_single_pct() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2208 | def test_mermaid_color_mix_both_pct() -> None: | CODE |
| LOW⚡ | plugins/kami/skills/kami/scripts/tests/test_build.py | 2215 | def test_mermaid_normalize_strips_unsafe_features() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 222 | def test_dist_package_contents() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 285 | def test_package_failure_preserves_last_good_archive() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 308 | def test_plugin_metadata_generated() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 325 | def test_claude_plugin_marketplace_version_matches_version_file() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 361 | def test_build_metadata_reads_tokens_from_root_argument() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 376 | def test_catalog_lists_pptx_for_slides() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 395 | def test_registry_consistency() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 444 | def test_ci_builds_registered_hard_page_and_pptx_targets() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 456 | def test_public_document_kinds_derive_new_registry_entries() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 469 | def test_threshold_fallback_includes_resume_balance() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 489 | def test_runner_auto_discovers_tests() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 497 | def test_build_cli_rejects_unexpected_flags() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 519 | def test_long_doc_templates_use_rendered_toc_pages_and_chapter_headers() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 553 | def test_site_facts_repo_clean() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 559 | def test_site_facts_flags_bad_diagram_count() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 572 | def test_site_facts_cover_developer_install_docs() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 583 | def test_site_structure_repo_clean() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 590 | def test_site_structure_flags_locale_drift() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 601 | def test_chinese_html_templates_keep_single_serif_stack() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 647 | def test_korean_templates_carry_resolvable_serif_name() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 691 | def test_sibling_placeholder_hints_stay_in_parity() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 719 | def test_font_fallback_markers_recognize_pt_serif() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 731 | def test_font_probe_rejects_empty_and_truncated_bundles() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 765 | def test_brand_left_rule_uses_one_of_three_weights() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 787 | def test_documented_snippets_answer_to_template_rules() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 868 | def test_classify_cjk_font_separates_serif_from_the_rest() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 894 | def test_emphasis_container_mix_counts_distinct_fills() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 992 | def test_chinese_slides_mono_has_cjk_fallback() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1314 | def test_check_update_defaults_to_latest_published_release() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1344 | def test_check_update_uses_codex_plugin_update_command() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1383 | def test_check_update_uses_claude_plugin_update_command() -> None: | CODE |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1427 | def test_scan_file_ignores_block_comment_rgba() -> None: | CODE |
| 204 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 72 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 74 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 100 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 102 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 202 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 204 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/shared.py | 101 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/scripts/shared.py | 106 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 21 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 23 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 46 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 48 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 102 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 104 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 298 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides-en.py | 300 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 21 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 23 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 52 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 54 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 112 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 114 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 339 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | plugins/kami/skills/kami/assets/templates/slides.py | 341 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 72 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 74 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 100 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 102 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 202 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/mermaid_normalize.py | 204 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/shared.py | 101 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/shared.py | 106 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 21 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 23 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 46 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 48 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 102 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 104 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 298 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides-en.py | 300 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 21 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 23 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 52 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 54 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 112 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 114 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 339 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| MEDIUM | assets/templates/slides.py | 341 | # ═══════════════════════════════════════════════════════════ | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 104 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 117 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 212 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 150 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 167 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 214 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 294 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 345 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 608 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1350 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1419 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1469 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 244 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 304 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 543 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 583 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 94 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 153 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 410 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 93 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 691 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1985 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 2459 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 2004 | CODE | |
| LOW | scripts/mermaid_normalize.py | 104 | CODE | |
| LOW | scripts/mermaid_normalize.py | 117 | CODE | |
| LOW | scripts/mermaid_normalize.py | 212 | CODE | |
| LOW | scripts/mermaid_normalize.py | 150 | CODE | |
| LOW | scripts/checks.py | 167 | CODE | |
| LOW | scripts/checks.py | 214 | CODE | |
| LOW | scripts/checks.py | 294 | CODE | |
| LOW | scripts/checks.py | 345 | CODE | |
| LOW | scripts/checks.py | 608 | CODE | |
| LOW | scripts/checks.py | 1350 | CODE | |
| LOW | scripts/checks.py | 1419 | CODE | |
| LOW | scripts/checks.py | 1469 | CODE | |
| LOW | scripts/content.py | 244 | CODE | |
| LOW | scripts/content.py | 304 | CODE | |
| LOW | scripts/content.py | 543 | CODE | |
| LOW | scripts/content.py | 583 | CODE | |
| LOW | scripts/verify.py | 94 | CODE | |
| LOW | scripts/verify.py | 153 | CODE | |
| LOW | scripts/verify.py | 410 | CODE | |
| LOW | scripts/lint.py | 93 | CODE | |
| LOW | scripts/tests/test_build.py | 691 | CODE | |
| LOW | scripts/tests/test_build.py | 1985 | CODE | |
| LOW | scripts/tests/test_build.py | 2459 | CODE | |
| LOW | scripts/tests/test_build.py | 2004 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/build.py | 40 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/build_metadata.py | 32 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 32 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/render.py | 10 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/site_facts.py | 7 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 14 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tokens.py | 7 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/shared.py | 2 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 17 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/content.py | 25 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/visual.py | 13 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/highlight.py | 7 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/highlight.py | 161 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 9 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/draft-release-notes.py | 22 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/release_gate.py | 3 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/optional_deps.py | 8 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/mcp_server.py | 25 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 13 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 8 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1566 | CODE | |
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1567 | CODE | |
| LOW | scripts/build.py | 40 | CODE | |
| LOW | scripts/build_metadata.py | 32 | CODE | |
| LOW | scripts/mermaid_normalize.py | 32 | CODE | |
| LOW | scripts/render.py | 10 | CODE | |
| LOW | scripts/site_facts.py | 7 | CODE | |
| LOW | scripts/checks.py | 14 | CODE | |
| LOW | scripts/tokens.py | 7 | CODE | |
| LOW | scripts/shared.py | 2 | CODE | |
| LOW | scripts/content.py | 17 | CODE | |
| LOW | scripts/content.py | 25 | CODE | |
| LOW | scripts/visual.py | 13 | CODE | |
| LOW | scripts/highlight.py | 7 | CODE | |
| LOW | scripts/highlight.py | 161 | CODE | |
| LOW | scripts/verify.py | 9 | CODE | |
| LOW | scripts/draft-release-notes.py | 22 | CODE | |
| LOW | scripts/release_gate.py | 3 | CODE | |
| LOW | scripts/optional_deps.py | 8 | CODE | |
| LOW | scripts/mcp_server.py | 25 | CODE | |
| LOW | scripts/lint.py | 13 | CODE | |
| LOW | scripts/tests/test_build.py | 8 | CODE | |
| LOW | scripts/tests/test_build.py | 1566 | CODE | |
| LOW | scripts/tests/test_build.py | 1567 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1253 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1379 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1508 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/checks.py | 1610 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/visual.py | 130 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/highlight.py | 135 | except Exception: | CODE |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 100 | except Exception: | CODE |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 122 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/verify.py | 256 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/optional_deps.py | 109 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/mcp_server.py | 417 | except Exception as exc: | CODE |
| LOW | plugins/kami/skills/kami/scripts/mcp_server.py | 438 | except Exception: | CODE |
| LOW | scripts/checks.py | 1253 | except Exception as exc: | CODE |
| LOW | scripts/checks.py | 1379 | except Exception as exc: | CODE |
| LOW | scripts/checks.py | 1508 | except Exception as exc: | CODE |
| LOW | scripts/checks.py | 1610 | except Exception as exc: | CODE |
| LOW | scripts/visual.py | 130 | except Exception as exc: | CODE |
| LOW | scripts/highlight.py | 135 | except Exception: | CODE |
| LOW | scripts/verify.py | 100 | except Exception: | CODE |
| LOW | scripts/verify.py | 122 | except Exception as exc: | CODE |
| LOW | scripts/verify.py | 256 | except Exception as exc: | CODE |
| LOW | scripts/optional_deps.py | 109 | except Exception as exc: | CODE |
| LOW | scripts/mcp_server.py | 417 | except Exception as exc: | CODE |
| LOW | scripts/mcp_server.py | 438 | except Exception: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | plugins/kami/skills/kami/references/design.md | 1363 | ### Multilingual SEO scaffolding | COMMENT |
| MEDIUM | references/design.md | 1363 | ### Multilingual SEO scaffolding | COMMENT |
| MEDIUM | assets/demos/demo-waza.html | 427 | <text x="360" y="78" fill="#141413" font-size="13" font-weight="500" font-family="'TsangerJinKai02', 'Source Han S | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/ensure-fonts.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 241 | print(f"\n[{rule}] {len(items)}") | COMMENT |
| LOW | plugins/kami/skills/kami/scripts/lint.py | 541 | # resolve to something real. | COMMENT |
| LOW | scripts/ensure-fonts.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | scripts/lint.py | 241 | print(f"\n[{rule}] {len(items)}") | COMMENT |
| LOW | scripts/lint.py | 541 | # resolve to something real. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/mermaid_normalize.py | 313 | CODE | |
| LOW | scripts/mermaid_normalize.py | 313 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/render.py | 59 | def set_pdf_metadata(pdf_path: Path, author: str | None = None) -> None: | CODE |
| LOW | scripts/render.py | 59 | def set_pdf_metadata(pdf_path: Path, author: str | None = None) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 1081 | def helper(): | CODE |
| LOW | scripts/tests/test_build.py | 1081 | def helper(): | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/kami/skills/kami/scripts/tests/test_build.py | 3630 | and "placeholder" in broken_result["report"].lower(), | CODE |
| LOW | scripts/tests/test_build.py | 3630 | and "placeholder" in broken_result["report"].lower(), | CODE |