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.

bgidley/zebra

https://github.com/bgidley/zebra · scanned 2026-06-17 01:39 UTC (1 month, 2 weeks ago)

156 raw signals (0 security + 156 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ -20.3 (diff) · 140 actionable findings from 1 signal source. 16 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 56.4/100 with 88.9% coverage. It contains 4283 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 156 findings — concentrated in quality (51), api (51), security (36). Risk profile is high: 0 critical, 3 high, 46 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

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

high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: zebra-tasks/AGENTS.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
zebra-tasks/AGENTS.md:94 SecretsAgents md
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/runs/${this.runId}/diagram/ (zebra-agent-web/static/js/workflow-diagram.js:76)
`zebra-agent-web/static/js/workflow-diagram.js:76` calls `GET /api/runs/${this.runId}/diagram/` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/runs/<p>/diagram` If this points at an external API, prefix it with `htt…
Dangling fetchFetch
high System graph security security conf 1.00 Insecure pattern 'exec_used' in zebra-tasks/zebra_tasks/compute/python_exec.py:172
Found a known-risky pattern (exec_used). Review and replace if possible.
zebra-tasks/zebra_tasks/compute/python_exec.py:172 Exec used
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — zebra-agent-web/static/js/webauthn.js:44
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 authority lacks a verifier contract: .claude/commands/cicd.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/cicd.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/opsx/apply.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/opsx/apply.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/opsx/archive.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/opsx/archive.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/opsx/propose.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/opsx/propose.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: AGENTS.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.
AGENTS.md VerificationAgents md
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 auth conf 1.00 Django view `begin_authenticate` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/auth_views.py:175
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/auth_views.py:175 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `budget_status` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:731
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:731 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `complete_authenticate` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/auth_views.py:195
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/auth_views.py:195 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `delete_user_data` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1088
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1088 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `dream_cycle` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:414
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:414 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `ethics_audit_detail` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1338
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1338 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `ethics_audit_list` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1186
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1186 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `execute_goal` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:364
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:364 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `export_data` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1306
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1306 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `health_check` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:74
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:74 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `kill_switch_view` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1026
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1026 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `metrics_view` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:116
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:116 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `process_cancel` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:971
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:971 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `process_delete` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1054
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1054 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `process_detail` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:764
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:764 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `process_pending_tasks` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:816
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:816 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `run_diagram` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:679
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:679 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `run_rate` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:514
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:514 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `run_status` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:556
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:556 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `setup_page` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/auth_views.py:269
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/auth_views.py:269 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `setup_view` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/web_views.py:54
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/web_views.py:54 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `task_complete` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:878
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:878 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_changes` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1425
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1425 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_freeing_cancel` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1503
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1503 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_freeing_confirm` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1490
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1490 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_freeing_initiate` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1477
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1477 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_freeing_status` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1467
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1467 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_levels` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1383
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1383 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_pause_all` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1449
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1449 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_set_level` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1391
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1391 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_suggestion_resolve` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1539
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1539 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `trust_suggestions` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1530
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1530 securityAuth django unauth view
medium System graph security auth conf 1.00 Django view `version_info` may be unauthenticated — zebra-agent-web/zebra_agent_web/api/views.py:1148
Function-view with `request` parameter has no `@login_required` or equivalent auth decorator within 5 lines above. If auth is enforced by middleware (`AUTHENTICATION_BACKENDS`), this is a false positive — dismiss with reason `by_design`.
zebra-agent-web/zebra_agent_web/api/views.py:1148 securityAuth django unauth view
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in zebra-agent-web/static/js/workflow-diagram.js:90
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
zebra-agent-web/static/js/workflow-diagram.js:90 Direct innerhtml assignment
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 12 placeholder/mock markers across 3 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Integrity conf 1.00 23 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `DJANGO_ALLOWED_HOSTS`, `DJANGO_DEBUG`, `DJANGO_SECRET_KEY`, `KIMI_API_KEY`, `KIMI_BASE_URL`, `PGDATABASE`, `PGHOST`, `PGPASSWORD` + 15 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 34 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 2 occurrences 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.
lines 4, 39
Dockerfile:4, 39 (2 hits)
containersPinned dependencies
low System graph quality Integrity conf 1.00 10 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: zebra-tasks/zebra_tasks/agent/save_values_profile.py:run, zebra-tasks/zebra_tasks/agent/load_values_profile.py:run This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or docum…
10 occurrences
repo-level (10 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: zebra-tasks/zebra_tasks/filesystem/info.py:run, zebra-tasks/zebra_tasks/filesystem/info.py:run, zebra-tasks/zebra_tasks/filesystem/info.py:run This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hy…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: zebra-agent-web/zebra_agent_web/middleware.py:middleware, zebra-agent-web/zebra_agent_web/middleware.py:middleware, zebra-agent-web/zebra_agent_web/middleware.py:middleware, zebra-agent-web/zebra_agent_web/middleware.py:middleware This is *the* AI-co…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: zebra-agent-web/zebra_agent_web/ethics_audit_store.py:list_entries, zebra-agent/zebra_agent/storage/interfaces.py:list_entries, zebra-agent/zebra_agent/storage/interfaces.py:list, zebra-agent/zebra_agent/storage/interfaces.py:list This is *the* AI-co…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: zebra-tasks/zebra_tasks/llm/_testing.py:complete, zebra-tasks/zebra_tasks/llm/_testing.py:stream, zebra-tasks/zebra_tasks/llm/base.py:complete, zebra-tasks/zebra_tasks/llm/base.py:stream This is *the* AI-coder failure mode (4× more duplication in vib…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fetched_v1` in zebra-agent/tests/test_profile_store.py:97
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 `file_copy` in zebra-tasks/zebra_tasks/filesystem/copy.py:38
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 zebra-agent-web/tests/unit/test_human_tasks.py:320
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 zebra-py/tests/test_recovery.py:112
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 zebra-py/zebra/core/engine.py:161
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 `subdir1_copy` in zebra-tasks/tests/test_filesystem.py:353
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_wizard_edit_mode_pre_populates_and_creates_v2` in zebra-agent/tests/test_values_profile_wizard.py:149
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: configure_sqlite_pragmas
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/e2e_settings.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: dev_public
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/cli.py:70
low System graph software Dead code conf 1.00 Possibly dead Python function: disconnect
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/consumers.py:36
low System graph software Dead code conf 1.00 Possibly dead Python function: do_copy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-tasks/zebra_tasks/filesystem/copy.py:229
low System graph software Dead code conf 1.00 Possibly dead Python function: do_glob
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-tasks/zebra_tasks/filesystem/info.py:503
low System graph software Dead code conf 1.00 Possibly dead Python function: do_logout
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/auth_views.py:257
low System graph software Dead code conf 1.00 Possibly dead Python function: do_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-tasks/zebra_tasks/filesystem/search.py:259
low System graph software Dead code conf 1.00 Possibly dead Python function: goal_progress
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/consumers.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: receive
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/consumers.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_var
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-py/zebra/tasks/base.py:187
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_var
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/web_views.py:1600
low System graph software Dead code conf 1.00 Possibly dead Python function: run_async
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/agent_engine.py:291
low System graph software Dead code conf 1.00 Possibly dead Python function: run_async
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/api/engine.py:100
low System graph software Dead code conf 1.00 Possibly dead Python function: safe_import
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-tasks/zebra_tasks/compute/python_exec.py:215
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.
zebra-agent-web/zebra_agent_web/cli.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: serve_public
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
zebra-agent-web/zebra_agent_web/cli.py:50
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — zebra-agent-web/zebra_agent_web/ethics_audit_store.py:40
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — zebra-agent-web/zebra_agent_web/trust_store.py:114
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — zebra-agent/zebra_agent/storage/ethics_audit.py:27
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — zebra-agent/zebra_agent/storage/memory.py:250
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /` 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: ANY /activity/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /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: ANY /api/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /api/` 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: ANY /api/dream-cycle/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/dream-cycle/` 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: ANY /api/goals/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/goals/` 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: ANY /api/health/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/health/` 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: ANY /api/metrics/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/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: ANY /api/runs/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/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: ANY /api/runs/<str:run_id>/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/runs/<str:run_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 consum…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/runs/<str:run_id>/diagram/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/runs/<str:run_id>/diagram/` 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: ANY /api/runs/<str:run_id>/rate/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/runs/<str:run_id>/rate/` 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: ANY /api/runs/<str:run_id>/status/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/runs/<str:run_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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/version/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/version/` 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: ANY /api/workflows/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/workflows/` 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: ANY /api/workflows/<str:workflow_name>/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/workflows/<str:workflow_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 documentin…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /api/workflows/<str:workflow_name>/stats/
`zebra-agent-web/zebra_agent_web/api/urls.py` declares `ANY /api/workflows/<str:workflow_name>/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 docu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /auth/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /auth/` 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: ANY /auth/login/
`zebra-agent-web/zebra_agent_web/api/auth_urls.py` declares `ANY /auth/login/` 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: ANY /auth/logout/
`zebra-agent-web/zebra_agent_web/api/auth_urls.py` declares `ANY /auth/logout/` 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: ANY /auth/setup/
`zebra-agent-web/zebra_agent_web/api/auth_urls.py` declares `ANY /auth/setup/` 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: ANY /ethics-audit/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /ethics-audit/` 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: ANY /knowledge/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /knowledge/` 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: ANY /knowledge/<str:entry_id>/delete/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /knowledge/<str:entry_id>/delete/` 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: ANY /knowledge/<str:entry_id>/edit/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /knowledge/<str:entry_id>/edit/` 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: ANY /knowledge/create/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /knowledge/create/` 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: ANY /processes/<str:process_id>/cancel/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /processes/<str:process_id>/cancel/` 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: ANY /processes/bulk-cancel/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /processes/bulk-cancel/` 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: ANY /profile/values/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /profile/values/` 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: ANY /run/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /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: ANY /run/execute/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /run/execute/` 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: ANY /run/queue/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /run/queue/` 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: ANY /runs/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /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: ANY /runs/<str:run_id>/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /runs/<str:run_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: ANY /runs/<str:run_id>/feedback/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /runs/<str:run_id>/feedback/` 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: ANY /runs/<str:run_id>/rate/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /runs/<str:run_id>/rate/` 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: ANY /runs/in-progress/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /runs/in-progress/` 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: ANY /setup/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /setup/` 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: ANY /tasks/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /tasks/` 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: ANY /tasks/<str:task_id>/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /tasks/<str:task_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: ANY /tasks/<str:task_id>/submit/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /tasks/<str:task_id>/submit/` 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: ANY /trust/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /trust/` 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: ANY /trust/<str:domain>/set/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /trust/<str:domain>/set/` 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: ANY /trust/freeing/<str:action>/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /trust/freeing/<str:action>/` 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: ANY /trust/pause-all/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /trust/pause-all/` 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: ANY /trust/suggestions/<str:suggestion_id>/resolve/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /trust/suggestions/<str:suggestion_id>/resolve/` 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 do…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /workflows/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /workflows/` 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: ANY /workflows/<str:workflow_name>/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /workflows/<str:workflow_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 co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /workflows/<str:workflow_name>/delete/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /workflows/<str:workflow_name>/delete/` 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: ANY /workflows/create/
`zebra-agent-web/zebra_agent_web/urls.py` declares `ANY /workflows/create/` 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: ANY /ws/goal/<str:run_id>/
`zebra-agent-web/zebra_agent_web/api/routing.py` declares `ANY /ws/goal/<str:run_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 cons…
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: zebra-agent-web/zebra_agent_web/api/views.py (1552 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: zebra-agent-web/zebra_agent_web/api/web_views.py (2240 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: zebra-tasks/tests/test_agent_loop_actions.py (1394 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/bc527b1e-df17-4b1e-9d3c-e95a568a5842/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/bc527b1e-df17-4b1e-9d3c-e95a568a5842/

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.