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.

dgunning/edgartools

https://github.com/dgunning/edgartools · scanned 2026-06-17 02:01 UTC (1 month, 1 week ago)

171 raw signals (0 security + 171 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -22.0 (diff) · 156 actionable findings from 1 signal source. 15 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
Scan summary Repository scanned at 54.7/100 with 77.8% coverage. It contains 16415 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 171 findings — concentrated in quality (131), software (25), security (8). Risk profile is high: 0 critical, 8 high, 18 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 97 of 156 actionable findings. 171 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: edgar/xbrl/CLAUDE.md
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.
edgar/xbrl/CLAUDE.md:60 SecretsClaude instruction
high System graph security security conf 1.00 Insecure pattern 'eval_used' in edgar/attachments.py:618
Found a known-risky pattern (eval_used). Review and replace if possible.
edgar/attachments.py:618 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in scripts/capture_finding_companies.py:67
Found a known-risky pattern (eval_used). Review and replace if possible.
scripts/capture_finding_companies.py:67 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in edgar/ai/evaluation/evaluators.py:175
Found a known-risky pattern (exec_used). Review and replace if possible.
edgar/ai/evaluation/evaluators.py:175 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in scripts/capture_finding_companies.py:63
Found a known-risky pattern (exec_used). Review and replace if possible.
scripts/capture_finding_companies.py:63 Exec used
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in edgar/filesystem.py:213
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
edgar/filesystem.py:213 Tls verify false
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in scripts/check_diagnostic_states.py:9
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
scripts/check_diagnostic_states.py:9 Tls verify false
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in scripts/diagnose_ssl.py:275
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
scripts/diagnose_ssl.py:275 Tls verify false
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/agents/docs-writer.md
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/agents/docs-writer.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/agents/notebook-writer.md
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/agents/notebook-writer.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/implement.md
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/commands/implement.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/task.md
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/commands/task.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/triage.md
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/commands/triage.md VerificationClaude instruction
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 hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: ghcr.io/charmbracelet/vhs:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
scripts/vhs/Dockerfile:10 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: scripts/vhs/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 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.
.github/workflows/release-publish.yml CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/capture_finding_companies.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/capture_sec_viewer.py:36
`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 Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 37 placeholder/mock markers across 23 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 2893 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 14 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/manual/check_entity_facts.py:load_entity_facts, scripts/batch/batch_entity_facts.py:load_entity_facts This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document w…
14 occurrences
repo-level (14 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 23 places
Functions with the same first-5-line body hash: edgar/form144.py:to_context, edgar/muniadvisors.py:to_context, edgar/effect.py:to_context, edgar/xbrl/statements.py:to_context This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolid…
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: edgar/form144.py:to_dict, edgar/form144.py:to_dict, edgar/form144.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: scripts/harness/models.py:to_dict, scripts/harness/models.py:to_dict, scripts/harness/models.py:to_dict, scripts/harness/models.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygien…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: scripts/harness/runner.py:run_tests, scripts/harness/runner.py:run, scripts/harness/runner.py:run, scripts/harness/runner.py:run This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consol…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `days_old` in edgar/_filings.py:646
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 `demo_company_card_v2` in edgar/display/demo.py:86
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 `df_old` in tests/test_statement_view.py:83
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 `filings_10k_copy` in tests/test_entity_filings.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 `filings_copy` in tests/test_filing.py:499
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 `filings_old` in docs/examples/formtype_demo_examples.py:39
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `is_deprecated` in edgar/xbrl/standardization/reverse_index.py:45
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 `is_v2` in edgar/funds/nmfp3.py:531
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 `normalize_unit_legacy` in edgar/entity/unit_handling.py:445
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `only_old` in scripts/manual/compare_section_detection.py:139
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `only_old` in tests/test_section_detection_comparison.py:110
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 `original_path_backup` in tests/test_storage_management.py:414
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 `parse_with_old` in scripts/manual/check_parser_comparison.py:80
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 `period_copy` in edgar/xbrl/stitching/periods.py:252
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 `statement_mappings_v1` in edgar/entity/mappings_loader.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 `statement_mappings_v1` in edgar/entity/training/run_learning.py:936
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 `statement_mappings_v1` in edgar/entity/training/view.py:466
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 `table_soup_copy` in edgar/markdown.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 `test_company_text_deprecated` in tests/test_ai_text_methods.py:116
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_cover_page_other_managers_deprecated` in tests/issues/regression/test_issue_523_13f_other_managers_summary_page.py:111
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_get_known_returns_copy` in tests/test_abstract_detection.py:79
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_install_skill_fallback_to_copy` in tests/test_ai_skill_export.py:597
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_units_returns_copy` in tests/test_earnings.py:165
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 `text_legacy` in tests/issues/regression/test_issue_462_legacy_8k_items.py:86
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: benchmark_filing
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/harness/runner.py:263
low System graph software Dead code conf 1.00 Possibly dead Python function: check_file_numbers
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/batch/perf_header.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: check_regression
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/harness/runner.py:346
low System graph software Dead code conf 1.00 Possibly dead Python function: compare_filing
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/harness/runner.py:108
low System graph software Dead code conf 1.00 Possibly dead Python function: compare_with_working_filing
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/xbrl_parsing_reproduction.py:207
low System graph software Dead code conf 1.00 Possibly dead Python function: investigate_custom_pattern
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/quick_investigate.py:169
low System graph software Dead code conf 1.00 Possibly dead Python function: investigate_empty_periods
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/quick_investigate.py:33
low System graph software Dead code conf 1.00 Possibly dead Python function: investigate_entity_facts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/quick_investigate.py:133
low System graph software Dead code conf 1.00 Possibly dead Python function: investigate_xbrl_parsing
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/quick_investigate.py:96
low System graph software Dead code conf 1.00 Possibly dead Python function: patched_sections
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/debug_toc_detector_exception.py:23
low System graph software Dead code conf 1.00 Possibly dead Python function: sample_and_test
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/manual/insider_html.com.py:6
low System graph software Dead code conf 1.00 Possibly dead Python function: setup_minio
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_cloud_storage.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: setup_r2
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_cloud_storage.py:50
low System graph software Dead code conf 1.00 Possibly dead Python function: setup_s3
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_cloud_storage.py:42
low System graph software Dead code conf 1.00 Possibly dead Python function: show_balance_sheet
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/batch/perf_financials.py:24
low System graph software Dead code conf 1.00 Possibly dead Python function: show_income_statement
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/batch/perf_financials.py:17
low System graph software Dead code conf 1.00 Possibly dead Python function: test_context_handling
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/xbrl_parsing_reproduction.py:174
low System graph software Dead code conf 1.00 Possibly dead Python function: test_element_mapping
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/xbrl_parsing_reproduction.py:142
low System graph software Dead code conf 1.00 Possibly dead Python function: test_facts_caching
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/entity_facts_reproduction.py:194
low System graph software Dead code conf 1.00 Possibly dead Python function: test_multiple_filings
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/empty_periods_reproduction.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: test_specific_financial_concepts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
tools/templates/entity_facts_reproduction.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: traced_parse
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/trace_htmlparser_hang.py:49
low System graph quality Integrity conf 1.00 Stub function `get_part` (body is just `pass`/`return`) — edgar/company_reports/_structures.py:33
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: edgar/_filings.py (2776 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/ai/evaluation/test_cases.py (1451 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/documents/extractors/pattern_section_extractor.py (1326 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/documents/utils/toc_analyzer.py (1545 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/earnings.py (1918 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/entity/core.py (1788 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/entity/enhanced_statement.py (3025 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/entity/entity_facts.py (2601 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/entity/training/run_learning.py (1221 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/files/html.py (1770 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/funds/reports.py (1662 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/offerings/formc.py (1240 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/offerings/prospectus.py (1785 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/proxy/core.py (1282 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/proxy/html_extractor.py (1363 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/thirteenf/models.py (1445 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/analysis/ratios.py (1351 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/facts.py (1812 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/rendering.py (2202 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/statement_resolver.py (1306 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/statements.py (3592 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: edgar/xbrl/xbrl.py (2899 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_entity_facts.py (1447 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_ttm.py (1869 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/ee465fa8-5a8b-4817-9945-12c31f5a7d01/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ee465fa8-5a8b-4817-9945-12c31f5a7d01/

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.