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.
158 of your 219 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 129.52s for a 238.6 MB repo slow.
  • Repobility's analysis ran in 20.05s after the clone landed.

OpenBB-finance/OpenBB

https://github.com/OpenBB-finance/OpenBB · scanned 2026-06-05 08:41 UTC (5 days, 19 hours ago) · 10 languages

813 raw signals (209 security + 604 graph) 11/13 scanners ran 69th percentile · Python · large (100-500K LoC) System graph score 54 (higher by 28)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

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

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 40.0 0.15 6.00
security_score 100.0 0.25 25.00
testing_score 96.0 0.20 19.20
documentation_score 84.0 0.15 12.60
practices_score 94.0 0.15 14.10
code_quality 49.0 0.10 4.90
Overall 1.00 81.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (82/100). Dimensions: security 100, maintainability 40. 209 findings (47 security). 284,558 lines analyzed.

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

high Security checks quality Quality conf 1.00 ✓ Repobility 5 occurrences [MINED107] Missing import: `string` used but not imported: The file uses `string.something(...)` but never imports `string`. This raises NameError at runtime the first time the line executes.
Add `import string` at the top of the file.
5 files, 5 locations
assets/scripts/generate_extension_data.py:50
cli/openbb_cli/config/completer.py:406
openbb_platform/core/openbb_core/app/utils.py:123
openbb_platform/core/openbb_core/provider/utils/options_chains_properties.py:328
openbb_platform/providers/sec/openbb_sec/models/sec_filing.py:516
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
openbb_platform/providers/ecb/openbb_ecb/utils/ecb_helpers.py:30
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self._build_paths` used but never assigned in __init__: Method `_build_paths` of class `ArgparseClassProcessor` reads `self._build_paths`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self._build_paths = <default>` in __init__, or add a class-level default.
6 files, 25 locations
cli/openbb_cli/argparse_translator/argparse_translator.py:301, 365, 402, 407, 410, 424, 425, 465, +4 more (13 hits)
cli/openbb_cli/argparse_translator/obbject_registry.py:24, 34, 36 (3 hits)
cli/openbb_cli/argparse_translator/reference_processor.py:97, 108, 109 (3 hits)
cli/openbb_cli/controllers/base_controller.py:138, 181, 247 (3 hits)
cli/openbb_cli/session.py:93 (2 hits)
cli/openbb_cli/argparse_translator/argparse_class_processor.py:146
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED110] Blocking call `input` inside async function `download_data`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
openbb_platform/providers/sec/openbb_sec/utils/form4.py:528
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /fomc_documents_download has no auth: Handler `fomc_documents_download` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py:29
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /open_document has no auth: Handler `post_open_document` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
openbb_platform/providers/nasdaq/openbb_nasdaq/app.py:257
high Security checks software dependencies conf 0.90 ✓ Repobility 8 occurrences [MINED131] pre-commit hook `https://github.com/pre-commit/pre-commit-hooks` pinned to mutable rev `v5.0.0`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/pre-commit-hooks` at `rev: v5.0.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
lines 2, 13, 17, 21, 33, 45, 58, 83
.pre-commit-config.yaml:2, 13, 17, 21, 33, 45, 58, 83 (8 hits)
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 68 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
12 files, 66 locations
.github/workflows/test-unit-desktop-win64.yml:25, 28, 58, 71, 81, 98 (11 hits)
.github/workflows/test-unit-desktop-winARM.yml:25, 28, 58, 72, 82, 99 (11 hits)
.github/workflows/build-desktop-osx64.yml:28, 44, 54, 62, 110 (10 hits)
.github/workflows/build-desktop-osxARM.yml:28, 44, 54, 62, 110 (10 hits)
.github/workflows/build-desktop-win64.yml:32, 62, 134, 144, 255 (5 hits)
.github/workflows/test-unit-desktop-osx64.yml:29, 42, 52, 69 (4 hits)
.github/workflows/test-unit-desktop-osxARM.yml:29, 45, 55, 72 (4 hits)
.github/workflows/test-unit-cli.yml:27, 31, 38 (3 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 4 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `github/codeql-action/init` pinned to mutable ref `@v4`: `uses: github/codeql-action/init@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-ch…
lines 74, 103
.github/workflows/codeql.yml:74, 103 (4 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks security auth conf 0.83 Secret-like setting is echoed into a password input value
Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time.
desktop/src/routes/backends.tsx:450
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — openbb_platform/providers/nasdaq/openbb_nasdaq/app.py:191
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
openbb_platform/providers/nasdaq/openbb_nasdaq/app.py:191 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `fomc_documents_download` without auth dependency — openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py:24
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py:24 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in desktop/src-tauri/src/main.rs:408
Found a known-risky pattern (eval_used). Review and replace if possible.
desktop/src-tauri/src/main.rs:408 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in openbb_platform/obbject_extensions/charting/openbb_charting/core/backend.py:307
Found a known-risky pattern (eval_used). Review and replace if possible.
openbb_platform/obbject_extensions/charting/openbb_charting/core/backend.py:307 Eval used
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in openbb_platform/core/openbb_core/provider/utils/helpers.py:171
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
openbb_platform/core/openbb_core/provider/utils/helpers.py:171 Tls verify false
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
low Security checks quality Error handling conf 1.00 [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
cookiecutter/openbb_cookiecutter/template/hooks/post_gen_project.py:99
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
desktop/src/components/BackendLogsPage.tsx:158
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `bar_increasing_decreasing` (list): `def bar_increasing_decreasing(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def bar_increasing_decreasing(x=None): x = x or []`
openbb_platform/obbject_extensions/charting/openbb_charting/charts/generic_charts.py:509
medium Security checks software dependencies conf 0.90 ✓ Repobility 5 occurrences [MINED124] requirements.txt: `apache-beam` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reproducible installs need exact pins.
Replace `apache-beam` with `apache-beam==<version>` and manage upgrades through PRs / Dependabot.
2 files, 5 locations
examples/streamlit/requirements.txt:1, 2, 3 (3 hits)
examples/openbb-apachebeam/requirements.txt:1, 2 (2 hits)
medium Security checks security path traversal conf 1.00 [SEC012] ZipSlip — Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory.
Validate extracted paths with os.path.realpath() and ensure they stay within the target directory.
openbb_platform/providers/cboe/openbb_cboe/models/options_chains.py:148
low Security checks quality Quality conf 1.00 3 occurrences [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
3 files, 3 locations
openbb_platform/providers/cftc/openbb_cftc/cftc_router.py:146
openbb_platform/providers/fmp/openbb_fmp/models/government_trades.py:192
openbb_platform/providers/government_us/openbb_government_us/models/weather_bulletin.py:94
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
openbb_platform/extensions/mcp_server/openbb_mcp_server/utils/app_import.py:8
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
desktop/src/routes/backends.tsx:83
low Security checks quality Error handling conf 0.55 ✓ Repobility 24 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
12 files, 24 locations
cli/openbb_cli/controllers/utils.py:57, 92, 129, 955 (4 hits)
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:532, 647, 758, 771 (4 hits)
openbb_platform/obbject_extensions/charting/openbb_charting/charts/generic_charts.py:84, 124, 398, 554 (4 hits)
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:874, 966 (2 hits)
openbb_platform/obbject_extensions/charting/openbb_charting/core/plotly_ta/data_classes.py:200, 211 (2 hits)
openbb_platform/obbject_extensions/charting/openbb_charting/core/plotly_ta/ta_class.py:344, 524 (2 hits)
cli/openbb_cli/controllers/base_platform_controller.py:273
cli/openbb_cli/controllers/choices.py:339
Error handlingquality
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
openbb_platform/obbject_extensions/charting/installation.md:70
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
desktop/README.md:47
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — desktop/src/components/BackendLogsPage.tsx:253
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — desktop/src/components/JupyterLogsPage.tsx:345
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — desktop/src/components/AddExtensionSelector.tsx:246
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 — desktop/src/components/InstallComponents.tsx:243
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 — desktop/src/routes/installation-progress.tsx:194
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 cicd CI/CD security conf 1.00 5 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.
5 files, 5 locations
.github/workflows/build-desktop-osx64.yml
.github/workflows/build-desktop-osxARM.yml
.github/workflows/build-desktop-win64.yml
.github/workflows/draft-release.yml
.github/workflows/release-desktop.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in desktop/src/components/BackendLogsPage.tsx:253
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
desktop/src/components/BackendLogsPage.tsx:253 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in desktop/src/components/JupyterLogsPage.tsx:345
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
desktop/src/components/JupyterLogsPage.tsx:345 Dangerous innerhtml
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — openbb_platform/core/openbb_core/app/static/utils/linters.py:61
`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 — openbb_platform/dev_install.py:143
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
low Security checks software Race condition conf 1.00 [SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason.
Use `os.open(path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)` for atomic create-only. Use `tempfile.NamedTemporaryFile()` (not `mktemp`). For locking, use `fcntl.flock`.
cookiecutter/openbb_cookiecutter/template/hooks/post_gen_project.py:27
low Security checks quality Quality conf 0.60 26 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 12 locations
cli/openbb_cli/controllers/choices.py:29
desktop/src/components/InstallComponents.tsx:29
desktop/src/components/JupyterLogsPage.tsx:16
openbb_platform/core/openbb_core/provider/standard_models/bond_reference.py:10
openbb_platform/core/openbb_core/provider/standard_models/commercial_paper.py:24
openbb_platform/core/openbb_core/provider/standard_models/currency_historical.py:36
openbb_platform/core/openbb_core/provider/standard_models/forward_sales_estimates.py:23
openbb_platform/core/openbb_core/provider/standard_models/futures_curve.py:22
duplicationquality
low Security checks quality Quality conf 0.70 Generated build artifact directory is present at repository root
Remove generated output from version control, add it to .gitignore and .dockerignore where relevant, and regenerate it in CI or release jobs.
build:1
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cli/openbb_cli/config/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/hooks/pre_gen_project.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/providers/{{cookiecutter.provider_name}}/models/ohlc_example.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/providers/{{cookiecutter.provider_name}}/utils/helpers.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/routers/depends.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/routers/{{cookiecutter.router_name}}.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/routers/{{cookiecutter.router_name}}_views.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/postcss.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/components/SearchBar.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/components/Toast.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/main.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/routeTree.gen.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/AddExtensionSelector.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/BackendLogsPage.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/Icon.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/InstallComponents.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/JupyterLogsPage.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/components/SearchBar.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/routes/api-keys.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/routes/backends.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/routes/index.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/routes/setup.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/tests/routes/tauri-mock.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/src/vite-env.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/tailwind.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/vite.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: desktop/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/core/openbb_core/app/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/core/openbb_core/app/model/abstract/results.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/core/openbb_core/provider/utils/descriptions.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/extensions/derivatives/openbb_derivatives/derivatives_router.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/extensions/regulators/openbb_regulators/regulators_router.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/obbject_extensions/charting/openbb_charting/styles/colors.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/bls/openbb_bls/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/congress_gov/openbb_congress_gov/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/econdb/openbb_econdb/utils/yield_curves.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/eia/openbb_us_eia/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/famafrench/openbb_famafrench/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/federal_reserve/openbb_federal_reserve/utils/primary_dealer_statistics.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/finviz/openbb_finviz/utils/definitions.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/fmp/openbb_fmp/utils/definitions.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/government_us/openbb_government_us/utils/psd_codes.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/imf/openbb_imf/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/oecd/openbb_oecd/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/sec/openbb_sec/utils/definitions.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/sec/openbb_sec/utils/statement_schema/_rules.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/tests/utils/credentials_schema.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/tmx/openbb_tmx/utils/gql.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/tradier/openbb_tradier/utils/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: openbb_platform/providers/tradingeconomics/openbb_tradingeconomics/utils/countries.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 188 places
Functions with the same first-5-line body hash: openbb_platform/providers/famafrench/openbb_famafrench/famafrench_router.py:factors, openbb_platform/providers/famafrench/openbb_famafrench/famafrench_router.py:us_portfolio_returns, openbb_platform/providers/famafrench/openbb_famafrench/famafrench_ro…
duplicatesduplication
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: cli/openbb_cli/config/completer.py:get_completions, cli/openbb_cli/config/completer.py:get_completions 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…
19 occurrences
repo-level (19 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_signature_v2` in openbb_platform/providers/bls/openbb_bls/__init__.py:9
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 `cell_copy` in openbb_platform/providers/sec/openbb_sec/utils/html2markdown.py:8035
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 `commercial_positions_long_old` in openbb_platform/providers/cftc/openbb_cftc/models/cot.py:125
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 `function_name_v2` in openbb_platform/extensions/tests/conftest.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 `get_all_company_news_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/world_news.py:22
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 `get_company_filings_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/company_filings.py:25
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 `get_company_fundamentals_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/balance_sheet.py:22
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 `get_company_fundamentals_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/cash_flow.py:23
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 `get_company_fundamentals_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/financial_ratios.py:23
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 `get_company_fundamentals_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/income_statement.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 `get_company_fundamentals_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/reported_financials.py:26
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 `get_company_ipos_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/calendar_ipo.py:22
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 `get_company_news_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/company_news.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 `get_company_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/equity_info.py:20
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 `get_data_point_number_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/latest_attributes.py:21
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 `get_economic_index_historical_data_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/fred_series.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 `get_etf_holdings_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/etf_holdings.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 `get_etf_stats_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/etf_price_performance.py:26
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 `get_etf_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/etf_info.py:23
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 `get_forex_pairs_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/currency_pairs.py:19
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 `get_historical_data_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/historical_attributes.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 `get_historical_data_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/historical_market_cap.py:20
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 `get_options_chain_eod_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/options_chains.py:25
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 `get_options_snapshots_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/options_snapshots.py:26
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 `get_security_insider_ownership_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/institutional_ownership.py:22
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 `get_security_interval_prices_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/equity_historical.py:32
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 `get_security_realtime_price_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/equity_quote.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 `get_security_snapshots_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py:23
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 `get_security_stock_price_adjustments_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/historical_dividends.py:22
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 `get_stock_market_index_historical_data_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/index_historical.py:22
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 `get_unusual_activity_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/options_unusual.py:34
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 `get_zacks_sales__v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/price_target_consensus.py:28
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 `get_zacks_sales_estimates_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/forward_ebitda_estimates.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 `get_zacks_sales_estimates_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/forward_eps_estimates.py:28
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 `get_zacks_sales_estimates_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/forward_sales_estimates.py:28
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 `insider_transaction_filings_by_company_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/insider_trading.py:26
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 `kwargs_copy` in openbb_platform/core/openbb_core/app/command_runner.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 `kwargs_copy` in openbb_platform/core/tests/api/test_router/test_commands_dataclass.py:8
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 openbb_platform/core/openbb_core/api/router/commands.py:206
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 openbb_platform/providers/benzinga/openbb_benzinga/models/world_news.py:156
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 openbb_platform/providers/fmp/openbb_fmp/models/insider_trading.py:151
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 `route_copy` in openbb_platform/extensions/platform_api/openbb_platform_api/utils/widgets.py:298
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 `search_companies_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/equity_search.py:24
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 `search_data_tags_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/search_attributes.py:19
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 `search_etfs_v2` in openbb_platform/providers/intrinio/openbb_intrinio/models/etf_search.py:22
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 `summarize_changelog_v2` in .github/scripts/summarize_changelog.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 `test_build_command_method_signature_deprecated` in openbb_platform/core/tests/app/static/test_package_builder.py:321
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_call_n_rows_v2` in cli/tests/test_controllers_settings_controller.py:119
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 `working_copy` in cookiecutter/openbb_cookiecutter/template/{{cookiecutter.project_tag}}/{{cookiecutter.package_name}}/obbject/{{cookiecutter.obbject_name}}/__init__.py:60
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_histplot
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:268
low System graph software Dead code conf 1.00 Possibly dead Python function: add_hline_legend
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:522
low System graph software Dead code conf 1.00 Possibly dead Python function: add_trend
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: add_vline_legend
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:559
low System graph software Dead code conf 1.00 Possibly dead Python function: bar_increasing_decreasing
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charts/generic_charts.py:509
low System graph software Dead code conf 1.00 Possibly dead Python function: calculate_returns
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charts/helpers.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: call_cls
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:241
low System graph software Dead code conf 1.00 Possibly dead Python function: call_home
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:245
low System graph software Dead code conf 1.00 Possibly dead Python function: call_quit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:257
low System graph software Dead code conf 1.00 Possibly dead Python function: call_record
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:286
low System graph software Dead code conf 1.00 Possibly dead Python function: call_results
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:509
low System graph software Dead code conf 1.00 Possibly dead Python function: call_settings
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/cli_controller.py:283
low System graph software Dead code conf 1.00 Possibly dead Python function: call_stop
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/base_controller.py:426
low System graph software Dead code conf 1.00 Possibly dead Python function: check_filenames
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/utils.py:586
low System graph software Dead code conf 1.00 Possibly dead Python function: create_3d_surface
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:357
low System graph software Dead code conf 1.00 Possibly dead Python function: create_bar_chart
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:275
low System graph software Dead code conf 1.00 Possibly dead Python function: create_correlation_matrix
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:416
low System graph software Dead code conf 1.00 Possibly dead Python function: destroy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/dummy_backend.py:30
low System graph software Dead code conf 1.00 Possibly dead Python function: duration_to_months
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charts/helpers.py:109
low System graph software Dead code conf 1.00 Possibly dead Python function: horizontal_legend
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py:596
low System graph software Dead code conf 1.00 Possibly dead Python function: method_call_class
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/cli_controller.py:106
low System graph software Dead code conf 1.00 Possibly dead Python function: method_call_command
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/controllers/cli_controller.py:112
low System graph software Dead code conf 1.00 Possibly dead Python function: to_title
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
assets/scripts/generate_extension_data.py:19
low System graph software Dead code conf 1.00 Possibly dead Python function: toggle_chart_style
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:666
low System graph software Dead code conf 1.00 Possibly dead Python function: translate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/argparse_translator/argparse_translator.py:518
low System graph software Dead code conf 1.00 Possibly dead Python function: url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charting.py:761
low System graph software Dead code conf 1.00 Possibly dead Python function: wrapper_func
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/openbb_cli/argparse_translator/argparse_translator.py:526
low System graph software Dead code conf 1.00 Possibly dead Python function: z_score_standardization
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
openbb_platform/obbject_extensions/charting/openbb_charting/charts/helpers.py:35
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — desktop/src/components/AddExtensionSelector.tsx:407
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 — desktop/src/components/InstallComponents.tsx:401
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 — desktop/src/components/JupyterLogsPage.tsx:154
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 — desktop/src/routes/__root.tsx:197
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 — desktop/src/routes/backends.tsx:658
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 — desktop/src/routes/environments.tsx:454
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 — desktop/src/routes/index.tsx:10
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 — desktop/src/routes/installation-progress.tsx:824
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 — desktop/src/routes/setup.tsx:82
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 — desktop/src/tests/routes/environments.test.tsx:418
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 `command` (body is just `pass`/`return`) — openbb_platform/core/openbb_core/app/router.py:80
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `validate` (body is just `pass`/`return`) — openbb_platform/core/openbb_core/app/static/utils/decorators.py:18
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: GET /
`openbb_platform/extensions/platform_api/openbb_platform_api/main.py` declares `GET /` 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 cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /agents.json
`openbb_platform/extensions/platform_api/openbb_platform_api/main.py` declares `GET /agents.json` 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 documenti…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /apps.json
`openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py` declares `GET /apps.json` 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 docu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /command_model
`openbb_platform/core/openbb_core/api/router/coverage.py` declares `GET /command_model` 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 con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /commands
`openbb_platform/core/openbb_core/api/router/coverage.py` declares `GET /commands` 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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /dividend_calendar
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /dividend_calendar` 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 c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /earnings_calendar
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /earnings_calendar` 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 c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /economic_calendar
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /economic_calendar` 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 c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /fomc_documents_choices
`openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py` declares `GET /fomc_documents_choices` 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 rem…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /get_symbol_choices
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /get_symbol_choices` 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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /historical_dividends
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /historical_dividends` 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: GET /ipo_calendar
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /ipo_calendar` 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 consum…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /me
`openbb_platform/core/openbb_core/api/router/user.py` declares `GET /me` 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: GET /open_document
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `GET /open_document` 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 consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /providers
`openbb_platform/core/openbb_core/api/router/coverage.py` declares `GET /providers` 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 consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /widgets.json
`openbb_platform/extensions/platform_api/openbb_platform_api/main.py` declares `GET /widgets.json` 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 document…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /fomc_documents_download
`openbb_platform/providers/federal_reserve/openbb_federal_reserve/router.py` declares `POST /fomc_documents_download` 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 r…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /open_document
`openbb_platform/providers/nasdaq/openbb_nasdaq/app.py` declares `POST /open_document` 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 cons…
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: desktop/src-tauri/src/tauri_handlers/backends.rs (2000 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src-tauri/src/tauri_handlers/environments.rs (3888 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src-tauri/src/tauri_handlers/helpers.rs (2806 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src-tauri/src/tauri_handlers/startup.rs (1883 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src/routes/backends.tsx (2741 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src/routes/environments.tsx (3419 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: desktop/src/routes/installation-progress.tsx (1609 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/core/openbb_core/app/static/package_builder.py (4340 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/core/openbb_core/provider/utils/options_chains_properties.py (1829 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/extensions/equity/integration/test_equity_api.py (2261 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/extensions/equity/integration/test_equity_python.py (2110 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/extensions/technical/openbb_technical/technical_router.py (1916 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/obbject_extensions/charting/openbb_charting/core/openbb_figure.py (1582 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/cftc/openbb_cftc/models/cot.py (2061 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/famafrench/openbb_famafrench/utils/constants.py (2328 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/finviz/openbb_finviz/utils/screener_helper.py (2112 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/government_us/openbb_government_us/utils/psd_codes.py (1987 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/government_us/tests/test_psd_template_parser.py (1396 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/imf/openbb_imf/utils/metadata.py (2170 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/imf/openbb_imf/utils/query_builder.py (1454 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/imf/openbb_imf/utils/table_builder.py (1551 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/imf/openbb_imf/utils/table_presentation.py (2408 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/openbb_sec/models/management_discussion_analysis.py (1650 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/openbb_sec/utils/html2markdown.py (8145 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/openbb_sec/utils/statement_schema/_imputation.py (1796 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/openbb_sec/utils/xbrl_taxonomy_helper.py (3443 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/tests/test_company_facts.py (2645 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: openbb_platform/providers/sec/validate_corpus.py (1561 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/da3afbd6-b22e-417f-9da1-027a2a4a2210/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/da3afbd6-b22e-417f-9da1-027a2a4a2210/

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.