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.

bwalpole2025/L_Research

https://github.com/bwalpole2025/L_Research · scanned 2026-06-17 01:44 UTC (1 month, 1 week ago)

108 raw signals (0 security + 108 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -23.1 (diff) · 108 actionable findings from 1 signal source. 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 53.6/100 with 100.0% coverage. It contains 1764 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 108 findings — concentrated in quality (32), api (27), frontend (26). Risk profile is high: 1 critical, 14 high, 27 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 78 of 108 actionable findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical System graph security Secrets conf 1.00 Possible secret in latex-studio/apps/web/lib/session.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
latex-studio/apps/web/lib/session.ts:17
high System graph api Wiring conf 1.00 Dangling fetch: GET /api${path} (latex-studio/apps/web/lib/api.ts:113)
`latex-studio/apps/web/lib/api.ts:113` calls `GET /api${path}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/api/<p>` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://127.0.0.1:23119/connector/ping (latex-studio/apps/web/app/plugins/page.tsx:358)
`latex-studio/apps/web/app/plugins/page.tsx:358` calls `GET http://127.0.0.1:23119/connector/ping` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/127.0.0.1:23119/connector/ping` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.crossref.org/works/${encodeURIComponent(doi)} (latex-studio/apps/api/src/literature/storage.ts:67)
`latex-studio/apps/api/src/literature/storage.ts:67` calls `GET https://api.crossref.org/works/${encodeURIComponent(doi)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.crossref.org/works/<p>` If this po…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://arxiv.org/pdf/${normalizeId(id)}.pdf (latex-studio/apps/api/src/literature/sources/arxiv.ts:48)
`latex-studio/apps/api/src/literature/sources/arxiv.ts:48` calls `GET https://arxiv.org/pdf/${normalizeId(id)}.pdf` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/arxiv.org/pdf/<p>.pdf` If this points at an e…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://doi.org/${encodeURIComponent(doi.trim())} (latex-studio/apps/web/app/plugins/page.tsx:345)
`latex-studio/apps/web/app/plugins/page.tsx:345` calls `GET https://doi.org/${encodeURIComponent(doi.trim())}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/doi.org/<p>` If this points at an external API, pr…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://www.googleapis.com/oauth2/v2/userinfo (latex-studio/apps/api/src/routes/connectors.ts:248)
`latex-studio/apps/api/src/routes/connectors.ts:248` calls `GET https://www.googleapis.com/oauth2/v2/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/www.googleapis.com/oauth2/v2/userinfo` If this poi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/projects/${projectId}/complete (latex-studio/apps/web/lib/api.ts:549)
`latex-studio/apps/web/lib/api.ts:549` calls `POST /api/projects/${projectId}/complete` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/projects/<p>/complete` If this points at an external API, prefix it with `https:…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI POST `annotate_pdf_endpoint` without auth dependency — latex-studio/services/mathcheck/app/main.py:105
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:105 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `check_derivation_endpoint` without auth dependency — latex-studio/services/mathcheck/app/main.py:87
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:87 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `embed_endpoint` without auth dependency — latex-studio/services/mathcheck/app/main.py:163
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:163 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `equivalent` without auth dependency — latex-studio/services/mathcheck/app/main.py:66
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:66 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `extract_pdf_endpoint` without auth dependency — latex-studio/services/mathcheck/app/main.py:119
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:119 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `parse` without auth dependency — latex-studio/services/mathcheck/app/main.py:40
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:40 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pdf_png_endpoint` without auth dependency — latex-studio/services/mathcheck/app/main.py:135
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
latex-studio/services/mathcheck/app/main.py:135 securityAuth fastapi unauth mutation
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — latex-studio/apps/web/app/layout.tsx:36
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — latex-studio/apps/web/components/diagram/TikzDiagramEditor.tsx:943
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — latex-studio/apps/web/components/editor/VisualView.tsx:295
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — latex-studio/apps/web/components/Landing.tsx:97
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/literature/sources/arxiv.ts:16
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/literature/sources/crossref.ts:25
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/literature/sources/semanticScholar.ts:34
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/literature/sources/zotero.ts:36
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/prose/check.ts:107
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/routes/connectors.ts:248
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/storage/sources/dropbox.ts:27
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/storage/sources/googleDrive.ts:28
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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — latex-studio/apps/api/src/storage/sources/onedrive.ts:25
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 Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci, lockfile. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
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: latex-studio/apps/api/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: latex-studio/services/mathcheck/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 security conf 1.00 Insecure pattern 'dangerous_innerhtml' in latex-studio/apps/web/app/layout.tsx:36
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
latex-studio/apps/web/app/layout.tsx:36 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in latex-studio/apps/web/components/diagram/TikzDiagramEditor.tsx:943
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
latex-studio/apps/web/components/diagram/TikzDiagramEditor.tsx:943 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in latex-studio/apps/web/components/editor/VisualView.tsx:295
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
latex-studio/apps/web/components/editor/VisualView.tsx:295 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in latex-studio/apps/web/components/Landing.tsx:97
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
latex-studio/apps/web/components/Landing.tsx:97 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in latex-studio/apps/web/components/editor/VisualView.tsx:194
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
latex-studio/apps/web/components/editor/VisualView.tsx:194 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in latex-studio/apps/api/src/compile/spawn.ts:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
latex-studio/apps/api/src/compile/spawn.ts:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in latex-studio/apps/api/src/providers/cli/spawnCli.ts:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
latex-studio/apps/api/src/providers/cli/spawnCli.ts:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in latex-studio/apps/api/src/routes/diagram.ts:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
latex-studio/apps/api/src/routes/diagram.ts:2 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in latex-studio/apps/api/src/run/spawn.ts:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
latex-studio/apps/api/src/run/spawn.ts:1 Node child process
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 59 placeholder/mock markers across 28 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 5 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `CI`, `CODERIVE_DEBUG`, `EMBED_MODEL`, `NEXT_DIST_DIR`. 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 12 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
latex-studio/apps/api/Dockerfile:3 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 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.
latex-studio/services/mathcheck/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.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.
latex-studio/services/pyrun/Dockerfile:5 containersPinned dependencies
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — latex-studio/apps/web/app/files/page.tsx:565
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph quality Tests conf 1.00 Low test-to-source ratio
60 tests / 261 src (ratio 0.23).
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: latex-studio/apps/api/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.
latex-studio/apps/api/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: latex-studio/apps/web/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.
latex-studio/apps/web/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: latex-studio/packages/shared/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.
latex-studio/packages/shared/package.json LockfileReproducibilityGenerated repo pattern
low System graph cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
latex-studio/apps/api/package.json CI/CD securitySupply chainNpm
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — latex-studio/apps/api/prisma/seed.ts:164
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 — latex-studio/apps/api/src/coderive/engine.ts:29
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 /project-trash
`latex-studio/apps/api/src/routes/projectFolders.ts` declares `DELETE /project-trash` 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: GET /ai/models
`latex-studio/apps/api/src/routes/ai.ts` declares `GET /ai/models` 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 /ai/stats
`latex-studio/apps/api/src/routes/ai.ts` declares `GET /ai/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 /ai/status
`latex-studio/apps/api/src/routes/ai.ts` declares `GET /ai/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 /connectors
`latex-studio/apps/api/src/routes/connectors.ts` declares `GET /connectors` 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 /embed/health
`latex-studio/services/mathcheck/app/main.py` declares `GET /embed/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: GET /project-folders
`latex-studio/apps/api/src/routes/projectFolders.ts` declares `GET /project-folders` 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: GET /project-trash
`latex-studio/apps/api/src/routes/projectFolders.ts` declares `GET /project-trash` 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: GET /projects
`latex-studio/apps/api/src/routes/projects.ts` declares `GET /projects` 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 /annotate-pdf
`latex-studio/services/mathcheck/app/main.py` declares `POST /annotate-pdf` 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 /check-derivation
`latex-studio/services/mathcheck/app/main.py` declares `POST /check-derivation` 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 /embed
`latex-studio/services/mathcheck/app/main.py` declares `POST /embed` 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 /equivalent
`latex-studio/services/mathcheck/app/main.py` declares `POST /equivalent` 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 /extract-pdf
`latex-studio/services/mathcheck/app/main.py` declares `POST /extract-pdf` 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 /parse
`latex-studio/services/mathcheck/app/main.py` declares `POST /parse` 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 /pdf-png
`latex-studio/services/mathcheck/app/main.py` declares `POST /pdf-png` 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 /project-folders
`latex-studio/apps/api/src/routes/projectFolders.ts` declares `POST /project-folders` 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 /projects
`latex-studio/apps/api/src/routes/projects.ts` declares `POST /projects` 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 /synctex/forward
`latex-studio/apps/api/src/routes/compile.ts` declares `POST /synctex/forward` 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 /synctex/inverse
`latex-studio/apps/api/src/routes/compile.ts` declares `POST /synctex/inverse` 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: latex-studio/apps/web/components/diagram/TikzDiagramEditor.tsx (1642 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: latex-studio/apps/web/lib/diagram/templates/catalog.tsx (1327 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/207b9174-c523-4ced-9269-3204314b7a9b/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/207b9174-c523-4ced-9269-3204314b7a9b/

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.