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.

StevenFAU/Bit-Physics

https://github.com/StevenFAU/Bit-Physics · scanned 2026-06-16 00:23 UTC (2 months, 2 weeks ago)

188 raw signals (0 security + 188 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 132 actionable findings from 1 signal source. 56 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 68.0/100 with 88.9% coverage. It contains 6836 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 188 findings — concentrated in quality (110), cicd (42), software (30). Risk profile is low: 0 critical, 0 high, 62 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 63 of 132 actionable findings. 188 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.

medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/ising-classical/web/src/main.ts:38
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/neural-ca/web/src/main.ts:60
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/reaction-diffusion-2d/web/src/main.ts:42
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 cicd CI/CD security conf 1.00 36 occurrences GitHub Action is tag-pinned rather than SHA-pinned
astral-sh/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 35 locations
.github/workflows/python-strict.yml:22, 96, 136, 186, 235, 287, 347, 394, +10 more (18 hits)
.github/workflows/pypi-release.yml:42, 70, 130 (3 hits)
.github/workflows/binary-release.yml:59, 93 (2 hits)
.github/workflows/preprint-extraction.yml:58, 100 (2 hits)
.github/workflows/render-passes.yml:59, 100 (2 hits)
.github/workflows/web-deploy.yml:51, 75 (2 hits)
.github/workflows/cpp-strict.yml:45
.github/workflows/determinism.yml:21
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 4 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.
4 files, 4 locations
.github/workflows/binary-release.yml
.github/workflows/pypi-release.yml
.github/workflows/render-passes.yml
.github/workflows/web-deploy.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in tools/productization/web-deploy/web/pages/assets/make-loops.mjs:29
Found a known-risky pattern (node_child_process). Review and replace if possible.
tools/productization/web-deploy/web/pages/assets/make-loops.mjs:29 Node child process
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/dispatch/preflight-phase.py:132
`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/integrity/integrity/common/repo.py:52
`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/integrity/integrity/scripts/replay_failing_tests.py:196
`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/integrity/integrity/scripts/replay_prior_phase.py:238
`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/integrity/integrity/scripts/verify_evidence.py:66
`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/productization/binary-release/pipeline.py:249
`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/productization/preprint-extraction/pipeline.py:237
`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/productization/pypi-release/pipeline.py:444
`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/productization/render-passes/pipeline.py:211
`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/productization/web-build/validate.py:44
`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/productization/web-deploy/pipeline.py:135
`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/testkit/lfs_migration/_gen_red_evidence.py:48
`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/testkit/lfs_migration/_helpers.py:53
`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 network Security conf 1.00 Privileged port 198 in use
Port 198 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/render-passes.yml Ports
medium System graph network Security conf 1.00 Privileged port 256 in use
Port 256 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/preprint-extraction.yml Ports
medium System graph network Security conf 1.00 Privileged port 73 in use
Port 73 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/preprint-extraction.yml Ports
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 247 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 cicd CI/CD security conf 1.00 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/cache@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 163, 442
.github/workflows/python-strict.yml:163, 442 (2 hits)
CI/CD securitySupply chainGithub actions
low System graph quality Integrity conf 1.00 18 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: common/common-warp/src/common_warp/sparse/mask.py:topology_hash, common/common-warp/src/common_warp/sparse/mask.py:topology_hash This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consol…
18 occurrences
repo-level (18 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: references/Chakazul-Lenia/Python/LeniaND.py:run_gpu, references/Chakazul-Lenia/Python/LeniaND.py:run, references/Chakazul-Lenia/Python/LeniaF.py:run_gpu, references/Chakazul-Lenia/Python/LeniaF.py:run This is *the* AI-coder failure mode (4× more dupl…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: common/common-warp/src/common_warp/autodiff/finite_diff.py:step, common/common-warp/src/common_warp/autodiff/finite_diff.py:step, common/common-warp/src/common_warp/autodiff/finite_diff.py:step, common/common-warp/src/common_warp/autodiff/finite_diff.…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `field_old` in references/Chakazul-Lenia/Python/LeniaND.py:290
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_common_py_reader_round_trips_legacy` in common/common-py/tests/test_legacy_reader_roundtrip.py:39
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: add_densification_stats
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:471
low System graph software Dead code conf 1.00 Possibly dead Python function: build_covariance_from_scaling_rotation
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:33
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:2461
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:3585
low System graph software Dead code conf 1.00 Possibly dead Python function: combine_worlds
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:2219
low System graph software Dead code conf 1.00 Possibly dead Python function: combine_worlds
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:3300
low System graph software Dead code conf 1.00 Possibly dead Python function: convert_font_run_once
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:1057
low System graph software Dead code conf 1.00 Possibly dead Python function: convert_font_run_once
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:1475
low System graph software Dead code conf 1.00 Possibly dead Python function: create_colormap_flat
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:2166
low System graph software Dead code conf 1.00 Possibly dead Python function: create_from_pcd
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:149
low System graph software Dead code conf 1.00 Possibly dead Python function: densify_and_prune
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:452
low System graph software Dead code conf 1.00 Possibly dead Python function: draw_params
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:1584
low System graph software Dead code conf 1.00 Possibly dead Python function: focal2fov
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/utils/graphics_utils.py:76
low System graph software Dead code conf 1.00 Possibly dead Python function: fov2focal
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/utils/graphics_utils.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: geom_transform_points
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/utils/graphics_utils.py:22
low System graph software Dead code conf 1.00 Possibly dead Python function: getWorld2View
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/utils/graphics_utils.py:31
low System graph software Dead code conf 1.00 Possibly dead Python function: invalidate_segment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:774
low System graph software Dead code conf 1.00 Possibly dead Python function: invalidate_segment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:1038
low System graph software Dead code conf 1.00 Possibly dead Python function: key_press_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:1995
low System graph software Dead code conf 1.00 Possibly dead Python function: key_press_event
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:3015
low System graph software Dead code conf 1.00 Possibly dead Python function: mode
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:548
low System graph software Dead code conf 1.00 Possibly dead Python function: mode
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:806
low System graph software Dead code conf 1.00 Possibly dead Python function: oneupSHdegree
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:145
low System graph software Dead code conf 1.00 Possibly dead Python function: print_help
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:2512
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_opacity
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:258
low System graph software Dead code conf 1.00 Possibly dead Python function: restore
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:84
low System graph software Dead code conf 1.00 Possibly dead Python function: restore_to
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaND.py:266
low System graph software Dead code conf 1.00 Possibly dead Python function: restore_to
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/Chakazul-Lenia/Python/LeniaF.py:441
low System graph software Dead code conf 1.00 Possibly dead Python function: SH2RGB
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/utils/sh_utils.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: update_learning_rate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
references/3DGS-reference/scene/gaussian_model.py:213
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 quality Complexity conf 1.00 Very large file: references/Chakazul-Lenia/Python/LeniaF.py (3679 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: references/Chakazul-Lenia/Python/LeniaND.py (2534 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/11c596f9-a644-4efd-990f-e4b948891ca1/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/11c596f9-a644-4efd-990f-e4b948891ca1/

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.