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.

Rivega42/autom_for_varnaev

https://github.com/Rivega42/autom_for_varnaev · scanned 2026-06-15 23:52 UTC (2 months, 3 weeks ago)

146 raw signals (0 security + 146 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v1 · 113 actionable findings from 1 signal source. 33 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 37.0/100 with 100.0% coverage. It contains 2081 nodes across 5 cross-layer flows, written primarily in mixed languages. Engine surfaced 146 findings — concentrated in quality (59), security (36), software (20). Risk profile is high: 0 critical, 32 high, 16 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 109 of 113 actionable findings. 146 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 api Wiring conf 1.00 Dangling fetch: POST /api/v1/analytics-events (services/api-gateway/api_gateway/static/live-embed.mjs:132)
`services/api-gateway/api_gateway/static/live-embed.mjs:132` calls `POST /api/v1/analytics-events` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/analytics-events` If this points at an external API, prefix it wit…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/analytics-events (services/api-gateway/api_gateway/static/live-embed.mjs:142)
`services/api-gateway/api_gateway/static/live-embed.mjs:142` calls `POST /api/v1/analytics-events` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/analytics-events` If this points at an external API, prefix it wit…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `remove_camera` without auth dependency — services/api-gateway/api_gateway/app.py:523
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:523 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_cleaning_rule` without auth dependency — services/api-gateway/api_gateway/app.py:675
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:675 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_presence_rule` without auth dependency — services/api-gateway/api_gateway/app.py:714
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:714 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_schedule` without auth dependency — services/api-gateway/api_gateway/app.py:754
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:754 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_threshold` without auth dependency — services/api-gateway/api_gateway/app.py:612
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:612 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_zone` without auth dependency — services/api-gateway/api_gateway/app.py:584
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:584 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_camera` without auth dependency — services/api-gateway/api_gateway/app.py:515
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:515 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_cleaning_rule` without auth dependency — services/api-gateway/api_gateway/app.py:667
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:667 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_presence_rule` without auth dependency — services/api-gateway/api_gateway/app.py:706
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:706 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_schedule` without auth dependency — services/api-gateway/api_gateway/app.py:740
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:740 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_threshold` without auth dependency — services/api-gateway/api_gateway/app.py:604
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:604 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_zone` without auth dependency — services/api-gateway/api_gateway/app.py:576
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:576 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `acknowledge_event` without auth dependency — services/log-service/log_service/app.py:100
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/log-service/log_service/app.py:100 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `integration_post_task` without auth dependency — services/api-gateway/api_gateway/integration.py:61
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/integration.py:61 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_analysis_task` without auth dependency — services/api-gateway/api_gateway/app.py:377
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:377 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_analytics_event` without auth dependency — services/api-gateway/api_gateway/app.py:295
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:295 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_camera_zone` without auth dependency — services/api-gateway/api_gateway/app.py:569
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:569 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_camera` without auth dependency — services/api-gateway/api_gateway/app.py:501
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:501 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_cleaning_rule` without auth dependency — services/api-gateway/api_gateway/app.py:652
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:652 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_event_ack` without auth dependency — services/api-gateway/api_gateway/app.py:288
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:288 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_presence_rule` without auth dependency — services/api-gateway/api_gateway/app.py:690
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:690 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_room` without auth dependency — services/api-gateway/api_gateway/app.py:458
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:458 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_schedule` without auth dependency — services/api-gateway/api_gateway/app.py:729
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:729 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_sensor_node` without auth dependency — services/api-gateway/api_gateway/app.py:476
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:476 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_threshold` without auth dependency — services/api-gateway/api_gateway/app.py:599
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:599 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `receive_event` without auth dependency — services/log-service/log_service/app.py:49
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/log-service/log_service/app.py:49 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `integration_put_settings` without auth dependency — services/api-gateway/api_gateway/integration.py:91
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/integration.py:91 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `put_aura_status` without auth dependency — services/api-gateway/api_gateway/app.py:248
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:248 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `put_license` without auth dependency — services/api-gateway/api_gateway/app.py:232
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/api-gateway/api_gateway/app.py:232 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'new_function_used' in services/video-analytics-node/src/mediapipe.mjs:150
Found a known-risky pattern (new_function_used). Review and replace if possible.
services/video-analytics-node/src/mediapipe.mjs:150 New function used
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — services/api-gateway/api_gateway/static/live-embed.mjs:142
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 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, lockfile. 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 cicd CI/CD security conf 1.00 4 occurrences GitHub Action is tag-pinned rather than SHA-pinned
docker/setup-buildx-action@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 4 locations
.github/workflows/ci.yml:100, 103 (2 hits)
.github/workflows/release-build.yml:26, 29 (2 hits)
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in services/api-gateway/api_gateway/static/app.js:176
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
services/api-gateway/api_gateway/static/app.js:176 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in services/api-gateway/api_gateway/static/live-embed.mjs:55
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
services/api-gateway/api_gateway/static/live-embed.mjs:55 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in services/api-gateway/api_gateway/static/live.html:274
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
services/api-gateway/api_gateway/static/live.html:274 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in services/video-analytics/reference/motion-log.html:271
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
services/video-analytics/reference/motion-log.html:271 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in services/video-analytics-node/src/ffmpeg.mjs:18
Found a known-risky pattern (node_child_process). Review and replace if possible.
services/video-analytics-node/src/ffmpeg.mjs:18 Node child process
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/backup_db.py:74
`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.). 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 network Security conf 1.00 Privileged port 10 in use
Port 10 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
integration/aura_integration.openapi.yaml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
integration/aura_integration.openapi.yaml Ports
medium System graph network Security conf 1.00 Privileged port 31 in use
Port 31 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
integration/aura_integration.openapi.yaml Ports
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: `API_HOST`, `API_PORT`, `BACKUP_DIR`, `BACKUP_ONCE`, `DATABASE_URL`, `LICENSE_PRIVATE_KEY_HEX`. 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, lockfile. 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 hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 17 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:22-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/video-analytics-node/Dockerfile:5 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 13 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
7 files, 13 locations
services/api-gateway/Dockerfile:7, 17 (2 hits)
services/demo-sensors/Dockerfile:7, 15 (2 hits)
services/ingest-sensors/Dockerfile:7, 17 (2 hits)
services/log-service/Dockerfile:7, 17 (2 hits)
services/scheduler/Dockerfile:7, 17 (2 hits)
services/video-analytics/Dockerfile:7, 17 (2 hits)
db/Dockerfile:10
containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 2 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.
lines 17, 48
.github/workflows/ci.yml:17, 48 (2 hits)
CI/CD securitySupply chainGithub actions
low System graph quality Integrity conf 1.00 11 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: services/log-service/log_service/db.py:database_url, services/scheduler/scheduler/db.py:database_url 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'r…
11 occurrences
repo-level (11 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: services/log-service/log_service/app.py:get_events, services/api-gateway/api_gateway/app.py:get_events, services/api-gateway/api_gateway/app.py:get_event This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn…
7 occurrences
repo-level (7 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: services/log-service/log_service/notifications.py:send, services/log-service/log_service/notifications.py:send, services/log-service/log_service/notifications.py:send, services/log-service/log_service/notifications.py:send This is *the* AI-coder fail…
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 dependencies conf 1.00 Node manifest has dependencies but no lockfile: services/video-analytics-node/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
services/video-analytics-node/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_not_implemented_in_v2` in services/api-gateway/api_gateway/integration.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 `model_copy` in services/log-service/log_service/escalation.py:100
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 services/log-service/tests/test_notifications.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 services/video-analytics/video_analytics/repository.py:48
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 `pose_v1` in services/api-gateway/api_gateway/schemas.py:258
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 `pose_v1` in services/api-gateway/api_gateway/static/app.js:247
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 `pose_v1` in services/api-gateway/tests/test_gateway_config.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 `pose_v1` in services/api-gateway/tests/test_gateway_tasks.py:37
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 `pose_v1` in services/scheduler/tests/test_create_task.py:30
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 `pose_v1` in services/scheduler/tests/test_dedup.py:29
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 `pose_v1` in services/scheduler/tests/test_main.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 `pose_v1` in services/scheduler/tests/test_schedules.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 `pose_v1` in services/scheduler/tests/test_schedules_db.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 `pose_v1` in services/scheduler/tests/test_tick.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 `pose_v1` in services/video-analytics-node/test/worker.test.mjs:16
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 `pose_v1` in services/video-analytics/tests/test_landmarks.py:1
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 `pose_v1` in services/video-analytics/tests/test_task_repository.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 `pose_v1` in services/video-analytics/tests/test_task_status.py:29
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 `pose_v1` in services/video-analytics/tests/test_worker.py:44
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 `pose_v1` in services/video-analytics/tests/test_worker_artifact.py:50
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 `pose_v1` in services/video-analytics/tests/test_worker_coverage.py:48
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 `pose_v1` in services/video-analytics/tests/test_worker_presence.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 `pose_v1` in services/video-analytics/tests/test_worker_toggles.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 quality Integrity conf 1.00 Old/deprecated-named symbol `pose_v1` in services/video-analytics/tests/test_worker_uniform.py:44
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 `pose_v1` in services/video-analytics/video_analytics/detector.py:1
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 `pose_v1` in shared/tests/test_models_rest.py:65
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_final_stage_has_no_source_copy` in tests/test_dockerfile_release_api_gateway.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 software Dead code conf 1.00 Possibly dead Python function: audited
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/audit.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: create_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/presence_rules_repository.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: create_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/cleaning_rules_repository.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: cv2_capture
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/video-analytics/video_analytics/capture.py:27
low System graph software Dead code conf 1.00 Possibly dead Python function: default_room_describer
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/ingest-sensors/ingest_sensors/events.py:43
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/presence_rules_repository.py:104
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/cleaning_rules_repository.py:107
low System graph software Dead code conf 1.00 Possibly dead Python function: factory
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/video-analytics/video_analytics/main.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: gh_slug
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/build_customer_doc.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: handle
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/ingest-sensors/ingest_sensors/pipeline.py:54
low System graph software Dead code conf 1.00 Possibly dead Python function: list_rules
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/presence_rules_repository.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: list_rules
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/cleaning_rules_repository.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: repl
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/build_customer_doc.py:49
low System graph software Dead code conf 1.00 Possibly dead Python function: require_api_key_media
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/auth.py:100
low System graph software Dead code conf 1.00 Possibly dead Python function: require_role
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/auth.py:77
low System graph software Dead code conf 1.00 Possibly dead Python function: save_screenshot
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/video-analytics/video_analytics/artifacts.py:35
low System graph software Dead code conf 1.00 Possibly dead Python function: silent_min_for_room
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/ingest-sensors/ingest_sensors/main.py:62
low System graph software Dead code conf 1.00 Possibly dead Python function: today_utc
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/licensing.py:136
low System graph software Dead code conf 1.00 Possibly dead Python function: update_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/presence_rules_repository.py:80
low System graph software Dead code conf 1.00 Possibly dead Python function: update_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
services/api-gateway/api_gateway/cleaning_rules_repository.py:79
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 api Wiring conf 1.00 Unused endpoint: GET /events
`services/log-service/log_service/app.py` declares `GET /events` 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 /events/{event_id}
`services/log-service/log_service/app.py` declares `GET /events/{event_id}` 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: POST /events
`services/log-service/log_service/app.py` declares `POST /events` 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: POST /events/{event_id}/ack
`services/log-service/log_service/app.py` declares `POST /events/{event_id}/ack` 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 i…
Unused endpoint
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/7107e700-3cf7-4861-8bc2-63d8364fda7d/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/7107e700-3cf7-4861-8bc2-63d8364fda7d/

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.