🥷 Engineering habits you already know, turned into skills Claude can run.
This report presents the forensic synthetic code analysis of tw93/Waza, a Python project with 6,933 GitHub stars. SynthScan v2.0 examined 40,007 lines of code across 233 source files, recording 467 pattern matches distributed across 12 syntactic categories. The overall adjusted score of 12.5 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
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 467 distinct pattern matches across 12 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 297 | def collapse_generated_mirrors( | CODE |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 379 | def has_substantive_instruction_evidence(path: Path, root: Path) -> bool: | CODE |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 518 | def shell_script_has_verifier_evidence(path: Path, root: Path) -> bool: | CODE |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 538 | def command_is_verifier_candidate(command: str) -> bool: | CODE |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 551 | def command_has_verifier_evidence( | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 265 | def project_instruction_files(root: Path) -> list[Path]: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 278 | def claude_delegates_to_agents(path: Path) -> bool: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 635 | def summarize_skill_duplicates(root: Path, home: Path) -> tuple[str, list[str]]: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 863 | def hook_handler_enforces_pipe_block(path: Path) -> bool: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 968 | def has_task_scoped_env_policy(paths: list[Path]) -> bool: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 983 | def summarize_claude_permissions( | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 345 | def _pyproject_script_entrypoints(root: Path) -> list[str]: | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 404 | def _is_cli_contract_candidate(path: Path, root: Path) -> bool: | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 439 | def block_cli_contract_surface(files: list[Path], root: Path) -> None: | CODE |
| LOW | plugins/waza/skills/check/scripts/release_gate.py | 182 | def latest_stable_reachable_tag(root: Path) -> str | None: | CODE |
| LOW⚡ | tests/python/test_write_release_notes_contract.py | 13 | def test_release_note_mode_is_artifact_bounded_and_outcome_sized() -> None: | CODE |
| LOW⚡ | tests/python/test_write_release_notes_contract.py | 23 | def test_release_note_mode_keeps_only_audience_useful_technical_terms() -> None: | CODE |
| LOW⚡ | tests/python/test_write_release_notes_contract.py | 31 | def test_release_guidance_does_not_turn_previous_item_count_into_a_quota() -> None: | CODE |
| LOW | tests/python/test_agent_context_effective.py | 79 | def test_effective_permissions_aliases_and_path_context_are_reported(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 128 | def test_same_runtime_skill_name_collision_remains_a_warning(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 144 | def test_divergent_cross_runtime_skill_requires_review(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 159 | def test_source_skills_are_inventory_not_active_claude_skills(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 173 | def test_task_scoped_env_instruction_can_replace_a_global_env_deny(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 198 | def test_oversized_path_rule_context_is_actionable(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 219 | def test_cjk_rule_size_is_not_hidden_by_whitespace_word_count(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 238 | def test_double_star_directory_prefix_matches_root_files(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 257 | def test_global_and_project_path_rules_share_the_effective_budget(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 280 | def test_effective_path_context_combines_overlapping_distinct_selectors( | CODE |
| LOW | tests/python/test_agent_context_effective.py | 309 | def test_missing_global_deny_categories_remain_visible(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 324 | def test_shared_and_local_project_settings_are_merged_into_effective_permissions( | CODE |
| LOW | tests/python/test_agent_context_effective.py | 348 | def test_absent_claude_settings_make_deny_floor_not_applicable(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 361 | def test_malformed_shared_settings_are_reported(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 376 | def test_substring_lookalikes_and_missing_hook_handler_do_not_false_pass( | CODE |
| LOW | tests/python/test_agent_context_effective.py | 421 | def test_existing_but_noop_pipe_hook_does_not_false_pass(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 440 | def test_misleading_hook_comments_and_disconnected_exit_do_not_false_pass( | CODE |
| LOW | tests/python/test_agent_context_effective.py | 463 | def test_unreachable_canonical_words_do_not_false_pass(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 485 | def test_wrong_matcher_does_not_enable_real_pipe_hook(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 500 | def test_absolute_shell_interpreter_executes_real_pipe_hook(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 518 | def test_hook_reached_through_sensitive_lexical_path_is_never_read(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 542 | def test_pipe_hook_with_trailing_shell_syntax_is_not_enforcing( | CODE |
| LOW | tests/python/test_agent_context_effective.py | 563 | def test_hook_path_passed_to_unrelated_command_does_not_execute(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 580 | def test_nonexecutable_hook_path_does_not_enable_pipe_hook(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 597 | def test_codex_plugin_cache_is_not_treated_as_active_skill_routing(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 623 | def test_generated_plugin_mirror_is_not_a_second_direct_skill_surface(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 645 | def test_project_instruction_and_settings_symlinks_cannot_escape_root(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 674 | def test_skill_duplicate_scan_rejects_escaped_and_sensitive_symlinks(tmp_path: Path): | CODE |
| LOW | tests/python/test_agent_context_effective.py | 698 | def test_project_controlled_values_cannot_forge_evidence_lines(tmp_path: Path): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 39 | def test_excluded_dirs_aligned(): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 47 | def test_source_exts_preserve_existing_coverage(): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 51 | def test_audit_consumers_normalize_extension_case(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 58 | def test_marker_regex_aligned(): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 63 | def test_marker_regex_preserves_lowercase_detection(): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 68 | def test_minified_filter_aligned(): | CODE |
| LOW⚡ | tests/python/test_auditor_alignment.py | 73 | def test_emitted_evidence_redaction_patterns_aligned(): | CODE |
| LOW | tests/python/test_auditor_alignment.py | 87 | def test_auditors_preserve_git_filenames_with_unicode_and_newlines(tmp_path): | CODE |
| LOW | tests/python/test_auditor_alignment.py | 101 | def test_auditor_evidence_escapes_control_characters_in_paths(tmp_path, capsys): | CODE |
| LOW | tests/python/test_health_inspector_trust.py | 10 | def test_conversation_consuming_inspectors_reject_embedded_instructions(): | CODE |
| LOW | tests/python/test_safe_install_docs.py | 36 | def test_nested_public_markdown_rejects_wrapped_pipelines( | CODE |
| LOW | tests/python/test_safe_install_docs.py | 48 | def test_download_review_then_run_is_allowed(tmp_path: Path) -> None: | CODE |
| LOW | tests/python/test_safe_install_docs.py | 66 | def test_unclosed_fence_is_still_scanned(tmp_path: Path) -> None: | CODE |
| 205 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/write/scripts/check_punctuation.py | 20 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_verifier_output.py | 11 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 12 | CODE | |
| LOW | plugins/waza/skills/health/scripts/check_doc_refs.py | 11 | CODE | |
| LOW | …s/waza/skills/health/scripts/read_skill_description.py | 4 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 8 | CODE | |
| LOW | …gins/waza/skills/health/scripts/block-pipe-to-shell.py | 4 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 11 | CODE | |
| LOW | …gins/waza/skills/health/scripts/scan_skill_security.py | 4 | CODE | |
| LOW | plugins/waza/skills/read/scripts/fetch_local.py | 24 | CODE | |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 14 | CODE | |
| LOW | plugins/waza/skills/check/scripts/release_gate.py | 15 | CODE | |
| LOW | tests/python/test_safe_install_docs.py | 3 | CODE | |
| LOW | tests/python/test_health_windows_launcher.py | 3 | CODE | |
| LOW | scripts/skill_checks.py | 14 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 16 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 52 | CODE | |
| LOW | scripts/skill_checks.py | 64 | CODE | |
| 25 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/write/scripts/check_punctuation.py | 57 | CODE | |
| LOW | plugins/waza/skills/write/scripts/check_punctuation.py | 296 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 197 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 291 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 391 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 499 | CODE | |
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 700 | CODE | |
| LOW | plugins/waza/skills/health/scripts/check_doc_refs.py | 146 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 250 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 297 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 471 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 645 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 669 | CODE | |
| LOW | …gins/waza/skills/health/scripts/block-pipe-to-shell.py | 86 | CODE | |
| LOW | …gins/waza/skills/health/scripts/block-pipe-to-shell.py | 240 | CODE | |
| LOW | …gins/waza/skills/health/scripts/block-pipe-to-shell.py | 261 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 327 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 392 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 635 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 810 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 824 | CODE | |
| LOW | …gins/waza/skills/health/scripts/scan_skill_security.py | 225 | CODE | |
| LOW | …gins/waza/skills/health/scripts/scan_skill_security.py | 441 | CODE | |
| LOW | plugins/waza/skills/read/scripts/fetch_feishu.py | 117 | CODE | |
| LOW | plugins/waza/skills/read/scripts/fetch_feishu.py | 147 | CODE | |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 144 | CODE | |
| LOW | plugins/waza/skills/check/scripts/release_gate.py | 224 | CODE | |
| LOW | plugins/waza/skills/check/scripts/release_gate.py | 278 | CODE | |
| LOW | scripts/build_metadata.py | 417 | CODE | |
| LOW | scripts/markdown_fragments.py | 40 | CODE | |
| LOW | scripts/checks_content.py | 205 | CODE | |
| LOW | scripts/checks_content.py | 365 | CODE | |
| LOW | scripts/checks_content.py | 395 | CODE | |
| LOW | scripts/checks_content.py | 446 | CODE | |
| LOW | scripts/checks_content.py | 547 | CODE | |
| LOW | scripts/checks_routing.py | 87 | CODE | |
| LOW | scripts/validate_package.py | 266 | CODE | |
| LOW | skills/write/scripts/check_punctuation.py | 57 | CODE | |
| LOW | skills/write/scripts/check_punctuation.py | 296 | CODE | |
| LOW | skills/health/scripts/conversation_audit.py | 197 | CODE | |
| LOW | skills/health/scripts/conversation_audit.py | 291 | CODE | |
| LOW | skills/health/scripts/conversation_audit.py | 391 | CODE | |
| LOW | skills/health/scripts/conversation_audit.py | 499 | CODE | |
| LOW | skills/health/scripts/conversation_audit.py | 700 | CODE | |
| LOW | skills/health/scripts/check_doc_refs.py | 146 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 250 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 297 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 471 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 645 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 669 | CODE | |
| LOW | skills/health/scripts/block-pipe-to-shell.py | 86 | CODE | |
| LOW | skills/health/scripts/block-pipe-to-shell.py | 240 | CODE | |
| LOW | skills/health/scripts/block-pipe-to-shell.py | 261 | CODE | |
| LOW | skills/health/scripts/check_agent_context.py | 327 | CODE | |
| LOW | skills/health/scripts/check_agent_context.py | 392 | CODE | |
| LOW | skills/health/scripts/check_agent_context.py | 635 | CODE | |
| LOW | skills/health/scripts/check_agent_context.py | 810 | CODE | |
| LOW | skills/health/scripts/check_agent_context.py | 824 | CODE | |
| LOW | skills/health/scripts/scan_skill_security.py | 225 | CODE | |
| LOW | skills/health/scripts/scan_skill_security.py | 441 | CODE | |
| 5 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | plugins/waza/skills/health/scripts/check_doc_refs.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | …ns/waza/skills/health/scripts/check_maintainability.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | plugins/waza/skills/check/scripts/audit_signals.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | skills/health/scripts/check_doc_refs.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | skills/health/scripts/check_maintainability.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | skills/check/scripts/audit_signals.py | 0 | return true only for a regular file reached without any symlink hop. | STRING |
| HIGH | plugins/waza/skills/health/scripts/check_doc_refs.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| HIGH | …ns/waza/skills/health/scripts/check_maintainability.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| HIGH | plugins/waza/skills/check/scripts/audit_signals.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| HIGH | skills/health/scripts/check_doc_refs.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| HIGH | skills/health/scripts/check_maintainability.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| HIGH | skills/check/scripts/audit_signals.py | 0 | return true only for a directory reached without any symlink hop. | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | plugins/waza/skills/read/scripts/fetch_weixin.py | 31 | return {"error": str(e) + "\nRun: pip install playwright beautifulsoup4 lxml && playwright install chromium"} | CODE |
| HIGH | plugins/waza/skills/read/scripts/fetch_feishu.py | 41 | "(npm install -g @larksuite/cli && lark-cli auth login), then run " | CODE |
| HIGH | tests/python/test_agent_context_effective.py | 471 | "if false && test -n 'tool_input command curl wget [|] bash'; then\n" | CODE |
| HIGH | skills/read/scripts/fetch_weixin.py | 31 | return {"error": str(e) + "\nRun: pip install playwright beautifulsoup4 lxml && playwright install chromium"} | CODE |
| HIGH | skills/read/scripts/fetch_feishu.py | 41 | "(npm install -g @larksuite/cli && lark-cli auth login), then run " | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/health/SKILL.md | 46 | ## Step 0: Establish the evidence basis | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 59 | ## Step 1: Collect data | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 136 | ## Step 2: Analyze | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 148 | ## Step 3: Report | COMMENT |
| LOW | skills/health/SKILL.md | 46 | ## Step 0: Establish the evidence basis | COMMENT |
| LOW | skills/health/SKILL.md | 59 | ## Step 1: Collect data | COMMENT |
| LOW | skills/health/SKILL.md | 136 | ## Step 2: Analyze | COMMENT |
| LOW | skills/health/SKILL.md | 148 | ## Step 3: Report | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/write/SKILL.md | 124 | - **Rendering check**: Placeholder text remaining (`Lorem ipsum`, `TODO`, `[TBD]`), broken image links. | CODE |
| LOW | plugins/waza/skills/ui/references/design-reference.md | 43 | - No Lorem Ipsum. Write short real copy that matches the layout's reading level. | CODE |
| LOW⚡ | tests/test_maintainability.sh | 518 | fake_token="ghp_$(printf 'A%.0s' {1..16})" | CODE |
| LOW⚡ | tests/test_maintainability.sh | 526 | " - run: TOKEN=$fake_token /Users/example/private/check.sh" \ | CODE |
| LOW⚡ | tests/test_maintainability.sh | 531 | if grep -qE "$fake_token|/Users/example" "$tmpdir/redacted-ci.out"; then | CODE |
| LOW | skills/write/SKILL.md | 124 | - **Rendering check**: Placeholder text remaining (`Lorem ipsum`, `TODO`, `[TBD]`), broken image links. | CODE |
| LOW | skills/ui/references/design-reference.md | 43 | - No Lorem Ipsum. Write short real copy that matches the layout's reading level. | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | README.md | 123 | # Anti-patterns: always-on cross-skill guardrails (read before acting, no scope creep, no unsolicited summaries) | COMMENT |
| MEDIUM | …/waza/skills/ui/references/design-aesthetic-quality.md | 9 | | DESIGN.md Scaffold | [DESIGN.md Scaffold](design-reference.md#designmd-scaffold-optional-production-uis) | | CODE |
| MEDIUM | skills/ui/references/design-aesthetic-quality.md | 9 | | DESIGN.md Scaffold | [DESIGN.md Scaffold](design-reference.md#designmd-scaffold-optional-production-uis) | | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/health/scripts/collect-data.sh | 898 | except Exception: | CODE |
| LOW | plugins/waza/skills/read/scripts/fetch_weixin.py | 42 | except Exception as e: | CODE |
| LOW | scripts/setup-statusline.sh | 83 | except Exception as exc: | CODE |
| MEDIUM | scripts/setup-statusline.sh | 84 | print(f"Error: {path} is not valid JSON. Refusing to modify it.", file=sys.stderr) | CODE |
| LOW | skills/health/scripts/collect-data.sh | 898 | except Exception: | CODE |
| LOW | skills/read/scripts/fetch_weixin.py | 42 | except Exception as e: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/health/scripts/collect-data.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/read/scripts/fetch.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | tests/test_helpers.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | scripts/setup-rule.sh | 1 | #!/bin/bash | COMMENT |
| LOW | skills/health/scripts/collect-data.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/read/scripts/fetch.sh | 1 | #!/usr/bin/env bash | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/read/scripts/fetch.sh | 22 | # Usage: | COMMENT |
| LOW | scripts/setup-rule.sh | 5 | # Usage: | COMMENT |
| LOW | skills/read/scripts/fetch.sh | 22 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ugins/waza/skills/health/scripts/conversation_audit.py | 291 | def update_tool_receipts(record: dict[str, object], stats: ScanStats) -> None: | CODE |
| LOW | skills/health/scripts/conversation_audit.py | 291 | def update_tool_receipts(record: dict[str, object], stats: ScanStats) -> None: | CODE |