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.

research-16alpha/stocks-sena-cron

https://github.com/research-16alpha/stocks-sena-cron · scanned 2026-06-15 23:49 UTC (2 months, 3 weeks ago)

132 raw signals (0 security + 132 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v1 · 53 actionable findings from 1 signal source. 79 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 91.7/100 with 88.9% coverage. It contains 1003 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 132 findings — concentrated in cicd (58), quality (44), software (29). Risk profile is low: 0 critical, 0 high, 6 medium. Recommended next step: open the cicd layer findings first — that's where the highest-impact wins live.

Showing 43 of 53 actionable findings. 132 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 Tests conf 1.00 CI is configured but no tests are detected
A CI pipeline exists, but the scan found no test files to gate. Opus labeled this generated-code pattern as config theater: release machinery exists, but it has little behavioral signal.
CI/CDConfig theaterRepo hardening
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — alert_delivery.py:77
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — backfill_bulk_deals.py:117
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — metrics_sentinel.py:103
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 96 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, tests. 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 Debug conf 1.00 Debug logging residue appears in source files
Found 930 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 cicd CI/CD security conf 1.00 58 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 15 locations
.github/workflows/daily-snapshot-refresh.yml:18, 41 (2 hits)
.github/workflows/filings-metadata-backfill.yml:23, 41 (2 hits)
.github/workflows/filings-metadata-daily.yml:17, 39 (2 hits)
.github/workflows/alerts-events.yml:25
.github/workflows/breadth-cron.yml:18
.github/workflows/bse-announcements.yml:21
.github/workflows/bse-annual.yml:24
.github/workflows/bse-delta-filings.yml:19
CI/CD securitySupply chainGithub actions
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: compute_metrics.py:series, compute_metrics.py:s 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.
19 occurrences
repo-level (19 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: backfill_nse_announcements.py:main, backfill_concall_nse.py:main, backfill_insider.py:main 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 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 `bse_legacy` in bundle_merger.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 `list_v2` in populate_bank_master.py:31
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 `mc_csv_legacy` in bse_local_parser.py:1388
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 `nse_v1` in audit_v4.py:2
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: chk_candles
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freshness_monitor.py:152
low System graph software Dead code conf 1.00 Possibly dead Python function: chk_fno
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freshness_monitor.py:179
low System graph software Dead code conf 1.00 Possibly dead Python function: chk_intraday
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freshness_monitor.py:166
low System graph software Dead code conf 1.00 Possibly dead Python function: chk_pcr
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freshness_monitor.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: chk_prices
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freshness_monitor.py:119
low System graph software Dead code conf 1.00 Possibly dead Python function: compute_eps_ttm
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
fix_mcap_pe_coverage.py:92
low System graph software Dead code conf 1.00 Possibly dead Python function: download_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
nse_ar_downloader.py:72
low System graph software Dead code conf 1.00 Possibly dead Python function: extract_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
extract_concall_text.py:56
low System graph software Dead code conf 1.00 Possibly dead Python function: go
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
build_identifier_master.py:113
low System graph software Dead code conf 1.00 Possibly dead Python function: load_stock
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
compute_sector_pe.py:57
low System graph software Dead code conf 1.00 Possibly dead Python function: merge_daily
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
kite_daily_update.py:113
low System graph software Dead code conf 1.00 Possibly dead Python function: one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intraday_movers_cron.py:182
low System graph software Dead code conf 1.00 Possibly dead Python function: patch_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sync_snapshot_to_stock_master.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: patch_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
kite_ltp_fill_gap.py:112
low System graph software Dead code conf 1.00 3 occurrences Possibly dead Python function: process_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
3 files, 3 locations
fix_mcap_pe_coverage.py:144
kite_alias_backfill.py:137
kite_backfill_ohlcv.py:303
low System graph software Dead code conf 1.00 Possibly dead Python function: refresh_intraday
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
kite_daily_update.py:182
low System graph software Dead code conf 1.00 Possibly dead Python function: run_announcements
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_feeds.py:86
low System graph software Dead code conf 1.00 Possibly dead Python function: run_auditor
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_feeds.py:151
low System graph software Dead code conf 1.00 Possibly dead Python function: run_concall
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_feeds.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: run_insider
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_feeds.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: run_pledge
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_feeds.py:182
low System graph software Dead code conf 1.00 Possibly dead Python function: safe_process_symbol
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
daily_snapshot_refresh.py:260
low System graph software Dead code conf 1.00 Possibly dead Python function: scan
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
bse_gap_backfill.py:94
low System graph software Dead code conf 1.00 Possibly dead Python function: stdev
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mood_history_cron.py:69
low System graph software Dead code conf 1.00 3 occurrences Possibly dead Python function: work
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
3 files, 3 locations
bse_results_delta_cron.py:118
fix_face_values.py:120
returns_cron.py:92
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph quality Complexity conf 1.00 Very large file: bse_local_parser.py (1533 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/121af954-5f1d-4087-ab33-d4891ebeb62c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/121af954-5f1d-4087-ab33-d4891ebeb62c/

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.