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.

rozavala/dramatic_options

https://github.com/rozavala/dramatic_options · scanned 2026-06-16 04:37 UTC (1 month, 3 weeks ago)

59 raw signals (0 security + 59 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 3 weeks ago · v1 · 49 actionable findings from 1 signal source. 10 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 73.0/100 with 77.8% coverage. It contains 426 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 59 findings — concentrated in software (27), quality (27), network (3). Risk profile is low: 0 critical, 0 high, 9 medium. Recommended next step: open the software layer findings first — that's where the highest-impact wins live.

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

medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: CLAUDE.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.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license, ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph network Security conf 1.00 Privileged port 15 in use
Port 15 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
deploy.sh Ports
medium System graph network Security conf 1.00 Privileged port 45 in use
Port 45 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
deploy.sh Ports
medium System graph network Security conf 1.00 Privileged port 8 in use
Port 8 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
deploy.sh Ports
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
1 test file(s) for 32 source file(s) (ratio 0.03). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Integrity conf 1.00 6 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `DRAMATIC_CACHE_DIR`, `DRAMATIC_DB`, `DRAMATIC_SKIP_DOTENV`, `KILL`, `OPENAI_API_KEY`, `PERPLEXITY_API_KEY`. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: state.py:record_convexity_eval, state.py:record_council_proposal 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.
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: paper_loop.py:run_paper_cycle, fixed_basket.py:run_fixed_basket_3a_cycle, shadow_book.py:run_shadow_cycle 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 t…
8 occurrences
repo-level (8 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: convexity_data.py:option_mid, convexity_data.py:option_mid, convexity_data.py:option_mid, convexity_data.py:option_mid This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or d…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fundamentals_v1` in orchestrator.py:145
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: account_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:343
low System graph software Dead code conf 1.00 Possibly dead Python function: attribution_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:544
low System graph software Dead code conf 1.00 Possibly dead Python function: cap_binding_flow
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:654
low System graph software Dead code conf 1.00 Possibly dead Python function: council_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:781
low System graph software Dead code conf 1.00 Possibly dead Python function: council_proposal_for_position
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
state.py:893
low System graph software Dead code conf 1.00 Possibly dead Python function: curation_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:812
low System graph software Dead code conf 1.00 Possibly dead Python function: data_gathered_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:827
low System graph software Dead code conf 1.00 Possibly dead Python function: funnel_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:604
low System graph software Dead code conf 1.00 Possibly dead Python function: gate_dualread_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:895
low System graph software Dead code conf 1.00 Possibly dead Python function: grounding_attribution_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
grounding_attribution.py:103
low System graph software Dead code conf 1.00 Possibly dead Python function: header_status
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:250
low System graph software Dead code conf 1.00 Possibly dead Python function: latest_run_deliberation
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:792
low System graph software Dead code conf 1.00 Possibly dead Python function: market_context
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:675
low System graph software Dead code conf 1.00 Possibly dead Python function: members
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
universe.py:56
low System graph software Dead code conf 1.00 Possibly dead Python function: null_hierarchy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:520
low System graph software Dead code conf 1.00 Possibly dead Python function: performance_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:497
low System graph software Dead code conf 1.00 Possibly dead Python function: positions_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:717
low System graph software Dead code conf 1.00 Possibly dead Python function: record_agent_output
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
state.py:784
low System graph software Dead code conf 1.00 Possibly dead Python function: record_council_proposal
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
state.py:741
low System graph software Dead code conf 1.00 Possibly dead Python function: record_signals
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
state.py:78
low System graph software Dead code conf 1.00 Possibly dead Python function: regime_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:384
low System graph software Dead code conf 1.00 Possibly dead Python function: revalidate_active
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sentinels.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: risk_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:305
low System graph software Dead code conf 1.00 Possibly dead Python function: sentinel_by_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
state.py:1073
low System graph software Dead code conf 1.00 Possibly dead Python function: sentinels_panel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:703
low System graph software Dead code conf 1.00 Possibly dead Python function: summarize_put_tradability
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
options_tradability.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: t4_scoreboard
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
dashboard_data.py:847
low System graph quality Complexity conf 1.00 Very large file: dashboard_data.py (970 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/ac5dcf4d-c69f-4745-8959-6037c0622515/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ac5dcf4d-c69f-4745-8959-6037c0622515/

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.