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.
189 of your 284 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 72.83s for a 132.9 MB repo slow.
  • Repobility's analysis ran in 11.41s after the clone landed.

iii-hq/iii

https://github.com/iii-hq/iii · scanned 2026-06-05 21:31 UTC (1 week, 2 days ago) · 10 languages

788 raw signals (264 security + 524 graph) 11/13 scanners ran 98th percentile · Rust · large (100-500K LoC) System graph score 73 (higher by 16)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 week, 2 days ago · v2 · 267 actionable findings from 2 signal sources. 257 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 93.0 0.15 13.95
practices_score 100.0 0.15 15.00
code_quality 58.0 0.10 5.80
Overall 1.00 88.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
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 13th percentile among medium-sized repos. Strongest dependencies (85), structure (70); weakest security (40), code quality (47). 267 findings (136 high). Most common pattern: ts-non-null-assertion.

Showing 175 of 267 actionable findings. 524 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 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.
sdk/packages/python/iii-example/docker-compose.yaml:3 CI/CD securitycontainers
critical Security checks cicd CI/CD security conf 0.96 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.
sdk/packages/node/iii-example/docker-compose.yaml:4 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 3 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.
2 files, 3 locations
.github/workflows/tf-plan.yml:41, 56 (2 hits)
.github/workflows/skill-check.yml:39
CI/CD securityworkflow secretsGitHub Actions
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED010] Ruby System Call: system / backtick run shell. Command injection if any arg dynamic.
Review and fix per the pattern semantics. See CWE-78 / for context.
docs/0-11-0/scripts/renderers/components.mts:42
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
crates/scaffolder-core/src/runtime/tool.rs:48
high Security checks quality Quality conf 1.00 ✓ Repobility 23 occurrences [MINED108] `self.base` used but never assigned in __init__: Method `__str__` of class `Version` reads `self.base`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.base = <default>` in __init__, or add a class-level default.
4 files, 23 locations
sdk/packages/python/iii/src/iii/iii.py:214, 238, 239, 281, 299, 303, 307, 316, +6 more (15 hits)
sdk/packages/python/observability/src/iii_observability/logger.py:111, 135, 150, 169, 184 (5 hits)
.github/scripts/calculate_release_version.py:38, 39 (2 hits)
sdk/packages/python/observability/src/iii_observability/telemetry_exporters.py:54
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED110] Blocking call `urllib.request.urlopen` inside async function `_fetch_example`: `urllib.request.urlopen` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
lines 187, 195, 201
sdk/packages/python/iii-example/src/main.py:187, 195, 201 (3 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility 6 occurrences [MINED118] Dockerfile FROM `node:24-slim` not pinned by digest: `FROM node:24-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 node:24-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
5 files, 6 locations
engine/Dockerfile.debug:1, 12 (2 hits)
crates/iii-worker/images/node/Dockerfile:1
crates/iii-worker/images/python/Dockerfile:1
engine/Dockerfile:1
engine/tests/fixtures/templates/docker/Dockerfile:3
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED126] Workflow container/services image `alpine:3.20` unpinned: `container/services image: alpine:3.20` 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 `alpine:3.20@sha256:<digest>`. Re-pin via Dependabot Docker scope.
.github/workflows/install-sh.yml:81
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED126] Workflow container/services image `rabbitmq:3-management-alpine` unpinned: `container/services image: rabbitmq:3-management-alpine` 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 `rabbitmq:3-management-alpine@sha256:<digest>`. Re-pin via Dependabot Docker scope.
.github/workflows/ci.yml:237
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED131] pre-commit hook `https://github.com/doublify/pre-commit-rust` pinned to mutable rev `v1.0`: `.pre-commit-config.yaml` references `https://github.com/doublify/pre-commit-rust` at `rev: v1.0`. 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).
2 files, 3 locations
engine/.pre-commit-config.yaml:2, 13 (2 hits)
sdk/.pre-commit-config.yaml:2
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `engine/firmware/libkrunfw-darwin-aarch64.dylib` committed in source repo: `engine/firmware/libkrunfw-darwin-aarch64.dylib` is a .dylib binary (22,886,048 bytes) committed to a repo that otherwise has 845 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.
engine/firmware/libkrunfw-darwin-aarch64.dylib:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `engine/firmware/libkrunfw-linux-aarch64.so` committed in source repo: `engine/firmware/libkrunfw-linux-aarch64.so` is a .so binary (22,873,704 bytes) committed to a repo that otherwise has 845 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.
engine/firmware/libkrunfw-linux-aarch64.so:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `engine/firmware/libkrunfw-linux-x86_64.so` committed in source repo: `engine/firmware/libkrunfw-linux-x86_64.so` is a .so binary (19,203,768 bytes) committed to a repo that otherwise has 845 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.
engine/firmware/libkrunfw-linux-x86_64.so:1
high Security checks cicd CI/CD security conf 0.84 3 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.
2 files, 3 locations
engine/docker-compose.yml:22, 35 (2 hits)
sdk/packages/node/iii-example/docker-compose.yaml:40
CI/CD securitycontainers
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.
engine/Dockerfile.debug:9 CI/CD securitycontainers
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def _fetch_example` — sdk/packages/python/iii-example/src/main.py:187
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
sdk/packages/python/iii-example/src/main.py:187 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def _post_example` — sdk/packages/python/iii-example/src/main.py:201
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
sdk/packages/python/iii-example/src/main.py:201 Sync io in asyncPerformance
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
sdk/packages/python/iii/src/iii/otel_worker_gauges.py:149
sdk/packages/python/iii/src/iii/types.py:241
sdk/packages/python/iii/src/iii/worker_metrics.py:146
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.
website/posthog-consent.js:74
medium Security checks quality Quality conf 1.00 [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0).
Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser).
console/packages/console-frontend/src/api/websocket.ts:11
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
sdk/packages/python/iii/src/iii/format_utils.py:120
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
docs/navbar-counters.js:19
low Security checks quality Error handling conf 0.55 ✓ Repobility 5 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.
3 files, 5 locations
sdk/packages/python/iii/src/iii/format_utils.py:122, 152 (2 hits)
sdk/packages/python/iii/src/iii/iii.py:1048, 1214 (2 hits)
sdk/packages/python/observability/src/iii_observability/logger.py:106
Error handlingquality
medium Security checks cicd CI/CD security conf 0.94 Compose service `iii` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
engine/docker-compose.yml:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.74 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.
sdk/packages/node/iii-example/docker-compose.yaml:40 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
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.
engine/Dockerfile.debug:11 CI/CD securitycontainers
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
docs/navbar-counters.js:26
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
console/packages/console-frontend/src/hooks/useTheme.ts:29
high Security checks software dependencies conf 0.70 4 occurrences Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
4 files, 4 locations
README.md:85
docs/0-10-0/advanced/deployment.mdx:13
docs/0-10-0/quickstart.mdx:13
docs/0-11-0/advanced/deployment.mdx:13
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes.
engine/src/workers/secure_temp.rs:1
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — console/packages/console-frontend/src/api/alerts/alerts.ts:39
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 — console/packages/console-frontend/src/api/alerts/sampling.ts:44
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 — console/packages/console-frontend/src/api/events/functions.ts:49
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 — console/packages/console-frontend/src/api/observability/logs.ts:121
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 — console/packages/console-frontend/src/api/observability/metrics.ts:81
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 — console/packages/console-frontend/src/api/observability/traces.ts:104
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 — console/packages/console-frontend/src/api/queues/queues.ts:38
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 — console/packages/console-frontend/src/api/state/state.ts:28
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — console/packages/console-frontend/src/api/system/adapters.ts:16
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — console/packages/console-frontend/src/api/system/status.ts:59
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 — console/packages/console-frontend/src/api/system/workers.ts:48
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 — console/packages/console-frontend/src/routes/triggers.tsx:494
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 — docs/navbar-counters.js:36
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — sdk/packages/node/iii-example/src/http-example.ts:13
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 — sdk/packages/node/observability/src/http-instrumentation.ts:70
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: engine/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 57 occurrences GitHub Action is tag-pinned rather than SHA-pinned
slackapi/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 54 locations
.github/workflows/docker-engine.yml:81, 84, 91, 96, 111, 115, 123, 139, +4 more (17 hits)
.github/workflows/release-iii.yml:60, 115, 167, 172, 205, 274, 345, 750 (14 hits)
.github/workflows/_rust-binary.yml:136, 176, 272, 277, 282, 303 (6 hits)
.github/workflows/_py.yml:45, 73, 81 (3 hits)
.github/workflows/_go.yml:61, 130 (2 hits)
.github/workflows/_homebrew.yml:82, 282 (2 hits)
.github/workflows/_npm.yml:58, 102 (2 hits)
.github/workflows/_rust-cargo.yml:45, 69 (2 hits)
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/_go.yml
.github/workflows/_npm.yml
.github/workflows/_py.yml
.github/workflows/_rust-binary.yml
.github/workflows/bench-release.yml
.github/workflows/create-tag.yml
.github/workflows/deploy-website.yml
.github/workflows/generate-api-docs.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in engine/src/workers/rest_api/config.rs:164
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
engine/src/workers/rest_api/config.rs:164 Cors wildcard
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/calculate_release_version.py:202
`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 — sdk/packages/python/iii-example/src/main.py:187
`urllib.request.urlopen(...)` 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 14 in use
Port 14 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
crates/iii-worker/src/sandbox_daemon/iii.worker.yaml 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
sdk/packages/node/iii-example/docker-compose.yaml:4, 21 (2 hits)
sdk/packages/python/iii-example/docker-compose.yaml:3, 19 (2 hits)
engine/docker-compose.yml:1
engine/tests/fixtures/templates/docker/docker-compose.yml:3
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 6 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, 6 locations
sdk/packages/node/iii-example/docker-compose.yaml:4, 21 (2 hits)
sdk/packages/python/iii-example/docker-compose.yaml:3, 19 (2 hits)
engine/docker-compose.yml:1
engine/tests/fixtures/templates/docker/docker-compose.yml:3
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 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.
sdk/packages/node/iii-example/docker-compose.yaml:40 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, 25 locations
crates/iii-worker/src/core/stop.rs:41, 42, 99 (3 hits)
crates/iii-worker/src/core/update.rs:39, 66, 94 (3 hits)
crates/iii-worker/src/sandbox_daemon/fs/ls.rs:30, 93, 115 (3 hits)
crates/iii-worker/src/core/list.rs:13, 61 (2 hits)
crates/iii-worker/src/core/start.rs:42, 100 (2 hits)
crates/iii-worker/src/sandbox_daemon/fs/grep.rs:50, 148 (2 hits)
crates/iii-worker/src/sandbox_daemon/fs/mkdir.rs:37, 125 (2 hits)
crates/iii-worker/src/sandbox_daemon/fs/mv.rs:34, 122 (2 hits)
duplicationquality
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.
engine/src/workers/secure_temp.rs:1
low System graph quality Maintenance conf 1.00 52 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: gcr.io/distroless/cc-debian12:nonroot
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
engine/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-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
crates/iii-worker/images/node/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
crates/iii-worker/images/python/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: blog/src/content.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: console/packages/console-frontend/src/api/flows/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: console/packages/console-frontend/src/api/types/shared.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: console/packages/console-frontend/src/components/flow/flow-view.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: console/packages/console-frontend/src/components/ui/button.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: console/packages/console-frontend/src/components/ui/tabs.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: console/packages/console-frontend/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: console/packages/console-frontend/src/routes/dead-letter.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: console/packages/console-frontend/src/routes/flow.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: console/packages/console-frontend/src/routeTree.gen.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: console/packages/console-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: console/packages/console-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: console/packages/console-frontend/vitest.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: sdk/packages/node/iii-browser/src/state.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: sdk/packages/node/iii-browser/src/stream.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: sdk/packages/node/iii-browser/src/triggers.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: sdk/packages/node/iii-browser/tests/connection.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: sdk/packages/node/iii-browser/tests/exports.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: sdk/packages/node/iii-browser/tests/helpers.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: sdk/packages/node/iii-browser/tests/integration/channels.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: sdk/packages/node/iii-browser/tests/integration/functions-available-trigger.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: sdk/packages/node/iii-browser/tests/integration/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: sdk/packages/node/iii-browser/tests/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: sdk/packages/node/iii-browser/tests/triggers.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: sdk/packages/node/iii-browser/tsdown.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: sdk/packages/node/iii-browser/vitest.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: sdk/packages/node/iii-browser/vitest.integration.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: sdk/packages/node/iii-example/src/hooks.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: sdk/packages/node/iii-example/src/http-example.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: sdk/packages/node/iii-example/src/iii.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: sdk/packages/node/iii-example/src/middleware-example.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: sdk/packages/node/iii-example/src/queue-bulk-email.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: sdk/packages/node/iii-example/src/queue-dlq.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: sdk/packages/node/iii-example/src/queue-ecommerce.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: sdk/packages/node/iii-example/src/queue-financial.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: sdk/packages/node/iii-example/src/state.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: sdk/packages/node/iii-example/src/stream.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: sdk/packages/node/iii-example/src/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: sdk/packages/node/iii/tsdown.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: sdk/packages/node/iii/vitest.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: sdk/packages/node/observability/src/http-instrumentation.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: sdk/packages/node/observability/src/internal.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: sdk/packages/node/observability/src/logger.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: sdk/packages/node/observability/src/telemetry-system/context.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: sdk/packages/node/observability/src/telemetry-system/exporters.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: sdk/packages/node/observability/src/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: sdk/packages/node/observability/tsdown.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: sdk/packages/node/observability/vitest.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: website/scripts/generate-llms-agents.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: website/scripts/routes.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 35 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/create-github-app-token@v2 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 35 locations
.github/workflows/release-iii.yml:91, 95, 145, 149, 180, 238, 242, 344 (12 hits)
.github/workflows/_rust-binary.yml:148, 201, 212, 219, 226 (5 hits)
.github/workflows/ci.yml:558, 622, 681, 727, 772 (5 hits)
.github/workflows/_homebrew.yml:103, 112 (2 hits)
.github/workflows/checklist-checker.yml:28, 32 (2 hits)
.github/workflows/cloudfront-functions-test.yml:20, 21 (2 hits)
.github/workflows/create-tag.yml:51, 57 (2 hits)
.github/workflows/bench-release.yml:61
CI/CD securitySupply chainGitHub Actions
low System graph quality Integrity conf 1.00 14 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: sdk/packages/python/iii-example/src/stream.py:get, sdk/packages/python/iii-example/src/stream.py:get 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'r…
14 occurrences
repo-level (14 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: sdk/packages/python/iii-example/src/stream.py:list_groups, sdk/packages/python/iii-example/src/stream.py:list, sdk/packages/python/iii-example/src/stream.py:list_groups This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — se…
4 occurrences
repo-level (4 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: sdk/packages/python/observability/src/iii_observability/telemetry_exporters.py:shutdown, sdk/packages/python/observability/src/iii_observability/telemetry_exporters.py:shutdown, sdk/packages/python/observability/src/iii_observability/telemetry_exporte…
duplicatesduplication
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.
console/package.json CI/CD securitySupply chainNpm
low System graph software Dead code conf 1.00 Possibly dead Python function: create_todo
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/iii_function_example.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: extract_context
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/observability/src/iii_observability/telemetry.py:553
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_cleanup
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:134
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_order
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:158
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_schedule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:118
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_user_updated
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:146
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_webhook
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:91
low System graph software Dead code conf 1.00 Possibly dead Python function: reject
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii/src/iii/types.py:74
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_baggage_entry
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/observability/src/iii_observability/telemetry.py:580
low System graph software Dead code conf 1.00 Possibly dead Python function: set_attributes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/observability/src/iii_observability/telemetry.py:485
low System graph software Dead code conf 1.00 Possibly dead Python function: set_baggage_entry
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/observability/src/iii_observability/telemetry.py:573
low System graph software Dead code conf 1.00 Possibly dead Python function: setup
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/trigger_types.py:77
low System graph software Dead code conf 1.00 Possibly dead Python function: unsubscribe
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/hooks.py:57
low System graph software Dead code conf 1.00 Possibly dead Python function: wrapped
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii-example/src/hooks.py:18
low System graph software Dead code conf 1.00 Possibly dead Python function: wrapped
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/packages/python/iii/src/iii/iii.py:1040
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — console/packages/console-frontend/src/api/state/streams.ts:26
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 — sdk/packages/node/iii-browser/src/channels.ts:156
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 — sdk/packages/node/iii-browser/src/types.ts:120
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 — sdk/packages/node/iii-example/src/trigger-types.ts:49
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 — sdk/packages/node/iii/src/channels.ts:189
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 — sdk/packages/node/iii/src/types.ts:142
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 — sdk/packages/node/observability/src/logger.ts: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 — sdk/packages/node/observability/src/telemetry-system/connection.ts:46
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 — sdk/packages/node/observability/src/worker-metrics.ts:53
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 — website/scripts/generate-llms-agents.ts:192
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 — website/scripts/generate-sitemap.ts:72
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 `get_span_context` (body is just `pass`/`return`) — sdk/packages/python/observability/src/iii_observability/telemetry.py:493
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 `shutdown` (body is just `pass`/`return`) — sdk/packages/python/observability/src/iii_observability/baggage_span_processor.py:38
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 `shutdown` (body is just `pass`/`return`) — sdk/packages/python/observability/src/iii_observability/telemetry_exporters.py:289
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 `unregister_trigger` (body is just `pass`/`return`) — sdk/packages/python/iii-example/src/trigger_types.py:70
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 `update` (body is just `pass`/`return`) — sdk/packages/python/iii-example/src/stream.py:89
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: console/packages/console-frontend/src/routes/triggers.tsx (1356 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-init/src/shell_dispatcher.rs (1604 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/bundle_download.rs (1986 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/config_file.rs (1758 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/local_worker.rs (1482 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/managed.rs (6491 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/shell_relay.rs (1380 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/status.rs (1697 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/src/cli/worker_manager/oci.rs (1490 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: crates/iii-worker/tests/bundle_worker_integration.rs (1548 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/builtins/queue.rs (2823 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/engine/mod.rs (4500 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/update_ops.rs (1475 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/config.rs (2311 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/engine_fn/mod.rs (2712 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/observability/metrics.rs (3670 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/observability/mod.rs (5920 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/observability/otel.rs (6406 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/queue/adapters/builtin/adapter.rs (1537 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/queue/queue.rs (2607 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/rest_api/views.rs (2644 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/stream/stream.rs (2095 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: engine/src/workers/telemetry/mod.rs (2664 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/packages/python/iii/src/iii/iii.py (1346 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/packages/rust/iii/src/iii.rs (2300 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/0011425f-b1e3-4957-8727-91a47bd93563/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/0011425f-b1e3-4957-8727-91a47bd93563/

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.