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.

Safronus/bpdp-manager

https://github.com/Safronus/bpdp-manager · scanned 2026-06-15 23:59 UTC (2 months, 3 weeks ago)

100 raw signals (0 security + 100 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v1 · 84 actionable findings from 1 signal source. 16 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.4/100 with 55.6% coverage. It contains 2598 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 100 findings — concentrated in quality (75), software (22), frontend (1). Risk profile is low: 0 critical, 0 high, 12 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 71 of 84 actionable findings. 100 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 Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
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 — src/bpdpmanager/services/update_checker.py:150
`subprocess.Popen(...)` 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 — src/bpdpmanager/ui/_os_actions.py:40
`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 — src/bpdpmanager/ui/backup_dialog.py:178
`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 — src/bpdpmanager/ui/harmonogram_tab.py:284
`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 — src/bpdpmanager/ui/profile_manage_dialog.py:292
`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 — src/bpdpmanager/ui/send_file_dialog.py:42
`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 — src/bpdpmanager/ui/send_reviews_dialog.py:89
`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
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 14 placeholder/mock markers across 4 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 8 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 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: src/bpdpmanager/models/enums.py:color, src/bpdpmanager/models/enums.py:color 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 separate.
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: src/bpdpmanager/services/thesis_service.py:find_duplicate_appendices, src/bpdpmanager/services/thesis_service.py:find, src/bpdpmanager/services/thesis_service.py:find This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see …
3 occurrences
repo-level (3 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: src/bpdpmanager/ui/stag_check.py:start, src/bpdpmanager/ui/stag_check.py:start, src/bpdpmanager/ui/stag_check.py:start, src/bpdpmanager/ui/stag_check.py:start This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://…
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: src/bpdpmanager/models/enums.py:label, src/bpdpmanager/models/enums.py:label, src/bpdpmanager/models/enums.py:label, src/bpdpmanager/models/enums.py:label This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.h…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_make_backup` in src/bpdpmanager/ui/swapped_docs_dialog.py:148
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 `btn_legacy` in src/bpdpmanager/ui/welcome_dialog.py:74
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 `chk_show_old` in src/bpdpmanager/ui/widgets/documents_widget.py:104
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_backup` in src/bpdpmanager/services/backup_manager.py:72
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_backup` in src/bpdpmanager/storage/json_repository.py:70
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_backup` in src/bpdpmanager/ui/backup_dialog.py:132
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_backup` in src/bpdpmanager/ui/defense_reclassify_dialog.py:228
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_backup` in src/bpdpmanager/ui/main_window.py:1764
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_backup` in src/bpdpmanager/ui/profile_export_dialog.py:660
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_backup` in src/bpdpmanager/ui/stag_consistency_dialog.py:325
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_backup` in src/bpdpmanager/ui/stag_import_dialog.py:1363
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_backup` in src/bpdpmanager/ui/stag_sync_dialog.py:553
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_backup` in tests/test_import_revert.py:29
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 `import_legacy` in src/bpdpmanager/services/profile_manager.py:128
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 `model_copy` in src/bpdpmanager/services/thesis_export.py:361
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 `model_copy` in src/bpdpmanager/services/thesis_service.py:1995
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 `only_old` in tests/test_komise_stats.py:323
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 `op_old` in tests/test_send_reviews_dialog.py:103
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_appendix_generic_name_falls_back_to_v2` in tests/test_file_naming.py:64
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_backup_now_creates_manual_backup` in tests/test_backup_now.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 `test_cleanup_supervisor_titles_also_fixes_opposing_copy` in tests/test_name_titles.py:63
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 `title_cs_with_copy` in src/bpdpmanager/ui/thesis_detail.py:1015
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: cb
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/stag_consistency_dialog.py:415
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_active_data_dir
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/config.py:82
low System graph software Dead code conf 1.00 Possibly dead Python function: contextMenuEvent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/widgets/spell_text_edit.py:61
low System graph software Dead code conf 1.00 Possibly dead Python function: default_template_specs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:2005
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_review
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:2350
low System graph software Dead code conf 1.00 Possibly dead Python function: download_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/stag_api.py:339
low System graph software Dead code conf 1.00 Possibly dead Python function: dropEvent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/manage_dialogs.py:125
low System graph software Dead code conf 1.00 Possibly dead Python function: generate_review_from_template
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:2101
low System graph software Dead code conf 1.00 Possibly dead Python function: highlightBlock
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/widgets/spell_text_edit.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: list_academic_years
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:455
low System graph software Dead code conf 1.00 Possibly dead Python function: paintEvent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/stats_tab.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: paintEvent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/komise_tab.py:1567
low System graph software Dead code conf 1.00 Possibly dead Python function: predicate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/main_window.py:319
low System graph software Dead code conf 1.00 Possibly dead Python function: repl
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/xlsx_pdf_polish.py:311
low System graph software Dead code conf 1.00 Possibly dead Python function: repl
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/xlsx_image_in_cell.py:273
low System graph software Dead code conf 1.00 Possibly dead Python function: review_sent_indicator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/models/enums.py:220
low System graph software Dead code conf 1.00 Possibly dead Python function: set_last_stag_import_dir
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/profile_manager.py:251
low System graph software Dead code conf 1.00 Possibly dead Python function: theses_by_year_and_type
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:787
low System graph software Dead code conf 1.00 Possibly dead Python function: upcoming_dates_all_years
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:1728
low System graph software Dead code conf 1.00 Possibly dead Python function: upsert_committee
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/services/thesis_service.py:2737
low System graph software Dead code conf 1.00 Possibly dead Python function: work
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/stag_sync_dialog.py:318
low System graph software Dead code conf 1.00 Possibly dead Python function: work
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/bpdpmanager/ui/defense_reclassify_dialog.py:145
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: src/bpdpmanager/i18n/en.py (1243 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/services/thesis_service.py (3711 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/komise_tab.py (1914 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/main_window.py (2431 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/manage_dialogs.py (1290 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/review_templates_dialog.py (1216 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/stag_import_dialog.py (3576 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/theses_tree.py (1223 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/bpdpmanager/ui/thesis_detail.py (1746 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/acd776fc-3f5a-411c-abb4-f4d454286543/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/acd776fc-3f5a-411c-abb4-f4d454286543/

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.