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

Scan timing: clone 9.25s · analysis 39.61s · 28.9 MB · GitHub API rate-limit (preflight)

proliferate-ai/proliferate

https://github.com/proliferate-ai/proliferate · scanned 2026-06-05 22:37 UTC (4 days, 6 hours ago) · 10 languages

1034 raw signals (236 security + 798 graph) 11/13 scanners ran 34th percentile · Typescript · huge (>500K LoC) System graph score 67 (higher by 14)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 6 hours ago · v2 · 404 actionable findings from 2 signal sources. 230 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 83.0 0.20 16.60
documentation_score 87.0 0.15 13.05
practices_score 79.0 0.15 11.85
code_quality 55.0 0.10 5.50
Overall 1.00 81.0
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Ranks in the 34th percentile among medium-sized repos. Strongest documentation (71), code quality (70); weakest security (37), testing (55). 78 findings (12 critical, 6 high). Most common pattern: cpp-new-without-delete. ~164h tech debt (rating B).

Showing 219 of 404 actionable findings. 634 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 7 occurrences [MINED107] 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.
Add `import email` at the top of the file.
7 files, 7 locations
server/proliferate/auth/passwords.py:32
server/proliferate/db/store/organization_records.py:126
server/proliferate/integrations/pubsub/redis.py:47
server/proliferate/server/billing/service.py:1270
server/proliferate/server/cloud/runtime_config/domain/resolver.py:447
server/proliferate/server/organizations/domain/profile.py:122
server/scripts/mint_pro_promo_codes.py:86
critical Security checks cicd CI/CD security conf 0.96 3 occurrences Compose service contains a literal secret environment value
Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file.
lines 1, 17, 30
server/docker-compose.yml:1, 17, 30 (3 hits)
CI/CD securitycontainers
critical System graph security Secrets conf 1.00 Possible secret in server/deploy/ensure-secrets.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
server/deploy/ensure-secrets.sh:177
critical System graph security Secrets conf 1.00 Possible secret in server/proliferate/auth/passwords.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
server/proliferate/auth/passwords.py:14
critical System graph security Secrets conf 1.00 Possible secret in server/scripts/provision_password_auth_user.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
server/scripts/provision_password_auth_user.py:111
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /repo-roots/{repo_root_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
anyharness/crates/anyharness-lib/src/api/router.rs:135
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /reviews/{review_run_id}/stop.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
anyharness/crates/anyharness-lib/src/api/router.rs:418
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /terminals/{terminal_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
anyharness/crates/anyharness-lib/src/api/router.rs:353
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /workspaces/{workspace_id}/git/commit.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
anyharness/crates/anyharness-lib/src/api/router.rs:333
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /workspaces/{workspace_id}/git/push.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
anyharness/crates/anyharness-lib/src/api/router.rs:334
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self.relative_path` used but never assigned in __init__: Method `format` of class `Violation` reads `self.relative_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.relative_path = <default>` in __init__, or add a class-level default.
2 files, 25 locations
scripts/check_anyharness_boundaries.py:66, 262, 268, 275, 286, 291, 292, 295, +16 more (24 hits)
scripts/check_frontend_boundaries.py:57
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /control/wait has no auth: Handler `worker_control_wait_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
server/proliferate/server/cloud/worker/api.py:139
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /web/session/logout has no auth: Handler `web_session_logout` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
server/proliferate/auth/identity/api.py:399
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /webhooks/stripe has no auth: Handler `stripe_webhook_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
server/proliferate/server/billing/api.py:242
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] 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.
Replace with: `FROM python:3.12-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
server/Dockerfile:1
high Security checks software dependencies conf 0.90 ✓ Repobility 4 occurrences [MINED126] Workflow container/services image `postgres:16-alpine` unpinned: `container/services image: postgres:16-alpine` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `postgres:16-alpine@sha256:<digest>`. Re-pin via Dependabot Docker scope.
3 files, 4 locations
.github/workflows/cloud-tests.yml:77, 156 (2 hits)
.github/workflows/cloud-live-webhook.yml:35
.github/workflows/server-ci.yml:80
high Security checks cicd CI/CD security conf 0.84 Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
server/docker-compose.yml:1 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 24 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
9 files, 24 locations
.github/workflows/release-desktop.yml:110, 139, 493, 503, 526, 556, 561, 566 (8 hits)
.github/workflows/cloud-tests.yml:90, 91, 101, 169, 170 (5 hits)
.github/workflows/_deploy-e2b.yml:37, 44 (2 hits)
.github/workflows/_deploy-mobile.yml:38, 45 (2 hits)
.github/workflows/_deploy-web.yml:36, 43 (2 hits)
.github/workflows/deploy-staging.yml:53, 258 (2 hits)
.github/workflows/_deploy-server.yml:78
.github/workflows/pr-metadata.yml:27
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 33 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + …
11 files, 33 locations
.github/workflows/_deploy-e2b.yml:40, 74, 82 (5 hits)
.github/workflows/_deploy-server.yml:100, 107, 119 (5 hits)
.github/workflows/cloud-tests.yml:95, 99, 105, 109 (4 hits)
.github/workflows/release-desktop.yml:163, 169, 536, 576 (4 hits)
.github/workflows/server-ci.yml:130, 153, 170, 215 (4 hits)
.github/workflows/ci.yml:83, 106, 145 (3 hits)
.github/workflows/release-runtime.yml:51, 114, 161 (3 hits)
.github/workflows/release-cloud-template.yml:42, 48 (2 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks security auth conf 0.83 3 occurrences Secret-like setting is echoed into a password input value
Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time.
2 files, 3 locations
apps/desktop/src/components/settings/panes/agent-authentication/CloudAgentAuthCredentialForm.tsx:273, 298 (2 hits)
apps/packages/product-ui/src/auth/PasswordCredentialForm.tsx:68
high System graph security auth conf 1.00 FastAPI POST `stripe_webhook_endpoint` without auth dependency — server/proliferate/server/billing/api.py:241
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/proliferate/server/billing/api.py:241 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `web_session_logout` without auth dependency — server/proliferate/auth/identity/api.py:398
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/proliferate/auth/identity/api.py:398 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `worker_control_wait_endpoint` without auth dependency — server/proliferate/server/cloud/worker/api.py:138
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/proliferate/server/cloud/worker/api.py:138 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in server/proliferate/server/artifact_runtime/static/assets/index-CP1RUuvQ.js:244
Found a known-risky pattern (eval_used). Review and replace if possible.
server/proliferate/server/artifact_runtime/static/assets/index-CP1RUuvQ.js:244 Eval used
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 36.8% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /agents/{kind}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
anyharness/crates/anyharness-lib/src/api/router.rs:48
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /auth/revoked-jtis.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
anyharness/crates/anyharness-lib/src/api/router.rs:74
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /auth/web/session.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/proliferate/auth/identity/api.py:449
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: ANY /replay/sessions.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
anyharness/crates/anyharness-lib/src/api/router.rs:389
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/desktop/src/components/app/chrome/MacWindowControlsSafeArea.tsx:30
apps/desktop/src/components/workspace/chat/content/CollapsiblePlanCard.tsx:59
apps/desktop/src/components/workspace/shell/topbar/TopBar.tsx:70
medium Security checks quality Quality conf 1.00 [SEC130] Hallucinated package name — looks like a real package but isn't: Import of a package name that closely resembles a popular one but isn't published — a classic AI hallucination. Two risks: (1) the code crashes on install in fresh environments, and (2) supply-chain attackers publish typosquat packages targeting exactly these AI-hallucinated names, so installing succeeds and ships malware ('slopsquatting'). CWE-1357 (dependency on an unmaintained / unverified component). CVE-2024-class sup
Verify the import resolves to a real, maintained package: check pypi.org / npmjs.com directly. If the package doesn't exist, the AI invented it — find the real package the AI was thinking of and swap. Pin all deps to known-good versions and require a registry allowlist in CI.
apps/desktop/src/components/workspace/files/file-icon-assets.tsx:46
low Security checks quality Error handling conf 0.55 ✓ Repobility 21 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
12 files, 18 locations
server/proliferate/integrations/customerio.py:83, 105, 150 (3 hits)
server/proliferate/auth/desktop/service.py:354, 375 (2 hits)
server/proliferate/server/automations/worker/cloud_execution/stages/environment.py:54, 67 (2 hits)
server/proliferate/server/automations/worker/cloud_execution/stages/git_identity.py:37, 50 (2 hits)
server/proliferate/server/automations/worker/cloud_execution/stages/session.py:87, 138 (2 hits)
scripts/cloud-ssh-worker-smoke.py:590
server/proliferate/server/automations/worker/cloud_execution/stages/prompt.py:71
server/proliferate/server/automations/worker/cloud_execution/stages/workspace.py:239
Error handlingquality
high Security checks security auth conf 0.82 2 occurrences Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
lines 8, 19
apps/web/src/lib/access/cloud/auth-token-store.ts:8, 19 (2 hits)
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
server/Dockerfile:1 CI/CD securitycontainers
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/desktop/src/components/content/ui/HighlightedCodePanel.tsx:92
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/desktop/src/components/content/ui/MarkdownRenderer.tsx:33
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/desktop/src/components/workspace/files/file-icons.tsx:47
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/packages/product-ui/src/chat/transcript/MarkdownBody.tsx:78
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — anyharness/sdk/src/streams/sessions.ts:83
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/desktop/src/hooks/support/lifecycle/support-report-upload-payload.ts:102
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/desktop/src/lib/access/cloud/client.ts:78
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/desktop/src/lib/integrations/telemetry/anonymous.ts: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 quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/mobile/src/lib/access/cloud/client.ts:15
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/web/src/lib/access/cloud/client.ts:15
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 — cloud/sdk/src/client/auth.ts:222
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 — cloud/sdk/src/client/core.ts:102
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 — server/proliferate/server/artifact_runtime/static/assets/index-CP1RUuvQ.js:1
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: server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 6 occurrences Frontend route `/index.html` has no Link/navigate to it — apps/desktop/src/App.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
6 occurrences
repo-level (6 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 17 occurrences Frontend route `plugins` has no Link/navigate to it — apps/web/src/App.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
17 occurrences
repo-level (17 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 Frontend route `setup` has no Link/navigate to it — apps/desktop/src/pages/AuthenticatedAppHost.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
Orphan pageWiring
medium System graph cicd CI/CD security conf 1.00 8 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.
8 files, 8 locations
.github/workflows/_deploy-desktop.yml
.github/workflows/_deploy-server.yml
.github/workflows/_deploy-workers.yml
.github/workflows/deploy-staging.yml
.github/workflows/promote-production.yml
.github/workflows/release-desktop.yml
.github/workflows/release-runtime.yml
.github/workflows/server-ci.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/desktop/src/components/content/ui/HighlightedCodePanel.tsx:92
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/desktop/src/components/content/ui/HighlightedCodePanel.tsx:92 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/desktop/src/components/workspace/files/file-icons.tsx:47
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/desktop/src/components/workspace/files/file-icons.tsx:47 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/packages/product-ui/src/chat/transcript/MarkdownBody.tsx:78
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/packages/product-ui/src/chat/transcript/MarkdownBody.tsx:78 Dangerous innerhtml
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/cloud-ssh-worker-smoke.py:110
`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
high Security checks cicd CI/CD security conf 0.56 2 occurrences Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
lines 17, 30
server/docker-compose.yml:17, 30 (2 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 2 occurrences Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
lines 17, 30
server/docker-compose.yml:17, 30 (2 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
server/Dockerfile:13 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 14 locations
anyharness/crates/anyharness-lib/src/api/http/workspaces_contract.rs:83, 176, 191 (3 hits)
anyharness/crates/anyharness-lib/src/adapters/files/types.rs:2
anyharness/crates/anyharness-lib/src/adapters/git/service_tests.rs:8
anyharness/crates/anyharness-lib/src/adapters/git/types.rs:7
anyharness/crates/anyharness-lib/src/api/http/agents_model_registry.rs:20
anyharness/crates/anyharness-lib/src/api/http/hosting.rs:16
anyharness/crates/anyharness-lib/src/api/http/mobility.rs:270
anyharness/crates/anyharness-lib/src/api/http/mobility_contract.rs:168
duplicationquality
high Security checks quality Quality conf 0.62 14 occurrences Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
12 files, 12 locations
anyharness/crates/proliferate-worker/src/lifecycle/self_update.rs:1
apps/desktop/src/copy/agents/agents-copy.ts:1
apps/desktop/src/copy/auth/auth-copy.ts:1
apps/desktop/src/copy/automations/automation-copy.ts:1
apps/desktop/src/copy/billing/upgrade-gate-copy.ts:1
apps/desktop/src/copy/capabilities/capability-copy.ts:1
apps/desktop/src/copy/chat/chat-copy.ts:1
apps/desktop/src/copy/settings/agent-authentication-copy.ts:1
low System graph quality Integrity conf 1.00 41 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `APP_VARIANT`, `CLOUD_SSH_WORKER_API_PORT`, `CLOUD_SSH_WORKER_DB`, `CLOUD_SSH_WORKER_REMOTE_HOME`, `CLOUD_SSH_WORKER_SERVICE_NAME`, `CLOUD_SSH_WORKER_TIMEOUT_SECONDS`, `DEV`, `EXPO_PUBLIC_PROLIFERATE_API_BASE_URL` + 33 more. Add them (with a placeh…
config drift
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.
server/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk-react/src/lib/query-keys.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk-react/src/lib/request-options.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk-react/src/lib/timing-options.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/client/git.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/client/repo-roots.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/client/workspaces.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/generated/openapi.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/reducer/background-work.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/streams/__tests__/sessions.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/agents.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/cowork.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/files.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/git.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/hosting.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/mobility.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/plans.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/processes.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/reducer.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/replay.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/repo-roots.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/reviews.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/runtime-config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/runtime.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/terminals.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/workspaces.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/src/types/worktrees.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/sdk/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/tests/src/scenarios/agents/planning.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/tests/src/scenarios/agents/readiness.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/tests/src/scenarios/agents/session-turns.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/tests/src/scenarios/workspaces/file-git-worktree.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: anyharness/tests/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/assets.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/auth/auth-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/chat/chat-input-store.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/chat/chat-launch-intent-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/harness-connection-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-directory-store.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-directory-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-intent-store.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-records.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-store-isolation.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/sessions/session-types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/ui/repo-setup-modal-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/updater/updater-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/workspaces/new-workspace-command-scope-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/workspaces/workspace-mobility-ui-store.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/src/stores/workspaces/workspace-sidebar-show-more-store.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/tailwind.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/desktop/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Tests conf 1.00 Low test-to-source ratio
722 tests / 3572 src (ratio 0.20).
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/check_max_lines.py:count_lines, scripts/report_frontend_structure.py:count_lines This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: scripts/check_anyharness_boundaries.py:check_adapters_import, scripts/check_anyharness_boundaries.py:check_integrations_import, scripts/check_anyharness_boundaries.py:check_persistence_import This is *the* AI-coder failure mode (4× more duplication i…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: scripts/check_frontend_boundaries.py:relative_path, scripts/check_frontend_boundaries.py:relative, scripts/check_anyharness_boundaries.py:relative_path, scripts/check_anyharness_boundaries.py:relative This is *the* AI-coder failure mode (4× more dupl…
2 occurrences
repo-level (2 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: scripts/check_anyharness_boundaries.py:check_api_import, scripts/check_anyharness_boundaries.py:check_domains_import, scripts/check_anyharness_boundaries.py:check_core_domain_import, scripts/check_anyharness_boundaries.py:check_session_store_import T…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `free_trial_v2` in apps/packages/product-ui/src/billing/billing-presentation.ts:103
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 `free_trial_v2` in server/proliferate/constants/billing.py:4
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 server/proliferate/server/cloud/commands/service.py:889
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 server/proliferate/server/cloud/runtime_config/service.py:381
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 server/proliferate/server/cloud/target_config/service.py:321
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 server/proliferate/server/cloud/target_git_identity/service.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 `price_legacy` in server/tests/integration/test_stripe_webhooks.py:907
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 `price_legacy` in server/tests/unit/test_billing_domain.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 `price_legacy` in server/tests/unit/test_billing_service_policy.py:94
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 `relaunch_runtime_nohup_legacy` in server/proliferate/server/cloud/runtime/liveness/relaunch.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 `trial_v2` in server/tests/integration/test_billing_free_trial_allocation.py:78
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: build_apple_client_secret
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/auth/identity/providers.py:401
low System graph software Dead code conf 1.00 Possibly dead Python function: capture_correlation_context
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/middleware/request_context.py:62
low System graph software Dead code conf 1.00 Possibly dead Python function: filter
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/utils/logging.py:19
low System graph software Dead code conf 1.00 Possibly dead Python function: mcp_connection_user_can_manage
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/cloud/mcp_connections/access.py:20
low System graph software Dead code conf 1.00 Possibly dead Python function: poll_desktop_auth
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/auth/desktop/service.py:490
low System graph software Dead code conf 1.00 Possibly dead Python function: require_visible_target
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/cloud/targets/access.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: schedule_billing_slack_notification
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/notifications.py:164
low System graph software Dead code conf 1.00 Possibly dead Python function: session_stream_user_can_read
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/cloud/live/access.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: target_stream_user_can_read
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/cloud/live/access.py:59
low System graph software Dead code conf 1.00 Possibly dead Python function: update_virtual_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/integrations/bifrost/client.py:135
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_AsyncFunctionDef
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_server_boundaries.py:498
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Call
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_server_boundaries.py:507
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Import
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_server_boundaries.py:282
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_ImportFrom
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/check_server_boundaries.py:276
low System graph software Dead code conf 1.00 Possibly dead Python function: workspace_stream_user_can_read
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/proliferate/server/cloud/live/access.py:49
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — apps/mobile/src/providers/MobileAuthProvider.tsx:229
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — server/alembic/versions/c2d3e4f5a6b7_runtime_credential_freshness.py:19
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /mcp/connections/{connection_id}
`server/proliferate/server/cloud/mcp_connections/api.py` declares `DELETE /mcp/connections/{connection_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`server/proliferate/server/cloud/targets/api.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /agents
`server/proliferate/server/catalogs/api.py` declares `GET /agents` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /github/authorize
`server/proliferate/auth/desktop/api.py` declares `GET /github/authorize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /github/availability
`server/proliferate/auth/desktop/api.py` declares `GET /github/availability` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /github/callback
`server/proliferate/auth/desktop/api.py` declares `GET /github/callback` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /mcp/connections
`server/proliferate/server/cloud/mcp_connections/api.py` declares `GET /mcp/connections` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /me
`server/proliferate/auth/profile_api.py` declares `GET /me` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /sessions/{session_id}/stream
`server/proliferate/server/cloud/live/api.py` declares `GET /sessions/{session_id}/stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /targets/{target_id}/stream
`server/proliferate/server/cloud/live/api.py` declares `GET /targets/{target_id}/stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /viewer
`server/proliferate/auth/api.py` declares `GET /viewer` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /workspaces
`server/proliferate/server/cloud/workspaces/api.py` declares `GET /workspaces` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /workspaces/{workspace_id}/snapshot
`server/proliferate/server/cloud/live/api.py` declares `GET /workspaces/{workspace_id}/snapshot` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documentin…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /workspaces/{workspace_id}/stream
`server/proliferate/server/cloud/live/api.py` declares `GET /workspaces/{workspace_id}/stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{config_id}/materialization
`server/proliferate/server/cloud/target_config/api.py` declares `GET /{config_id}/materialization` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or document…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{provider}/callback
`server/proliferate/auth/identity/api.py` declares `GET /{provider}/callback` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{surface}/{provider}/callback
`server/proliferate/auth/identity/api.py` declares `GET /{surface}/{provider}/callback` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{target_id}
`server/proliferate/server/cloud/targets/api.py` declares `GET /{target_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{target_id}/configs
`server/proliferate/server/cloud/target_config/api.py` declares `GET /{target_id}/configs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{target_id}/configs/{config_id}
`server/proliferate/server/cloud/target_config/api.py` declares `GET /{target_id}/configs/{config_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or docu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /mcp/connections/{connection_id}
`server/proliferate/server/cloud/mcp_connections/api.py` declares `PATCH /mcp/connections/{connection_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /authorize
`server/proliferate/auth/desktop/api.py` declares `POST /authorize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /client-daily-activity
`server/proliferate/server/analytics/api.py` declares `POST /client-daily-activity` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /enrollments
`server/proliferate/server/cloud/targets/api.py` declares `POST /enrollments` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /github/link/start
`server/proliferate/auth/identity/api.py` declares `POST /github/link/start` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mcp/connections
`server/proliferate/server/cloud/mcp_connections/api.py` declares `POST /mcp/connections` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mcp/connections/{connection_id}/publicize
`server/proliferate/server/cloud/mcp_connections/api.py` declares `POST /mcp/connections/{connection_id}/publicize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider rem…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mcp/connections/{connection_id}/unpublicize
`server/proliferate/server/cloud/mcp_connections/api.py` declares `POST /mcp/connections/{connection_id}/unpublicize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider r…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mobile/apple/complete
`server/proliferate/auth/identity/api.py` declares `POST /mobile/apple/complete` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mobile/password/login
`server/proliferate/auth/identity/api.py` declares `POST /mobile/password/login` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mobile/session/refresh
`server/proliferate/auth/identity/api.py` declares `POST /mobile/session/refresh` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mobile/token
`server/proliferate/auth/identity/api.py` declares `POST /mobile/token` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /poll
`server/proliferate/auth/desktop/api.py` declares `POST /poll` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /refresh
`server/proliferate/auth/desktop/api.py` declares `POST /refresh` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /session-titles/generate
`server/proliferate/server/ai_magic/api.py` declares `POST /session-titles/generate` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consum…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /token
`server/proliferate/auth/desktop/api.py` declares `POST /token` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/apple/callback
`server/proliferate/auth/identity/api.py` declares `POST /web/apple/callback` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/password/login
`server/proliferate/auth/identity/api.py` declares `POST /web/password/login` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/session/bootstrap
`server/proliferate/auth/identity/api.py` declares `POST /web/session/bootstrap` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/session/logout
`server/proliferate/auth/identity/api.py` declares `POST /web/session/logout` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/session/refresh
`server/proliferate/auth/identity/api.py` declares `POST /web/session/refresh` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /web/token
`server/proliferate/auth/identity/api.py` declares `POST /web/token` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /workspaces
`server/proliferate/server/cloud/workspaces/api.py` declares `POST /workspaces` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{config_id}/status
`server/proliferate/server/cloud/target_config/api.py` declares `POST /{config_id}/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{surface}/{provider}/start
`server/proliferate/auth/identity/api.py` declares `POST /{surface}/{provider}/start` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{target_id}/archive
`server/proliferate/server/cloud/targets/api.py` declares `POST /{target_id}/archive` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{target_id}/configs/materialize
`server/proliferate/server/cloud/target_config/api.py` declares `POST /{target_id}/configs/materialize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or doc…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{target_id}/enrollments
`server/proliferate/server/cloud/targets/api.py` declares `POST /{target_id}/enrollments` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /mcp/connections/{connection_id}/auth/secret
`server/proliferate/server/cloud/mcp_connections/api.py` declares `PUT /mcp/connections/{connection_id}/auth/secret` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider re…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /password
`server/proliferate/auth/identity/api.py` declares `PUT /password` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: anyharness/crates/anyharness-lib/src/domains/cowork/runtime.rs (1901 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: anyharness/crates/anyharness-lib/src/domains/mobility/service.rs (1534 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: anyharness/crates/proliferate-worker/src/control/commands/executor.rs (1548 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: anyharness/sdk/src/generated/openapi.ts (8835 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: anyharness/sdk/src/reducer/__tests__/transcript.test.ts (1880 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cloud/sdk/src/generated/openapi.ts (16343 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/db/store/billing.py (2605 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/db/store/cloud_sync/commands.py (1565 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/db/store/cloud_workspaces.py (1621 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/server/billing/service.py (2459 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/server/cloud/commands/service.py (1648 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/server/cloud/runtime/provision.py (1688 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/proliferate/server/cloud/workspaces/service.py (2643 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/integration/test_auth_flow.py (2057 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/integration/test_billing_api.py (2053 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/integration/test_cloud_agent_auth_api.py (1664 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/integration/test_cloud_api.py (2373 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/integration/test_cloud_commands_api.py (4930 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/tests/unit/test_cloud_runtime_provision.py (1826 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/041dff61-f1a8-477f-bf3d-d64c8c2b6161/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/041dff61-f1a8-477f-bf3d-d64c8c2b6161/

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.