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.

Supervertaler/Supervertaler-Workbench

https://github.com/Supervertaler/Supervertaler-Workbench · scanned 2026-06-16 00:26 UTC (2 months, 2 weeks ago)

137 raw signals (0 security + 137 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 119 actionable findings from 1 signal source. 18 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 83.7/100 with 88.9% coverage. It contains 4013 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 137 findings — concentrated in quality (108), software (21), hardware (3). Risk profile is high: 0 critical, 1 high, 17 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 77 of 119 actionable findings. 137 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 Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/settings.local.json
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/settings.local.json:100 SecretsClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/settings.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/settings.json VerificationClaude instruction
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 — _create_release.py:12
`requests.post(...)` 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 — legacy_versions/Supervertaler_tkinter.py:6145
`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 — legacy_versions/Supervertaler_v2.5.0-CLASSIC.py:3716
`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 — modules/llm_clients.py:1885
`requests.post(...)` 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 — modules/local_llm_setup.py:479
`requests.post(...)` 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 — modules/platform_helpers.py:107
`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 — modules/superdocs_viewer_qt.py:246
`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 — modules/unified_prompt_manager_qt.py:3401
`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 — modules/voice_commands.py:480
`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 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 52 placeholder/mock markers across 22 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Runtime service client appears to use placeholder configuration
A runtime source file appears to wire Supabase/Firebase/AI/payment-style clients to placeholder URLs, keys, or fallback values. In the Fable corpus this often means the UI/API shape is present while the backend service is not actually configured.
Runtime configService clientGenerated repo pattern
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
4 test file(s) for 120 source file(s) (ratio 0.03). Consider adding integration or unit tests for critical paths.
Coverage
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 quality Debug conf 1.00 Debug logging residue appears in source files
Found 583 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 hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: eclipse-temurin:17-jre-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
okapi-sidecar/Dockerfile:13 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: maven:3.9-eclipse-temurin-17
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
okapi-sidecar/Dockerfile:2 containersPinned dependencies
low System graph quality Integrity conf 1.00 19 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: legacy_versions/Supervertaler_v2.5.0-CLASSIC.py:collect_text, legacy_versions/Supervertaler_tkinter.py:collect_text This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or docu…
19 occurrences
repo-level (19 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: legacy_versions/Supervertaler_v2.5.0-CLASSIC.py:format_tracked_changes_context, legacy_versions/Supervertaler_tkinter.py:format_tracked_changes_context, modules/tracked_changes.py:format_tracked_changes_context This is *the* AI-coder failure mode (4×…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_ahk_v1_to_v2` in modules/voice_commands.py:496
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 `_open_clipboard_after_copy` in modules/clipboard_manager_widget.py:1266
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 `_show_custom_prompts_old` in legacy_versions/Supervertaler_tkinter.py:16395
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 `esc_old` in modules/sdlppx_handler.py:631
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 `folders_to_backup` in modules/prompt_library_migration.py:370
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 `img_copy` in modules/figure_context_manager.py:230
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 `send_copy` in modules/platform_helpers.py:975
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 `send_copy` in modules/superlookup.py:97
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 `shortcut_copy` in modules/voice_dictation.py:326
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: apply_formatting_tags
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:838
low System graph software Dead code conf 1.00 Possibly dead Python function: browse_folder
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:8794
low System graph software Dead code conf 1.00 Possibly dead Python function: cleanup_hotkey_processes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:388
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_all_highlights
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:6222
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_highlight
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:6217
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.
Supervertaler.py:4877
low System graph software Dead code conf 1.00 Possibly dead Python function: focus_segment_notes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:9514
low System graph software Dead code conf 1.00 Possibly dead Python function: grid_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:8059
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.
Supervertaler.py:4261
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:8044
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_comment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:1632
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_with_highlight
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:6284
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_filters
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:6855
low System graph software Dead code conf 1.00 Possibly dead Python function: set_background_color
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:5930
low System graph software Dead code conf 1.00 Possibly dead Python function: set_file_boundary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:5926
low System graph software Dead code conf 1.00 Possibly dead Python function: set_local_spellcheck
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:4256
low System graph software Dead code conf 1.00 Possibly dead Python function: set_source_editable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:4085
low System graph software Dead code conf 1.00 Possibly dead Python function: show_completion_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:7927
low System graph software Dead code conf 1.00 Possibly dead Python function: strip_formatting_tags
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:485
low System graph software Dead code conf 1.00 Possibly dead Python function: update_comment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:1623
low System graph software Dead code conf 1.00 Possibly dead Python function: update_display_mode
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
Supervertaler.py:5896
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 — docs/script.js:98
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 Complexity conf 1.00 Very large file: legacy_versions/Supervertaler_tkinter.py (20659 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: legacy_versions/Supervertaler_v2.5.0-CLASSIC.py (5646 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/clipboard_manager_widget.py (1540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/database_manager.py (3196 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/llm_clients.py (1931 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/pdf_rescue_Qt.py (1754 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/platform_helpers.py (1520 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/quicktrans.py (1389 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/sdlppx_handler.py (2270 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/termbase_entry_editor.py (1823 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/termbase_manager.py (1443 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/termlens_widget.py (2540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/tm_manager_qt.py (1376 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/tmx_editor.py (1467 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/tmx_editor_qt.py (2706 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/translation_results_panel.py (2427 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/unified_prompt_library.py (1110 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/unified_prompt_manager_qt.py (6453 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/voice_commands.py (1465 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/voice_tab.py (1378 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: okapi-sidecar/src/main/java/com/supervertaler/sidecar/FilterService.java (1142 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/9691df87-ad7a-4e61-9460-bf5317121591/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/9691df87-ad7a-4e61-9460-bf5317121591/

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.