Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
92 of your 132 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 54.52s for a 151.4 MB repo slow.
  • Repobility's analysis ran in 24.19s after the clone landed.

CleverRaven/Cataclysm-DDA

https://github.com/CleverRaven/Cataclysm-DDA · scanned 2026-06-05 20:11 UTC (4 days, 14 hours ago) · 10 languages

322 raw signals (124 security + 198 graph) 11/13 scanners ran System graph score 87 (lower by 4)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 14 hours ago · v2 · 123 actionable findings from 2 signal sources. 99 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 76.0 0.20 15.20
documentation_score 75.0 0.15 11.25
practices_score 96.0 0.15 14.40
code_quality 41.0 0.10 4.10
Overall 1.00 82.7
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (83/100). Dimensions: security 100, maintainability 85. 124 findings (21 security). 963,058 lines analyzed.

Showing 90 of 123 actionable findings. 222 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED107] Missing import: `json` used but not imported: The file uses `json.something(...)` but never imports `json`. This raises NameError at runtime the first time the line executes.
Add `import json` at the top of the file.
12 files, 12 locations
lang/string_extractor/parsers/ammunition_type.py:5
lang/string_extractor/parsers/body_part.py:11
lang/string_extractor/parsers/city.py:5
lang/string_extractor/parsers/examine_action.py:20
lang/string_extractor/parsers/faction.py:8
lang/string_extractor/parsers/fault_fix.py:11
lang/string_extractor/parsers/gate.py:5
lang/string_extractor/parsers/item_action.py:6
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED036] Python Os System Call: os.system() invokes shell with no escaping.
Review and fix per the pattern semantics. See CWE-78 / for context.
3 files, 3 locations
tools/json_tools/adjust_values.py:32
tools/json_tools/convert_armor.py:298
tools/json_tools/convert_item_damage.py:119
high Security checks quality Quality conf 1.00 ✓ Repobility 24 occurrences [MINED108] `self._summ_type` used but never assigned in __init__: Method `summ_type` of class `CDDAPullRequest` reads `self._summ_type`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self._summ_type = <default>` in __init__, or add a class-level default.
2 files, 24 locations
tools/generate_changelog.py:180, 184, 188, 189, 203, 213, 215, 216, +3 more (18 hits)
tools/windows_limit_memory.py:533, 624, 633, 648, 650, 651 (6 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED117] Workflow declares `permissions: write-all`: The job's GITHUB_TOKEN gets EVERY permission scope. If the workflow is ever compromised (mutable action, fork PR, injected step), the attacker can push to main, publish packages, alter releases. Use least-privilege by listing only the scopes the job actually needs.
Replace with a scoped block: `permissions:\n contents: read\n issues: write` (only the scopes you need).
2 files, 3 locations
.github/workflows/release.yml:31, 271 (2 hits)
.github/workflows/release-android-bundle.yaml:8
high Security checks software dependencies conf 0.90 ✓ Repobility 6 occurrences [MINED118] Dockerfile FROM `mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04` not pinned by digest: `FROM mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
5 files, 6 locations
tools/llama/gcc-focal/Dockerfile:1, 2 (2 hits)
.devcontainer/Dockerfile:1
.devcontainer/cross-compile/Dockerfile:1
.devcontainer/graphical/Dockerfile:1
build-scripts/Dockerfile.debian-build:8
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `android/gradle/wrapper/gradle-wrapper.jar` committed in source repo: `android/gradle/wrapper/gradle-wrapper.jar` is a .jar binary (58,910 bytes) committed to a repo that otherwise has 1780 source files. Trojan binaries inside otherwise-normal source repos are a known supply-chain attack: a compromised dependency or PR slips in a binary that gets executed by build scripts.
Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source.
android/gradle/wrapper/gradle-wrapper.jar:1
high Security checks security Injection conf 0.50 [SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.
Use parameterized queries: cursor.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters.
lang/string_extractor/parsers/mission_definition.py:26
high Security checks security path traversal conf 0.80 [SEC013] Path Traversal — User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files.
Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads.
tools/json_tools/update-translate-dialogue-mod.py:75
high Security checks cicd CI/CD security conf 0.92 Dockerfile copies the entire context without .dockerignore
Create .dockerignore before using broad context copies, or copy only the required files and directories.
build-scripts/Dockerfile.debian-build:64 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 6 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/upload-artifact` pinned to mutable ref `@v4`: `uses: actions/upload-artifact@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char c…
2 files, 6 locations
.github/workflows/sdl3-matrix.yml:119, 156 (4 hits)
.github/workflows/release.yml:142 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `parse_dynamic_line` (list): `def parse_dynamic_line(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def parse_dynamic_line(x=None): x = x or []`
lang/string_extractor/parsers/talk_topic.py:50
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `write_to_pot` (list): `def write_to_pot(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def write_to_pot(x=None): x = x or []`
lang/string_extractor/pot_export.py:121
low Security checks security Injection conf 0.50 3 occurrences [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
3 files, 3 locations
tools/json_tools/adjust_values.py:32
tools/json_tools/convert_armor.py:298
tools/json_tools/convert_item_damage.py:119
medium Security checks quality Quality conf 1.00 [SEC123] Production stack trace / debug output exposed: Debug mode left on in production exposes stack traces, environment variables, framework internals — sometimes triggers RCE (Django debug page with arbitrary template eval).
Set DEBUG=False / APP_DEBUG=false in production. Provide a generic 500 handler that logs to backend but returns a sanitized page to clients.
src/third-party/snmalloc/ds_core/defines.h:123
medium Security checks quality Quality Average file size is 550 lines (recommend <300)
Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle — each module should have one clear purpose.
low Security checks quality Error handling conf 0.55 ✓ Repobility 4 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
4 files, 4 locations
tools/json_tools/cddatags.py:71
tools/json_tools/lister.py:48
tools/json_tools/update-translate-dialogue-mod.py:82
tools/json_tools/util.py:38
Error handlingquality
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 4 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
4 files, 4 locations
.devcontainer/Dockerfile:1
.devcontainer/cross-compile/Dockerfile:1
.devcontainer/graphical/Dockerfile:1
tools/llama/gcc-focal/Dockerfile:2
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 4 occurrences Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
4 files, 4 locations
.devcontainer/Dockerfile:3
.devcontainer/cross-compile/Dockerfile:25
.devcontainer/graphical/Dockerfile:3
tools/llama/gcc-focal/Dockerfile:3
CI/CD securitycontainers
high Security checks quality Quality conf 0.82 Parallel implementation file sits beside a canonical file
Merge the intended change into the canonical file, update tests/imports, and delete the parallel implementation if it is not the active entry point.
lang/string_extractor/parsers/fault_fix.py:1
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes.
tools/gfx_tools/png_update.py:1
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: ghcr.io/nelhage/llama
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
tools/llama/gcc-focal/Dockerfile:1 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: .devcontainer/cross-compile/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: .devcontainer/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: .devcontainer/graphical/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: tools/llama/gcc-focal/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 3 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
3 files, 3 locations
.github/workflows/release-android-bundle.yaml
.github/workflows/release.yml
.github/workflows/stale.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in tools/generate_changelog.py:446
Found a known-risky pattern (weak_hash). Review and replace if possible.
tools/generate_changelog.py:446 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — build-scripts/ci-iwyu-run.py:116
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — build-scripts/get_affected_files.py:99
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/build_shaders.py:67
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/generate_changelog.py:470
`urllib.request.urlopen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/update_blueprint_needs.py:137
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
4 test file(s) for 175 source file(s) (ratio 0.02). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks quality Quality conf 0.64 Duplicate top-level symbol appears in a patch-style file
Keep one authoritative implementation, update imports to point at it, and remove or rename the duplicate symbol.
tools/gfx_tools/png_update.py:1
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
tools/gfx_tools/png_update.py:1
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 3 occurrences Docker base image is tag-pinned but not digest-pinned: mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
3 files, 3 locations
.devcontainer/Dockerfile:1
.devcontainer/cross-compile/Dockerfile:1
.devcontainer/graphical/Dockerfile:1
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ubuntu:focal
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
tools/llama/gcc-focal/Dockerfile:2 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/gen_dictionary.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/gfx_tools/list_tileset_ids.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/generate_overlay_ids.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/keys.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/list_duplicates.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/lister.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/pluck.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/splitter.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/json_tools/values.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/spell_check.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/spell_check_pr.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/spell_check_unit_test.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 12 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: build-scripts/post-diff-as-comments.py:parse_hunks, build-scripts/post-diff-as-comments.py:parse_hunk This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they'…
12 occurrences
repo-level (12 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: tools/merge_maps.py:get_data, tools/copy_from.py:get_data, tools/vehicle_reformatter.py:get_data This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're se…
7 occurrences
repo-level (7 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: tools/generate_changelog.py:is_active, tools/generate_changelog.py:is_active, tools/generate_changelog.py:is_active, tools/generate_changelog.py:is_active This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.h…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `can_copy` in tools/copy_from.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_tile_entries_for_unused` in tools/gfx_tools/compose.py:369
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: dummy_parser
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parser.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: extract_eoc_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/recipe.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_ammunition_type
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/ammunition_type.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_body_part
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/body_part.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_character_mod
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/character_mod.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_city
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/city.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_faction
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/faction.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_fault_fix
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/fault_fix.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_gate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/gate.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_generic
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/generic.py:64
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_item_action
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/item_action.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_item_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/item_category.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_keybinding
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/keybinding.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_limb_score
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/limb_score.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_map_extra
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/map_extra.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_martial_art
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/martial_art.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_morale_type
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/morale_type.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_mutation_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/mutation_category.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_npc
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/npc.py:80
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_npc_class
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/npc_class.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_palette
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/palette.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_proficiency_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/proficiency_category.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_recipe
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/recipe.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_recipe_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/recipe_category.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_shopkeeper_blacklist
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/shop_blacklist.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_speed_description
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/speed_description.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_sub_body_part
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/sub_body_part.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_vehicle_part_location
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/vehicle_part_location.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_weakpoint_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/weakpoint_set.py:5
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_weapon_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lang/string_extractor/parsers/weapon_category.py:4
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — build-scripts/generate-release-notes.js:103
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `dummy_parser` (body is just `pass`/`return`) — lang/string_extractor/parser.py:99
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: tools/generate_changelog.py (1393 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/74ca0b50-7228-42e5-8a73-a70ebe684044/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/74ca0b50-7228-42e5-8a73-a70ebe684044/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.