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.
20 of your 91 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • Clone from GitHub took 61.51s for a 67.9 MB repo slow.
  • Repobility's analysis ran in 8.89s after the clone landed.

GoMudEngine/GoMud

https://github.com/GoMudEngine/GoMud · scanned 2026-06-05 19:31 UTC (4 days, 15 hours ago) · 10 languages

272 raw signals (80 security + 192 graph) 11/13 scanners ran 48th percentile · Go · large (100-500K LoC) System graph score 43 (higher by 31)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 15 hours ago · v2 · 128 actionable findings from 2 signal sources. 48 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 32.0 0.20 6.40
documentation_score 62.0 0.15 9.30
practices_score 82.0 0.15 12.30
code_quality 80.0 0.10 8.00
Overall 1.00 73.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B (74/100). Dimensions: security 100, maintainability 85. 80 findings (5 security). 140,818 lines analyzed.

Showing 99 of 128 actionable findings. 176 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.

critical Security checks quality Quality conf 1.00 ✓ Repobility [MINED035] Js New Function: new Function(...) compiles strings to functions.
Review and fix per the pattern semantics. See CWE-95 / for context.
_datafiles/html/public/static/js/triggers.js:193
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/discord-notify.yml:26 CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in _datafiles/world/default/localize/en.yaml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
_datafiles/world/default/localize/en.yaml:10
critical System graph security Secrets conf 1.00 Possible secret in _datafiles/world/empty/localize/en.yaml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
_datafiles/world/empty/localize/en.yaml:10
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in cmd/reset-admin-pw/main.go
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 83, 90
cmd/reset-admin-pw/main.go:83, 90 (2 hits)
critical System graph security Secrets conf 1.00 Possible secret in internal/web/api_v1_users.go
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
internal/web/api_v1_users.go:92
critical System graph security Secrets conf 1.00 Possible secret in scripts/https-setup.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
scripts/https-setup.sh:375
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED118] Dockerfile FROM `golang:1.25` not pinned by digest: `FROM golang:1.25` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM golang:1.25@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
3 files, 3 locations
.github/Dockerfile.act:5
provisioning/Dockerfile:23
provisioning/terminal/Dockerfile:1
high Security checks cicd CI/CD security conf 0.92 Dockerfile pipes a remote script into a shell
Download the artifact, verify its checksum or signature, pin the version, and then execute it.
.github/Dockerfile.act:31 CI/CD securitycontainers
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
_datafiles/html/admin/static/js/api.js:55
medium Security checks quality Quality conf 1.00 [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0).
Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser).
_datafiles/world/default/mobs/frostfang/scripts/2-guard.js:13
medium Security checks quality Quality conf 1.00 [SEC094] Go: world-writable file permissions: File or directory created with world-writable mode (e.g. 0666, 0777). Ported from gosec G301 / G302 / G306 (Apache-2.0).
Use 0600 for files, 0700 for dirs that should be private.
internal/fileloader/fileloader.go:245
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
_datafiles/html/public/static/js/triggers.js:126
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
provisioning/terminal/Dockerfile:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
provisioning/Dockerfile:24 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
provisioning/Dockerfile:20 CI/CD securitycontainers
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
_datafiles/html/public/static/js/windows/window-map.js:65
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
_datafiles/html/public/static/js/webclient-core.js:585
medium Security checks quality Quality conf 0.86 robots.txt blocks the full public site
Replace full-site blocking with specific private path disallows, or add explicit Allow rules for public docs and landing pages.
_datafiles/html/public/robots.txt
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: alpine:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
provisioning/Dockerfile:23 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: alpine:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
provisioning/terminal/Dockerfile:1 containersPinned dependencies
medium System graph cicd CI/CD security conf 1.00 4 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
4 files, 4 locations
.github/workflows/build-and-release.yml
.github/workflows/docker-package.yml
.github/workflows/release-latest-assets.yml
.github/workflows/update-go-toolchain.yml
CI/CD securitySupply chainGithub actions
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.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph network Security conf 1.00 Privileged port 10 in use
Port 10 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 118 in use
Port 118 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 123 in use
Port 123 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 13 in use
Port 13 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/users/1.yaml Ports
medium System graph network Security conf 1.00 Privileged port 154 in use
Port 154 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 159 in use
Port 159 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 190 in use
Port 190 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 195 in use
Port 195 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 20 in use
Port 20 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 214 in use
Port 214 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 220 in use
Port 220 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 23 in use
Port 23 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 245 in use
Port 245 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 27 in use
Port 27 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/mobs/frostfang/38-player_guide.yaml Ports
medium System graph network Security conf 1.00 Privileged port 28 in use
Port 28 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/users/1.yaml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 31 in use
Port 31 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/mobs/frostfang/1-rat.yaml Ports
medium System graph network Security conf 1.00 Privileged port 37 in use
Port 37 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 40 in use
Port 40 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 44 in use
Port 44 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 46 in use
Port 46 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 50 in use
Port 50 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 51 in use
Port 51 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 54 in use
Port 54 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/users/1.yaml Ports
medium System graph network Security conf 1.00 Privileged port 55 in use
Port 55 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/users/1.yaml Ports
medium System graph network Security conf 1.00 Privileged port 58 in use
Port 58 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/users/1.yaml Ports
medium System graph network Security conf 1.00 Privileged port 60 in use
Port 60 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 70 in use
Port 70 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 82 in use
Port 82 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 87 in use
Port 87 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph network Security conf 1.00 Privileged port 90 in use
Port 90 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
_datafiles/world/default/ansi-aliases.yaml Ports
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
65 test file(s) for 717 source file(s) (ratio 0.09). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
low Security checks quality Error handling conf 1.00 3 occurrences [ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
3 files, 3 locations
internal/audio/audio.go:77
internal/conversations/admin.go:173
internal/inputhandlers/systemcommands.go:145
high Security checks cicd CI/CD security conf 0.62 2 occurrences Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
lines 3, 52
compose.yml:3, 52 (2 hits)
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 21 locations
_datafiles/world/empty/rooms/tutorial/902.js:1, 8, 80 (3 hits)
_datafiles/html/public/static/js/windows/window-killstats.js:1, 15 (2 hits)
_datafiles/html/public/static/js/windows/window-pet.js:4, 16 (2 hits)
_datafiles/sample-scripts/spells/helpmulti.js:4, 7 (2 hits)
_datafiles/world/default/rooms/tutorial/902.js:8, 80 (2 hits)
_datafiles/world/default/rooms/tutorial/903.js:67, 76 (2 hits)
_datafiles/world/default/spells/healall.js:3, 6 (2 hits)
_datafiles/world/empty/rooms/tutorial/901.js:1, 87 (2 hits)
duplicationquality
low Security checks quality Quality conf 0.74 robots.txt does not advertise a sitemap
Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt.
_datafiles/html/public/robots.txt
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:${GO_VERSION}
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
provisioning/Dockerfile:3 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: _datafiles/html/admin/static/js/mapper/mapper-constants.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: _datafiles/html/admin/static/js/mapper/mapper-tool-pan.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: _datafiles/html/public/static/js/xterm/xterm-addon-fit.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: _datafiles/world/default/buffs/25-empty.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `mergedOld` in _datafiles/html/public/static/js/webclient-core.js:1149
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 frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — _datafiles/html/admin/static/js/api.js:80
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 — _datafiles/html/admin/static/js/highlight.js:107
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 — _datafiles/html/admin/static/js/select-dialog.js:16
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 — _datafiles/html/public/static/js/webclient-core.js:1203
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 /admin/api/v1/rooms/
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `DELETE /admin/api/v1/rooms/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/biomes
`_datafiles/html/admin/static/js/mapper/mapper-state.js` declares `GET /admin/api/v1/biomes` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/buffs
`_datafiles/html/admin/static/js/picker-configs.js` declares `GET /admin/api/v1/buffs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/characters/search?name=
`_datafiles/html/admin/static/js/picker-configs.js` declares `GET /admin/api/v1/characters/search?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 do…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/color-aliases
`_datafiles/html/admin/static/js/ansi-composer.js` declares `GET /admin/api/v1/color-aliases` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/config
`_datafiles/html/admin/static/js/api.js` declares `GET /admin/api/v1/config` 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 /admin/api/v1/mapper/rooms
`_datafiles/html/admin/static/js/mapper/mapper-state.js` declares `GET /admin/api/v1/mapper/rooms` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or document…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/mobs
`_datafiles/html/admin/static/js/picker-configs.js` declares `GET /admin/api/v1/mobs` 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 /admin/api/v1/mobs/
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `GET /admin/api/v1/mobs/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/rooms/
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `GET /admin/api/v1/rooms/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/scripting/functions
`_datafiles/html/admin/static/js/script-wizard.js` declares `GET /admin/api/v1/scripting/functions` 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 documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/stats
`_datafiles/html/admin/static/js/api.js` declares `GET /admin/api/v1/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 /admin/api/v1/stats/memory
`_datafiles/html/admin/static/js/api.js` declares `GET /admin/api/v1/stats/memory` 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 /admin/api/v1/tags
`_datafiles/html/admin/static/js/mapper/mapper-state.js` declares `GET /admin/api/v1/tags` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/users/search?name=
`_datafiles/html/admin/static/js/picker-configs.js` declares `GET /admin/api/v1/users/search?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 documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/api/v1/users/search?role=
`_datafiles/html/admin/static/js/picker-configs.js` declares `GET /admin/api/v1/users/search?role=` 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 documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /admin/api/v1/config
`_datafiles/html/admin/static/js/api.js` declares `PATCH /admin/api/v1/config` 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: PATCH /admin/api/v1/rooms/
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `PATCH /admin/api/v1/rooms/` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/api/v1/rooms
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `POST /admin/api/v1/rooms` 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: POST /admin/api/v1/scripting/validate
`_datafiles/html/admin/static/js/script-wizard.js` declares `POST /admin/api/v1/scripting/validate` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/api/v1/zones
`_datafiles/html/admin/static/js/mapper/mapper-ui.js` declares `POST /admin/api/v1/zones` 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 quality Complexity conf 1.00 Very large file: _datafiles/html/admin/static/js/highlight.js (1243 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: _datafiles/html/admin/static/js/mapper/mapper-ui.js (1711 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: _datafiles/html/public/static/js/webclient-core.js (2310 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: _datafiles/html/public/static/js/windows/window-map.js (1236 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/characters/character.go (2202 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: internal/rooms/rooms.go (2430 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: main.go (1584 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/63642899-838f-4db3-a169-ca87d89f1d50/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/63642899-838f-4db3-a169-ca87d89f1d50/

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.