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.

cheesesteakfanatic/autology

https://github.com/cheesesteakfanatic/autology · scanned 2026-06-17 01:47 UTC (1 month, 1 week ago)

103 raw signals (0 security + 103 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -11.2 (diff) · 88 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: 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 65.5/100 with 77.8% coverage. It contains 4114 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 103 findings — concentrated in quality (40), api (27), software (20). Risk profile is high: 0 critical, 12 high, 6 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 80 of 88 actionable findings. 103 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 auth conf 1.00 FastAPI POST `api_ask_clarify` without auth dependency — src/ontoforge/server/app.py:435
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:435 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_ask` without auth dependency — src/ontoforge/server/app.py:427
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:427 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_dashboards` without auth dependency — src/ontoforge/server/app.py:707
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:707 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_engineer_apply` without auth dependency — src/ontoforge/server/app.py:835
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:835 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_engineer_interpret` without auth dependency — src/ontoforge/server/app.py:812
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:812 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_engineer_undo` without auth dependency — src/ontoforge/server/app.py:855
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:855 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_export` without auth dependency — src/ontoforge/server/app.py:406
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:406 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_extract` without auth dependency — src/ontoforge/server/app.py:880
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:880 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_reload` without auth dependency — src/ontoforge/server/app.py:260
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:260 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_review_verdict` without auth dependency — src/ontoforge/server/app.py:593
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:593 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_workspace_build` without auth dependency — src/ontoforge/server/app.py:790
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:790 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `api_workspace_put` without auth dependency — src/ontoforge/server/app.py:394
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/ontoforge/server/app.py:394 securityAuth fastapi unauth mutation
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: CLAUDE.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
CLAUDE.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license, ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
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 quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 15 placeholder/mock markers across 11 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 Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 13 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.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.
lines 18, 30
Dockerfile:18, 30 (2 hits)
containersPinned dependencies
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 16 places
Functions with the same first-5-line body hash: src/ontoforge/temper/ops.py:invert, src/ontoforge/temper/ops.py:invert, src/ontoforge/temper/ops.py:invert, src/ontoforge/temper/ops.py:invert This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hy…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 18 places
Functions with the same first-5-line body hash: src/ontoforge/temper/ops.py:precondition, src/ontoforge/temper/ops.py:precondition, src/ontoforge/temper/ops.py:precondition, src/ontoforge/temper/ops.py:precondition This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/build_aviation_fixtures.py:pad, scripts/build_aviation_fixtures.py:p This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
13 occurrences
repo-level (13 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: src/ontoforge/anvil/detectors.py:rewrite, src/ontoforge/anvil/detectors.py:rewrite, src/ontoforge/anvil/detectors.py:rewrite, src/ontoforge/anvil/detectors.py:rewrite This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: src/ontoforge/temper/views.py:rw, src/ontoforge/temper/views.py:rw, src/ontoforge/temper/views.py:rw, src/ontoforge/temper/views.py:rw This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: src/ontoforge/temper/ops.py:migrate, src/ontoforge/temper/ops.py:migrate, src/ontoforge/temper/ops.py:migrate, src/ontoforge/temper/ops.py:migrate This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-cod…
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `q_old` in tests/m10/test_views.py:43
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 `reuse_old` in scripts/build_aviation_fixtures.py:1045
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: add_all
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/profiling/sketches.py:228
low System graph software Dead code conf 1.00 Possibly dead Python function: cancel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/pipeline/playground.py:402
low System graph software Dead code conf 1.00 Possibly dead Python function: entity_count
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/er/incremental.py:169
low System graph software Dead code conf 1.00 Possibly dead Python function: entity_label
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/server/world.py:339
low System graph software Dead code conf 1.00 Possibly dead Python function: field_weights
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/er/fs.py:344
low System graph software Dead code conf 1.00 Possibly dead Python function: in_range
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/warden/expectations.py:323
low System graph software Dead code conf 1.00 Possibly dead Python function: intersect
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/contracts/temporal.py:61
low System graph software Dead code conf 1.00 Possibly dead Python function: leaves
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/contracts/provenance.py:173
low System graph software Dead code conf 1.00 Possibly dead Python function: leq
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/strata/lattice.py:50
low System graph software Dead code conf 1.00 Possibly dead Python function: link_props
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/pipeline/mapping.py:158
low System graph software Dead code conf 1.00 Possibly dead Python function: master_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/build_aviation_fixtures.py:1448
low System graph software Dead code conf 1.00 Possibly dead Python function: object_concept
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/strata/lattice.py:72
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.
src/ontoforge/aimodels/secure.py:68
low System graph software Dead code conf 1.00 Possibly dead Python function: rewrite_whole
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/anvil/detectors.py:351
low System graph software Dead code conf 1.00 Possibly dead Python function: roots
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/strata/lattice.py:87
low System graph software Dead code conf 1.00 Possibly dead Python function: set_profile
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/contracts/decisions.py:89
low System graph software Dead code conf 1.00 Possibly dead Python function: set_profile
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/spine/spine.py:75
low System graph software Dead code conf 1.00 Possibly dead Python function: sort_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/aimodels/context.py:195
low System graph software Dead code conf 1.00 Possibly dead Python function: t0_weak_concept_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/strata/admission.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: unit_ok
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/ontoforge/warden/expectations.py:332
low System graph quality Integrity conf 1.00 Stub function `invert` (body is just `pass`/`return`) — src/ontoforge/temper/ops.py:245
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: GET /
`src/ontoforge/server/app.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 /api/atlas
`src/ontoforge/server/app.py` declares `GET /api/atlas` 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 /api/atlas/link
`src/ontoforge/server/app.py` declares `GET /api/atlas/link` 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 /api/atoms/{atom_id}
`src/ontoforge/server/app.py` declares `GET /api/atoms/{atom_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: GET /api/catalog
`src/ontoforge/server/app.py` declares `GET /api/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 consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/dashboards
`src/ontoforge/server/app.py` declares `GET /api/dashboards` 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 /api/entities/{uri:path}
`src/ontoforge/server/app.py` declares `GET /api/entities/{uri:path}` 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 /api/entities/{uri:path}/neighbors
`src/ontoforge/server/app.py` declares `GET /api/entities/{uri:path}/neighbors` 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 /api/exports
`src/ontoforge/server/app.py` declares `GET /api/exports` 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 /api/ontology
`src/ontoforge/server/app.py` declares `GET /api/ontology` 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 /api/ontology/class/{uri:path}
`src/ontoforge/server/app.py` declares `GET /api/ontology/class/{uri:path}` 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 /api/provenance/{prov_ref}
`src/ontoforge/server/app.py` declares `GET /api/provenance/{prov_ref}` 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 /api/review
`src/ontoforge/server/app.py` declares `GET /api/review` 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 /api/status
`src/ontoforge/server/app.py` declares `GET /api/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 it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/workspace
`src/ontoforge/server/app.py` declares `GET /api/workspace` 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 /api/workspace/state
`src/ontoforge/server/app.py` declares `GET /api/workspace/state` 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 /api/ask
`src/ontoforge/server/app.py` declares `POST /api/ask` 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 /api/ask/clarify
`src/ontoforge/server/app.py` declares `POST /api/ask/clarify` 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 /api/dashboards
`src/ontoforge/server/app.py` declares `POST /api/dashboards` 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 /api/engineer/apply
`src/ontoforge/server/app.py` declares `POST /api/engineer/apply` 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 /api/engineer/interpret
`src/ontoforge/server/app.py` declares `POST /api/engineer/interpret` 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 /api/engineer/undo
`src/ontoforge/server/app.py` declares `POST /api/engineer/undo` 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 /api/export
`src/ontoforge/server/app.py` declares `POST /api/export` 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 /api/reload
`src/ontoforge/server/app.py` declares `POST /api/reload` 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 /api/review/{decision_id:path}
`src/ontoforge/server/app.py` declares `POST /api/review/{decision_id:path}` 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 /api/workspace/build
`src/ontoforge/server/app.py` declares `POST /api/workspace/build` 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: PUT /api/workspace
`src/ontoforge/server/app.py` declares `PUT /api/workspace` 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 quality Complexity conf 1.00 Very large file: scripts/build_aviation_fixtures.py (1814 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/ontoforge/estates/meridian_gen.py (1731 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/e5205df6-bf12-4f06-b19c-1364917d1561/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/e5205df6-bf12-4f06-b19c-1364917d1561/

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.