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

tenzir/tenzir

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

360 raw signals (100 security + 260 graph) 11/13 scanners ran 50th percentile · Cpp · large (100-500K LoC) System graph score 74 (lower by 6)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 7 hours ago · v2 · 84 actionable findings from 2 signal sources. 146 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 40.0 0.15 6.00
security_score 100.0 0.25 25.00
testing_score 20.0 0.20 4.00
documentation_score 90.0 0.15 13.50
practices_score 79.0 0.15 11.85
code_quality 67.0 0.10 6.70
Overall 1.00 67.0
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B- (67/100). Dimensions: security 100, maintainability 40. 100 findings (48 security). 113,088 lines analyzed.

Showing 72 of 84 actionable findings. 230 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 software dependencies conf 0.90 ✓ Repobility [MINED125] GHA script injection via github.head_ref in run-step: Multi-line `run: |` block interpolates ${{ github.head_ref }} into shell. PR title/body/branch/comment fields are attacker-controllable.
Capture the field into an env var first; reference $ENV_VAR in shell.
.github/workflows/nix-build-job.yaml:370
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 16 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, 16 locations
.github/workflows/tenzir.yaml:611, 636, 734, 914, 915, 928, 1104, 1116, +5 more (13 hits)
.github/workflows/style-check.yaml:30, 40 (2 hits)
.github/workflows/analysis.yaml:86
CI/CD securityworkflow secretsGitHub Actions
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED017] C System Call: system() invokes shell. command injection if any arg is dynamic.
Review and fix per the pattern semantics. See CWE-78 / for context.
3 files, 3 locations
libtenzir/builtins/aspects/index.cpp:30
libtenzir/builtins/components/metrics_collector.cpp:84
libtenzir/builtins/operators/fields.cpp:31
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED118] Dockerfile FROM `public.ecr.aws/docker/library/debian:trixie-slim` not pinned by digest: `FROM public.ecr.aws/docker/library/debian:trixie-slim` 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 public.ecr.aws/docker/library/debian:trixie-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
2 files, 3 locations
Dockerfile:1, 2 (2 hits)
tenzir/services/systemd/test/Dockerfile:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED126] Workflow container/services image `debian:bookworm-20230227-slim` unpinned: `container/services image: debian:bookworm-20230227-slim` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `debian:bookworm-20230227-slim@sha256:<digest>`. Re-pin via Dependabot Docker scope.
.github/workflows/analysis.yaml:20
high Security checks cicd CI/CD security conf 0.92 Dockerfile copies the entire context without .dockerignore
Create .dockerignore before using broad context copies, or copy only the required files and directories.
python/Dockerfile:28 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.
python/Dockerfile:19 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `tenzir/news/.github/actions/sync` pinned to mutable ref `@main`: `uses: tenzir/news/.github/actions/sync@main` 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 ~23K rep…
.github/workflows/sync-news.yaml:25 CI/CD securitySupply chainGitHub Actions
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.
python/Dockerfile:19 containersRemote installer
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
tenzir/news/.github/actions/sync@main can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/sync-news.yaml:25 CI/CD securitySupply chainGithub actions
high System graph security security conf 1.00 Insecure pattern 'exec_used' in python/tenzir-operator/src/tenzir_operator/executor.py:404
Found a known-risky pattern (exec_used). Review and replace if possible.
python/tenzir-operator/src/tenzir_operator/executor.py:404 Exec used
high System graph cicd CI/CD security conf 1.00 tj-actions/changed-files is tag-pinned instead of SHA-pinned
The tj-actions/changed-files incident showed that mutable action tags can execute credential-stealing code across many repositories. Pin this action to a reviewed commit SHA.
.github/workflows/labeler.yaml:31 CI/CD securitySupply chainGithub actions
medium Security checks quality Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
low Security checks quality Error handling conf 0.55 ✓ Repobility 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.
.github/workflows/nix-build.py:421 Error handlingquality
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 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
Dockerfile:495
ansible/test/Dockerfile:1
tenzir/services/systemd/test/Dockerfile:1
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 5 occurrences Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
2 files, 5 locations
Dockerfile:44, 67, 77, 203 (4 hits)
tenzir/services/systemd/test/Dockerfile:3
CI/CD securitycontainers
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — scripts/ccache/r2-broker/src/index.js:91
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: ansible/test/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: python/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: tenzir/services/systemd/test/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 40 occurrences GitHub Action is tag-pinned rather than SHA-pinned
codecov/codecov-action@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
9 files, 40 locations
.github/workflows/tenzir.yaml:163, 165, 170, 609, 762, 764, 912, 926, +3 more (19 hits)
.github/workflows/marketplace-release.yaml:56, 67, 73, 82 (7 hits)
.github/workflows/bump-plugins-submodule.yaml:20, 36, 42 (5 hits)
.github/workflows/ccache-r2-broker.yaml:61 (2 hits)
.github/workflows/docker.yaml:58, 66 (2 hits)
.github/workflows/update-ocsf-schemas.yaml:30, 62 (2 hits)
.github/workflows/analysis.yaml:84
.github/workflows/release.yaml:148
CI/CD securitySupply chainGitHub Actions
medium System graph cicd CI/CD security conf 1.00 11 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.
11 files, 11 locations
.github/workflows/benchmark-pr.yaml
.github/workflows/ccache-r2-broker.yaml
.github/workflows/claude.yaml
.github/workflows/docker.yaml
.github/workflows/macos-notarization-check.yaml
.github/workflows/marketplace-release.yaml
.github/workflows/nix-build-job.yaml
.github/workflows/push-manifest.yaml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in schema/taxonomy/tenzir/file.yaml:28
Found a known-risky pattern (weak_hash). Review and replace if possible.
schema/taxonomy/tenzir/file.yaml:28 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/workflows/nix-build.py:71
`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/tenzir/setup.py:243
`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/tenzir/src/tenzir/tenzir/cli.py:62
`subprocess.Popen(...)` 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/tenzir/src/tenzir/tenzir/tenzir.py:504
`subprocess.Popen(...)` 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 — scripts/auto-reload.py:51
`subprocess.Popen(...)` 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 — scripts/bench-ci/find_build_run.py:192
`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 — scripts/bench-ci/resolve_compare_manifest.py:87
`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 — scripts/bench-ci/run_benchmarks.py:229
`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 — scripts/benchmark-nats.py:141
`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 — scripts/ccache/s3-storage-helper.py:1189
`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 — scripts/splunk-search.py:169
`subprocess.Popen(...)` 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 — test/hooks/__init__.py:152
`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 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.
scripts/sync-tenzir-nodes.sh Ports
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
python/Dockerfile:9 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, 14 locations
libtenzir/builtins/operators/from_tcp.cpp:5, 187 (2 hits)
libtenzir/builtins/operators/sockets.cpp:37, 40 (2 hits)
libtenzir/aux/robin-map/include/tsl/robin_set.h:102
libtenzir/builtins/aggregation-functions/any.cpp:18
libtenzir/builtins/aggregation-functions/distinct.cpp:67
libtenzir/builtins/aggregation-functions/min_max.cpp:131
libtenzir/builtins/aggregation-functions/stddev_variance.cpp:11
libtenzir/builtins/aggregation-functions/sum.cpp:122
duplicationquality
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: gcc:15-trixie
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: public.ecr.aws/docker/library/debian: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.
Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: python/tenzir/src/tenzir/utils/arrow.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: python/tenzir/src/tenzir/utils/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: python/tenzir/src/tenzir/utils/logging.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: scripts/splunk-search.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph cicd CI/CD security conf 1.00 25 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/upload-artifact@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
10 files, 25 locations
.github/workflows/tenzir.yaml:633, 731, 956, 971, 1019, 1045 (12 hits)
.github/workflows/analysis.yaml:72, 78 (2 hits)
.github/workflows/bump-plugins-submodule.yaml:31 (2 hits)
.github/workflows/sync-news.yaml:18 (2 hits)
.github/workflows/update-ocsf-schemas.yaml:19, 48 (2 hits)
.github/workflows/ccache-r2-broker.yaml:23
.github/workflows/docker.yaml:100
.github/workflows/labeler.yaml:58
CI/CD securitySupply chainGitHub Actions
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: scripts/benchmark-nats.py:payload_bytes, scripts/benchmark-nats.py:payload_bytes This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: test/runners/ir_runner.py:run, test/runners/lexer_runner.py:run, test/runners/ast_runner.py:run This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're sep…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: python/tenzir-common/src/tenzir_common/arrow.py:as_py, python/tenzir-common/src/tenzir_common/arrow.py:as_py, python/tenzir-common/src/tenzir_common/arrow.py:as_py, python/tenzir-common/src/tenzir_common/arrow.py:as_py This is *the* AI-coder failure …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_parse_metadata_v1` in test/fixtures/prometheus_remote_write_mock.py:128
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 scripts/ccache/s3-storage-helper.py:563
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 `tenzir_prometheus_fixture_v2` in test/tests/operators/to_prometheus/prometheus/04_verify_v2.py:44
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 `write_all_blob_copy` in test/tests/operators/write_all/07_verify_roundtrip.py:10
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_build
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:434
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_print_pkgutil_identifier
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:1160
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_push
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:1107
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_reference
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/bench-ci/run_benchmarks.py:372
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_sign
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:721
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_test
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:677
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_upload
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
.github/workflows/nix-build.py:1031
low System graph software Dead code conf 1.00 Possibly dead Python function: collect_pyarrow
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir/src/tenzir/tenzir/convert.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: emit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir-common/src/tenzir_common/logging.py:30
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_exception
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir/src/tenzir/utils/asyncio.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: limit_write
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir-operator/src/tenzir_operator/executor.py:425
low System graph software Dead code conf 1.00 Possibly dead Python function: make_record_batch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir-common/src/tenzir_common/arrow.py:440
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_case
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/benchmark-nats.py:522
low System graph software Dead code conf 1.00 Possibly dead Python function: resolve_build_entry
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/bench-ci/run_benchmarks.py:158
low System graph software Dead code conf 1.00 Possibly dead Python function: run_pipeline_sync
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir/src/tenzir/tenzir/tenzir.py:550
low System graph software Dead code conf 1.00 Possibly dead Python function: sync_exec
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/tenzir/src/tenzir/tenzir/cli.py:60
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — python/tenzir/src/tenzir/tenzir/tenzir.py:213
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: scripts/ccache/s3-storage-helper.py (2433 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/dbb69b60-e274-4966-9540-2b97d7923d14/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/dbb69b60-e274-4966-9540-2b97d7923d14/

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.