Resume builder for academics and engineers
This report presents the forensic synthetic code analysis of rendercv/rendercv, a Python project with 17,122 GitHub stars. SynthScan v2.0 examined 51,536 lines of code across 290 source files, recording 770 pattern matches distributed across 15 syntactic categories. The overall adjusted score of 17.7 places this repository in the Moderate 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 770 distinct pattern matches across 15 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 | tests/test_generated_files.py | 35 | def test_schema_json_is_up_to_date() -> None: | CODE |
| LOW | tests/test_generated_files.py | 51 | def test_example_yaml_is_up_to_date(theme: str) -> None: | CODE |
| LOW | tests/test_generated_files.py | 70 | def test_skill_md_is_up_to_date() -> None: | CODE |
| LOW | tests/test_tests.py | 9 | def get_immediate_subdirectories(directory: pathlib.Path) -> set[str]: | CODE |
| LOW | tests/test_tests.py | 36 | def test_test_folders_match_source_structure(): | CODE |
| LOW | tests/test_tests.py | 61 | def test_all_test_files_follow_naming_pattern(): | CODE |
| LOW | tests/test_pyodide.py | 72 | def test_rendercv_installs_in_pyodide(tmp_path: pathlib.Path, js_runtime: str) -> None: | CODE |
| LOW | tests/test_offline_whl.py | 37 | def test_rendercv_renders_pdf_offline(tmp_path: pathlib.Path) -> None: | CODE |
| LOW | tests/renderer/test_pdf_png.py | 73 | def test_creates_correct_directory_structure(self): | CODE |
| LOW | tests/renderer/test_pdf_png.py | 88 | def test_returns_cached_result(self): | CODE |
| LOW | tests/renderer/test_pdf_png.py | 94 | def test_raises_error_when_version_missing_from_typst_toml(self, tmp_path): | CODE |
| LOW | tests/renderer/test_pdf_png.py | 106 | def test_removes_stale_png_files_from_previous_run( | CODE |
| LOW | tests/renderer/test_pdf_png.py | 132 | def test_does_not_remove_unrelated_files( | CODE |
| LOW | tests/renderer/test_pdf_png.py | 157 | def test_works_when_no_old_files_exist( | CODE |
| LOW | tests/renderer/test_pdf_png.py | 180 | def test_raises_error_when_typst_returns_none_bytes( | CODE |
| LOW | tests/renderer/conftest.py | 28 | def compare_file_with_reference( | CODE |
| LOW | tests/renderer/conftest.py | 342 | def create_combinations_of_entry_type( | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 89 | def test_resolve_rendercv_file_path( | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 110 | def test_creates_parent_directories(self, tmp_path: pathlib.Path): | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 120 | def test_output_folder_placeholder_resolved(self, tmp_path: pathlib.Path): | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 179 | def test_replaces_output_folder_component(self, tmp_path: pathlib.Path): | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 187 | def test_no_placeholder_returns_unchanged(self, tmp_path: pathlib.Path): | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 195 | def test_nested_output_folder(self, tmp_path: pathlib.Path): | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 251 | def test_snake_case_has_no_spaces(self, name: str) -> None: | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 259 | def test_kebab_case_has_no_spaces(self, name: str) -> None: | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 267 | def test_lower_variants_are_lowercase(self, name: str) -> None: | CODE |
| LOW | tests/renderer/test_path_resolver.py | 135 | def test_custom_output_folder(self, tmp_path: pathlib.Path): | CODE |
| LOW | tests/renderer/test_path_resolver.py | 149 | def test_no_output_folder_placeholder_in_path(self, tmp_path: pathlib.Path): | CODE |
| LOW | tests/renderer/test_path_resolver.py | 163 | def test_output_folder_with_subdirectory_in_path(self, tmp_path: pathlib.Path): | CODE |
| LOW | tests/renderer/test_path_resolver.py | 230 | def test_output_folder_absent_in_result(self, suffix: str, folder: str) -> None: | CODE |
| LOW | tests/renderer/test_path_resolver.py | 240 | def test_none_returns_empty_dict(self) -> None: | CODE |
| LOW | tests/renderer/test_path_resolver.py | 280 | def test_upper_variants_are_uppercase(self, name: str) -> None: | CODE |
| LOW | tests/renderer/test_path_resolver.py | 293 | def test_original_name_preserved(self, name: str) -> None: | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 84 | def test_returns_expected_output(self, text, keywords, expected): | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 89 | def test_empty_keywords_is_identity(self, text: str) -> None: | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 94 | def test_never_produces_double_bolding( | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 102 | def test_output_length_never_shrinks(self, text: str, keywords: list[str]) -> None: | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 123 | def test_keyword_in_text_always_gets_bolded(self, keyword: str) -> None: | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 138 | def test_returns_expected_output(self, string, placeholders, expected_string): | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 143 | def test_empty_placeholders_preserves_content(self, text: str) -> None: | CODE |
| LOW⚡ | tests/renderer/templater/test_string_processor.py | 148 | def test_all_keys_absent_from_output(self, placeholders: dict[str, str]) -> None: | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 170 | def test_returns_expected_output(self, url, expected_clean_url): | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 187 | def test_removes_trailing_slashes(self, url: str) -> None: | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 194 | def test_raises_error_for_empty_keywords(self): | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 208 | def test_matches_all_input_keywords(self, keywords: frozenset[str]) -> None: | CODE |
| LOW | tests/renderer/templater/test_string_processor.py | 219 | def test_matches_longest_keyword_first(self, base: str, extension: str) -> None: | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 304 | def test_connection_without_url_has_no_link(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 313 | def test_plain_text_output_when_no_formatting(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 321 | def test_custom_connection_without_url_is_not_hyperlinked(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 341 | def test_connection_with_url_formatted_as_markdown_link(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 349 | def test_connection_without_url_is_plain_text(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 358 | def test_custom_connection_renders_markdown_link_when_url_is_present(self): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 411 | def test_all_social_networks_have_icons(self, network): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 417 | def test_all_connection_types_have_icons(self, conn_type): | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 426 | def _make_model_with_none_field(self, key: str) -> RenderCVModel: | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 435 | def test_raises_for_none_field_in_key_order(self, key): | CODE |
| LOW | tests/renderer/templater/test_connections.py | 114 | def test_parse_single_field_type(self, field, value, expected_count, expected_icon): | CODE |
| LOW | tests/renderer/templater/test_connections.py | 123 | def test_email_connection_structure(self): | CODE |
| LOW | tests/renderer/templater/test_connections.py | 148 | def test_website_connection_structure(self): | CODE |
| LOW | tests/renderer/templater/test_connections.py | 167 | def test_social_network_connection(self): | CODE |
| 419 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | README.md | 161 | rendercv new "John Doe" | CODE |
| LOW | schema.json | 245 | "placeholder": { | CODE |
| LOW | schema.json | 266 | "placeholder", | CODE |
| LOW | schema.json | 286 | "John Doe", | CODE |
| LOW | schema.json | 418 | "placeholder": "Book a call", | CODE |
| LOW | schema.json | 3115 | "John Doe", | CODE |
| LOW | tests/test_generated_files.py | 59 | name="John Doe", | CODE |
| LOW | tests/renderer/conftest.py | 114 | name="John Doe", | CODE |
| LOW | tests/renderer/conftest.py | 136 | name="John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 24 | ("NAME.pdf", "John Doe", None, "John Doe.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 25 | ("NAME_IN_SNAKE_CASE.pdf", "John Doe", None, "John_Doe.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 26 | ("NAME_IN_LOWER_SNAKE_CASE.pdf", "John Doe", None, "john_doe.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 27 | ("NAME_IN_UPPER_SNAKE_CASE.pdf", "John Doe", None, "JOHN_DOE.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 28 | ("NAME_IN_KEBAB_CASE.pdf", "John Doe", None, "John-Doe.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 29 | ("NAME_IN_LOWER_KEBAB_CASE.pdf", "John Doe", None, "john-doe.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 30 | ("NAME_IN_UPPER_KEBAB_CASE.pdf", "John Doe", None, "JOHN-DOE.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 32 | ("MONTH_NAME.pdf", "John Doe", datetime.date(2024, 3, 15), "March.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 35 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 39 | ("MONTH.pdf", "John Doe", datetime.date(2024, 3, 15), "3.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 42 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 46 | ("YEAR.pdf", "John Doe", datetime.date(2024, 3, 15), "2024.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 49 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 54 | ("MONTH_NAME.pdf", "John Doe", datetime.date(2024, 1, 1), "January.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 57 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 61 | ("MONTH_NAME.pdf", "John Doe", datetime.date(2024, 6, 1), "June.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 64 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 68 | ("MONTH_NAME.pdf", "John Doe", datetime.date(2024, 12, 1), "December.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 71 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 76 | ("DAY.pdf", "John Doe", datetime.date(2024, 3, 15), "15.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 77 | ("DAY_IN_TWO_DIGITS.pdf", "John Doe", datetime.date(2024, 3, 5), "05.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 81 | "John Doe", | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 86 | ("my_cv.pdf", "John Doe", None, "my_cv.pdf"), | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 111 | model = RenderCVModel(cv=Cv(name="John Doe")) | CODE |
| LOW⚡ | tests/renderer/test_path_resolver.py | 123 | cv=Cv(name="John Doe"), | CODE |
| LOW | tests/renderer/test_path_resolver.py | 138 | cv=Cv(name="John Doe"), | CODE |
| LOW | tests/renderer/test_path_resolver.py | 152 | cv=Cv(name="John Doe"), | CODE |
| LOW | tests/renderer/test_path_resolver.py | 166 | cv=Cv(name="John Doe"), | CODE |
| LOW⚡ | tests/renderer/templater/test_connections.py | 427 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW | tests/renderer/templater/test_connections.py | 56 | cv_data["name"] = "John Doe" | CODE |
| LOW | …/renderer/templater/test_entry_templates_from_input.py | 577 | {"COMPANY_NAME": "Acme Corp", "START_DATE": "2020"}, | CODE |
| LOW | …/renderer/templater/test_entry_templates_from_input.py | 670 | result[field_name] = "placeholder" | CODE |
| LOW | …/renderer/templater/test_entry_templates_from_input.py | 700 | result[field_name] = "placeholder" | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 180 | "name": "Jane Doe", | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 188 | assert result.cv.name == "Jane Doe" | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 197 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 210 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 218 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW⚡ | tests/renderer/templater/test_model_processor.py | 227 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW | tests/renderer/templater/test_model_processor.py | 247 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW | tests/renderer/templater/test_model_processor.py | 266 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW | tests/renderer/templater/test_model_processor.py | 283 | cv = Cv.model_validate({"name": "John Doe"}) | CODE |
| LOW | tests/renderer/templater/test_footer_and_top_note.py | 16 | "John Doe", | CODE |
| LOW | tests/renderer/templater/test_footer_and_top_note.py | 27 | "John Doe", | CODE |
| LOW | tests/renderer/templater/test_footer_and_top_note.py | 48 | "John Doe", | CODE |
| LOW | tests/renderer/templater/test_footer_and_top_note.py | 59 | "John Doe", | CODE |
| LOW | tests/cli/render_command/test_render_command.py | 39 | full_name="John Doe", | CODE |
| LOW | tests/cli/new_command/test_new_command.py | 28 | full_name = "John Doe" | CODE |
| LOW⚡ | tests/cli/new_command/test_new_command.py | 89 | full_name="John Doe", | CODE |
| LOW⚡ | tests/cli/new_command/test_new_command.py | 101 | full_name="John Doe", | CODE |
| LOW | tests/schema/conftest.py | 20 | "name": "John Doe", | CODE |
| 73 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pyproject.toml | 1 | # Every modern Python package today has a `pyproject.toml` file. It is a Python | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 201 | # footer: rgb(120, 100, 140) | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 261 | # space_between_columns: 0.2cm | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 301 | # SUMMARY | COMMENT |
| LOW | examples/John_Doe_InkTheme_CV.yaml | 321 | # month_abbreviations: | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 201 | # footer: rgb(100, 140, 135) | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 221 | # headline: true | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 261 | # space_between_columns: 0.1cm | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 301 | # HIGHLIGHTS | COMMENT |
| LOW | examples/John_Doe_OpalTheme_CV.yaml | 321 | # - Jan | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 201 | # footer: rgb(128, 128, 128) | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 261 | # space_between_columns: 0.1cm | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 301 | # date_and_location_column: DATE | COMMENT |
| LOW | examples/John_Doe_EngineeringclassicTheme_CV.yaml | 321 | # - Feb | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 201 | # footer: rgb(128, 128, 128) | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 261 | # space_between_columns: 0.3cm | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 301 | # date_and_location_column: DATE | COMMENT |
| LOW | examples/John_Doe_ModerncvTheme_CV.yaml | 321 | # - Feb | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 201 | # footer: rgb(128, 128, 128) | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 261 | # side_space: 0.2cm | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 281 | # time_span: HOW_MANY_YEARS YEARS HOW_MANY_MONTHS MONTHS | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 301 | # experience_entry: | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 321 | # year: year | COMMENT |
| LOW | examples/John_Doe_ClassicTheme_CV.yaml | 341 | # - February | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 201 | # footer: rgb(128, 128, 128) | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 261 | # space_between_columns: 0.1cm | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 301 | # date_and_location_column: DATE | COMMENT |
| LOW | examples/John_Doe_HarvardTheme_CV.yaml | 321 | # - Feb | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 201 | # footer: rgb(128, 128, 128) | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 221 | # headline: false | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 241 | # connections: | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 261 | # space_between_columns: 0.1cm | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 281 | # one_line_entry: | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 301 | # experience_entry: | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 321 | # months: months | COMMENT |
| LOW | examples/John_Doe_Sb2novTheme_CV.yaml | 341 | # - January | COMMENT |
| LOW | examples/John_Doe_EmberTheme_CV.yaml | 181 | - reversed_number: Building AI Infrastructure for the Next Decade — TechCrunch Disrupt (2024) | COMMENT |
| 15 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | .claude/skills/triage-rendercv-issue/SKILL.md | 10 | ## Step 1: Read the issue | COMMENT |
| LOW | .claude/skills/triage-rendercv-issue/SKILL.md | 30 | ## Step 2: Understand the relevant code | COMMENT |
| LOW | .claude/skills/triage-rendercv-issue/SKILL.md | 38 | ## Step 3: Post a comment | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 13 | ## Step 1: Read package metadata | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 17 | ## Step 2: Validate package integrity | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 66 | ## Step 3: Handle previous work | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 82 | ## Step 4: Set up fork and clone | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 107 | ## Step 5: Create the package version directory | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 130 | ## Step 6: Determine previous version | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 134 | ## Step 7: Build PR description | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 171 | ## Step 8: Commit, push, and create PR | COMMENT |
| LOW | .claude/skills/publish-rendercv-typst-package/SKILL.md | 189 | ## Step 9: Report results | COMMENT |
| LOW | .claude/skills/solve-rendercv-issue/SKILL.md | 10 | ## Step 1: Select an issue | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 26 | ## Step 2: Understand RenderCV | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 35 | ## Step 3: Set up the branch | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 44 | ## Step 4: Reproduce the problem (bugs only) | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 55 | ## Step 5: Implement the solution | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 59 | ## Step 6: Verify the solution | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 63 | ## Step 7: Commit and push | COMMENT |
| LOW⚡ | .claude/skills/solve-rendercv-issue/SKILL.md | 73 | ## Step 8: Open a pull request | COMMENT |
| LOW | .claude/skills/review-rendercv-pr/SKILL.md | 10 | ## Step 1: Identify the PR | COMMENT |
| LOW | .claude/skills/review-rendercv-pr/SKILL.md | 24 | ## Step 2: Understand RenderCV | COMMENT |
| LOW | .claude/skills/review-rendercv-pr/SKILL.md | 33 | ## Step 3: Analyze the PR diff | COMMENT |
| LOW⚡ | .claude/skills/review-rendercv-pr/SKILL.md | 51 | ## Step 4: Read the full context of changed files | COMMENT |
| LOW⚡ | .claude/skills/review-rendercv-pr/SKILL.md | 61 | ## Step 5: Evaluate against RenderCV standards | COMMENT |
| LOW⚡ | .claude/skills/review-rendercv-pr/SKILL.md | 67 | ## Step 6: Check CI status | COMMENT |
| LOW⚡ | .claude/skills/review-rendercv-pr/SKILL.md | 75 | ## Step 7: Post the review | COMMENT |
| LOW | .claude/skills/review-rendercv-pr/SKILL.md | 125 | ## Step 8: Report results | COMMENT |
| LOW | docs/developer_guide/understanding_rendercv.md | 29 | ## Step 1: Reading the YAML File | COMMENT |
| LOW | docs/developer_guide/understanding_rendercv.md | 186 | ## Step 2: Generating the Typst File | COMMENT |
| LOW | docs/developer_guide/understanding_rendercv.md | 285 | ## Step 3: Compiling to PDF | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | scripts/ats_proof/evaluate.py | 21 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/evaluate.py | 23 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/evaluate.py | 118 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/evaluate.py | 120 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/evaluate.py | 175 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/evaluate.py | 177 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 27 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 29 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 58 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 60 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 91 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | scripts/ats_proof/analyze_pdfs.py | 93 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | scripts/ats_proof/analyze_pdfs.py | 149 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | scripts/ats_proof/analyze_pdfs.py | 151 | # --------------------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/cli/test_copy_templates.py | 37 | # Create a tree with read-only files and directories | COMMENT |
| MEDIUM | tests/cli/render_command/test_render_command.py | 244 | # Create a minimal YAML with render_command referencing the overlay file | COMMENT |
| MEDIUM | src/rendercv/renderer/templater/markdown_parser.py | 146 | # Create a Markdown instance | COMMENT |
| MEDIUM | …dercv/cli/create_theme_command/create_theme_command.py | 40 | # Create the __init__.py file for the new theme: | COMMENT |
| MEDIUM | src/rendercv/schema/variant_pydantic_model_generator.py | 399 | # Create a variant class with updated field specs and descriptions | COMMENT |
| MEDIUM | src/rendercv/schema/models/design/design.py | 141 | # Create a dummy data model and use that instead. | COMMENT |
| MEDIUM | src/rendercv/schema/models/cv/section.py | 250 | # Create a custom type named Section, which is a list of entries. The entries can be any | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/update_examples.py | 19 | # Check if examples directory exists. If not, create it | COMMENT |
| LOW | scripts/ats_proof/evaluate.py | 195 | # Check if abbreviation matches full name | COMMENT |
| LOW⚡ | src/rendercv/schema/variant_pydantic_model_generator.py | 303 | # Check if this is a nested dict that should be recursively merged | COMMENT |
| LOW | src/rendercv/schema/variant_pydantic_model_generator.py | 350 | # Check if this field is a nested Pydantic model | COMMENT |
| LOW | src/rendercv/schema/yaml_reader.py | 33 | # Check if the file exists: | COMMENT |
| LOW | src/rendercv/schema/models/design/design.py | 76 | # Check if the custom theme folder exists: | COMMENT |
| LOW | src/rendercv/schema/models/design/design.py | 84 | # Check if at least there is one *.j2.typ file in the custom theme folder: | COMMENT |
| LOW | …a/models/cv/entries/bases/entry_with_complex_fields.py | 156 | # Check if the start_date is before the end_date: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | src/rendercv/renderer/templater/connections.py | 106 | rendercv_model.design.header.connections.phone_number_format.upper(), | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/renderer/templater/test_connections.py | 26 | CODE | |
| LOW | scripts/ats_proof/submit_commercial.py | 34 | CODE | |
| LOW | scripts/ats_proof/common.py | 93 | CODE | |
| LOW | scripts/ats_proof/common.py | 199 | CODE | |
| LOW | scripts/ats_proof/evaluate.py | 226 | CODE | |
| LOW | scripts/ats_proof/analyze_pdfs.py | 154 | CODE | |
| LOW | src/rendercv/schema/variant_pydantic_model_generator.py | 136 | CODE | |
| LOW | …a/models/cv/entries/bases/entry_with_complex_fields.py | 43 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/schema/models/cv/test_section.py | 7 | CODE | |
| LOW | tests/schema/models/cv/test_section.py | 8 | CODE | |
| LOW | tests/schema/models/cv/test_section.py | 9 | CODE | |
| LOW | tests/schema/models/cv/test_section.py | 10 | CODE | |
| LOW | tests/schema/models/cv/test_section.py | 11 | CODE | |
| LOW | tests/schema/models/cv/test_section.py | 12 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | src/rendercv/schema/rendercv_model_builder.py | 68 | Parse YAML content and convert parser failures into validation errors. Why: YAML syntax errors should use t | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/renderer/conftest.py | 126 | """Create a comprehensive RenderCVModel with all entry combinations. | STRING |
| LOW⚡ | src/rendercv/schema/variant_pydantic_model_generator.py | 312 | # Not a Pydantic model, just use the dict as-is | COMMENT |
| LOW | src/rendercv/schema/variant_pydantic_model_generator.py | 415 | # No Pydantic model found, just use the dict directly | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/ats_proof/submit_commercial.py | 86 | except Exception as e: | CODE |
| LOW⚡ | scripts/ats_proof/analyze_pdfs.py | 143 | except Exception as e: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | CLAUDE.md | 50 | render_command/run_rendercv.py # Main render orchestration | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | src/rendercv/cli/render_command/render_command.py | 29 | CODE |