🥷 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,425 GitHub stars. SynthScan v2.0 examined 25,388 lines of code across 197 source files, recording 235 pattern matches distributed across 10 syntactic categories. The overall adjusted score of 9.8 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 235 distinct pattern matches across 10 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 | 284 | def hotspot_ownership_surface( | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 103 | def project_instruction_files(root: Path) -> list[Path]: | CODE |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 116 | def claude_delegates_to_agents(path: Path) -> bool: | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 269 | def _pyproject_script_entrypoints(root: Path) -> list[str]: | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 328 | def _is_cli_contract_candidate(path: Path, root: Path) -> bool: | CODE |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 363 | def block_cli_contract_surface(files: list[Path], root: Path) -> None: | CODE |
| LOW⚡ | tests/python/test_skill_frontmatter.py | 43 | def test_dispatch_intent_optional_returns_empty(tmp_path): | STRING |
| LOW⚡ | tests/python/test_skill_frontmatter.py | 49 | def test_missing_opening_delimiter(tmp_path): | STRING |
| LOW⚡ | tests/python/test_skill_frontmatter.py | 54 | def test_missing_closing_delimiter(tmp_path): | STRING |
| LOW | tests/python/test_skill_frontmatter.py | 73 | def test_legacy_metadata_version_rejected(tmp_path, capsys): | STRING |
| LOW | tests/python/test_skill_frontmatter.py | 80 | def test_unquoted_colon_in_value(tmp_path, capsys): | STRING |
| LOW | tests/python/test_skill_frontmatter.py | 91 | def test_invalid_quote_in_value(tmp_path, capsys): | STRING |
| LOW | tests/python/test_skill_frontmatter.py | 102 | def test_keywords_lowercase_and_dedupe(): | STRING |
| LOW | tests/python/test_fetchers.py | 18 | def test_feishu_parse_url_variants(): | CODE |
| LOW | tests/python/test_fetchers.py | 27 | def test_feishu_extract_text_styles_and_mentions(): | CODE |
| LOW | tests/python/test_fetchers.py | 46 | def test_feishu_blocks_to_md_core_block_types(): | CODE |
| LOW⚡ | tests/python/test_fetchers.py | 72 | def test_feishu_get_token_without_credentials_is_offline(monkeypatch): | CODE |
| LOW⚡ | tests/python/test_fetchers.py | 81 | def test_feishu_get_token_without_requests_names_both_paths(monkeypatch): | CODE |
| LOW⚡ | tests/python/test_fetchers.py | 91 | def test_weixin_to_markdown_frontmatter(): | CODE |
| LOW | tests/python/test_fetchers.py | 102 | def test_weixin_to_markdown_error_dict(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 13 | def test_render_readme_rewrites_main_to_latest_asset(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 20 | def test_render_readme_rewrites_pinned_version_to_latest_asset(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 27 | def test_render_readme_no_change_when_already_latest_asset(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 32 | def test_render_script_ref_pins_main(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 38 | def test_render_script_ref_repins_old_version(): | CODE |
| LOW⚡ | tests/python/test_build_metadata.py | 44 | def test_render_dispatcher_injects_table(): | CODE |
| LOW | tests/python/test_build_metadata.py | 68 | def test_render_dispatcher_alphabetical(): | STRING |
| LOW | tests/python/test_build_metadata.py | 80 | def test_build_codex_plugin_manifest_shape(): | STRING |
| LOW | tests/python/test_build_metadata.py | 90 | def test_build_codex_marketplace_points_at_plugin_root(): | STRING |
| LOW | tests/python/test_build_metadata.py | 103 | def test_collect_codex_plugin_tree_ignores_local_cache_files(tmp_path): | STRING |
| LOW | tests/python/test_build_metadata.py | 124 | def test_collect_skill_shared_assets_copies_checker_to_each_skill(tmp_path): | STRING |
| LOW | tests/python/test_build_metadata.py | 138 | def test_collect_skill_shared_assets_copies_durable_context_when_linked(tmp_path): | STRING |
| LOW | tests/python/test_build_metadata.py | 157 | def test_collect_skill_shared_assets_fails_when_link_has_no_source(tmp_path): | STRING |
| LOW⚡ | tests/python/test_skill_checks.py | 30 | def test_pipe_count_inside_backticks_ignored(): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 35 | def test_pipe_count_escaped_pipe_ignored(): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 43 | def test_description_happy_path(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 55 | def test_description_too_short_rejected(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 61 | def test_description_too_long_rejected(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 68 | def test_description_missing_not_for_clause(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 76 | def test_description_missing_use_when_rejected(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 84 | def test_description_starting_with_article_rejected(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 92 | def test_description_rejects_cjk_triggers(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 222 | def test_codex_plugin_rejects_version_drift(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 229 | def test_codex_marketplace_happy_path(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 235 | def test_codex_marketplace_rejects_wrong_source(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 332 | def test_trigger_overlap_disjoint(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 342 | def test_trigger_overlap_high_jaccard_rejected(): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 352 | def test_trigger_overlap_empty_safe(capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 361 | def test_portable_skill_surface_happy_path(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 371 | def test_portable_skill_surface_rejects_downloads_default(tmp_path, capsys): | CODE |
| LOW⚡ | tests/python/test_skill_checks.py | 381 | def test_portable_skill_surface_rejects_forced_gh(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 108 | def test_outcome_contract_happy_path(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 123 | def test_outcome_contract_missing_section_rejected(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 133 | def test_outcome_contract_missing_field_rejected(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 204 | def test_codex_plugin_happy_path(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 210 | def test_codex_plugin_ignores_local_cache_files(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 251 | def test_anti_patterns_contract_happy_path(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 264 | def test_anti_patterns_contract_rejects_project_name(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 277 | def test_anti_patterns_contract_rejects_stale_specialization(tmp_path, capsys): | CODE |
| LOW | tests/python/test_skill_checks.py | 301 | def test_context_classifier_literals_accepts_semantic_categories(tmp_path, capsys): | CODE |
| 27 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 | plugins/waza/skills/health/scripts/check_doc_refs.py | 11 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 8 | CODE | |
| LOW | …gins/waza/skills/health/scripts/check_agent_context.py | 11 | CODE | |
| LOW | plugins/waza/skills/read/scripts/fetch_local.py | 24 | CODE | |
| LOW | plugins/waza/skills/check/scripts/audit_signals.py | 14 | 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 | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 51 | CODE | |
| LOW | scripts/skill_checks.py | 62 | CODE | |
| LOW | scripts/skill_checks.py | 62 | CODE | |
| LOW | scripts/skill_checks.py | 62 | CODE | |
| LOW | scripts/skill_checks.py | 62 | CODE | |
| LOW | scripts/build_metadata.py | 34 | CODE | |
| LOW | scripts/checks_distribution.py | 7 | CODE | |
| LOW | scripts/checks_content.py | 7 | CODE | |
| LOW | scripts/check_routing_drift.py | 10 | CODE | |
| LOW | scripts/checks_routing.py | 7 | CODE | |
| LOW | scripts/validate_package.py | 13 | CODE | |
| 9 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 | plugins/waza/skills/health/scripts/check_doc_refs.py | 65 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 95 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 207 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 226 | CODE | |
| LOW | …ns/waza/skills/health/scripts/check_maintainability.py | 244 | 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 | 104 | CODE | |
| LOW | scripts/build_metadata.py | 435 | CODE | |
| LOW | scripts/checks_distribution.py | 120 | CODE | |
| LOW | scripts/checks_content.py | 203 | CODE | |
| LOW | scripts/checks_content.py | 358 | CODE | |
| LOW | scripts/checks_content.py | 381 | CODE | |
| LOW | scripts/checks_content.py | 432 | CODE | |
| LOW | scripts/checks_content.py | 533 | CODE | |
| LOW | scripts/checks_routing.py | 87 | CODE | |
| LOW | skills/write/scripts/check_punctuation.py | 57 | CODE | |
| LOW | skills/write/scripts/check_punctuation.py | 296 | CODE | |
| LOW | skills/health/scripts/check_doc_refs.py | 65 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 95 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 207 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 226 | CODE | |
| LOW | skills/health/scripts/check_maintainability.py | 244 | CODE | |
| LOW | skills/read/scripts/fetch_feishu.py | 117 | CODE | |
| LOW | skills/read/scripts/fetch_feishu.py | 147 | CODE | |
| LOW | skills/check/scripts/audit_signals.py | 104 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/write/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/ui/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/learn/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/think/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/hunt/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/health/scripts/collect-data.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/health/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/read/scripts/fetch.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/read/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | plugins/waza/skills/check/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | tests/test_helpers.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | scripts/setup-rule.sh | 1 | #!/bin/bash | COMMENT |
| LOW | skills/write/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/ui/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/learn/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/think/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/hunt/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/health/scripts/collect-data.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/health/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/read/scripts/fetch.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/read/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | skills/check/scripts/check-update.sh | 1 | #!/usr/bin/env bash | COMMENT |
| 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 | 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 | 41 | ## Step 0: Assess project tier | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 51 | ## Step 1: Collect data | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 124 | ## Step 2: Analyze | COMMENT |
| LOW | plugins/waza/skills/health/SKILL.md | 136 | ## Step 3: Report | COMMENT |
| LOW | skills/health/SKILL.md | 41 | ## Step 0: Assess project tier | COMMENT |
| LOW | skills/health/SKILL.md | 51 | ## Step 1: Collect data | COMMENT |
| LOW | skills/health/SKILL.md | 124 | ## Step 2: Analyze | COMMENT |
| LOW | skills/health/SKILL.md | 136 | ## Step 3: Report | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | plugins/waza/skills/health/scripts/collect-data.sh | 515 | except Exception: | CODE |
| LOW | plugins/waza/skills/read/scripts/fetch_weixin.py | 42 | except Exception as e: | CODE |
| LOW | scripts/setup-statusline.sh | 55 | except Exception as exc: | CODE |
| MEDIUM | scripts/setup-statusline.sh | 56 | print(f"Error: {path} is not valid JSON. Refusing to modify it.", file=sys.stderr) | CODE |
| LOW | skills/health/scripts/collect-data.sh | 515 | 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/write/SKILL.md | 180 | - **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 | plugins/waza/skills/ui/references/design-traps.md | 39 | **Sample data:** no generic names (John Doe, Jane Smith), no generic company names (Acme Corp, TechCorp), no Lorem Ipsum | CODE |
| LOW | skills/write/SKILL.md | 180 | - **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 |
| LOW | skills/ui/references/design-traps.md | 39 | **Sample data:** no generic names (John Doe, Jane Smith), no generic company names (Acme Corp, TechCorp), no Lorem Ipsum | CODE |
| 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 |
|---|---|---|---|---|
| MEDIUM | README.md | 108 | # Anti-patterns: always-on cross-skill guardrails (read before acting, no scope creep, no unsolicited summaries) | COMMENT |