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.

simonrowland/regolith-pyrolysis-simulator

https://github.com/simonrowland/regolith-pyrolysis-simulator · scanned 2026-06-16 00:13 UTC (2 months, 2 weeks ago)

205 raw signals (0 security + 205 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 188 actionable findings from 1 signal source. 17 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 82.8/100 with 88.9% coverage. It contains 7135 nodes across 29 cross-layer flows, written primarily in mixed languages. Engine surfaced 205 findings — concentrated in quality (142), api (29), software (24). Risk profile is high: 0 critical, 4 high, 9 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 112 of 188 actionable findings. 205 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 System graph security auth conf 1.00 Flask mutation route `optimizer_certify_submit` without `@login_required` — web/routes.py:1983
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
web/routes.py:1983 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `optimizer_certify_submit` without `@login_required` — web/routes.py:1984
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
web/routes.py:1984 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `optimizer_job_submit` without `@login_required` — web/routes.py:2004
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
web/routes.py:2004 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `optimizer_job_submit` without `@login_required` — web/routes.py:2005
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
web/routes.py:2005 securityAuth flask unauth route
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — web/static/js/simulator-controls.js:357
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — install-dependencies.py:138
`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 — install-engines.py:226
`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 — scripts/grind_status.py:26
`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 — scripts/recipe_db_build.py:39
`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.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
low System graph quality Integrity conf 1.00 10 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `DYLD_FALLBACK_LIBRARY_PATH`, `FIDELITY_DIAGNOSTIC_STUB_HIGH`, `FIDELITY_HIGH_BACKEND`, `FIDELITY_HIGH_HOURS`, `FIDELITY_SKIP_PROFILE_CONSTRAINTS`, `OPTIMIZER_RUNS_DIR`, `REGOLITH_HOST`, `REGOLITH_PORT` + 2 more. Add them (with a placeholder/commen…
config drift
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 144 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 17 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: engines/builtin/condensation_route.py:dispatch, engines/builtin/evaporation_transition.py:dispatch 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 …
17 occurrences
repo-level (17 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: engines/alphamelts/subprocess_runner.py:equilibrate_via_subprocess, engines/alphamelts/petthermo.py:equilibrate_via_python_api, engines/alphamelts/thermoengine.py:equilibrate_via_thermoengine This is *the* AI-coder failure mode (4× more duplication i…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: _attic/factsage/factsage.py:equilibrate, simulator/melt_backend/base.py:equilibrate, simulator/melt_backend/base.py:equilibrate, simulator/melt_backend/alphamelts.py:equilibrate This is *the* AI-coder failure mode (4× more duplication in vibe-coded r…
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_artifact_copy` in tests/test_optimizer_results_store.py:201
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 `_migrate_objective_values_v2` in simulator/optimize/results_store.py:497
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 `_profile_copy` in tests/test_optimizer_profiles.py:27
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 `C_legacy` in tests/test_pipe_conductance_m_avg.py:161
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 `lunar_mare_jsc_1a_legacy` in tests/test_vpr_p4_feedstocks.py:17
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 `mol_Al_consumed_legacy` in tests/chemistry/test_builtin_metallothermic_step_provider.py:1123
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 `oxide_mol_fraction_p_fO2_v2` in simulator/evaporation.py:353
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 `test_inactive_metal_species_do_not_diverge_between_provider_and_legacy` in tests/chemistry/test_builtin_vapor_pressure_provider.py:250
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 `test_seed_job_cache_creates_empty_shard_without_base_copy` in tests/test_grind_scratch_reduction.py:135
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 `vaporock_v1` in simulator/runner.py:2811
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 `vaporock_v1` in tests/test_runner_smoke.py:853
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: beskok_karniadakis_civan_alpha
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/transport_regime.py:366
low System graph software Dead code conf 1.00 Possibly dead Python function: build_sio_tsweep_convergence_markdown
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/runner.py:2137
low System graph software Dead code conf 1.00 Possibly dead Python function: canonical_composition_mol
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/reduced_real_determinism.py:241
low System graph software Dead code conf 1.00 Possibly dead Python function: canonical_physics_bucket_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/reduced_real_determinism.py:1649
low System graph software Dead code conf 1.00 Possibly dead Python function: clone_for_replay
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/reduced_real_determinism.py:179
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_composition
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:148
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_run
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: estimate_total_energy_kWh
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/electrolysis.py:291
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_branch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/decision_tree.py:82
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_c6_proceed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/decision_tree.py:115
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_path
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/decision_tree.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_root_branch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/decision_tree.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_ti_retention
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/decision_tree.py:101
low System graph software Dead code conf 1.00 Possibly dead Python function: is_mars_stype_feedstock
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/build_c6_manifests.py:48
low System graph software Dead code conf 1.00 Possibly dead Python function: load_all
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:144
low System graph software Dead code conf 1.00 Possibly dead Python function: load_harness_yaml
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/stage0_harness.py:639
low System graph software Dead code conf 1.00 Possibly dead Python function: load_run
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:92
low System graph software Dead code conf 1.00 Possibly dead Python function: operator_decisions
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/session.py:514
low System graph software Dead code conf 1.00 Possibly dead Python function: per_hour_summaries
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/session.py:511
low System graph software Dead code conf 1.00 Possibly dead Python function: run_pair
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/recipe_db_build.py:31
low System graph software Dead code conf 1.00 Possibly dead Python function: save_composition
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: save_run
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/persistence.py:55
low System graph software Dead code conf 1.00 Possibly dead Python function: silica_fume_fraction_of_feedstock
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simulator/condensation.py:515
low System graph software Dead code conf 1.00 Possibly dead Python function: timed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/populate_reduced_real_cache.py:294
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — web/static/js/simulator-decisions.js:7
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 frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — web/static/js/simulator-socket.js:41
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 `exec_module` (body is just `pass`/`return`) — simulator/runner.py:3297
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`web/routes.py` declares `ANY /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/additive-calc/<key>
`web/routes.py` declares `ANY /api/additive-calc/<key>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/ceramic-rump
`web/routes.py` declares `ANY /api/ceramic-rump` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/feedstock/<key>
`web/routes.py` declares `ANY /api/feedstock/<key>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/feedstocks
`web/routes.py` declares `ANY /api/feedstocks` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/knudsen-config
`web/routes.py` declares `ANY /api/knudsen-config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/mre-preset-catalog
`web/routes.py` declares `ANY /api/mre-preset-catalog` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/certify
`web/routes.py` declares `ANY /api/optimizer/certify` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/feedstock-profiles
`web/routes.py` declares `ANY /api/optimizer/feedstock-profiles` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/jobs
`web/routes.py` declares `ANY /api/optimizer/jobs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/jobs/<job_id>
`web/routes.py` declares `ANY /api/optimizer/jobs/<job_id>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/leaderboard
`web/routes.py` declares `ANY /api/optimizer/leaderboard` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/optimizer/runs
`web/routes.py` declares `ANY /api/optimizer/runs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/setpoints
`web/routes.py` declares `ANY /api/setpoints` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/wall-risk
`web/routes.py` declares `ANY /api/wall-risk` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer
`web/routes.py` declares `ANY /optimizer` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer/certify
`web/routes.py` declares `ANY /optimizer/certify` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer/jobs
`web/routes.py` declares `ANY /optimizer/jobs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer/jobs/<job_id>
`web/routes.py` declares `ANY /optimizer/jobs/<job_id>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer/runs/<path:run_id>/results/<cache_key>
`web/routes.py` declares `ANY /optimizer/runs/<path:run_id>/results/<cache_key>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /optimizer/runs/<path:run_id>/results/<cache_key>/recipe.yaml
`web/routes.py` declares `ANY /optimizer/runs/<path:run_id>/results/<cache_key>/recipe.yaml` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/ceramic-rump-panel
`web/routes.py` declares `ANY /partials/ceramic-rump-panel` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/disclosure/<section>
`web/routes.py` declares `ANY /partials/disclosure/<section>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/feedstock-card/<key>
`web/routes.py` declares `ANY /partials/feedstock-card/<key>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/mre-preset-catalog
`web/routes.py` declares `ANY /partials/mre-preset-catalog` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/optimizer-jobs
`web/routes.py` declares `ANY /partials/optimizer-jobs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/optimizer-jobs/<job_id>
`web/routes.py` declares `ANY /partials/optimizer-jobs/<job_id>` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/optimizer-table
`web/routes.py` declares `ANY /partials/optimizer-table` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /partials/wall-risk-panel
`web/routes.py` declares `ANY /partials/wall-risk-panel` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: _attic/factsage/factsage.py (1362 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engines/builtin/metallothermic_step.py (1374 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engines/builtin/stage0_pretreatment.py (1387 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: scripts/epoch_grind.py (1577 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/accounting/queries.py (1787 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/campaigns.py (1229 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/condensation.py (2480 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/core.py (5807 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/evaporation.py (1421 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/extraction.py (1262 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/melt_backend/alphamelts.py (2241 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/melt_backend/magemin.py (1301 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/optimize/evaluate.py (3496 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/optimize/objective.py (3543 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/optimize/strategy/staged.py (1346 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/optimize/study.py (2285 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/reduced_real_determinism.py (2822 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: simulator/runner.py (3335 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/chemistry/corpus_fixtures.py (1603 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/chemistry/test_corpus_anchored_parity.py (1614 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_feedstock_inventory.py (1420 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_optimizer_evaluate.py (2770 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_optimizer_study.py (2142 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_web_optimizer.py (1953 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: web/routes.py (2258 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/210fdaef-b2f8-4c6c-b843-79885cbc4937/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/210fdaef-b2f8-4c6c-b843-79885cbc4937/

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.