{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "scanner-9ae33c00385694dc", "name": "Possibly dead Python function: run_forge", "shortDescription": {"text": "Possibly dead Python function: run_forge"}, "fullDescription": {"text": "No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler."}, "properties": {"scanner": "scanner-primary", "layer": "software", "severity": "low", "confidence": 1.0}}, {"id": "scanner-69211e219a9ace2c", "name": "Possibly dead Python function: sweep", "shortDescription": {"text": "Possibly dead Python function: sweep"}, "fullDescription": {"text": "No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler."}, "properties": {"scanner": "scanner-primary", "layer": "software", "severity": "low", "confidence": 1.0}}, {"id": "scanner-32095bd8a9ba2d45", "name": "Possibly dead Python function: seam_tabs", "shortDescription": {"text": "Possibly dead Python function: seam_tabs"}, "fullDescription": {"text": "No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler."}, "properties": {"scanner": "scanner-primary", "layer": "software", "severity": "low", "confidence": 1.0}}, {"id": "scanner-9710c8d059e53154", "name": "No frontend routes/components detected", "shortDescription": {"text": "No frontend routes/components detected"}, "fullDescription": {"text": "No React/Vue/Next routes were found. This is fine for backend-only repos."}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-b0b2aa6f410c2b2d", "name": "Insecure pattern 'direct_innerhtml_assignment' in viewer.html:85", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in viewer.html:85"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-d820a99479905546", "name": "Insecure pattern 'direct_innerhtml_assignment' in static/index.html:264", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in static/index.html:264"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6372cebde0220094", "name": "No auth library detected", "shortDescription": {"text": "No auth library detected"}, "fullDescription": {"text": "The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4601e3ad3bb28677", "name": "No CI/CD pipelines detected", "shortDescription": {"text": "No CI/CD pipelines detected"}, "fullDescription": {"text": "No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 10 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 10 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b9088664ace7f748", "name": "Composite production-readiness gap", "shortDescription": {"text": "Composite production-readiness gap"}, "fullDescription": {"text": "Multiple low-cost hardening controls are missing together: license, ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-749d4bc1bd66df5f", "name": "Agent instructions exist but release-hardening basics are missing", "shortDescription": {"text": "Agent instructions exist but release-hardening basics are missing"}, "fullDescription": {"text": "AI-coder instruction files were found, but the repo is missing license, 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."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-9a6309c24c143648", "name": "Network/subprocess call without timeout or try/except \u2014 app.py:470", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 app.py:470"}, "fullDescription": {"text": "`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ee406d13cbaf98da", "name": "FastAPI POST `rerun` without auth dependency \u2014 app.py:323", "shortDescription": {"text": "FastAPI POST `rerun` without auth dependency \u2014 app.py:323"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-53764e118ea159ea", "name": "FastAPI POST `bake` without auth dependency \u2014 app.py:332", "shortDescription": {"text": "FastAPI POST `bake` without auth dependency \u2014 app.py:332"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-bb6496b8839c3433", "name": "FastAPI POST `restore` without auth dependency \u2014 app.py:355", "shortDescription": {"text": "FastAPI POST `restore` without auth dependency \u2014 app.py:355"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-081b5875a7231cf4", "name": "FastAPI POST `delete_part` without auth dependency \u2014 app.py:369", "shortDescription": {"text": "FastAPI POST `delete_part` without auth dependency \u2014 app.py:369"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-ba3c6c038fce7cfa", "name": "FastAPI POST `rename_part` without auth dependency \u2014 app.py:389", "shortDescription": {"text": "FastAPI POST `rename_part` without auth dependency \u2014 app.py:389"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-71312d7469e50b96", "name": "FastAPI POST `duplicate_part` without auth dependency \u2014 app.py:409", "shortDescription": {"text": "FastAPI POST `duplicate_part` without auth dependency \u2014 app.py:409"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-84e4ad4a47e51612", "name": "FastAPI POST `generate` without auth dependency \u2014 app.py:427", "shortDescription": {"text": "FastAPI POST `generate` without auth dependency \u2014 app.py:427"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-e12e0d59b84a67c6", "name": "FastAPI POST `connect` without auth dependency \u2014 app.py:465", "shortDescription": {"text": "FastAPI POST `connect` without auth dependency \u2014 app.py:465"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-868536fcba89a04f", "name": "FastAPI POST `open_target` without auth dependency \u2014 app.py:488", "shortDescription": {"text": "FastAPI POST `open_target` without auth dependency \u2014 app.py:488"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-4756b4c4da7d2088", "name": "Unused endpoint: GET /api/health", "shortDescription": {"text": "Unused endpoint: GET /api/health"}, "fullDescription": {"text": "`app.py` declares `GET /api/health` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6adb02a9364500c3", "name": "Unused endpoint: GET /api/parts", "shortDescription": {"text": "Unused endpoint: GET /api/parts"}, "fullDescription": {"text": "`app.py` declares `GET /api/parts` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-adba40f7f71a581a", "name": "Unused endpoint: GET /api/params/{part}", "shortDescription": {"text": "Unused endpoint: GET /api/params/{part}"}, "fullDescription": {"text": "`app.py` declares `GET /api/params/{part}` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-653f04aca784ebb8", "name": "Unused endpoint: POST /api/rerun", "shortDescription": {"text": "Unused endpoint: POST /api/rerun"}, "fullDescription": {"text": "`app.py` declares `POST /api/rerun` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6f7e8110237a04e8", "name": "Unused endpoint: POST /api/bake", "shortDescription": {"text": "Unused endpoint: POST /api/bake"}, "fullDescription": {"text": "`app.py` declares `POST /api/bake` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a731a39c5a710fad", "name": "Unused endpoint: POST /api/restore", "shortDescription": {"text": "Unused endpoint: POST /api/restore"}, "fullDescription": {"text": "`app.py` declares `POST /api/restore` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-83c287ea4fc96de7", "name": "Unused endpoint: POST /api/delete", "shortDescription": {"text": "Unused endpoint: POST /api/delete"}, "fullDescription": {"text": "`app.py` declares `POST /api/delete` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-efe3b29f67aab352", "name": "Unused endpoint: POST /api/rename", "shortDescription": {"text": "Unused endpoint: POST /api/rename"}, "fullDescription": {"text": "`app.py` declares `POST /api/rename` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6aeb84548019dd3f", "name": "Unused endpoint: POST /api/duplicate", "shortDescription": {"text": "Unused endpoint: POST /api/duplicate"}, "fullDescription": {"text": "`app.py` declares `POST /api/duplicate` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-093467ddc6e6a64d", "name": "Unused endpoint: POST /api/generate", "shortDescription": {"text": "Unused endpoint: POST /api/generate"}, "fullDescription": {"text": "`app.py` declares `POST /api/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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-76c45b5311b53ba3", "name": "Unused endpoint: GET /api/job/{job_id}", "shortDescription": {"text": "Unused endpoint: GET /api/job/{job_id}"}, "fullDescription": {"text": "`app.py` declares `GET /api/job/{job_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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-1b15d51eb7b430c8", "name": "Unused endpoint: POST /api/connect", "shortDescription": {"text": "Unused endpoint: POST /api/connect"}, "fullDescription": {"text": "`app.py` declares `POST /api/connect` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-9cc424536a52793a", "name": "Unused endpoint: POST /api/open", "shortDescription": {"text": "Unused endpoint: POST /api/open"}, "fullDescription": {"text": "`app.py` declares `POST /api/open` 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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-5baa8971ebe192a1", "name": "Unused endpoint: GET /", "shortDescription": {"text": "Unused endpoint: GET /"}, "fullDescription": {"text": "`app.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 \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/19883"}, "properties": {"repository": "smith22295-rgb/printlab", "repoUrl": "https://github.com/smith22295-rgb/printlab", "branch": "main"}, "results": [{"ruleId": "scanner-9ae33c00385694dc", "level": "note", "message": {"text": "Possibly dead Python function: run_forge"}, "properties": {"repobilityId": "bf7a3bcecc0c5d05", "scanner": "scanner-primary", "fingerprint": "9ae33c00385694dc", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py:135"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-69211e219a9ace2c", "level": "note", "message": {"text": "Possibly dead Python function: sweep"}, "properties": {"repobilityId": "f9a1954828cce24b", "scanner": "scanner-primary", "fingerprint": "69211e219a9ace2c", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib3d.py:251"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-32095bd8a9ba2d45", "level": "note", "message": {"text": "Possibly dead Python function: seam_tabs"}, "properties": {"repobilityId": "396e7a33e0680271", "scanner": "scanner-primary", "fingerprint": "32095bd8a9ba2d45", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "lib3d.py:319"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-9710c8d059e53154", "level": "none", "message": {"text": "No frontend routes/components detected"}, "properties": {"repobilityId": "44ca61485762e494", "scanner": "scanner-primary", "fingerprint": "9710c8d059e53154", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-b0b2aa6f410c2b2d", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in viewer.html:85"}, "properties": {"repobilityId": "8c1d4a02b66a45cf", "scanner": "scanner-primary", "fingerprint": "b0b2aa6f410c2b2d", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "viewer.html"}, "region": {"startLine": 85}}}]}, {"ruleId": "scanner-d820a99479905546", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in static/index.html:264"}, "properties": {"repobilityId": "54c44d8c983139f7", "scanner": "scanner-primary", "fingerprint": "d820a99479905546", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "static/index.html"}, "region": {"startLine": 264}}}]}, {"ruleId": "scanner-6372cebde0220094", "level": "warning", "message": {"text": "No auth library detected"}, "properties": {"repobilityId": "a5b6035a5bbf8054", "scanner": "scanner-primary", "fingerprint": "6372cebde0220094", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["coverage", "auth"]}}, {"ruleId": "scanner-4601e3ad3bb28677", "level": "warning", "message": {"text": "No CI/CD pipelines detected"}, "properties": {"repobilityId": "c3ee439bce2bc51e", "scanner": "scanner-primary", "fingerprint": "4601e3ad3bb28677", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-6893a6c8b0861585", "level": "warning", "message": {"text": "Very low test-to-source ratio"}, "properties": {"repobilityId": "54a7de3f06314bf0", "scanner": "scanner-primary", "fingerprint": "6893a6c8b0861585", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "coverage"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "5efbe63e179c16b3", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "ce591999767067f2", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "930351970597ad18", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "f7ed7461be1998d2", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "4418602b61d341ba", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "b9f94558902a2549", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-9a6309c24c143648", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 app.py:470"}, "properties": {"repobilityId": "91472d1389a2404b", "scanner": "scanner-primary", "fingerprint": "9a6309c24c143648", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-ee406d13cbaf98da", "level": "error", "message": {"text": "FastAPI POST `rerun` without auth dependency \u2014 app.py:323"}, "properties": {"repobilityId": "65071c0888bc42fc", "scanner": "scanner-primary", "fingerprint": "ee406d13cbaf98da", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 323}}}]}, {"ruleId": "scanner-53764e118ea159ea", "level": "error", "message": {"text": "FastAPI POST `bake` without auth dependency \u2014 app.py:332"}, "properties": {"repobilityId": "9982c8b7cca196fd", "scanner": "scanner-primary", "fingerprint": "53764e118ea159ea", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 332}}}]}, {"ruleId": "scanner-bb6496b8839c3433", "level": "error", "message": {"text": "FastAPI POST `restore` without auth dependency \u2014 app.py:355"}, "properties": {"repobilityId": "eb2115197946c688", "scanner": "scanner-primary", "fingerprint": "bb6496b8839c3433", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 355}}}]}, {"ruleId": "scanner-081b5875a7231cf4", "level": "error", "message": {"text": "FastAPI POST `delete_part` without auth dependency \u2014 app.py:369"}, "properties": {"repobilityId": "90cd29aee4795ef6", "scanner": "scanner-primary", "fingerprint": "081b5875a7231cf4", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 369}}}]}, {"ruleId": "scanner-ba3c6c038fce7cfa", "level": "error", "message": {"text": "FastAPI POST `rename_part` without auth dependency \u2014 app.py:389"}, "properties": {"repobilityId": "fa9042a27a3ca0f2", "scanner": "scanner-primary", "fingerprint": "ba3c6c038fce7cfa", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "scanner-71312d7469e50b96", "level": "error", "message": {"text": "FastAPI POST `duplicate_part` without auth dependency \u2014 app.py:409"}, "properties": {"repobilityId": "438e349218877c0a", "scanner": "scanner-primary", "fingerprint": "71312d7469e50b96", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 409}}}]}, {"ruleId": "scanner-84e4ad4a47e51612", "level": "error", "message": {"text": "FastAPI POST `generate` without auth dependency \u2014 app.py:427"}, "properties": {"repobilityId": "728b0831fcea74e2", "scanner": "scanner-primary", "fingerprint": "84e4ad4a47e51612", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 427}}}]}, {"ruleId": "scanner-e12e0d59b84a67c6", "level": "error", "message": {"text": "FastAPI POST `connect` without auth dependency \u2014 app.py:465"}, "properties": {"repobilityId": "96ce31b2d27019e9", "scanner": "scanner-primary", "fingerprint": "e12e0d59b84a67c6", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 465}}}]}, {"ruleId": "scanner-868536fcba89a04f", "level": "error", "message": {"text": "FastAPI POST `open_target` without auth dependency \u2014 app.py:488"}, "properties": {"repobilityId": "00d100fb78b471d9", "scanner": "scanner-primary", "fingerprint": "868536fcba89a04f", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "app.py"}, "region": {"startLine": 488}}}]}, {"ruleId": "scanner-4756b4c4da7d2088", "level": "note", "message": {"text": "Unused endpoint: GET /api/health"}, "properties": {"repobilityId": "11cf961f16829593", "scanner": "scanner-primary", "fingerprint": "4756b4c4da7d2088", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-6adb02a9364500c3", "level": "note", "message": {"text": "Unused endpoint: GET /api/parts"}, "properties": {"repobilityId": "8d0e24356eca5517", "scanner": "scanner-primary", "fingerprint": "6adb02a9364500c3", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-adba40f7f71a581a", "level": "note", "message": {"text": "Unused endpoint: GET /api/params/{part}"}, "properties": {"repobilityId": "b124871f74ae5b55", "scanner": "scanner-primary", "fingerprint": "adba40f7f71a581a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-653f04aca784ebb8", "level": "note", "message": {"text": "Unused endpoint: POST /api/rerun"}, "properties": {"repobilityId": "dee5408be4826341", "scanner": "scanner-primary", "fingerprint": "653f04aca784ebb8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-6f7e8110237a04e8", "level": "note", "message": {"text": "Unused endpoint: POST /api/bake"}, "properties": {"repobilityId": "f27a1db2bc086d70", "scanner": "scanner-primary", "fingerprint": "6f7e8110237a04e8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-a731a39c5a710fad", "level": "note", "message": {"text": "Unused endpoint: POST /api/restore"}, "properties": {"repobilityId": "ac1e15a9fe6b9a83", "scanner": "scanner-primary", "fingerprint": "a731a39c5a710fad", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-83c287ea4fc96de7", "level": "note", "message": {"text": "Unused endpoint: POST /api/delete"}, "properties": {"repobilityId": "d8394f192d6e10c7", "scanner": "scanner-primary", "fingerprint": "83c287ea4fc96de7", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-efe3b29f67aab352", "level": "note", "message": {"text": "Unused endpoint: POST /api/rename"}, "properties": {"repobilityId": "cc099d9a3249b8e3", "scanner": "scanner-primary", "fingerprint": "efe3b29f67aab352", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-6aeb84548019dd3f", "level": "note", "message": {"text": "Unused endpoint: POST /api/duplicate"}, "properties": {"repobilityId": "692963047ac77eb8", "scanner": "scanner-primary", "fingerprint": "6aeb84548019dd3f", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-093467ddc6e6a64d", "level": "note", "message": {"text": "Unused endpoint: POST /api/generate"}, "properties": {"repobilityId": "0c04b4e60a82d46c", "scanner": "scanner-primary", "fingerprint": "093467ddc6e6a64d", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-76c45b5311b53ba3", "level": "note", "message": {"text": "Unused endpoint: GET /api/job/{job_id}"}, "properties": {"repobilityId": "0c45abc2aabf55e8", "scanner": "scanner-primary", "fingerprint": "76c45b5311b53ba3", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-1b15d51eb7b430c8", "level": "note", "message": {"text": "Unused endpoint: POST /api/connect"}, "properties": {"repobilityId": "3e3794aa4df0fe44", "scanner": "scanner-primary", "fingerprint": "1b15d51eb7b430c8", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-9cc424536a52793a", "level": "note", "message": {"text": "Unused endpoint: POST /api/open"}, "properties": {"repobilityId": "e946fd5b4b87ac5b", "scanner": "scanner-primary", "fingerprint": "9cc424536a52793a", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "49cf5d64a7f531bc", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}