Repository Analysis

hesreallyhim/awesome-claude-code

A hand-picked collection of the finest of resources for the most awesome of agents, Claude Code, the undisputed champion of coding companions, from the unstoppable team at Anthropic PBC. A delectable showcase of top tier skills, ambidextrous agents, scintillating status lines, top notch developer tooling, and also we have plugins

13.0 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of hesreallyhim/awesome-claude-code, a Python project with 49,975 GitHub stars. SynthScan v2.0 examined 11,613 lines of code across 38 source files, recording 119 pattern matches distributed across 6 syntactic categories. The overall adjusted score of 13.0 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).

13.0
Adjusted Score
13.0
Raw Score
100%
Time Factor
2026-07-14
Last Push
50.0K
Stars
Python
Language
11.6K
Lines of Code
38
Files
119
Pattern Hits
2026-07-14
Scan Date
0.00
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 0MEDIUM 31LOW 88

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 119 distinct pattern matches across 6 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hyper-Verbose Identifiers66 hits · 59 pts
SeverityFileLineSnippetContext
LOWtests/test_fetch_repo_ticker_data.py33def test_load_previous_data_missing_file(tmp_path: Path) -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py37def test_load_previous_data_reads_csv(tmp_path: Path) -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py48def test_calculate_deltas_with_previous() -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py57def test_calculate_deltas_new_repo_with_prior_snapshot() -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py66def test_calculate_deltas_no_previous_baseline() -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py74def test_save_to_csv_writes_output(tmp_path: Path) -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py97def test_fetch_repos_maps_fields(monkeypatch: pytest.MonkeyPatch) -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py143def test_fetch_repos_request_error_exits(monkeypatch: pytest.MonkeyPatch) -> None:CODE
LOWtests/test_fetch_repo_ticker_data.py152def test_main_missing_token_exits(monkeypatch: pytest.MonkeyPatch) -> None:CODE
LOWtests/test_resources.py57def test_generate_resource_id_uses_config_prefix() -> None:STRING
LOWtests/test_resources.py64def test_generate_resource_id_stable_by_link() -> None:STRING
LOWtests/test_resources.py70def test_generate_resource_id_unknown_category_falls_back() -> None:STRING
LOWtests/test_resources.py77def test_parse_issue_body_maps_fields() -> None:STRING
LOWtests/test_resources.py91def test_validate_accepts_well_formed() -> None:STRING
LOWtests/test_resources.py96def test_validate_flags_missing_required() -> None:STRING
LOWtests/test_resources.py103def test_validate_rejects_unknown_category() -> None:STRING
LOWtests/test_resources.py110def test_validate_requires_https_link() -> None:STRING
LOWtests/test_resources.py117def test_validate_description_length_bounds() -> None:STRING
LOWtests/test_resources.py127def test_append_to_csv_writes_new_schema(tmp_path: Path) -> None:STRING
LOWtests/test_resources.py153def test_duplicate_check_detects_existing_link(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:STRING
LOWtests/test_resources.py183def test_format_entry_escapes_html_in_text_fields() -> None:CODE
LOWtests/test_resources.py200def test_parse_github_rejects_crafted_link_no_badge() -> None:CODE
LOWtests/test_resources.py216def test_parse_github_accepts_normal_link() -> None:CODE
LOWtests/test_resources.py221def test_validate_rejects_link_with_injection_chars() -> None:CODE
LOWtests/test_generate_ticker_svg.py13def test_truncate_repo_name_short() -> None:CODE
LOWtests/test_generate_ticker_svg.py27def test_truncate_repo_name_long() -> None:CODE
LOWtests/test_generate_ticker_svg.py35def test_truncate_repo_name_custom_length() -> None:CODE
LOWtests/test_generate_ticker_svg.py43def test_truncate_repo_name_preserves_beginning() -> None:CODE
LOWtests/test_generate_ticker_svg.py51def test_truncate_repo_name_edge_cases() -> None:CODE
LOWtests/test_manage_categories.py265def test_live_config_roundtrips_through_edits() -> None:CODE
LOWtests/test_manage_categories.py63def test_add_category_appends_when_order_omitted() -> None:STRING
LOWtests/test_manage_categories.py72def test_add_category_at_order() -> None:STRING
LOWtests/test_manage_categories.py81def test_add_category_preserves_header() -> None:STRING
LOWtests/test_manage_categories.py86def test_add_category_with_description() -> None:STRING
LOWtests/test_manage_categories.py92def test_add_duplicate_name_rejected() -> None:STRING
LOWtests/test_manage_categories.py97def test_add_duplicate_prefix_rejected() -> None:STRING
LOWtests/test_manage_categories.py105def test_move_category_forward() -> None:STRING
LOWtests/test_manage_categories.py109def test_move_category_backward() -> None:STRING
LOWtests/test_manage_categories.py113def test_move_category_same_position_is_noop() -> None:STRING
LOWtests/test_manage_categories.py117def test_move_category_carries_its_block() -> None:STRING
LOWtests/test_manage_categories.py123def test_move_missing_category_rejected() -> None:STRING
LOWtests/test_manage_categories.py135def test_remove_category_with_subs() -> None:STRING
LOWtests/test_manage_categories.py140def test_remove_missing_category_rejected() -> None:STRING
LOWtests/test_manage_categories.py148def test_add_subcategory_creates_key_when_absent() -> None:STRING
LOWtests/test_manage_categories.py154def test_add_subcategory_at_order() -> None:STRING
LOWtests/test_manage_categories.py159def test_add_duplicate_subcategory_rejected() -> None:STRING
LOWtests/test_manage_categories.py216def test_render_form_lists_submittable_in_config_order() -> None:STRING
LOWtests/test_manage_categories.py222def test_render_form_preserves_item_indentation() -> None:STRING
LOWtests/test_manage_categories.py227def test_render_form_reorders_to_config_order() -> None:STRING
LOWtests/test_manage_categories.py235def test_render_form_missing_dropdown_raises() -> None:STRING
LOWtests/test_manage_categories.py240def test_submittable_categories_excludes_flagged() -> None:STRING
LOWtests/test_manage_categories.py244def test_add_not_submittable_writes_flag() -> None:STRING
LOWtests/test_manage_categories.py250def test_live_issue_form_is_in_sync_with_config() -> None:STRING
LOWtests/test_manage_categories.py174def test_remove_last_subcategory_drops_the_key() -> None:STRING
LOWtests/test_manage_categories.py183def test_move_subcategory_missing_rejected() -> None:STRING
LOWtests/test_generate.py34def test_render_is_idempotent_with_constant_csv() -> None:CODE
LOWtests/test_generate.py42def test_make_generate_writes_identical_output_on_rerun() -> None:CODE
LOWtests/test_generate.py58def test_unknown_active_category_fails_closed() -> None:CODE
LOWtests/test_generate.py73def test_real_csv_categories_match_config() -> None:CODE
LOWtests/test_generate.py82def test_entries_alphabetical_within_each_category() -> None:CODE
6 more matches not shown…
Modern AI Meta-Vocabulary27 hits · 58 pts
SeverityFileLineSnippetContext
MEDIUMREADME.md56- [Multi-Agent Orchestration](#multi-agent-orchestration)CODE
MEDIUMREADME.md56- [Multi-Agent Orchestration](#multi-agent-orchestration)CODE
MEDIUMREADME.md73- [Claude Code: Everything You Need to Know](https://github.com/wesammustafa/Claude-Code-Everything-You-Need-to-Know) byCODE
MEDIUMREADME.md91- [Claude Code Best Practices](https://code.claude.com/docs/en/best-practices) by [Anthropic](https://code.claude.com/doCODE
MEDIUMREADME.md103- [How Claude Code Works](https://code.claude.com/docs/en/how-claude-code-works) by [Anthropic](https://code.claude.com/CODE
MEDIUMREADME.md266- [Agent Guard](https://github.com/JeongJaeSoon/agent-guard) by [JeongJaeSoon](https://github.com/JeongJaeSoon) - Real-tCODE
MEDIUMREADME.md272- [Airut](https://github.com/airutorg/airut) by [airutorg](https://github.com/airutorg) - Airut is a system for running CODE
MEDIUMREADME.md296- [GouvernAI](https://github.com/Myr-Aya/GouvernAI-claude-code-plugin) by [Myr-Aya](https://github.com/Myr-Aya) - RuntimCODE
MEDIUMREADME.md321- [fable-mode](https://github.com/mrtooher/fable-mode) by [mrtooher](https://github.com/mrtooher) - A Claude skill that CODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md69 - [Project Scaffolding & MCP](#project-scaffolding--mcp)CODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md110- [Agentic Workflow Patterns](https://github.com/ThibautMelen/agentic-workflow-patterns) by [ThibautMelen](https://githuCODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md116- [Claude Code Repos Index](https://github.com/danielrosehill/Claude-Code-Repos-Index) by [Daniel Rosehill](https://githCODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md119- [Claude Code Ultimate Guide](https://github.com/FlorianBruniaux/claude-code-ultimate-guide) by [Florian BRUNIAUX](httpCODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md125- [Encyclopedia of Agentic Coding Patterns](https://aipatternbook.com) by [Wolf McNally](https://github.com/wolfmcnally)CODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md145- [Ralph for Claude Code](https://github.com/frankbria/ralph-claude-code) by [Frank Bria](https://github.com/frankbria) CODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md146- [Ralph Wiggum Marketer](https://github.com/muratcankoylan/ralph-wiggum-marketer) by [Muratcan Koylan](https://github.cCODE
MEDIUMREADME_ALTERNATIVES/README_AWESOME.md212- [Ruflo](https://github.com/ruvnet/ruflo) by [rUv](https://github.com/ruvnet) - An orchestration platform for deployingCODE
MEDIUMREADME_ALTERNATIVES/README_FLAT_ALL_AZ.md457<td><a href="https://github.com/ThibautMelen/agentic-workflow-patterns"><b>Agentic Workflow Patterns</b></a><br>by <a hrCODE
MEDIUMREADME_ALTERNATIVES/README_FLAT_ALL_AZ.md463<td colspan="4"><img src="https://img.shields.io/github/stars/ThibautMelen/agentic-workflow-patterns?style=flat-square" CODE
MEDIUMREADME_ALTERNATIVES/README_CLASSIC.md150 - [Project Scaffolding & MCP](#project-scaffolding--mcp-)CODE
MEDIUMREADME_ALTERNATIVES/README_CLASSIC.md402[`Agentic Workflow Patterns`](https://github.com/ThibautMelen/agentic-workflow-patterns) &nbsp; by &nbsp; [ThibautMelen]CODE
MEDIUMREADME_ALTERNATIVES/README_CLASSIC.md408![GitHub Stats for agentic-workflow-patterns](https://github-readme-stats-fork-orpin.vercel.app/api/pin/?repo=agentic-woCODE
MEDIUMREADME_ALTERNATIVES/README_EXTRA.md471<a href="#project-scaffolding--mcp">CODE
MEDIUMREADME_ALTERNATIVES/README_EXTRA.md742<a href="https://github.com/ThibautMelen/agentic-workflow-patterns"><img src="https://raw.githubusercontent.com/hesreallCODE
MEDIUMREADME_ALTERNATIVES/README_EXTRA.md744![GitHub Stats for agentic-workflow-patterns](https://github-readme-stats-fork-orpin.vercel.app/api/pin/?repo=agentic-woCODE
MEDIUMREADME_ALTERNATIVES/README_EXTRA.md846<a href="https://aipatternbook.com"><img src="https://raw.githubusercontent.com/hesreallyhim/awesome-claude-code/2975510CODE
MEDIUMREADME_ALTERNATIVES/README_EXTRA.md1366<a href="https://github.com/rsmdt/the-startup"><img src="https://raw.githubusercontent.com/hesreallyhim/awesome-claude-cCODE
Unused Imports15 hits · 15 pts
SeverityFileLineSnippetContext
LOWgenerate_readme.py18CODE
LOWresources/categories.py7CODE
LOWresources/resource_utils.py8CODE
LOWresources/awesome-list-entry-formatter.py8CODE
LOWresources/parse_issue_form.py8CODE
LOWresources/create_resource_pr.py8CODE
LOWresources/ids.py8CODE
LOWtests/test_fetch_repo_ticker_data.py4CODE
LOWtests/test_resources.py4CODE
LOWtests/test_manage_categories.py12CODE
LOWtests/test_generate.py11CODE
LOWticker/ticker_filters.py9CODE
LOWticker/generate_recently_added_svg.py19CODE
LOWscripts/sync_issue_form.py13CODE
LOWscripts/manage_categories.py31CODE
Excessive Try-Catch Wrapping6 hits · 14 pts
SeverityFileLineSnippetContext
MEDIUMresources/resource_utils.py42 print(f"Error reading CSV header: {e}")CODE
MEDIUMresources/resource_utils.py45 print("Error reading CSV header: missing header row")CODE
MEDIUMresources/resource_utils.py52 print(f"Error: CSV header missing columns {', '.join(missing)}")CODE
MEDIUMresources/resource_utils.py61 print(f"Error writing to CSV: {e}")CODE
LOWresources/create_resource_pr.py124 except Exception as e: # noqa: BLE001 - report any failure back to the workflowCODE
LOWscripts/manage_categories.py574 except Exception as exc: # pragma: no cover - defensiveCODE
Deep Nesting3 hits · 3 pts
SeverityFileLineSnippetContext
LOWgenerate_readme.py150CODE
LOWresources/parse_issue_form.py26CODE
LOWresources/parse_issue_form.py57CODE
Over-Commented Block2 hits · 2 pts
SeverityFileLineSnippetContext
LOWconfig.yaml1# config.yaml — drives the Table of Contents ordering and section layout for theCOMMENT
LOWscripts/__init__.py1# Makes `scripts` an explicit package so `from scripts import manage_categories`COMMENT