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

Scan timing: clone 5.14s · analysis 34.93s · 24.1 MB · GitHub API rate-limit (preflight)

imbue-ai/mngr

https://github.com/imbue-ai/mngr · scanned 2026-06-05 17:48 UTC (4 days, 20 hours ago) · 10 languages

1553 raw signals (285 security + 1268 graph) 10th percentile · Python · large (100-500K LoC) System graph score 47 (higher by 13)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 20 hours ago · v2 · 746 actionable findings from 2 signal sources. 173 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 16.4 0.25 4.10
testing_score 97.0 0.20 19.40
documentation_score 83.0 0.15 12.45
practices_score 77.0 0.15 11.55
code_quality 33.2 0.10 3.32
Overall 1.00 59.8
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C (60/100). Dimensions: security 16, maintainability 60. 285 findings (105 security). 369,665 lines analyzed.

Showing 473 of 746 actionable findings. 919 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 security secrets conf 0.95 Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
pyproject.toml:85
critical Security checks software dependencies conf 0.88 litellm: GHSA-r75f-5x8p-qvmc
LiteLLM has SQL Injection in Proxy API key verification
uv.lock
high Security checks quality Quality conf 1.00 ✓ Repobility 12 occurrences Missing import: `email` used but not imported
The file uses `email.something(...)` but never imports `email`. This raises NameError at runtime the first time the line executes.
12 files, 12 locations
apps/minds/imbue/minds/bootstrap.py:456
apps/remote_service_connector/imbue/remote_service_connector/app.py:1735
apps/remote_service_connector/imbue/remote_service_connector/testing.py:1175
libs/concurrency_group/imbue/concurrency_group/local_process.py:152
libs/mngr/imbue/mngr/api/gc.py:602
libs/mngr/imbue/mngr/hosts/common.py:249
libs/mngr/imbue/mngr/plugin_catalog.py:283
libs/mngr/imbue/mngr/providers/local/instance.py:382
critical Security checks software dependencies conf 0.88 protobufjs: GHSA-xq3m-2v4x-88gg
Arbitrary code execution in protobufjs
apps/minds/pnpm-lock.yaml
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 4 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
2 files, 4 locations
.github/workflows/ci.yml:26, 201, 235 (3 hits)
.github/workflows/vet.yml:16
CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in libs/mngr_imbue_cloud/imbue/mngr_imbue_cloud/cli/auth.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
libs/mngr_imbue_cloud/imbue/mngr_imbue_cloud/cli/auth.py:130
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
scripts/warm_cli_example.py:162
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
scripts/poll_modal_agents.py:146
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.
scripts/install.sh:32
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain "../" — directory escape.
Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context.
apps/minds/scripts/first-message-verify.sh:79
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
scripts/josh/workflow.py:188
high Security checks security Injection conf 0.50 [SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.
Use parameterized queries: cursor.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters.
apps/minds/imbue/minds/envs/migrations.py:154
low Security checks security Injection conf 1.00 3 occurrences [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
3 files, 3 locations
apps/minds/imbue/minds/deployment_tests/_mailtm.py:77
apps/minds/imbue/minds/envs/providers/supertokens_app.py:169
apps/minds/imbue/minds/telegram/bot_creator.py:86
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences `self.sign_up` used but never assigned in __init__
Method `install_on_app_module` of class `FakeSuperTokensBackend` reads `self.sign_up`, 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.
4 files, 25 locations
apps/remote_service_connector/imbue/remote_service_connector/testing.py:490, 491, 492, 493, 494, 495, 496, 497, +5 more (13 hits)
scripts/style_guide.py:424, 637, 638, 851, 852, 939 (6 hits)
frpc_test/bar.py:6, 7, 8 (3 hits)
frpc_test/foo.py:6, 7, 8 (3 hits)
high Security checks software dependencies conf 0.88 axios: GHSA-35jp-ww65-95wh
axios Vulnerable to Full Man-in-the-Middle via Prototype Pollution Gadget in `config.proxy`
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-3g43-6gmg-66jw
axios Vulnerable to Credential Theft and Response Hijacking via Prototype Pollution Gadget in Config Merge
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-6chq-wfr3-2hj9
Axios: Header Injection via Prototype Pollution
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-777c-7fjr-54vf
Allocation of Resources Without Limits or Throttling in Axios
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-hfxv-24rg-xrqf
Axios: Regular Expression Denial of Service (ReDoS) via Cookie Name Injection
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-j5f8-grm9-p9fc
Axios: Proxy-Authorization header leaks to redirect target when proxy is re-evaluated to direct connection
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-p92q-9vqr-4j8v
Axios: Proxy-Authorization Credential Leak to Origin Server Across HTTP-to-HTTPS Redirect in Axios Node.js HTTP Adapter
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-pf86-5x62-jrwf
Axios: Prototype Pollution Gadgets - Response Tampering, Data Exfiltration, and Request Hijacking
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-pjwm-pj3p-43mv
axios's shouldBypassProxy does not recognize IPv4-mapped IPv6 addresses, allowing NO_PROXY bypass (incomplete fix for CVE-2025-62718)
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 axios: GHSA-q8qp-cvcw-x6jj
Axios has prototype pollution read-side gadgets in HTTP adapter that allow credential injection and request hijacking
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 cryptography: PYSEC-2026-36
cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. From 45.0.0 to before 46.0.7, if a non-contiguous buffer was passed to APIs which accepted Python buffers (e.g. Hash.update()), this could lead to buffer overflows. This vulnerability is fixed in…
apps/minds/electron/pyproject/uv.lock
high Security checks cicd CI/CD security conf 0.92 Dockerfile copies the entire context without .dockerignore
COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts.
libs/mngr/imbue/mngr/resources/Dockerfile:126 CI/CD securitycontainers
high Security checks software dependencies conf 0.90 ✓ Repobility Dockerfile FROM `python:3.12-slim` not pinned by digest
`FROM python:3.12-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.
libs/mngr/imbue/mngr/resources/Dockerfile:5
high Security checks cicd CI/CD security conf 0.92 2 occurrences Dockerfile pipes a remote script into a shell
Piping downloaded code directly into a shell bypasses checksum verification and makes builds dependent on mutable remote content.
lines 63, 105
libs/mngr/imbue/mngr/resources/Dockerfile:63, 105 (2 hits)
CI/CD securitycontainers
high Security checks software dependencies conf 0.88 electron-updater: GHSA-9jxc-qjr9-vjxq
electron-updater Code Signing Bypass on Windows
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 fast-uri: GHSA-q3j6-qgpj-74h6
fast-uri vulnerable to path traversal via percent-encoded dot segments
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 fast-uri: GHSA-v39h-62p7-jpjc
fast-uri vulnerable to host confusion via percent-encoded authority delimiters
apps/minds/pnpm-lock.yaml
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI DELETE /bucket-keys/{access_key_id} has no auth
Handler `delete_bucket_key_endpoint` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3263
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI DELETE /buckets/{name} has no auth
Handler `delete_bucket_endpoint` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3202
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI DELETE /keys/{key_id} has no auth
Handler `delete_litellm_key` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2884
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI DELETE /tunnels/{tunnel_name} has no auth
Handler `delete_tunnel` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2241
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI DELETE /tunnels/{tunnel_name}/services/{service_name} has no auth
Handler `remove_service` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2271
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /auth/email/is-verified has no auth
Handler `auth_is_email_verified` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3547
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /auth/email/send-verification has no auth
Handler `auth_send_verification_email` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3529
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /auth/session/refresh has no auth
Handler `auth_refresh_session` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3485
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /auth/session/revoke has no auth
Handler `auth_revoke_sessions` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3504
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /auth/signup has no auth
Handler `auth_signup` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3396
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /buckets has no auth
Handler `create_bucket_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3148
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /buckets/{name}/keys has no auth
Handler `create_bucket_key_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:3220
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /hosts/lease has no auth
Handler `lease_host` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2360
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /hosts/{host_db_id}/release has no auth
Handler `release_host` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2430
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /keys/create has no auth
Handler `create_litellm_key` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2757
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /paid/domains/add has no auth
Handler `add_paid_domain` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2650
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /paid/domains/remove has no auth
Handler `remove_paid_domain` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2660
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /paid/emails/add has no auth
Handler `add_paid_email` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2682
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /paid/emails/remove has no auth
Handler `remove_paid_email` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2692
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /tunnels has no auth
Handler `create_tunnel` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2223
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /tunnels/{tunnel_name}/service-tokens has no auth
Handler `create_service_token_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2324
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI POST /tunnels/{tunnel_name}/services has no auth
Handler `add_service` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2262
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI PUT /keys/{key_id}/budget has no auth
Handler `update_litellm_key_budget` is registered with router/app.put(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2857
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI PUT /tunnels/{tunnel_name}/auth has no auth
Handler `set_tunnel_auth` is registered with router/app.put(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2302
high Security checks quality Quality conf 0.80 ✓ Repobility FastAPI PUT /tunnels/{tunnel_name}/services/{service_name}/auth has no auth
Handler `set_service_auth` is registered with router/app.put(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
apps/remote_service_connector/imbue/remote_service_connector/app.py:2345
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 40 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@v6` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
9 files, 40 locations
.github/workflows/ci.yml:35, 50, 69, 84, 104, 185, 204, 207, +6 more (19 hits)
.github/workflows/minds-launch-to-msg.yml:68, 72, 192, 210, 261 (8 hits)
.github/workflows/publish-tombstones.yml:15, 18 (3 hits)
.github/workflows/release-tests.yml:28, 73, 116 (3 hits)
.github/workflows/tmr.yml:82, 147 (3 hits)
.github/workflows/minds-runner-reset.yml:20
.github/workflows/publish.yml:26
.github/workflows/tmr-reintegrate.yml:71
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 21 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `astral-sh/setup-uv` pinned to mutable ref `@v7` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
5 files, 21 locations
.github/workflows/ci.yml:55, 63, 66, 212, 264, 272, 275, 363 (11 hits)
.github/workflows/publish-tombstones.yml:23, 34 (4 hits)
.github/workflows/minds-launch-to-msg.yml:80 (2 hits)
.github/workflows/publish.yml:31, 67 (2 hits)
.github/workflows/release-tests.yml:43, 97 (2 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility GitHub Action is tag-pinned rather than SHA-pinned
Action `imbue-ai/vet` pinned to mutable ref `@main` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
.github/workflows/vet.yml:22 CI/CD securitySupply chainGitHub Actions
high Security checks software dependencies conf 0.88 litellm: GHSA-v4p8-mg3p-g94g
LiteLLM: Authenticated command execution via MCP stdio test endpoints
uv.lock
high Security checks software dependencies conf 0.88 litellm: GHSA-wxxx-gvqv-xp7p
LiteLLM has a sandbox escape in custom-code guardrail
uv.lock
high Security checks software dependencies conf 0.88 litellm: GHSA-xqmj-j6mv-4862
LiteLLM: Server-Side Template Injection in /prompts/test endpoint
uv.lock
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_full_end_to_end_workflow_with_all_providers
Test function `test_full_end_to_end_workflow_with_all_providers` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
scripts/style_guide.py:1195
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_sync_todos_to_remote_server_succeeds_with_valid_credentials
Test function `test_sync_todos_to_remote_server_succeeds_with_valid_credentials` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
scripts/style_guide.py:1185
high Security checks software dependencies conf 0.90 ✓ Repobility pre-commit hook `https://github.com/pre-commit/pre-commit-hooks` pinned to mutable rev `v5.0.0`
`.pre-commit-config.yaml` references `https://github.com/pre-commit/pre-commit-hooks` at `rev: v5.0.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.
.pre-commit-config.yaml:5
high Security checks software dependencies conf 0.88 protobufjs: GHSA-66ff-xgx4-vchm
protobuf.js: Code injection through bytes field defaults in generated toObject code
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 protobufjs: GHSA-685m-2w69-288q
protobuf.js: Denial of service through unbounded protobuf recursion
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 protobufjs: GHSA-75px-5xx7-5xc7
protobuf.js: Code generation gadget after prototype pollution
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 protobufjs: GHSA-jvwf-75h9-cwgg
protobuf.js: Process-wide denial of service through unsafe option paths
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.88 pyjwt: PYSEC-2026-175
PyJWT is a JSON Web Token implementation in Python. Prior to 2.13.0, PyJWKClient passes its uri argument directly to urllib.request.urlopen() which uses Python stdlib's default OpenerDirector registering HTTPHandler, HTTPSHandler, FTPHandler, FileHandler, and DataHandler. There is currently no docu…
uv.lock
high Security checks software dependencies conf 0.88 pyjwt: PYSEC-2026-177
PyJWT is a JSON Web Token implementation in Python. Prior to 2.13.0, PyJWKClient.get_signing_key() forces a fresh HTTP request to the JWKS endpoint for every JWT with an unknown kid value, with no rate limiting. Since kid comes from the unverified token header, an attacker can trigger unlimited out…
uv.lock
high Security checks software dependencies conf 0.88 pyjwt: PYSEC-2026-178
PyJWT is a JSON Web Token implementation in Python. From 2.8.0 to 2.12.1, when verifying detached JWS tokens using the unencoded-payload option ("b64": false, RFC 7797), PyJWT performs Base64URL decoding of the compact-serialization payload segment before enforcing the detached-payload rules. For b…
uv.lock
high Security checks software dependencies conf 0.88 pyjwt: PYSEC-2026-179
PyJWT is a JSON Web Token implementation in Python. Prior to 2.13.0, when the verifier is decoding JSON Web Tokens, while supporting both asymmetric and HMAC algorithms, the library does not validate use of JSON Web Keys in HMAC algorithm, allowing attacker to use the issuer public key as the secre…
uv.lock
high Security checks software dependencies conf 0.88 python-multipart: GHSA-pp6c-gr5w-3c5g
python-multipart has Denial of Service via unbounded multipart part headers
apps/minds/electron/pyproject/uv.lock
high Security checks software dependencies conf 0.88 starlette: PYSEC-2026-161
BadHost: Missing Host header validation poisons request.url.path, bypassing path-based security checks
apps/minds/electron/pyproject/uv.lock
high Security checks software dependencies conf 0.88 urllib3: PYSEC-2026-141
urllib3 is an HTTP client library for Python. From 1.23 to before 2.7.0, cross-origin redirects followed from the low-level API via ProxyManager.connection_from_url().urlopen(..., assert_same_host=False) still forward these sensitive headers. This vulnerability is fixed in 2.7.0.
apps/minds/electron/pyproject/uv.lock
high Security checks software dependencies conf 0.88 urllib3: PYSEC-2026-142
urllib3 is an HTTP client library for Python. From 2.6.0 to before 2.7.0, urllib3 could decompress the whole response instead of the requested portion (1) during the second HTTPResponse.read(amt=N) call when the response was decompressed using the official Brotli library or (2) when HTTPResponse.dr…
apps/minds/electron/pyproject/uv.lock
high System graph api Wiring conf 1.00 Dangling fetch: GET /auth/api/status (apps/minds/imbue/minds/desktop_client/static/chrome.js:141)
`apps/minds/imbue/minds/desktop_client/static/chrome.js:141` calls `GET /auth/api/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/api/status` If this points at an external API, prefix it with `https://` …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /auth/api/signin (apps/minds/imbue/minds/desktop_client/static/auth.js:53)
`apps/minds/imbue/minds/desktop_client/static/auth.js:53` calls `POST /auth/api/signin` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/api/signin` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /auth/api/signup (apps/minds/imbue/minds/desktop_client/static/auth.js:22)
`apps/minds/imbue/minds/desktop_client/static/auth.js:22` calls `POST /auth/api/signup` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/api/signup` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
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.
libs/mngr/imbue/mngr/resources/Dockerfile:63 containersRemote installer
medium Security checks software dependencies conf 0.88 @protobufjs/utf8: GHSA-q6x5-8v7m-xcrf
protobufjs has overlong UTF-8 decoding
apps/minds/pnpm-lock.yaml
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.
The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
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
apps/minds/imbue/minds/desktop_client/static/creating.js:256
apps/minds/imbue/minds/desktop_client/static/destroying.js:52
apps/minds/imbue/minds/desktop_client/static/sidebar.js:164
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
scripts/josh/workflow.py:188
medium Security checks software Open redirect conf 1.00 [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
apps/minds/imbue/minds/desktop_client/static/creating.js:125
medium Security checks cicd CI/CD security conf 0.68 Agent auto-approve or skip-permissions mode is easy to enable
Codex/agent auto-approve, YOLO, or skip-permissions modes can be useful in isolated automation, but they remove the human checkpoint before command execution, network access, and file edits.
libs/mngr/imbue/mngr/cli/create.py:301 CI/CD securityagent runtimepermissions
medium Security checks cicd CI/CD security conf 0.68 Agent auto-approve or skip-permissions mode is easy to enable
Codex/agent auto-approve, YOLO, or skip-permissions modes can be useful in isolated automation, but they remove the human checkpoint before command execution, network access, and file edits.
.github/workflows/tmr.yml:96 CI/CD securityagent runtimepermissions
medium Security checks software dependencies conf 0.88 2 occurrences aiohttp: GHSA-hg6j-4rv6-33pg
AIOHTTP is vulnerable to cross-origin redirect with per-request cookies
2 files, 2 locations
apps/minds/electron/pyproject/uv.lock
uv.lock
medium Security checks software dependencies conf 0.88 2 occurrences aiohttp: GHSA-jg22-mg44-37j8
AIOHTTP is Vulnerable to Deserialization of Untrusted Data
2 files, 2 locations
apps/minds/electron/pyproject/uv.lock
uv.lock
medium Security checks software dependencies conf 0.88 axios: GHSA-3w6x-2g7m-8v23
Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget in `parseReviver`
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-445q-vr5w-6q77
Axios: CRLF Injection in multipart/form-data body via unsanitized blob.type in formDataToStream
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-5c9x-8gcm-mpgx
Axios' HTTP adapter-streamed uploads bypass maxBodyLength when maxRedirects: 0
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-62hf-57xw-28j9
Axios: unbounded recursion in toFormData causes DoS via deeply nested request data
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-898c-q2cr-xwhg
axios has DoS & Header Injection via Prototype Pollution Read-Side Gadgets in axios merge functions
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-fvcv-3m26-pcqx
Axios has Unrestricted Cloud Metadata Exfiltration via Header Injection Chain
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-m7pr-hjqh-92cm
Axios: no_proxy bypass via IP alias allows SSRF
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-vf2m-468p-8v99
Axios: HTTP adapter streamed responses bypass maxContentLength
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-w9j2-pvgh-6h63
Axios: Authentication Bypass via Prototype Pollution Gadget in `validateStatus` Merge Strategy
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 axios: GHSA-xx6v-rp6x-q39c
Axios: XSRF Token Cross-Origin Leakage via Prototype Pollution Gadget in `withXSRFToken` Boolean Coercion
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 brace-expansion: GHSA-jxxr-4gwj-5jf2
brace-expansion: Large numeric range defeats documented `max` DoS protection
apps/minds/pnpm-lock.yaml
low Security checks quality Error handling conf 0.55 ✓ Repobility 14 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.
10 files, 14 locations
libs/mngr_kanpan/imbue/mngr_kanpan/tui.py:726, 822, 898 (3 hits)
scripts/release.py:102, 126 (2 hits)
scripts/warm_cli_example.py:164, 271 (2 hits)
apps/remote_service_connector/imbue/remote_service_connector/app.py:1912
libs/concurrency_group/imbue/concurrency_group/concurrency_group.py:298
libs/concurrency_group/imbue/concurrency_group/executor.py:48
libs/mngr_modal/imbue/mngr_modal/instance.py:3355
scripts/check_parallel_uploads.py:85
Error handlingquality
medium Security checks quality Quality conf 0.73 Codex session log reader may expose prompts or tool-call content
Codex session JSONL files can contain prompts, tool events, paths, and operational metadata, not only token counts. Token dashboards and exporters should avoid retaining or sharing raw session text.
libs/mngr/imbue/mngr/cli/create.py:1807
medium Security checks quality Quality conf 0.73 Codex session log reader may expose prompts or tool-call content
Codex session JSONL files can contain prompts, tool events, paths, and operational metadata, not only token counts. Token dashboards and exporters should avoid retaining or sharing raw session text.
libs/mngr/imbue/mngr/cli/ask.py:107
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
libs/mngr/imbue/mngr/resources/Dockerfile:5 CI/CD securitycontainers
medium Security checks software dependencies conf 0.88 fastapi-sso: GHSA-hp6r-r9vc-q8wx
FastAPI SSP is vulnerable to Cross-site Request Forgery (CSRF) through improper OAuth parameter validation
uv.lock
medium Security checks software dependencies conf 0.88 follow-redirects: GHSA-r4q5-vmmm-2653
follow-redirects leaks Custom Authentication Headers to Cross-Domain Redirect Targets
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 got: GHSA-pfrx-2q88-qq97
Got allows a redirect to a UNIX socket
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 idna: GHSA-65pc-fj4g-8rjx
Internationalized Domain Names in Applications (IDNA): Specially crafted inputs to idna.encode() can bypass CVE-2024-3651 fix
apps/minds/electron/pyproject/uv.lock
medium Security checks software dependencies conf 0.90 npm package `@todesktop/runtime` is 1 major version(s) behind (^1.6.0 -> 2.1.4)
`@todesktop/runtime` is pinned/resolved at ^1.6.0 but the latest stable release on the npm registry is 2.1.4 (1 major version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
apps/minds/package.json
medium Security checks software dependencies conf 0.88 protobufjs: GHSA-2pr8-phx7-x9h3
protobuf.js: Denial of service from crafted field names in generated code
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 protobufjs: GHSA-fx83-v9x8-x52w
protobuf.js: Prototype injection in generated message constructors
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 protobufjs: GHSA-jggg-4jg4-v7c6
protobufjs: Denial of Service via unbounded recursive JSON descriptor expansion
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 protobufjs: GHSA-q6x5-8v7m-xcrf
protobufjs has overlong UTF-8 decoding
apps/minds/pnpm-lock.yaml
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
security.txt gives researchers and customers a safe disclosure channel. Public web apps and APIs should publish it under /.well-known/security.txt.
.well-known/security.txt
medium Security checks software dependencies conf 0.88 pytest: GHSA-6w46-j5rx-g56g
pytest has vulnerable tmpdir handling
apps/minds/electron/pyproject/uv.lock
medium Security checks software dependencies conf 0.88 python-multipart: GHSA-mj87-hwqh-73pj
python-multipart affected by Denial of Service via large multipart preamble or epilogue data
apps/minds/electron/pyproject/uv.lock
medium Security checks software dependencies conf 0.88 qs: GHSA-q8mj-m7cp-5q26
qs has a remotely triggerable DoS: qs.stringify crashes with TypeError on null/undefined entries in comma-format arrays when encodeValuesOnly is set
apps/minds/pnpm-lock.yaml
high Security checks software dependencies conf 0.70 5 occurrences Remote install command pipes network code directly to a shell
Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified.
5 files, 5 locations
README.md:21
apps/minds/README.md:18
libs/mngr/README.md:25
libs/mngr/imbue/mngr/cli/output_helpers.py:79
libs/mngr/imbue/mngr/cli/urwid_utils.py:66
medium Security checks software dependencies conf 0.88 uuid: GHSA-w5hq-g745-h8pq
uuid: Missing buffer bounds check in v3/v5/v6 when buf is provided
apps/minds/pnpm-lock.yaml
medium Security checks software dependencies conf 0.88 ws: GHSA-58qx-3vcg-4xpx
ws: Uninitialized memory disclosure
apps/minds/pnpm-lock.yaml
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/minds/imbue/minds/desktop_client/static/creating.js:77
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 — apps/minds/imbue/minds/desktop_client/static/destroying.js:98
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: libs/mngr/imbue/mngr/resources/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 6 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.
6 files, 6 locations
.github/workflows/ci.yml
.github/workflows/publish-tombstones.yml
.github/workflows/publish.yml
.github/workflows/tmr-reintegrate.yml
.github/workflows/tmr-scheduled.yml
.github/workflows/tmr.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/mngr/imbue/mngr/cli/help_formatter.py:225
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/mngr/imbue/mngr/cli/help_formatter.py:225 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/mngr_kanpan/imbue/mngr_kanpan/tui.py:587
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/mngr_kanpan/imbue/mngr_kanpan/tui.py:587 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/mngr_schedule/imbue/mngr_schedule/implementations/modal/cron_runner.py:421
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/mngr_schedule/imbue/mngr_schedule/implementations/modal/cron_runner.py:421 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in libs/skitwright/imbue/skitwright/runner.py:38
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
libs/skitwright/imbue/skitwright/runner.py:38 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/josh/coordinator.py:336
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/josh/coordinator.py:336 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/josh/workflow.py:188
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/josh/workflow.py:188 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/minds/imbue/minds/desktop_client/agent_creator_test.py:330
`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 — apps/minds/imbue/minds/desktop_client/destroying.py:258
`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 — apps/minds/scripts/build_test.py:18
`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 — apps/minds/scripts/create_telegram_bot.py:84
`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 quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/modal_litellm/app.py:217
`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 — libs/concurrency_group/imbue/concurrency_group/subprocess_utils_test.py:221
`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 — libs/imbue_common/imbue/imbue_common/ratchet_testing/core_test.py:98
`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 — libs/imbue_common/imbue/imbue_common/ratchet_testing/ratchets.py:464
`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 — libs/mngr/imbue/mngr/api/gc_test.py:1187
`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 — libs/mngr/imbue/mngr/api/git_test.py:263
`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 — libs/mngr/imbue/mngr/api/testing.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 — libs/mngr/imbue/mngr/cli/ask.py:412
`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 — libs/mngr/imbue/mngr/cli/complete_names_test.py:324
`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 — libs/mngr/imbue/mngr/cli/create_test.py:680
`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 — libs/mngr/imbue/mngr/hosts/common_test.py:282
`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 — libs/mngr/imbue/mngr/utils/git_utils_test.py:130
`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 — libs/mngr/imbue/mngr/utils/interactive_subprocess.py:54
`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 — libs/mngr/imbue/mngr/utils/testing.py:280
`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 — libs/mngr_antigravity/imbue/mngr_antigravity/resources/capture_conversation_id_test.py:35
`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 — libs/mngr_antigravity/imbue/mngr_antigravity/resources/common_transcript_test.py:137
`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 — libs/mngr_antigravity/imbue/mngr_antigravity/resources/stream_transcript_test.py:109
`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 — libs/mngr_claude/imbue/mngr_claude/plugin_test.py:157
`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 — libs/mngr_modal/imbue/mngr_modal/testing_provider_test.py:1226
`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 — libs/mngr_pair/imbue/mngr_pair/api_test.py:201
`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 — libs/mngr_recursive/imbue/mngr_recursive/provisioning.py:122
`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 — libs/mngr_schedule/imbue/mngr_schedule/git_test.py:21
`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 — libs/mngr_schedule/imbue/mngr_schedule/implementations/local/crontab.py:101
`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 — libs/mngr_schedule/imbue/mngr_schedule/implementations/modal/cron_runner.py:219
`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 — libs/mngr_schedule/imbue/mngr_schedule/implementations/modal/deploy_test.py:89
`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 — libs/mngr_schedule/imbue/mngr_schedule/testing.py:222
`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 — libs/mngr_tutor/imbue/mngr_tutor/checks.py:63
`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 — libs/mngr_vps_docker/imbue/mngr_vps_docker/_snapshot_helper_test.py:24
`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 — libs/resource_guards/imbue/resource_guards/resource_guards_test.py:138
`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/consolidate_changelog.py:76
`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/consolidate_changelog_test.py:191
`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/josh/coordinator_test.py:418
`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/josh/workflow.py:69
`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/poll_modal_agents.py:39
`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/push_vault_from_file.py:51
`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/release.py:77
`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/release_tombstones.py:125
`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/sync_common_ratchets.py:261
`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 — test_meta_ratchets.py:190
`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 17 in use
Port 17 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
scripts/events_demo.sh Ports
medium System graph network Security conf 1.00 Privileged port 44 in use
Port 44 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
scripts/events_demo.sh Ports
low Security checks software dependencies conf 0.88 axios: GHSA-xhjh-pmcv-23jw
Axios: Null Byte Injection via Reverse-Encoding in AxiosURLSearchParams
apps/minds/pnpm-lock.yaml
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Installing recommended packages often pulls in unnecessary runtime surface area.
libs/mngr/imbue/mngr/resources/Dockerfile:53 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 Dockerfile leaves apt package indexes in the image layer
Package indexes increase image size and can expose stale metadata in the final image layer.
libs/mngr/imbue/mngr/resources/Dockerfile:53 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 16 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 13 locations
libs/mngr/imbue/mngr/providers/ssh/instance.py:139, 143 (2 hits)
apps/minds/imbue/minds/desktop_client/latchkey/handlers/predefined.py:116
apps/minds/imbue/minds/desktop_client/static/sidebar.js:26
libs/mngr/imbue/mngr/cli/cleanup.py:346
libs/mngr/imbue/mngr/cli/limit.py:63
libs/mngr/imbue/mngr/cli/rsync.py:60
libs/mngr/imbue/mngr/cli/stop.py:203
libs/mngr/imbue/mngr/providers/local/instance.py:147
duplicationquality
low Security checks software dependencies conf 0.90 npm package `@todesktop/cli` is minor version(s) behind (^1.8.0 -> 1.25.2)
`@todesktop/cli` is pinned/resolved at ^1.8.0 but the latest stable release on the npm registry is 1.25.2 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
apps/minds/package.json
low Security checks software dependencies conf 0.88 2 occurrences paramiko: GHSA-r374-rxx8-8654
Paramiko rsakey.py allows the SHA-1 algorithm
2 files, 2 locations
apps/minds/electron/pyproject/uv.lock
uv.lock
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Files named as final, fixed, copy, new, or backup are often temporary patch artifacts. They may be legitimate, but they deserve review before becoming production surface area.
libs/imbue_common/imbue/imbue_common/model_update.py:1
low System graph quality Maintenance conf 1.00 167 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: 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.
libs/mngr/imbue/mngr/resources/Dockerfile:5 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/minds/electron/content-relay-preload.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: apps/minds/electron/preload.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: apps/minds/imbue/minds/desktop_client/static/workspace_settings.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: apps/minds/todesktop.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: conftest.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: libs/concurrency_group/conftest.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: libs/mngr/imbue/mngr/agents/conftest.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: libs/mngr/imbue/mngr/cli/_kqueue_tty_test_script.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: libs/mngr/imbue/mngr/cli/exit_codes.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: libs/mngr/imbue/mngr/config/consts.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: libs/mngr/imbue/mngr/utils/terminal.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: libs/mngr_antigravity/conftest.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: libs/mngr_claude/conftest.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: libs/mngr_file/conftest.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: libs/mngr_file/imbue/mngr_file/cli/commands.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: libs/mngr_file/imbue/mngr_file/conftest.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: libs/mngr_forward/conftest.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: libs/mngr_forward/imbue/mngr_forward/testing.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/mngr_imbue_cloud/conftest.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: libs/mngr_kanpan/conftest.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: libs/mngr_latchkey/conftest.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: libs/mngr_latchkey/imbue/mngr_latchkey/conftest.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: libs/mngr_mapreduce/conftest.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: libs/mngr_mapreduce/imbue/mngr_mapreduce/archive.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: libs/mngr_mapreduce/imbue/mngr_mapreduce/conftest.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: libs/mngr_modal/conftest.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: libs/mngr_modal/imbue/mngr_modal/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: libs/mngr_modal/imbue/mngr_modal/ssh_utils.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: libs/mngr_opencode/conftest.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: libs/mngr_ovh/conftest.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: libs/mngr_ovh/imbue/mngr_ovh/_tag_keys.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: libs/mngr_pair/conftest.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: libs/mngr_pair/imbue/mngr_pair/conftest.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: libs/mngr_pi_coding/conftest.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: libs/mngr_recursive/conftest.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: libs/mngr_robinhood/conftest.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: libs/mngr_schedule/conftest.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: libs/mngr_schedule/imbue/mngr_schedule/cli/commands.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: libs/mngr_tmr/conftest.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: libs/mngr_tutor/conftest.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: libs/mngr_tutor/imbue/mngr_tutor/conftest.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: libs/mngr_tutor/imbue/mngr_tutor/lessons.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: libs/mngr_usage/conftest.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: libs/mngr_vps_docker/conftest.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: libs/mngr_vultr/conftest.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: libs/mngr_wait/conftest.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: libs/mngr_wait/imbue/mngr_wait/conftest.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: libs/modal_proxy/conftest.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: libs/resource_guards/conftest.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: libs/skitwright/conftest.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: apps/slack_exporter/imbue/slack_exporter/exporter_test.py:tracking_caller, apps/slack_exporter/imbue/slack_exporter/exporter_test.py:tracking_caller This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-c…
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: apps/slack_exporter/imbue/slack_exporter/channels_test.py:test_fetch_channel_list_single_page, apps/slack_exporter/imbue/slack_exporter/channels_test.py:test_fetch_channel_list_filters_non_member_channels_by_default, apps/slack_exporter/imbue/slack_ex…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: apps/remote_service_connector/imbue/remote_service_connector/app.py:create_tunnel, apps/remote_service_connector/imbue/remote_service_connector/app.py:create_tunnel, apps/remote_service_connector/imbue/remote_service_connector/app.py:create_tunnel, ap…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: apps/slack_exporter/imbue/slack_exporter/latchkey_test.py:fake_caller, apps/slack_exporter/imbue/slack_exporter/latchkey_test.py:fake_caller, apps/slack_exporter/imbue/slack_exporter/latchkey_test.py:fake_caller, apps/slack_exporter/imbue/slack_export…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: apps/remote_service_connector/imbue/remote_service_connector/app_test.py:handler, apps/remote_service_connector/imbue/remote_service_connector/app_test.py:handler, apps/remote_service_connector/imbue/remote_service_connector/app_test.py:handler, apps/…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_v1` in apps/minds/imbue/minds/desktop_client/app.py:48
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 `check_model_copy` in libs/imbue_common/imbue/imbue_common/ratchet_testing/standard_ratchet_checks.py:274
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 `days_old` in libs/mngr/imbue/mngr/api/gc_test.py:107
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 `defaults_copy` in libs/mngr/imbue/mngr/config/loader.py:893
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 `full_copy` in libs/mngr_schedule/imbue/mngr_schedule/cli/add.py:276
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 `full_copy` in libs/mngr_schedule/imbue/mngr_schedule/cli/group.py:110
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 `full_copy` in libs/mngr_schedule/imbue/mngr_schedule/cli/options.py:18
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 `host_backup` in apps/minds/imbue/minds/desktop_client/backup_env_store.py:74
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 `host_backup` in apps/minds/imbue/minds/desktop_client/backup_provisioning.py:102
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 `host_backup` in libs/mngr_ovh/imbue/mngr_ovh/bootstrap.py:45
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 `host_backup` in libs/mngr_vps_docker/imbue/mngr_vps_docker/instance.py:240
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 `idx_old` in scripts/changelog_release_utils_test.py:43
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 `idx_old` in scripts/consolidate_changelog_test.py:170
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 `is_full_copy` in libs/mngr_schedule/imbue/mngr_schedule/implementations/modal/deploy.py:814
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 `model_copy` in libs/imbue_common/imbue/imbue_common/frozen_model.py:26
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 `model_copy` in libs/imbue_common/imbue/imbue_common/model_update.py:12
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 `model_copy` in libs/imbue_common/imbue/imbue_common/model_update_test.py:1
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 `model_copy` in libs/imbue_common/imbue/imbue_common/mutable_model.py:26
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 `model_copy` in libs/imbue_common/imbue/imbue_common/ratchet_testing/common_ratchets.py:288
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 `model_copy` in libs/mngr_imbue_cloud/imbue/mngr_imbue_cloud/host.py:185
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 `model_copy` in libs/mngr_kanpan/imbue/mngr_kanpan/tui.py:1275
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 `on_after_initial_file_copy` in libs/mngr/imbue/mngr/api/test_create.py:549
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 `on_before_initial_file_copy` in libs/mngr/imbue/mngr/api/agent_host_hooks_test.py:53
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 `on_before_initial_file_copy` in libs/mngr/imbue/mngr/api/create.py:265
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 `on_before_initial_file_copy` in libs/mngr/imbue/mngr/plugins/hookspecs.py:111
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 `result_legacy` in apps/minds/imbue/minds/desktop_client/session_store.py:146
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 `supervisor_old` in libs/mngr_latchkey/imbue/mngr_latchkey/forward_supervisor_test.py:372
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_bootstrap_root_runs_sudo_install_copy` in libs/mngr_ovh/imbue/mngr_ovh/bootstrap_test.py:166
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_create_copy` in libs/mngr/imbue/mngr/e2e/tutorial/test_create_basic.py:254
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_merge_ovh_env_with_empty_ovh_returns_shell_copy` in apps/minds/imbue/minds/cli/pool_test.py:282
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in apps/minds/imbue/minds/test_ratchets.py:214
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in apps/modal_litellm/test_ratchets.py:197
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in apps/remote_service_connector/imbue/remote_service_connector/test_ratchets.py:171
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in apps/slack_exporter/imbue/slack_exporter/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/concurrency_group/imbue/concurrency_group/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/imbue_common/imbue/imbue_common/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr/imbue/mngr/utils/test_ratchets.py:209
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_antigravity/imbue/mngr_antigravity/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_claude/imbue/mngr_claude/test_ratchets.py:196
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_claude_subagent_proxy/imbue/mngr_claude_subagent_proxy/test_ratchets.py:211
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_claude_usage/imbue/mngr_claude_usage/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_file/imbue/mngr_file/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_forward/imbue/mngr_forward/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_imbue_cloud/imbue/mngr_imbue_cloud/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_kanpan/imbue/mngr_kanpan/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_latchkey/imbue/mngr_latchkey/test_ratchets.py:193
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_lima/imbue/mngr_lima/test_ratchets.py:191
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_mapreduce/imbue/mngr_mapreduce/test_ratchets.py:188
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_modal/imbue/mngr_modal/test_ratchets.py:193
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_notifications/imbue/mngr_notifications/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_opencode/imbue/mngr_opencode/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_ovh/imbue/mngr_ovh/test_ratchets.py:183
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_pair/imbue/mngr_pair/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_pi_coding/imbue/mngr_pi_coding/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_recursive/imbue/mngr_recursive/test_ratchets.py:186
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_robinhood/imbue/mngr_robinhood/test_ratchets.py:164
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_schedule/imbue/mngr_schedule/test_ratchets.py:193
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_prevent_model_copy` in libs/mngr_tmr/imbue/mngr_tmr/test_ratchets.py:192
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

Showing first 300 of 473. Refine filters or use the findings page for deep search.

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/a7b11ee0-32b2-48df-87e7-ee0383b49cb7/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/a7b11ee0-32b2-48df-87e7-ee0383b49cb7/

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.