The job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
This report presents the forensic synthetic code analysis of MadsLorentzen/ai-job-search, a Python project with 37,799 GitHub stars. SynthScan v2.0 examined 25,758 lines of code across 180 source files, recording 473 pattern matches distributed across 15 syntactic categories. The overall adjusted score of 23.4 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 473 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 | salary_lookup.py | 54 | def collect_validation_issues(data): | CODE |
| LOW | tools/check_upstream_updates.py | 47 | def get_framework_version_from_text(text: str) -> str | None: | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 154 | def test_matched_row_is_never_moved_backwards(self): | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 162 | def test_redraft_marker_is_undated(self): | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 171 | def test_seen_jobs_is_left_alone(self): | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 178 | def test_skill_defers_to_apply_rather_than_restating(self): | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 307 | def test_posting_is_archived_where_every_reader_looks(self): | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 441 | def test_the_rule_has_one_home_and_every_deriver_cites_it(self): | CODE |
| LOW | tests/test_apply_records_application.py | 59 | def test_step_writes_a_drafted_row_with_both_document_paths(self): | CODE |
| LOW | tests/test_apply_records_application.py | 71 | def test_tracker_header_matches_outcome(self): | CODE |
| LOW | tests/test_apply_records_application.py | 104 | def test_tracker_header_ends_with_deadline(self): | CODE |
| LOW | tests/test_apply_records_application.py | 114 | def test_migration_appends_the_headers_own_last_column(self): | CODE |
| LOW | tests/test_apply_records_application.py | 139 | def test_step_runs_before_the_optional_offer_that_ends_the_turn(self): | CODE |
| LOW | tests/test_apply_records_application.py | 233 | def test_every_reader_handles_drafted(self): | CODE |
| LOW | tests/test_apply_records_application.py | 381 | def test_deadline_survives_every_write(self): | CODE |
| LOW | tests/test_apply_records_application.py | 467 | def test_documented_rule_yields_a_single_path_component(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 28 | def test_zero_count_is_displayed_as_zero(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 99 | def test_exact_match_case_insensitive(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 102 | def test_exact_match_after_suffix_stripping(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 105 | def test_exact_match_after_dotted_amba_suffix_stripping(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 113 | def test_query_contained_in_entry_gives_high_score(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 117 | def test_entry_contained_in_query_gives_high_score(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 123 | def test_short_query_no_word_overlap_returns_zero(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 127 | def test_short_query_with_word_overlap_scores(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 133 | def test_oe_variant_matches_o_with_slash(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 137 | def test_aa_variant_matches_aa(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 140 | def test_danish_characters_roundtrip(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 146 | def test_completely_unrelated_names_return_zero(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 149 | def test_empty_query_returns_zero(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 152 | def test_empty_entry_returns_zero(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 194 | def test_valid_minimal_data_is_returned(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 199 | def test_top_level_value_must_be_object(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 202 | def test_companies_must_be_list(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 205 | def test_metadata_must_be_object_when_provided(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 211 | def test_load_data_reports_json_parse_errors_without_traceback(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 230 | def test_company_entry_must_be_object(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 233 | def test_company_name_is_required(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 236 | def test_company_name_must_not_be_blank(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 239 | def test_city_must_be_string_when_provided(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 245 | def test_categories_must_be_object_when_provided(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 255 | def test_malformed_category_value_rejected(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 259 | def test_non_numeric_count_rejected(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 267 | def test_duplicate_company_name_is_warning(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 335 | def test_normalize_strips_suffix_and_noise(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 341 | def test_normalize_strips_dotted_amba_suffix_same_as_undotted(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 349 | def test_anglicize_replaces_danish_chars(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 395 | def test_search_with_city_filter(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 405 | def test_exact_name_returns_match(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 411 | def test_no_match_returns_empty_list(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 416 | def test_multiple_candidates_all_returned(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 430 | def test_matching_city_is_included(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 439 | def test_non_matching_city_is_excluded(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 444 | def test_no_city_filter_returns_all_cities(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 452 | def test_city_filter_case_insensitive(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 457 | def test_anglicized_city_matches_danish_city(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 464 | def test_low_score_matches_excluded(self): | CODE |
| LOW⚡ | tests/test_salary_lookup.py | 469 | def test_results_sorted_by_relevance_descending(self): | CODE |
| LOW | tests/test_salary_lookup.py | 44 | def test_text_index_does_not_crash(self): | CODE |
| LOW | tests/test_salary_lookup.py | 60 | def test_format_entry_with_zero_baseline(self): | CODE |
| LOW | tests/test_salary_lookup.py | 75 | def test_format_entry_with_custom_baseline(self): | CODE |
| 195 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/test_apply_records_application.py | 202 | (HTML_REPORT, "## Step 2: Compute Summary Stats", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 207 | (OUTCOME, "## Step 4: Update the Tracker", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 293 | (SKILL, "### Step 1: Research & Evaluate Fit", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 301 | (OUTCOME, "## Step 3: Archive the Application Materials", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 325 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 328 | (APPLY, "## Step 0: Parse Input", "application deadline", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 337 | (OUTCOME, "## Step 1: Load State and Identify the Application", "Deadline urgency", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 340 | (OUTCOME, "## Step 1: Load State and Identify the Application", "never chased", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 342 | (OUTCOME, "## Step 4: Update the Tracker", "preserve every other field of the row", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 361 | (OUTCOME, "## Step 1: Load State and Identify the Application", "no data row is touched", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 367 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 370 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 409 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 418 | (SKILL, "### Step 2: Tailor CV", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 422 | (GMAIL_SYNC, "## Step 2: Load State", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 426 | (INTERVIEW, "## Step 1: Load the Application Context", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 432 | (NOTION_SYNC, "## Step 5: Write the Detail Page", | CODE |
| LOW | tests/test_apply_records_application.py | 126 | outcome_step_1 = section(OUTCOME, "## Step 1: Load State and Identify the Application") | CODE |
| LOW | tests/test_apply_records_application.py | 218 | (GMAIL_SYNC, "## Step 9: Staleness Check", "Skip `drafted` rows here", | CODE |
| LOW | tests/test_apply_records_application.py | 257 | (APPLY, "## Step 0: Parse Input", | CODE |
| LOW | tests/test_apply_records_application.py | 273 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_onboarding_privacy.py | 70 | writes_at = text.index("## Step 3: Generate Profile Files") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 170 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 196 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 216 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 228 | step2_text = section(GMAIL_SYNC, "## Step 2: Load State") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 248 | step4_text = section(NOTION_SYNC, "## Step 4: Upsert Database Rows") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 263 | step3_text = section(NOTION_SYNC, "## Step 3: Load Sync State and Locate the Database") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 310 | "## Step 2: Compute Summary Stats", | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 317 | "## Step 9: Staleness Check", | CODE |
| LOW | tests/test_tracker_status_vocab.py | 136 | step1 = section(OUTCOME, "## Step 1: Load State and Identify the Application") | CODE |
| LOW | tests/test_tracker_status_vocab.py | 147 | step4 = section(OUTCOME, "## Step 4: Update the Tracker") | CODE |
| LOW | tests/test_tracker_status_vocab.py | 334 | "## Step 0: Parse Input", | CODE |
| LOW⚡ | .claude/commands/gmail-sync.md | 11 | ## Step 0: Prerequisites | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 17 | ## Step 1: Parse Input | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 27 | ## Step 2: Load State | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 38 | ## Step 3: Build the Search Query | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 57 | ## Step 4: Filter to New Messages | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 63 | ## Step 5: Classify Each Unprocessed Message | COMMENT |
| LOW | .claude/commands/gmail-sync.md | 81 | ## Step 6: Present Proposed Updates | COMMENT |
| LOW | .claude/commands/gmail-sync.md | 113 | ## Step 7: Wait for Approval | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 140 | ## Step 8: Update State | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 146 | ## Step 9: Staleness Check | COMMENT |
| LOW⚡ | .claude/commands/gmail-sync.md | 154 | ## Step 10: Present Closing Summary | COMMENT |
| LOW | .claude/commands/setup.md | 9 | ## Step 0: Welcome & Choose Path | COMMENT |
| LOW | .claude/commands/setup.md | 348 | ## Step 3: Generate Profile Files | COMMENT |
| LOW | .claude/commands/setup.md | 392 | ## Step 4: Confirm & Next Steps | COMMENT |
| LOW | .claude/commands/expand.md | 9 | ## Step 0: Read Existing Profile Files | COMMENT |
| LOW | .claude/commands/expand.md | 20 | ## Step 1: Discovery — Scan All Sources | COMMENT |
| LOW | .claude/commands/expand.md | 69 | ## Step 2: Web Enrichment | COMMENT |
| LOW | .claude/commands/expand.md | 102 | ## Step 3: Build Competency Map | COMMENT |
| LOW | .claude/commands/expand.md | 121 | ## Step 4: Present Grouped Summary | COMMENT |
| LOW | .claude/commands/expand.md | 167 | ## Step 5: Write Confirmed Additions | COMMENT |
| LOW | .claude/commands/expand.md | 184 | ## Step 6: Summary Report | COMMENT |
| LOW | .claude/commands/rank.md | 11 | ## Step 0: Parse Input | COMMENT |
| LOW | .claude/commands/rank.md | 22 | ## Step 1: Load State | COMMENT |
| LOW | .claude/commands/rank.md | 36 | ## Step 2: Batch-Fetch and Score | COMMENT |
| LOW | .claude/commands/rank.md | 68 | ## Step 3: Aggregate and Rank | COMMENT |
| LOW | .claude/commands/rank.md | 83 | ## Step 4: Update State | COMMENT |
| LOW | .claude/commands/rank.md | 97 | ## Step 5: Present the Shortlist | COMMENT |
| 70 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/test_apply_records_application.py | 202 | (HTML_REPORT, "## Step 2: Compute Summary Stats", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 207 | (OUTCOME, "## Step 4: Update the Tracker", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 293 | (SKILL, "### Step 1: Research & Evaluate Fit", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 301 | (OUTCOME, "## Step 3: Archive the Application Materials", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 325 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 328 | (APPLY, "## Step 0: Parse Input", "application deadline", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 337 | (OUTCOME, "## Step 1: Load State and Identify the Application", "Deadline urgency", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 340 | (OUTCOME, "## Step 1: Load State and Identify the Application", "never chased", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 342 | (OUTCOME, "## Step 4: Update the Tracker", "preserve every other field of the row", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 361 | (OUTCOME, "## Step 1: Load State and Identify the Application", "no data row is touched", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 367 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 370 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 409 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 418 | (SKILL, "### Step 2: Tailor CV", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 422 | (GMAIL_SYNC, "## Step 2: Load State", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 426 | (INTERVIEW, "## Step 1: Load the Application Context", | CODE |
| LOW⚡ | tests/test_apply_records_application.py | 432 | (NOTION_SYNC, "## Step 5: Write the Detail Page", | CODE |
| LOW | tests/test_apply_records_application.py | 126 | outcome_step_1 = section(OUTCOME, "## Step 1: Load State and Identify the Application") | CODE |
| LOW | tests/test_apply_records_application.py | 218 | (GMAIL_SYNC, "## Step 9: Staleness Check", "Skip `drafted` rows here", | CODE |
| LOW | tests/test_apply_records_application.py | 257 | (APPLY, "## Step 0: Parse Input", | CODE |
| LOW | tests/test_apply_records_application.py | 273 | (OUTCOME, "## Step 1: Load State and Identify the Application", | CODE |
| LOW | tests/test_reset_command.py | 102 | step3 = section(SETUP.read_text(encoding="utf-8"), "## Step 3:", "## Step 4:") | CODE |
| LOW⚡ | tests/test_onboarding_privacy.py | 70 | writes_at = text.index("## Step 3: Generate Profile Files") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 170 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 196 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 216 | step1 = section(HTML_REPORT, "## Step 1: Collect Data") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 228 | step2_text = section(GMAIL_SYNC, "## Step 2: Load State") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 248 | step4_text = section(NOTION_SYNC, "## Step 4: Upsert Database Rows") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 263 | step3_text = section(NOTION_SYNC, "## Step 3: Load Sync State and Locate the Database") | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 310 | "## Step 2: Compute Summary Stats", | CODE |
| LOW⚡ | tests/test_tracker_status_vocab.py | 317 | "## Step 9: Staleness Check", | CODE |
| LOW | tests/test_tracker_status_vocab.py | 136 | step1 = section(OUTCOME, "## Step 1: Load State and Identify the Application") | CODE |
| LOW | tests/test_tracker_status_vocab.py | 147 | step4 = section(OUTCOME, "## Step 4: Update the Tracker") | CODE |
| LOW | tests/test_tracker_status_vocab.py | 334 | "## Step 0: Parse Input", | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | tests/test_salary_lookup.py | 23 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/test_salary_lookup.py | 25 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/test_salary_lookup.py | 91 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/test_salary_lookup.py | 93 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/test_salary_lookup.py | 156 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/test_salary_lookup.py | 158 | # --------------------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | salary_lookup.py | 48 | print(f"Error: invalid salary_data.json: {message}", file=sys.stderr) | CODE |
| MEDIUM | salary_lookup.py | 143 | print("Error: salary_data.json not found.", file=sys.stderr) | CODE |
| LOW | tools/robots_check.py | 119 | except Exception as e: | CODE |
| MEDIUM | tools/convert_salary_excel.py | 305 | print(f"Error: File not found: {excel_path}", file=sys.stderr) | CODE |
| MEDIUM | tools/convert_salary_excel.py | 309 | print("Error: openpyxl is required. Install it with: pip install openpyxl", file=sys.stderr) | CODE |
| MEDIUM | tools/convert_salary_excel.py | 327 | print("Error: No data could be parsed from the Excel file.", file=sys.stderr) | CODE |
| MEDIUM | tools/check_upstream_updates.py | 83 | print("Error: No git remotes found.") | CODE |
| MEDIUM | tools/check_upstream_updates.py | 110 | print(f"Error: Ref '{ref}' does not exist. Make sure you fetched and specified the correct branch.") | CODE |
| LOW | tools/verify_pdf.py | 64 | except Exception: | CODE |
| MEDIUM | tools/verify_pdf.py | 168 | print(f"Error: {args.pdf}: {exc}", file=sys.stderr) | CODE |
| MEDIUM | tools/verify_pdf.py | 20 | def run_tool(command): | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | salary_lookup.py | 24 | CODE | |
| LOW | tools/upstream_triage.py | 32 | CODE | |
| LOW | tools/check_framework_version.py | 9 | CODE | |
| LOW | tools/check_upstream_updates.py | 14 | CODE | |
| LOW | tools/check_upstream_updates.py | 16 | CODE | |
| LOW | tests/test_apply_records_application.py | 21 | CODE | |
| LOW | tests/test_upskill_skill.py | 15 | CODE | |
| LOW | tests/test_html_report_command.py | 15 | CODE | |
| LOW | tests/test_rank_command.py | 15 | CODE | |
| LOW | tests/test_notion_sync_command.py | 15 | CODE | |
| LOW | tests/test_outcome_followup.py | 17 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | salary_lookup.py | 54 | CODE | |
| LOW | salary_lookup.py | 292 | CODE | |
| LOW | tools/robots_check.py | 66 | CODE | |
| LOW | tools/convert_salary_excel.py | 57 | CODE | |
| LOW | tools/convert_salary_excel.py | 128 | CODE | |
| LOW | tools/lint_skills.py | 35 | CODE | |
| LOW | tools/security_guards.py | 149 | CODE | |
| LOW | tests/test_salary_lookup.py | 211 | CODE | |
| LOW | tests/test_salary_lookup.py | 294 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/test_placeholder_integrity.py | 40 | .replace("[your.email@example.com]", "jane.doe@example.org") | CODE |
| LOW⚡ | .claude/commands/gmail-sync.md | 46 | - A quoted-name OR-group of the open applications' company names, e.g. `{"Acme Corp" "BigCo"}` | CODE |
| LOW⚡ | .claude/commands/gmail-sync.md | 51 | Example: `newer_than:30d -in:sent -in:drafts ({"Acme Corp" "BigCo"} OR {from:greenhouse.io from:lever.co from:myworkday. | CODE |
| LOW | …/skills/job-application-assistant/04-job-evaluation.md | 209 | "company": "Acme Corp", | CODE |
| LOW | …ills/job-application-assistant/08-application-forms.md | 47 | **Project name.** Give the project a descriptive name, not the employer's name — "Warehouse Inventory Forecasting Platfo | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tools/security_guards.py | 81 | # .claude/skills/upskill/upskill/*.md where the rooted rule cannot see | COMMENT |
| LOW | tools/security_guards.py | 101 | # failure - add an intentional one here in the same PR, exactly as with | COMMENT |
| LOW | .github/upstream-wontport.txt | 1 | # Upstream commits this fork has consciously decided never to port. | COMMENT |
| LOW | .github/workflows/upstream-watch.yml | 1 | # Weekly upstream triage. Reports only - it NEVER merges, pushes, or edits code. | COMMENT |
| LOW | .github/workflows/ci.yml | 1 | # CI for the framework itself: LaTeX smoke compiles, skill/command lint, | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | tests/test_rank_command.py | 260 | "Step 4 must keep an existing stored deadline when the agent returned null, " | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | .claude/commands/html-report.md | 102 | - **Footer:** "Generated by Claude Code · ai-job-search · {ISO date}" | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tools/check_framework_version.py | 33 | # Check if origin/base_ref is fetched | COMMENT |
| LOW | tools/check_framework_version.py | 98 | # Check if it's just frontmatter syntax (e.g. ---) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | README.md | 193 | │ │ ├── job-scraper/ # Job search orchestration | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | salary_lookup.py | 165 | """Normalize string for robust fuzzy matching.""" | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/test_upstream_triage.py | 54 | def set_upstream_to_head(self) -> None: | CODE |