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.

davidesilver/ZeroHuman-Agency

https://github.com/davidesilver/ZeroHuman-Agency · scanned 2026-06-17 01:53 UTC (1 month, 1 week ago)

349 raw signals (0 security + 349 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -32.2 (diff) · 334 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: severity: low × 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 44.5/100 with 100.0% coverage. It contains 2930 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 349 findings — concentrated in api (158), security (73), quality (54). Risk profile is high: 0 critical, 169 high, 43 medium. Recommended next step: open the api layer findings first — that's where the highest-impact wins live.

Showing 98 of 334 actionable findings. 349 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.

low System graph quality Integrity conf 1.00 17 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `BREVO_WEBHOOK_SECRET`, `DEBUG`, `DOCKER_BUILD`, `GMAIL_CREDENTIALS_JSON`, `GMAIL_TOKEN_JSON`, `HYPERFRAMES_BIN`, `NEXT_PUBLIC_STAGING_BAR`, `NODE_ENV` + 9 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 166 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: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/tts-service/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/whisper-service/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.14-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
python/Dockerfile:1 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 3 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/upload-artifact@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 66, 82, 99
.github/workflows/security-scan.yml:66, 82, 99 (3 hits)
CI/CD securitySupply chainGithub actions
low System graph quality Tests conf 1.00 Low test-to-source ratio
38 tests / 360 src (ratio 0.11).
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: python/src/content_engine/config.py:supabase_url, python/src/content_engine/config/settings.py:supabase_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…
8 occurrences
repo-level (8 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: python/src/content_engine/retrievers/serper.py:fetch, python/src/content_engine/retrievers/serper.py:fetch, python/src/content_engine/retrievers/serper.py:fetch This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https:…
duplicatesduplication
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: python/src/content_engine/agents/writer.py:generate_draft, python/src/content_engine/orchestrator/content.py:generate_content, python/src/content_engine/orchestrator/content.py:generate_and_god, python/src/content_engine/orchestrator/content.py:genera…
7 occurrences
repo-level (7 hits)
duplicatesduplication
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: cli/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.
cli/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_call_anthropic_direct_legacy` in python/src/content_engine/utils/llm_client.py:691
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 `eleven_multilingual_v2` in docker/tts-service/main.py:52
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 `eleven_multilingual_v2` in python/src/content_engine/services/tts_provider.py:54
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: call
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/security_utils.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_agent_cache
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/agents/agent_loader.py:260
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_session
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/stores/hot.py:96
low System graph software Dead code conf 1.00 Possibly dead Python function: count_archived
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/stores/archive.py:58
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_post
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/services/postiz_client.py:210
low System graph software Dead code conf 1.00 Possibly dead Python function: estimate_tokens
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/cost_tracker.py:24
low System graph software Dead code conf 1.00 Possibly dead Python function: format_health_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/monitoring/pipeline_health.py:234
low System graph software Dead code conf 1.00 Possibly dead Python function: invalidate_agent_cache
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/agents/agent_loader.py:247
low System graph software Dead code conf 1.00 Possibly dead Python function: list_archived
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/stores/archive.py:18
low System graph software Dead code conf 1.00 Possibly dead Python function: list_example_content
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/brand_assets.py:53
low System graph software Dead code conf 1.00 Possibly dead Python function: llm_caller
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/llm_client.py:394
low System graph software Dead code conf 1.00 Possibly dead Python function: model_post_init
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/api/routes.py:1052
low System graph software Dead code conf 1.00 Possibly dead Python function: resolve_conflicts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/arbiter.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: run_cli_for_brand
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/cli_runner.py:50
low System graph software Dead code conf 1.00 Possibly dead Python function: run_health_check
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/monitoring/pipeline_health.py:213
low System graph software Dead code conf 1.00 Possibly dead Python function: run_nightly_optimization
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/services/auto_optimizer.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: send_telegram_alert
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/services/notification.py:214
low System graph software Dead code conf 1.00 Possibly dead Python function: serve
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/main.py:121
low System graph software Dead code conf 1.00 Possibly dead Python function: summarise_session
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/consolidation/synthesizer.py:64
low System graph software Dead code conf 1.00 Possibly dead Python function: sweep
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/memory/decay.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: wait_until_available
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/src/content_engine/utils/llm_rate_limiter.py:202
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/brand.ts:77
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/config.ts:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/doctor.ts:21
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/init.ts:132
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/mcp.ts:36
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/migrate.ts:21
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/providers.ts:48
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/start.ts:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/commands/update.ts:47
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cli/src/lib/logo.ts:30
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /brands/credentials/{service_name}
`python/src/content_engine/api/routes.py` declares `DELETE /brands/credentials/{service_name}` 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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /providers/{provider_id}/key
`python/src/content_engine/api/routes_llm_providers.py` declares `DELETE /providers/{provider_id}/key` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or docu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`python/src/content_engine/api/routes_video.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /activity
`python/src/content_engine/api/routes.py` declares `GET /activity` 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 /brands/credentials
`python/src/content_engine/api/routes.py` declares `GET /brands/credentials` 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 /brands/credentials/{service_name}/status
`python/src/content_engine/api/routes.py` declares `GET /brands/credentials/{service_name}/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or document…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /gateways/auto-discover
`python/src/content_engine/api/routes_llm_providers.py` declares `GET /gateways/auto-discover` 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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /heygen/avatars
`python/src/content_engine/api/routes_video.py` declares `GET /heygen/avatars` 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 /llm/fallback-log
`python/src/content_engine/api/routes.py` declares `GET /llm/fallback-log` 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 /llm/fallback-stats
`python/src/content_engine/api/routes.py` declares `GET /llm/fallback-stats` 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 /memory/expiring
`python/src/content_engine/api/routes.py` declares `GET /memory/expiring` 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 /providers/catalog
`python/src/content_engine/api/routes_llm_providers.py` declares `GET /providers/catalog` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /providers/configured
`python/src/content_engine/api/routes_llm_providers.py` declares `GET /providers/configured` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /research/runs
`python/src/content_engine/api/routes.py` declares `GET /research/runs` 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 /shorts/{video_id}/status
`python/src/content_engine/api/routes_video.py` declares `GET /shorts/{video_id}/status` 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 co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /templates
`python/src/content_engine/api/routes_video.py` declares `GET /templates` 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 /writing-lab/sessions
`python/src/content_engine/api/routes.py` declares `GET /writing-lab/sessions` 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 /writing-lab/sessions/{session_id}
`python/src/content_engine/api/routes.py` declares `GET /writing-lab/sessions/{session_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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{video_id}/status
`python/src/content_engine/api/routes_video.py` declares `GET /{video_id}/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /analytics/feedback-loop
`python/src/content_engine/api/routes.py` declares `POST /analytics/feedback-loop` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /analytics/metrics
`python/src/content_engine/api/routes.py` declares `POST /analytics/metrics` 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 /analytics/pull-metrics
`python/src/content_engine/api/routes.py` declares `POST /analytics/pull-metrics` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /auth/cache-invalidate
`python/src/content_engine/api/routes.py` declares `POST /auth/cache-invalidate` 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
low System graph api Wiring conf 1.00 Unused endpoint: POST /content/drafts/{draft_id}/adapt
`python/src/content_engine/api/routes.py` declares `POST /content/drafts/{draft_id}/adapt` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /content/drafts/{draft_id}/humanize
`python/src/content_engine/api/routes.py` declares `POST /content/drafts/{draft_id}/humanize` 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 w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /content/generate
`python/src/content_engine/api/routes.py` declares `POST /content/generate` 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 /gateways/probe
`python/src/content_engine/api/routes_llm_providers.py` declares `POST /gateways/probe` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /generate
`python/src/content_engine/api/routes_video.py` declares `POST /generate` 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 /llm/fallback-monitor/reset
`python/src/content_engine/api/routes.py` declares `POST /llm/fallback-monitor/reset` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/consolidate-user
`python/src/content_engine/api/routes.py` declares `POST /memory/consolidate-user` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/facts/{fact_id}/supersede
`python/src/content_engine/api/routes.py` declares `POST /memory/facts/{fact_id}/supersede` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/recall
`python/src/content_engine/api/routes.py` declares `POST /memory/recall` 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 /memory/upload-source
`python/src/content_engine/api/routes.py` declares `POST /memory/upload-source` 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 /newsletter/{newsletter_id}/resolve-ab
`python/src/content_engine/api/routes.py` declares `POST /newsletter/{newsletter_id}/resolve-ab` 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 documentin…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /providers/{provider_id}/key
`python/src/content_engine/api/routes_llm_providers.py` declares `POST /providers/{provider_id}/key` 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 docume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /providers/{provider_id}/validate
`python/src/content_engine/api/routes_llm_providers.py` declares `POST /providers/{provider_id}/validate` 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 d…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /render
`python/src/content_engine/api/routes_video.py` declares `POST /render` 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 /scheduler/daily-pipeline
`python/src/content_engine/api/routes.py` declares `POST /scheduler/daily-pipeline` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /scheduler/publish-scheduled
`python/src/content_engine/api/routes.py` declares `POST /scheduler/publish-scheduled` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /scheduler/weekly-newsletter
`python/src/content_engine/api/routes.py` declares `POST /scheduler/weekly-newsletter` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /scoring/run
`python/src/content_engine/api/routes.py` declares `POST /scoring/run` 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 /shorts/generate
`python/src/content_engine/api/routes_video.py` declares `POST /shorts/generate` 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
low System graph api Wiring conf 1.00 Unused endpoint: POST /social/publish/twitter
`python/src/content_engine/api/routes.py` declares `POST /social/publish/twitter` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /social/schedule
`python/src/content_engine/api/routes.py` declares `POST /social/schedule` 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 /templates
`python/src/content_engine/api/routes_video.py` declares `POST /templates` 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 /webhooks/email/brevo
`python/src/content_engine/api/routes.py` declares `POST /webhooks/email/brevo` 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 /webhooks/email/mailchimp
`python/src/content_engine/api/routes.py` declares `POST /webhooks/email/mailchimp` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /webhooks/telegram
`python/src/content_engine/api/routes.py` declares `POST /webhooks/telegram` 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 /{video_id}/poll-heygen
`python/src/content_engine/api/routes_video.py` declares `POST /{video_id}/poll-heygen` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /brands/credentials/{service_name}
`python/src/content_engine/api/routes.py` declares `PUT /brands/credentials/{service_name}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who…
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: python/src/content_engine/api/routes.py (1869 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/(dashboard)/setup/page.tsx (997 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/lib/types/database.types.ts (2631 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/75e9483c-675f-4d61-9c27-767b33282700/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/75e9483c-675f-4d61-9c27-767b33282700/

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.