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.

chriszubrod/build.one.api

https://github.com/chriszubrod/build.one.api · scanned 2026-06-17 01:49 UTC (1 month, 1 week ago)

99 raw signals (0 security + 99 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -13.0 (diff) · 87 actionable findings from 1 signal source. 12 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
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 Repository scanned at 63.7/100 with 77.8% coverage. It contains 8166 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 99 findings — concentrated in quality (77), software (13), security (6). Risk profile is high: 0 critical, 6 high, 8 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 46 of 87 actionable findings. 99 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 System graph security auth conf 1.00 FastAPI DELETE `delete_vendor_type_by_public_id_router` without auth dependency — entities/vendor_type/api/router.py:91
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/vendor_type/api/router.py:91 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_vendor_type_router` without auth dependency — entities/vendor_type/api/router.py:17
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/vendor_type/api/router.py:17 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `mobile_login_router` without auth dependency — entities/auth/api/router.py:472
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/auth/api/router.py:472 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `mobile_refresh_router` without auth dependency — entities/auth/api/router.py:494
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/auth/api/router.py:494 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `refresh_token_router` without auth dependency — entities/auth/api/router.py:290
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/auth/api/router.py:290 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_vendor_type_by_public_id_router` without auth dependency — entities/vendor_type/api/router.py:62
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
entities/vendor_type/api/router.py:62 securityAuth fastapi unauth mutation
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: CLAUDE.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
CLAUDE.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing ci, tests. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Security conf 1.00 Dockerfile runs as root: 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 Network/subprocess call without timeout or try/except — integrations/intuit/qbo/auth/external/client.py:121
`requests.post(...)` 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 data Coverage conf 1.00 ORM models found but no DB engine detected
The repo defines tables/models but no DB connection string was found. Likely lives in env vars or a config file the scanner didn't read.
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 29 placeholder/mock markers across 12 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 1077 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Maintenance conf 1.00 65 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 549 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:3 containersPinned dependencies
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: intelligence/api/channel.py:get_or_register, intelligence/api/channel.py:get This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
8 occurrences
repo-level (8 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 21 places
Functions with the same first-5-line body hash: intelligence/outbox/persistence/repo.py:mark_done, integrations/ms/reconciliation/persistence/repo.py:read_by_status, integrations/ms/outbox/persistence/repo.py:update_ready_after, integrations/ms/outbox/persistence/repo.py:mark_done This is *the* AI…
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: intelligence/persistence/session_repo.py:create, intelligence/persistence/session_repo.py:create, intelligence/persistence/session_repo.py:create This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: intelligence/outbox/persistence/repo.py:mark_failed, integrations/ms/outbox/persistence/repo.py:mark_failed, integrations/intuit/qbo/outbox/persistence/repo.py:mark_failed, integrations/box/outbox/persistence/repo.py:mark_failed This is *the* AI-code…
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 72 places
Functions with the same first-5-line body hash: intelligence/persistence/approval_repo.py:read_by_id, intelligence/persistence/session_repo.py:read_by_public_id, intelligence/persistence/session_repo.py:read_by_session_id, intelligence/persistence/session_repo.py:read_by_turn_id This is *the* AI-c…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: intelligence/outbox/persistence/repo.py:create, integrations/ms/reconciliation/business/service.py:flag_dead_letter, integrations/ms/outbox/persistence/repo.py:create, integrations/ms/outbox/business/service.py:enqueue This is *the* AI-coder failure …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 82 places
Functions with the same first-5-line body hash: integrations/sync/business/model.py:row_version_hex, integrations/ms/sharepoint/drive/connector/company/business/model.py:row_version_hex, integrations/ms/sharepoint/drive/business/model.py:row_version_hex, integrations/ms/sharepoint/driveitem/connect…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 90 places
Functions with the same first-5-line body hash: integrations/sync/business/model.py:row_version_bytes, integrations/ms/sharepoint/drive/connector/company/business/model.py:row_version_bytes, integrations/ms/sharepoint/drive/business/model.py:row_version_bytes, integrations/ms/sharepoint/driveitem/c…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `allow_legacy` in entities/auth/business/service.py:92
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 intelligence/composition/delegation.py:133
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 `smoke_email_v1` in scripts/smoke_email_v1.py:21
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: all_agents
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/registry/agents.py:24
low System graph software Dead code conf 1.00 Possibly dead Python function: all_tools
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/tools/registry.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: is_attachment_synced
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/sharepoint/driveitem/connector/attachment/business/service.py:165
low System graph software Dead code conf 1.00 Possibly dead Python function: is_valid_idempotency_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/base/idempotency.py:33
low System graph software Dead code conf 1.00 Possibly dead Python function: login_agent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/auth.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: process
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/base/logger.py:26
low System graph software Dead code conf 1.00 Possibly dead Python function: read_by_parent_item_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/sharepoint/driveitem/persistence/repo.py:184
low System graph software Dead code conf 1.00 Possibly dead Python function: read_by_session_request
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/persistence/approval_repo.py:166
low System graph software Dead code conf 1.00 Possibly dead Python function: replay_session
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/api/replay.py:269
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_correlation_id
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/base/correlation.py:36
low System graph software Dead code conf 1.00 Possibly dead Python function: set_decision
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
intelligence/persistence/approval_repo.py:109
low System graph software Dead code conf 1.00 Possibly dead Python function: unlink_attachment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/sharepoint/driveitem/connector/attachment/business/service.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: upload_large_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
integrations/ms/sharepoint/external/client.py:418
low System graph quality Complexity conf 1.00 Very large file: entities/bill/business/service.py (2378 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: entities/expense/business/service.py (1379 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: entities/invoice/business/service.py (1274 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: scripts/reconcile_project.py (1336 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/5ebd1976-338a-470a-9465-d7b191ea147c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/5ebd1976-338a-470a-9465-d7b191ea147c/

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.