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

Scan timing: clone 22.3s · analysis 27.5s · 42.1 MB · GitHub API rate-limit (preflight)

Apicurio/apicurio-registry

https://github.com/Apicurio/apicurio-registry · scanned 2026-06-05 13:09 UTC (5 days, 7 hours ago) · 10 languages

1045 raw signals (429 security + 616 graph) 11/13 scanners ran 93rd percentile · Java · large (100-500K LoC) System graph score 73 (higher by 12)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 7 hours ago · v2 · 223 actionable findings from 2 signal sources. 513 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 80.0 0.20 16.00
documentation_score 88.0 0.15 13.20
practices_score 73.0 0.15 10.95
code_quality 78.0 0.10 7.80
Overall 1.00 85.7
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
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 Ranks in the 38th percentile among large-sized repos. Strongest testing (75), documentation (72); weakest security (55), practices (58). 100 findings (8 critical, 2 high). Most common pattern: cpp-new-without-delete.

Showing 144 of 223 actionable findings. 736 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 cicd CI/CD security conf 0.96 14 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.
10 files, 14 locations
distro/docker-compose/in-memory-basicauth/docker-compose.yml:1, 18 (2 hits)
distro/docker-compose/mysql-no-auth/docker-compose.yml:7, 25 (2 hits)
distro/docker-compose/pg-no-auth/docker-compose.yml:7, 24 (2 hits)
distro/docker-compose/pg-secrets/docker-compose.yml:14, 35 (2 hits)
distro/docker-compose/in-memory-with-auth/docker-compose.yml:1
distro/docker-compose/in-memory-with-envoy-opa/docker-compose.yml:1
distro/docker-compose/in-memory-with-observability/docker-compose.yml:68
distro/docker-compose/in-memory-with-rbac-app/docker-compose.yml:1
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 6 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.
lines 401, 402, 403, 404, 419, 420
.github/workflows/verify.yaml:401, 402, 403, 404, 419, 420 (6 hits)
CI/CD securityworkflow secretsGitHub Actions
critical System graph security security conf 1.00 Insecure pattern 'private_key_in_repo' in java-sdk/adapter-jdk/src/main/java/io/apicurio/registry/client/common/ssl/JdkSslContextFactory.java:46
Found a known-risky pattern (private_key_in_repo). Review and replace if possible.
java-sdk/adapter-jdk/src/main/java/io/apicurio/registry/client/common/ssl/JdkSslContextFactory.java:46 Private key in repo
critical System graph security Secrets conf 1.00 Possible secret in cli/src/main/java/io/apicurio/registry/cli/auth/LoginCommand.java
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
cli/src/main/java/io/apicurio/registry/cli/auth/LoginCommand.java:97
critical System graph security Secrets conf 1.00 Possible secret in cli/src/main/java/io/apicurio/registry/cli/config/ConfigModel.java
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
cli/src/main/java/io/apicurio/registry/cli/config/ConfigModel.java:26
critical System graph security Secrets conf 1.00 3 occurrences Possible secret in schema-resolver/src/main/java/io/apicurio/registry/resolver/config/SchemaResolverConfig.java
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 185, 236, 294
schema-resolver/src/main/java/io/apicurio/registry/resolver/config/SchemaResolverConfig.java:185, 236, 294 (3 hits)
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /agents/{groupId}/{artifactId}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
app/src/main/java/io/apicurio/registry/rest/wellknown/WellKnownResource.java:62
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /mcp-tools/{groupId}/{artifactId}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
app/src/main/java/io/apicurio/registry/rest/wellknown/WellKnownResource.java:103
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED036] Python Os System Call: os.system() invokes shell with no escaping.
Review and fix per the pattern semantics. See CWE-78 / for context.
python-sdk/kiota-gen.py:86
high Security checks software dependencies conf 0.90 ✓ Repobility 17 occurrences [MINED118] Dockerfile FROM `registry.access.redhat.com/ubi10/openjdk-21-runtime:latest` not pinned by digest: `FROM registry.access.redhat.com/ubi10/openjdk-21-runtime:latest` 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 registry.access.redhat.com/ubi10/openjdk-21-runtime:latest@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
12 files, 14 locations
support-chat/huggingface/Dockerfile:1, 2, 3 (3 hits)
distro/docker/src/main/docker/Dockerfile.jvm:1
distro/gitops/Dockerfile:1
docs-playbook/Dockerfile:4
examples/debezium-otel-tracing/cdc-consumer/Dockerfile:3
examples/debezium-otel-tracing/debezium-server/Dockerfile:1
examples/debezium-otel-tracing/order-service/Dockerfile:3
examples/otel-tracing/consumer/Dockerfile:3
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `.mvn/wrapper/maven-wrapper.jar` committed in source repo: `.mvn/wrapper/maven-wrapper.jar` is a .jar binary (50,710 bytes) committed to a repo that otherwise has 2958 source files. Trojan binaries inside otherwise-normal source repos are a known supply-chain attack: a compromised dependency or PR slips in a binary that gets executed by build scripts.
Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source.
.mvn/wrapper/maven-wrapper.jar:1
high Security checks software Xxe conf 1.00 3 occurrences [SEC024] XML External Entity (XXE) — Java parser default: Java XML parsers accept external entity references by default. An attacker can craft XML input that reads server files (file://), exfiltrates data via DNS, or causes denial of service via the 'billion laughs' attack.
Disable DTDs and external entities before parsing: factory.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); factory.setFeature("http://xml.org/sax/features/external-general-entities", false); factory.setFeature("http://xml.org/sax/features/external-parameter-entities"…
3 files, 3 locations
cli/src/main/java/io/apicurio/registry/cli/services/Update.java:89
schema-util/common/src/main/java/io/apicurio/registry/content/util/ContentTypeUtil.java:126
schema-util/xml/src/main/java/io/apicurio/registry/xml/util/DocumentBuilderAccessor.java:18
high Security checks cicd CI/CD security conf 0.90 Database service has no persistent data volume
Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing.
examples/odcs-data-contracts/docker-compose.yml:1 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.84 18 occurrences 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.
9 files, 18 locations
examples/debezium-otel-tracing/docker-compose.yml:34, 48, 70, 84 (4 hits)
examples/event-driven-architecture/docker-compose.yml:6, 43, 76, 117 (4 hits)
examples/otel-tracing/docker-compose.yml:33, 47, 69 (3 hits)
examples/kafka-order-processing/docker-compose.yml:3, 17 (2 hits)
distro/docker-compose/in-memory-with-elasticsearch/docker-compose.yml:5
distro/docker-compose/mysql-no-auth/docker-compose.yml:7
distro/docker-compose/pg-no-auth/docker-compose.yml:7
distro/docker-compose/pg-secrets/docker-compose.yml:14
CI/CD securitycontainers
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.
docs-playbook/Dockerfile:15 CI/CD securitycontainers
high System graph hardware Supply chain conf 1.00 Dockerfile pipes a remote installer into a shell
Executing downloaded code during image build gives the remote endpoint build-time code execution. Prefer pinned packages or verify downloaded installers by checksum/signature.
docs-playbook/Dockerfile:15 containersRemote installer
high System graph security security conf 1.00 Insecure pattern 'exec_used' in cli/src/main/java/io/apicurio/registry/cli/auth/ProcessUtils.java:38
Found a known-risky pattern (exec_used). Review and replace if possible.
cli/src/main/java/io/apicurio/registry/cli/auth/ProcessUtils.java:38 Exec used
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
medium Security checks quality Error handling conf 1.00 3 occurrences [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
3 files, 3 locations
support-chat/src/main/resources/META-INF/resources/chat-widget.js:191
ui/ui-editors/src/app/editor/_components/dialogs/add-aai-example.component.ts:66
ui/ui-editors/src/app/editor/_components/dialogs/add-example-20.component.ts:60
low Security checks security Deserialization conf 1.00 [SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code.
Use yaml.safe_load() instead of yaml.load(). Avoid pickle for untrusted data.
ui/ui-editors/src/app/editor/_components/dialogs/add-example-20.component.ts:67
low Security checks security Deserialization conf 1.00 [SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code.
Use yaml.safe_load() instead of yaml.load(). Avoid pickle for untrusted data.
ui/ui-editors/src/app/editor/_components/dialogs/add-aai-example.component.ts:73
medium Security checks security path traversal conf 1.00 3 occurrences [SEC012] ZipSlip — Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory.
Validate extracted paths with os.path.realpath() and ensure they stay within the target directory.
3 files, 3 locations
cli/src/main/java/io/apicurio/registry/cli/utils/FileUtils.java:75
common/src/main/java/io/apicurio/registry/utils/IoUtil.java:45
python-sdk/kiota-gen.py:55
medium Security checks security Crypto conf 1.00 [SEC014] SSL Verification Disabled: SSL certificate verification is disabled, allowing man-in-the-middle attacks.
Enable SSL verification. Use verify=True (default) for requests. Pin certificates if needed.
.github/scripts/verify-docker-release.sh:27
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
examples/kafka-order-processing/docker-compose.yml:32
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
examples/debezium-otel-tracing/docker-compose.yml:64
medium Security checks cicd CI/CD security conf 0.94 4 occurrences Compose service `ollama` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
3 files, 4 locations
examples/a2a-real-world-integration/docker-compose.yml:58, 77 (2 hits)
examples/event-driven-architecture/docker-compose.yml:117
examples/gitops/docker-compose.yaml:30
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.56 10 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.
4 files, 10 locations
examples/debezium-otel-tracing/docker-compose.yml:70, 84, 97, 158 (4 hits)
examples/event-driven-architecture/docker-compose.yml:64, 117 (2 hits)
examples/odcs-data-contracts/docker-compose.yml:1, 10 (2 hits)
examples/otel-tracing/docker-compose.yml:69, 83 (2 hits)
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.88 5 occurrences Database service has no healthcheck
Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command.
4 files, 5 locations
examples/debezium-otel-tracing/docker-compose.yml:70, 84 (2 hits)
examples/event-driven-architecture/docker-compose.yml:117
examples/odcs-data-contracts/docker-compose.yml:1
examples/otel-tracing/docker-compose.yml:69
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.74 9 occurrences Database service has no persistent data volume
Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing.
4 files, 9 locations
examples/event-driven-architecture/docker-compose.yml:6, 43, 76 (3 hits)
examples/debezium-otel-tracing/docker-compose.yml:34, 48 (2 hits)
examples/kafka-order-processing/docker-compose.yml:3, 17 (2 hits)
examples/otel-tracing/docker-compose.yml:33, 47 (2 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 3 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.
3 files, 3 locations
docs-playbook/Dockerfile:4
examples/tools/kafka-all/Dockerfile:4
ui/in-docker/Dockerfile:1
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 12 occurrences Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
12 files, 12 locations
distro/docker/src/main/docker/Dockerfile.jvm:1
distro/gitops/Dockerfile:1
docs-playbook/Dockerfile:4
examples/debezium-otel-tracing/cdc-consumer/Dockerfile:4
examples/debezium-otel-tracing/order-service/Dockerfile:4
examples/otel-tracing/consumer/Dockerfile:4
examples/otel-tracing/producer/Dockerfile:4
mcp/src/main/docker/Dockerfile.jvm:1
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
ui/in-docker/Dockerfile:4 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
docs-playbook/Dockerfile:12 CI/CD securitycontainers
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — app/src/main/resources-unfiltered/META-INF/resources/resources/js/redoc.standalone.js:22
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 — app/src/main/resources-unfiltered/META-INF/resources/resources/js/redoc.standalone.js:88
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 — ui/ui-app/src/services/useAgentService.ts:113
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 Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: quay.io/apicurio/apicurio-registry:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
support-chat/huggingface/Dockerfile:1 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: registry.access.redhat.com/ubi10/nginx-126
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
ui/Dockerfile:1 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 4 occurrences Docker base image uses a mutable or implicit tag: registry.access.redhat.com/ubi10/openjdk-21-runtime:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
4 files, 4 locations
examples/debezium-otel-tracing/cdc-consumer/Dockerfile:3
examples/debezium-otel-tracing/order-service/Dockerfile:3
examples/otel-tracing/consumer/Dockerfile:3
examples/otel-tracing/producer/Dockerfile:3
containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: registry.access.redhat.com/ubi10/ubi-minimal:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
distro/gitops/Dockerfile:1 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: ubuntu:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
ui/in-docker/Dockerfile:1 containersPinned dependencies
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: ubuntu:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docs-playbook/Dockerfile:4 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docs-playbook/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: examples/debezium-otel-tracing/debezium-server/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: examples/tools/kafka-all/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: ui/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: ui/in-docker/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 23 occurrences Frontend route `/dashboard` has no Link/navigate to it — ui/ui-app/src/app/MainPageWithAuth.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 cicd CI/CD security conf 1.00 22 occurrences GitHub Action is tag-pinned rather than SHA-pinned
aquasecurity/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
10 files, 22 locations
.github/workflows/verify-publish.yaml:106, 109, 115 (4 hits)
.github/workflows/release-operator.yaml:221, 431 (3 hits)
.github/workflows/reusable-docker-build.yaml:145, 148, 192 (3 hits)
.github/workflows/image-scan.yaml:18, 28 (2 hits)
.github/workflows/release-images.yaml:44, 48 (2 hits)
.github/workflows/release.yaml:273, 335 (2 hits)
.github/workflows/verify-build.yaml:59, 128 (2 hits)
.github/workflows/verify.yaml:40 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium System graph cicd CI/CD security conf 1.00 3 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.
3 files, 3 locations
.github/workflows/pr-lifecycle.yml
.github/workflows/release-artifacts.yaml
.github/workflows/release-sdks.yaml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in app/src/main/resources-unfiltered/META-INF/resources/resources/js/redoc.standalone.js:22
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
app/src/main/resources-unfiltered/META-INF/resources/resources/js/redoc.standalone.js:22 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in app/src/main/java/io/apicurio/registry/rest/v2/impl/GroupsResourceImpl.java:974
Found a known-risky pattern (weak_hash). Review and replace if possible.
app/src/main/java/io/apicurio/registry/rest/v2/impl/GroupsResourceImpl.java:974 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in common/src/main/resources/META-INF/openapi-v2.json:2348
Found a known-risky pattern (weak_hash). Review and replace if possible.
common/src/main/resources/META-INF/openapi-v2.json:2348 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/label-classification/classify.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — python-sdk/kiota-gen.py:52
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
17 test file(s) for 819 source file(s) (ratio 0.02). 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 cicd CI/CD security conf 0.68 11 occurrences App service does not wait for database health
Give the database a healthcheck and change the dependency to `depends_on: { db: { condition: service_healthy } }`.
5 files, 11 locations
examples/debezium-otel-tracing/docker-compose.yml:97, 125, 158, 181 (4 hits)
examples/otel-tracing/docker-compose.yml:83, 114, 139 (3 hits)
examples/event-driven-architecture/docker-compose.yml:17, 93 (2 hits)
examples/kafka-order-processing/docker-compose.yml:36
examples/odcs-data-contracts/docker-compose.yml:10
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 79 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.
12 files, 44 locations
examples/debezium-otel-tracing/docker-compose.yml:8, 19, 97, 125, 158, 181 (6 hits)
distro/docker-compose/in-memory-with-observability/docker-compose.yml:7, 29, 39, 52, 68 (5 hits)
examples/otel-tracing/docker-compose.yml:7, 18, 83, 114, 139 (5 hits)
distro/docker-compose/in-memory-with-envoy-opa/docker-compose.yml:1, 20, 41, 103 (4 hits)
distro/docker-compose/in-memory-basicauth/docker-compose.yml:1, 18, 41 (3 hits)
distro/docker-compose/in-memory-with-auth/docker-compose.yml:1, 18, 38 (3 hits)
distro/docker-compose/in-memory-with-rbac-app/docker-compose.yml:1, 18, 43 (3 hits)
distro/docker-compose/in-memory-with-rbac-owneronly/docker-compose.yml:1, 18, 40 (3 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 80 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.
12 files, 45 locations
examples/debezium-otel-tracing/docker-compose.yml:8, 19, 97, 125, 158, 181 (6 hits)
distro/docker-compose/in-memory-with-envoy-opa/docker-compose.yml:1, 20, 41, 61, 103 (5 hits)
distro/docker-compose/in-memory-with-observability/docker-compose.yml:7, 29, 39, 52, 68 (5 hits)
examples/otel-tracing/docker-compose.yml:7, 18, 83, 114, 139 (5 hits)
distro/docker-compose/in-memory-basicauth/docker-compose.yml:1, 18, 41 (3 hits)
distro/docker-compose/in-memory-with-auth/docker-compose.yml:1, 18, 38 (3 hits)
distro/docker-compose/in-memory-with-rbac-app/docker-compose.yml:1, 18, 43 (3 hits)
distro/docker-compose/in-memory-with-rbac-owneronly/docker-compose.yml:1, 18, 40 (3 hits)
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 9 occurrences Database service has no healthcheck
Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command.
4 files, 9 locations
examples/event-driven-architecture/docker-compose.yml:6, 43, 76 (3 hits)
examples/debezium-otel-tracing/docker-compose.yml:34, 48 (2 hits)
examples/kafka-order-processing/docker-compose.yml:3, 17 (2 hits)
examples/otel-tracing/docker-compose.yml:33, 47 (2 hits)
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.
2 files, 5 locations
docs-playbook/Dockerfile:13, 14, 16 (3 hits)
ui/in-docker/Dockerfile:5, 6 (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, 13 locations
app/src/main/java/io/apicurio/registry/services/http/CoreV2RegistryExceptionMapperService.java:28, 41 (2 hits)
app/src/main/java/io/apicurio/registry/a2a/rest/beans/AgentSearchResult.java:27
app/src/main/java/io/apicurio/registry/a2a/rest/beans/AgentSkill.java:35
app/src/main/java/io/apicurio/registry/ccompat/rest/v8/impl/SubjectsResourceImpl.java:88
app/src/main/java/io/apicurio/registry/contracts/odcs/OdcsCompletenessRule.java:4
app/src/main/java/io/apicurio/registry/contracts/odcs/OdcsFieldMetadata.java:24
app/src/main/java/io/apicurio/registry/contracts/odcs/OdcsFreshness.java:4
app/src/main/java/io/apicurio/registry/contracts/odcs/OdcsInfo.java:24
duplicationquality
low System graph quality Maintenance conf 1.00 214 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: centos:8
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
examples/tools/kafka-all/Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: eclipse-temurin:21-jre
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
support-chat/huggingface/Dockerfile:3 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: quay.io/apicurio/apicurio-registry-support-chat:latest-snapshot
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
support-chat/huggingface/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: quay.io/debezium/server:3.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
examples/debezium-otel-tracing/debezium-server/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: ui/tests/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: ui/tests/playwright.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: ui/tests/specs/explore.spec.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: ui/tests/specs/globalRules.spec.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: ui/tests/specs/masthead.spec.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: ui/tests/specs/referenceGraph.spec.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: ui/tests/specs/settings.spec.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: ui/tests/specs/smoke.spec.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: ui/ui-app/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: ui/ui-app/public/client-gen/client-gen.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: ui/ui-app/src/app/App.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: ui/ui-app/src/app/components/jsonSchema/JsonSchemaViewer.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: ui/ui-app/src/app/components/modals/ConfirmDeleteModal.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: ui/ui-app/src/app/components/modals/CreateCommentModal.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: ui/ui-app/src/app/components/modals/EditCommentModal.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: ui/ui-app/src/app/MainPageWithAuth.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: ui/ui-app/src/editors/editor-types.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: ui/ui-app/src/editors/TextEditor.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: ui/ui-app/src/main.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: ui/ui-app/src/models/drafts/CreateDraft.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: ui/ui-app/src/models/drafts/Draft.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: ui/ui-app/src/models/drafts/DraftContent.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: ui/ui-app/src/models/drafts/DraftInfo.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: ui/ui-app/src/models/drafts/DraftsSearchFilter.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: ui/ui-app/src/models/drafts/DraftsSearchResults.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: ui/ui-app/src/models/drafts/DraftsSortBy.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: ui/ui-app/src/models/GroupsSortBy.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: ui/ui-app/src/models/Paging.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: ui/ui-app/src/models/RenderPromptResponse.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: ui/ui-app/src/models/RuleViolationCause.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: ui/ui-app/src/models/SortOrder.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: ui/ui-app/src/models/system/VendorExtension.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: ui/ui-app/src/models/templates/Template.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: ui/ui-docs/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: ui/ui-docs/src/app/App.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: ui/ui-docs/src/app/DemoData.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: ui/ui-docs/src/app/hooks/useWindow.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: ui/ui-docs/src/main.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: ui/ui-editors/src/app/components/editors/editor.component.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: ui/ui-editors/src/app/editor/_models/component-type.model.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: ui/ui-editors/src/app/editor/_models/imported-component.model.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: ui/ui-editors/src/app/editor/_models/scope.model.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: ui/ui-editors/src/app/models/editingInfo.model.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: ui/ui-editors/src/app/models/editingInfoContent.model.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: ui/ui-editors/src/app/models/editingInfoFeatures.model.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: ui/ui-editors/src/app/models/editingInfoOpenApi.model.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: ui/ui-editors/src/environments/environment.prod.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: ui/ui-editors/src/environments/environment.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: ui/ui-editors/src/main.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: ui/ui-editors/src/polyfills.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph cicd CI/CD security conf 1.00 132 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 108 locations
.github/workflows/pr-lifecycle.yml:47, 53, 72, 78, 97, 103, 124, 130, +11 more (19 hits)
.github/workflows/release-operator.yaml:88, 133, 143, 210, 217, 265, 277 (14 hits)
.github/workflows/verify-extras.yaml:23, 26, 57, 67, 70, 111, 123, 128, +5 more (13 hits)
.github/workflows/operator.yaml:26, 29, 73, 91, 94, 165, 168, 175, +4 more (12 hits)
.github/workflows/release.yaml:52, 58, 192, 197, 215, 234, 239, 268, +4 more (12 hits)
.github/workflows/verify.yaml:37, 214, 232, 308, 311 (10 hits)
.github/workflows/release-images.yaml:58, 101, 107 (6 hits)
.github/workflows/verify-build.yaml:25, 28, 67, 89, 92 (5 hits)
CI/CD securitySupply chainGitHub Actions
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — ui/ui-editors/src/app/editor/_components/dynamicforms/types/array.type.ts:18
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 Integrity conf 1.00 Old/deprecated-named symbol `newDeprecated` in ui/ui-editors/src/app/editor/_components/forms/path/operation/info-section.component.ts:153
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 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.
ui/package.json CI/CD securitySupply chainNpm
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.
ui/ui-app/package.json CI/CD securitySupply chainNpm
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — app/src/main/resources-unfiltered/META-INF/resources/resources/js/redoc.standalone.js:22
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 — ui/ui-app/public/client-gen/client-gen.js:7
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 — ui/ui-app/src/app/pages/artifact/components/tabs/BranchesTable.tsx:100
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 — ui/ui-app/src/app/pages/artifact/components/tabs/VersionsTable.tsx:198
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 — ui/ui-app/src/app/pages/branch/components/tabs/BranchVersionsTable.tsx:95
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 — ui/ui-app/src/app/pages/group/components/tabs/GroupArtifactsTable.tsx:140
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 — ui/ui-editors/src/app/editor/_components/forms/channel/operation/message-section.component.ts:71
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 Complexity conf 1.00 Very large file: .github/scripts/pr-lifecycle.js (1385 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/main/java/io/apicurio/registry/rest/v2/impl/GroupsResourceImpl.java (1424 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/main/java/io/apicurio/registry/rest/v3/impl/GroupsResourceImpl.java (2732 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/main/java/io/apicurio/registry/storage/impl/kafkasql/KafkaSqlRegistryStorage.java (1290 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/main/java/io/apicurio/registry/storage/impl/sql/AbstractSqlRegistryStorage.java (1782 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/main/java/io/apicurio/registry/storage/impl/sql/CommonSqlStatements.java (1588 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/noprofile/ccompat/rest/v7/ConfluentClientTest.java (1917 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/noprofile/rest/v3/DataContractsResourceTest.java (1130 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/noprofile/rest/v3/GroupsResourceTest.java (2113 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/noprofile/serde/JsonSchemaSerdeTest.java (1115 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/noprofile/storage/AbstractRegistryStorageTest.java (1299 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: app/src/test/java/io/apicurio/registry/rbac/RegistryClientTest.java (1590 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: utils/converter/src/main/java/io/apicurio/registry/utils/converter/avro/AvroData.java (2482 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: utils/protobuf-schema-utilities/src/main/java/io/apicurio/registry/utils/protobuf/schema/FileDescriptorUtils.java (1690 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/c7ccf673-11a3-4b13-8cca-2624354a26fc/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/c7ccf673-11a3-4b13-8cca-2624354a26fc/

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.