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.
144 of your 228 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 29.89s · analysis 7.95s · 41.6 MB · GitHub API rate-limit (preflight)

sartography/spiff-arena

https://github.com/sartography/spiff-arena · scanned 2026-06-05 19:16 UTC (4 days, 16 hours ago) · 10 languages

660 raw signals (216 security + 444 graph) 11/13 scanners ran 86th percentile · Python · large (100-500K LoC) System graph score 57 (higher by 30)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 16 hours ago · v2 · 234 actionable findings from 2 signal sources. 179 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 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 100.0 0.20 20.00
documentation_score 76.0 0.15 11.40
practices_score 94.0 0.15 14.10
code_quality 71.0 0.10 7.10
Overall 1.00 86.6
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 A- (87/100). Dimensions: security 100, maintainability 60. 216 findings (25 security). 101,643 lines analyzed.

Showing 144 of 234 actionable findings. 413 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 Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `string` used but not imported: The file uses `string.something(...)` but never imports `string`. This raises NameError at runtime the first time the line executes.
Add `import string` at the top of the file.
spiffworkflow-backend/src/spiffworkflow_backend/scripts/get_all_permissions.py:45
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `subprocess` used but not imported: The file uses `subprocess.something(...)` but never imports `subprocess`. This raises NameError at runtime the first time the line executes.
Add `import subprocess` at the top of the file.
spiff-arena-common/src/spiff_arena_common/runner.py:620
critical Security checks cicd CI/CD security conf 0.96 3 occurrences Compose service contains a literal secret environment value
Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file.
2 files, 3 locations
spiffworkflow-backend/docker-compose.yml:77 (2 hits)
docker-compose.yml:26
CI/CD securitycontainers
high Security checks security auth conf 0.88 Token handoff appears to use a callback URL or fragment
Use a server-side one-time authorization code tied to a registered callback allowlist. Do not append access tokens to callback URLs or fragments.
spiffworkflow-frontend/src/views/AuthenticationList.tsx:29
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 4 occurrences 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.
3 files, 4 locations
.github/workflows/tests.yml:342, 397 (2 hits)
.github/workflows/common.yml:40
.github/workflows/docs.yml:66
CI/CD securityworkflow secretsGitHub Actions
high Security checks software dependencies conf 0.90 ✓ Repobility 14 occurrences [MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` 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 nginx:1.29-alpine@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
12 files, 14 locations
spiffworkflow-backend/keycloak/Dockerfile:1, 15 (2 hits)
spiffworkflow-frontend/Dockerfile:2, 45 (2 hits)
connector-proxies/aggregate/Dockerfile:1
connector-proxies/aggregate/dev.Dockerfile:1
connector-proxies/async-http/Dockerfile:1
connector-proxies/async-http/dev.Dockerfile:1
connector-proxy-demo/Dockerfile:2
connector-proxy-demo/dev.Dockerfile:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED122] package.json dep `bpmn-js-spiffworkflow` pulled from URL/Git: `dependencies.bpmn-js-spiffworkflow` = `github:sartography/bpmn-js-spiffworkflow#fix-correlation-key-churn` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload.
Publish the dependency to npm (or your private registry) and reference it by `^x.y.z`. If that's not possible, lock by commit SHA: `git+https://...#<full-sha>` AND verify the SHA in CI.
spiffworkflow-frontend/package.json:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-prettier` pinned to mutable rev `v2.4.1`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/mirrors-prettier` at `rev: v2.4.1`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
spiffworkflow-backend/.pre-commit-config.yaml:38
high Security checks cicd CI/CD security conf 0.84 Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
spiffworkflow-backend/docker-compose.yml:12 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.92 3 occurrences Dockerfile copies the entire context without .dockerignore
Create .dockerignore before using broad context copies, or copy only the required files and directories.
3 files, 3 locations
connector-proxy-demo/Dockerfile:44
spiffworkflow-backend/Dockerfile:51
spiffworkflow-frontend/Dockerfile:37
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 6 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/[email protected]` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect …
2 files, 6 locations
.github/workflows/snyk-security.yml:112, 187 (4 hits)
.github/workflows/build_docker_images.yml:164 (2 hits)
CI/CD securitySupply chainGitHub Actions
high System graph api Wiring conf 1.00 Dangling fetch: GET /${templateName} (spiffworkflow-frontend/src/services/SpiffBpmnApiService.ts:41)
`spiffworkflow-frontend/src/services/SpiffBpmnApiService.ts:41` calls `GET /${templateName}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/<p>` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchFetch
high System graph security security conf 1.00 Insecure pattern 'eval_used' in spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:203
Found a known-risky pattern (eval_used). Review and replace if possible.
spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:203 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:215
Found a known-risky pattern (exec_used). Review and replace if possible.
spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:215 Exec used
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.
spiffworkflow-frontend/src/rjsf/custom_widgets/DateRangePicker/DateRangePickerWidget.tsx:78
medium Security checks software Open redirect conf 1.00 [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
spiffworkflow-frontend/src/services/UserService.ts:112
low Security checks quality Error handling conf 0.55 ✓ Repobility 25 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
12 files, 20 locations
spiffworkflow-backend/src/spiffworkflow_backend/services/data_setup_service.py:100, 305, 312, 328 (4 hits)
spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:364, 1465, 1474, 1614 (4 hits)
spiffworkflow-backend/bin/load_tests/message_start_double_delivery_race.py:357, 395 (2 hits)
spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py:53, 60 (2 hits)
spiff-arena-common/src/spiff_arena_common/runner.py:242
spiffworkflow-backend/bin/delete_user_destructively.py:146
spiffworkflow-backend/bin/load_tests/concurrent_message_starts.py:285
spiffworkflow-backend/bin/openapi/dump_api_logs.py:268
Error handlingquality
medium Security checks cicd CI/CD security conf 0.94 2 occurrences Compose service `spiffworkflow-frontend` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
lines 3, 26
docker-compose.yml:3, 26 (2 hits)
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 6 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
6 files, 6 locations
connector-proxies/aggregate/Dockerfile:1
connector-proxies/async-http/Dockerfile:1
connector-proxy-demo/Dockerfile:51
spiffworkflow-backend/Dockerfile:57
spiffworkflow-backend/keycloak/Dockerfile:16
spiffworkflow-frontend/Dockerfile:45
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 Dockerfile installs dependencies after copying the full source tree
Copy dependency manifests first, install dependencies in a cached layer, then copy the rest of the source tree.
connector-proxy-demo/Dockerfile:45 CI/CD securitycontainers
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — spiffworkflow-frontend/src/services/SpiffBpmnApiService.ts:41
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 hardware Security conf 1.00 Dockerfile runs as root: connector-proxies/aggregate/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: connector-proxies/async-http/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: connector-proxy-demo/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: spiffworkflow-backend/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: spiffworkflow-frontend/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 2 occurrences Frontend route `/:modified_message_name` has no Link/navigate to it — spiffworkflow-frontend/src/views/PublicRoutes.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
2 occurrences
repo-level (2 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 23 occurrences Frontend route `/tasks/:process_instance_id/:task_guid` has no Link/navigate to it — spiffworkflow-frontend/src/views/BaseRoutes.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
23 occurrences
repo-level (23 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 2 occurrences Frontend route `:data_store_identifier/edit` has no Link/navigate to it — spiffworkflow-frontend/src/views/DataStoreRoutes.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
2 occurrences
repo-level (2 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 2 occurrences Frontend route `extensions/:page_identifier` has no Link/navigate to it — spiffworkflow-frontend/src/ContainerForExtensions.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
2 occurrences
repo-level (2 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 14 occurrences Frontend route `for-me` has no Link/navigate to it — spiffworkflow-frontend/src/views/ProcessInstanceRoutes.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
14 occurrences
repo-level (14 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 5 occurrences Frontend route `secrets` has no Link/navigate to it — spiffworkflow-frontend/src/views/Configuration.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
5 occurrences
repo-level (5 hits)
Orphan pageWiring
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/auto-merge-dependabot-prs.yml
.github/workflows/build_docker_images.yml
.github/workflows/container_retention_policy.yml
.github/workflows/renovate.yml
CI/CD securitySupply chainGithub actions
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.
.github/workflows/renovate.yml Ports
medium System graph network Security conf 1.00 Privileged port 11 in use
Port 11 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
spiffworkflow-backend/src/spiffworkflow_backend/api.yml Ports
medium System graph network Security conf 1.00 Privileged port 12 in use
Port 12 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
spiffworkflow-backend/src/spiffworkflow_backend/api.yml Ports
medium System graph network Security conf 1.00 Privileged port 17 in use
Port 17 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
spiffworkflow-backend/src/spiffworkflow_backend/api.yml Ports
medium System graph network Security conf 1.00 Privileged port 36 in use
Port 36 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
spiffworkflow-backend/src/spiffworkflow_backend/api.yml Ports
medium System graph network Security conf 1.00 Privileged port 59 in use
Port 59 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
spiffworkflow-backend/src/spiffworkflow_backend/api.yml Ports
high Security checks cicd CI/CD security conf 0.56 6 occurrences Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
4 files, 6 locations
docker-compose.yml:3, 68 (2 hits)
spiffworkflow-backend/docker-compose.yml:77 (2 hits)
connector-proxies/async-http/docker-compose.yml:1
spiffworkflow-frontend/docker-compose.yml:2
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 7 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.
4 files, 7 locations
docker-compose.yml:3, 26, 68 (3 hits)
spiffworkflow-backend/docker-compose.yml:77 (2 hits)
connector-proxies/async-http/docker-compose.yml:1
spiffworkflow-frontend/docker-compose.yml:2
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.58 Database password is wired through an environment variable placeholder
Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed.
spiffworkflow-backend/docker-compose.yml:12 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 5 occurrences Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
3 files, 5 locations
connector-proxy-demo/Dockerfile:23, 37 (2 hits)
spiffworkflow-backend/Dockerfile:26, 48 (2 hits)
spiffworkflow-frontend/Dockerfile:11
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 4 occurrences Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
2 files, 4 locations
spiffworkflow-backend/Dockerfile:32, 33, 44 (3 hits)
connector-proxy-demo/Dockerfile:34
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
spiffworkflow-backend/Dockerfile:48 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
connector-proxy-demo/Dockerfile:37 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 16 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, 13 locations
spiffworkflow-frontend/src/views/ProcessGroupNew.tsx:19, 20 (2 hits)
spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/MarkdownEditorDialog.tsx:17
spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/MessageEditorDialog.tsx:23
spiffworkflow-frontend/src/components/ProcessGroupForm.tsx:153
spiffworkflow-frontend/src/components/ProcessModelSearchCarbon.tsx:4
spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx:72
spiffworkflow-frontend/src/components/TaskListTable.tsx:126
spiffworkflow-frontend/src/components/messages/MessageHelper.tsx:56
duplicationquality
low Security checks quality Quality conf 0.68 Multiple AI-agent scaffold marker files are present
Keep one current agent instruction file if it helps contributors, remove stale progress/completion markers, and make sure the README, tests, and CI describe the real supported behavior.
.github/copilot-instructions.md:1
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
spiffworkflow-backend/src/spiffworkflow_backend/middleware/asgi_proxy_fix.py:1
low System graph quality Maintenance conf 1.00 84 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
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: nginx:1.29-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
spiffworkflow-frontend/Dockerfile:45 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: nginx:1.29-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
connector-proxies/aggregate/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:24.15.0-trixie-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
spiffworkflow-frontend/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 3 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.13.13-slim-trixie
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
3 files, 3 locations
connector-proxies/async-http/Dockerfile:1
connector-proxy-demo/Dockerfile:2
spiffworkflow-backend/Dockerfile:2
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: quay.io/keycloak/keycloak:22.0.4
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 1, 15
spiffworkflow-backend/keycloak/Dockerfile:1, 15 (2 hits)
containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: connector-proxy-demo/app.py
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: docs/conf.py
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: spiffworkflow-backend/app.py
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: spiffworkflow-backend/spiff_web_server.py
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: spiffworkflow-backend/src/spiffworkflow_backend/config/local_development.py
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: spiffworkflow-backend/src/spiffworkflow_backend/config/unit_testing.py
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: spiffworkflow-backend/src/spiffworkflow_backend/constants.py
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: spiffworkflow-backend/src/spiffworkflow_backend/load_database_models.py
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: spiffworkflow-frontend/eslint.config.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: spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/icons/SvgIcons.tsx
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: spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/modals.ts
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: spiffworkflow-frontend/src/__tests__/DynamicCSSInjection.test.tsx
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: spiffworkflow-frontend/src/__tests__/ProcessBreadcrumb.test.tsx
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: spiffworkflow-frontend/src/components/messages/MessageEditor.test.tsx
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: spiffworkflow-frontend/src/components/messages/MessageHelper.test.tsx
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: spiffworkflow-frontend/src/components/messages/MessageModelList.test.tsx
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: spiffworkflow-frontend/src/components/messages/MessageModelSync.test.ts
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: spiffworkflow-frontend/src/contexts/Can.tsx
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: spiffworkflow-frontend/src/extension_ui_schema_interfaces.ts
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: spiffworkflow-frontend/src/helpers.test.tsx
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: spiffworkflow-frontend/src/i18n.ts
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: spiffworkflow-frontend/src/interfaces.ts
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: spiffworkflow-frontend/src/rjsf/formEnhancements.test.ts
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: spiffworkflow-frontend/src/services/DateAndTimeService.test.tsx
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: spiffworkflow-frontend/src/services/FormattingService.test.tsx
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: spiffworkflow-frontend/src/services/HttpService.test.tsx
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: spiffworkflow-frontend/src/types/definitions.d.ts
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: spiffworkflow-frontend/src/views/MessageListPage.test.tsx
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: spiffworkflow-frontend/src/vite-env.d.ts
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: spiffworkflow-frontend/test/diagram_edit_acceptance/config.py
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: spiffworkflow-frontend/test/vitest.setup.ts
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: spiffworkflow-frontend/vite.config.ts
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: spiffworkflow-frontend/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: spiffworkflow-backend/migrations/versions/1073364bc015_merging_two_heads.py:upgrade, spiffworkflow-backend/migrations/versions/57df21dc569d_merging_two_heads.py:upgrade This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — se…
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: spiffworkflow-backend/src/spiffworkflow_backend/models/process_group.py:from_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/process_group.py:from_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/process_group.py:from_dict Th…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:to_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:to_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:to_dict, spiffworkflow-backend/src/spiffwork…
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: spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:from_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:from_dict, spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:from_dict, spiffworkflow-backend/src/spi…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 9 places
Functions with the same first-5-line body hash: spiffworkflow-backend/src/spiffworkflow_backend/scripts/delete_process_instances_with_criteria.py:run, spiffworkflow-backend/src/spiffworkflow_backend/scripts/get_group_members.py:run, spiffworkflow-backend/src/spiffworkflow_backend/scripts/script.py:…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `data_copy` in spiffworkflow-backend/src/spiffworkflow_backend/models/file.py:105
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 `data_copy` in spiffworkflow-backend/src/spiffworkflow_backend/models/process_group.py:72
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 `data_copy` in spiffworkflow-backend/src/spiffworkflow_backend/models/process_model.py:100
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 `data_copy` in spiffworkflow-backend/src/spiffworkflow_backend/models/task.py:207
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 `Demo_v2` in spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_bpmn_process_definition_persistence.py:101
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 `group_data_copy` in spiffworkflow-backend/src/spiffworkflow_backend/services/process_model_service.py:522
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 `human_tasks_legacy` in spiffworkflow-backend/src/spiffworkflow_backend/services/user_service.py:229
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 `list_objects_v2` in spiffworkflow-backend/src/spiffworkflow_backend/routes/debug_controller.py:131
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 `operation_params_copy` in spiffworkflow-backend/src/spiffworkflow_backend/services/custom_service_task.py:46
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 `process_copy` in spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:560
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 `process_copy` in spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_service.py:226
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 `process_instance_dict_copy` in spiffworkflow-backend/src/spiffworkflow_backend/services/process_model_test_generator_service.py:28
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 `process_instance_run_deprecated` in spiffworkflow-backend/src/spiffworkflow_backend/routes/process_instances_controller.py:72
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 `process_model_copy` in spiffworkflow-backend/src/spiffworkflow_backend/routes/process_models_controller.py:237
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 `response_copy` in spiff-arena-common/src/spiff_arena_common/tester.py:76
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_force_sync_to_webhook_revision_resets_clean_checkout_without_backup` in spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_git_service.py:168
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_process_model_copy` in spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_models_controller.py:367
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 `travel_start_test_v2` in spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_message_service.py:531
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 — spiffworkflow-backend/tests/load_testing/task_submission/parallel_tasks.js:28
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 — spiffworkflow-frontend/src/components/ProcessModelImportDialog.tsx:102
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 — spiffworkflow-frontend/src/components/ReactFormBuilder/ReactFormBuilder.tsx:101
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 — spiffworkflow-frontend/src/hooks/useEffectDebugger.tsx:39
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 — spiffworkflow-frontend/src/views/ProcessInstanceShow.tsx:1054
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 — spiffworkflow-frontend/src/workers/python.ts:6
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 quality Integrity conf 1.00 Stub function `_run` (body is just `pass`/`return`) — spiff-arena-common/src/spiff_arena_common/runner.py:102
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `clear_state` (body is just `pass`/`return`) — spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py:145
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — spiffworkflow-backend/migrations/versions/1073364bc015_merging_two_heads.py:19
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — spiffworkflow-backend/migrations/versions/57df21dc569d_merging_two_heads.py:19
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `will_complete_task` (body is just `pass`/`return`) — spiffworkflow-backend/src/spiffworkflow_backend/services/workflow_execution_service.py:110
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /assign_user_to_group
`spiffworkflow-backend/src/spiffworkflow_backend/routes/user_blueprint.py` declares `ANY /assign_user_to_group` 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 removin…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /auth
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /auth` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider remo…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /end_session
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /end_session` 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 — consid…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /form_submit
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /form_submit` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consid…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /group/<group_name>
`spiffworkflow-backend/src/spiffworkflow_backend/routes/user_blueprint.py` declares `ANY /group/<group_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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /jwks
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /jwks` 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 remo…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /refresh
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /refresh` 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 r…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /remove_user_from_group
`spiffworkflow-backend/src/spiffworkflow_backend/routes/user_blueprint.py` declares `ANY /remove_user_from_group` 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 remov…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /token
`spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py` declares `ANY /token` 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 rem…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: ANY /user/<username>
`spiffworkflow-backend/src/spiffworkflow_backend/routes/user_blueprint.py` declares `ANY /user/<username>` 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 …
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/src/spiffworkflow_backend/services/authorization_service.py (1140 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py (1832 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_service.py (1023 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/tests/spiffworkflow_backend/integration/test_process_api.py (3436 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py (1067 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_process_instance_processor.py (1613 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-frontend/src/components/ProcessInstanceListTableWithFilters.tsx (1849 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: spiffworkflow-frontend/src/views/ProcessInstanceShow.tsx (2151 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/dcdaf7ef-267f-49f9-92a1-e14f4851e3ce/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/dcdaf7ef-267f-49f9-92a1-e14f4851e3ce/

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.