{"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-fea25e602feee7da", "name": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/EditModal.jsx:21", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/EditModal.jsx:21"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-81e2c99e0f39a56a", "name": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/CreateModal.jsx:14", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/CreateModal.jsx:14"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "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-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 115 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-01f96f71d9907a8c", "name": "README lacks setup or run instructions", "shortDescription": {"text": "README lacks setup or run instructions"}, "fullDescription": {"text": "A README exists, but it does not contain common install/setup/run markers. This matches a frequent generated-code pattern: UI is present, operational handoff is thin."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-72b2a6250083a784", "name": "Placeholder or mock-heavy implementation detected", "shortDescription": {"text": "Placeholder or mock-heavy implementation detected"}, "fullDescription": {"text": "Found 41 placeholder/mock markers across 26 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2d0c7b7ab8f8aacf", "name": "Critical user flow still appears backed by mock or placeholder data", "shortDescription": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "fullDescription": {"text": "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."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "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, operator-readme. 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, operator-readme. 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-39b81424f85759c3", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas.jsx:83", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas.jsx:83"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-a6dca5f46c1cf606", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ListaPrecios/components/ViewAndEditModal.jsx:86", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ListaPrecios/components/ViewAndEditModal.jsx:86"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6a1f5003cf9ad759", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ArticuloManage/hooks/useArticulos.js:111", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ArticuloManage/hooks/useArticulos.js:111"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2ee90a1e5cb6c9b7", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/ViewModal.jsx:24", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/ViewModal.jsx:24"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-128037d85573fdf3", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/CreateModal.jsx:174", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/CreateModal.jsx:174"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-14609e53b2ae913d", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Inventario/Index.jsx:237", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Inventario/Index.jsx:237"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-7d6c35ba72bbb016", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/InventarioInicial/Index.jsx:86", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/InventarioInicial/Index.jsx:86"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6a4a0639d651230c", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Warehouse/hooks/useWarehouseMovements.js:25", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Warehouse/hooks/useWarehouseMovements.js:25"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-011fa77f4edbe734", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateArticuloModal.jsx:13", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateArticuloModal.jsx:13"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-da82c1561221f187", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateModal.jsx:182", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateModal.jsx:182"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-00c6aede5bde2426", "name": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Familias/hooks/useFamilias.jsx:104", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Familias/hooks/useFamilias.jsx:104"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/24472"}, "properties": {"repository": "BannedForMacros/posm", "repoUrl": "https://github.com/BannedForMacros/posm", "branch": "main"}, "results": [{"ruleId": "scanner-fea25e602feee7da", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/EditModal.jsx:21"}, "properties": {"repobilityId": "82869d45ef26d332", "scanner": "scanner-primary", "fingerprint": "fea25e602feee7da", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-81e2c99e0f39a56a", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 resources/js/Pages/Warehouse/components/CreateModal.jsx:14"}, "properties": {"repobilityId": "1b14dd3e49c81152", "scanner": "scanner-primary", "fingerprint": "81e2c99e0f39a56a", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"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-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": "99debcc1f35cb97b", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-01f96f71d9907a8c", "level": "note", "message": {"text": "README lacks setup or run instructions"}, "properties": {"repobilityId": "f7638857f8a04161", "scanner": "scanner-primary", "fingerprint": "01f96f71d9907a8c", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["docs", "readme", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-72b2a6250083a784", "level": "warning", "message": {"text": "Placeholder or mock-heavy implementation detected"}, "properties": {"repobilityId": "80ce6c8b9886f5cc", "scanner": "scanner-primary", "fingerprint": "72b2a6250083a784", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "incomplete", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "b12714be301b255f", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "c3a275336403d54c", "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": "ef9d34bfd7dba5e0", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-39b81424f85759c3", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas.jsx:83"}, "properties": {"repobilityId": "bc51ef4c1022be7d", "scanner": "scanner-primary", "fingerprint": "39b81424f85759c3", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-a6dca5f46c1cf606", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ListaPrecios/components/ViewAndEditModal.jsx:86"}, "properties": {"repobilityId": "68c80f9057fcb6fd", "scanner": "scanner-primary", "fingerprint": "a6dca5f46c1cf606", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-6a1f5003cf9ad759", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/ArticuloManage/hooks/useArticulos.js:111"}, "properties": {"repobilityId": "e70e56429d34017a", "scanner": "scanner-primary", "fingerprint": "6a1f5003cf9ad759", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-2ee90a1e5cb6c9b7", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/ViewModal.jsx:24"}, "properties": {"repobilityId": "d7bc13097d0e15c0", "scanner": "scanner-primary", "fingerprint": "2ee90a1e5cb6c9b7", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-128037d85573fdf3", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Ventas/components/CreateModal.jsx:174"}, "properties": {"repobilityId": "e91204a6d982558f", "scanner": "scanner-primary", "fingerprint": "128037d85573fdf3", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-14609e53b2ae913d", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Inventario/Index.jsx:237"}, "properties": {"repobilityId": "cf062817dae4668c", "scanner": "scanner-primary", "fingerprint": "14609e53b2ae913d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-7d6c35ba72bbb016", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/InventarioInicial/Index.jsx:86"}, "properties": {"repobilityId": "75af2bfae974b3c2", "scanner": "scanner-primary", "fingerprint": "7d6c35ba72bbb016", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-6a4a0639d651230c", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Warehouse/hooks/useWarehouseMovements.js:25"}, "properties": {"repobilityId": "0ff19276a364f162", "scanner": "scanner-primary", "fingerprint": "6a4a0639d651230c", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-011fa77f4edbe734", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateArticuloModal.jsx:13"}, "properties": {"repobilityId": "a3d26f17c76a4f57", "scanner": "scanner-primary", "fingerprint": "011fa77f4edbe734", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-da82c1561221f187", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Compras/components/CreateModal.jsx:182"}, "properties": {"repobilityId": "0f4e79b275b634c9", "scanner": "scanner-primary", "fingerprint": "da82c1561221f187", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-00c6aede5bde2426", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 resources/js/Pages/Familias/hooks/useFamilias.jsx:104"}, "properties": {"repobilityId": "c92c95ff218cb349", "scanner": "scanner-primary", "fingerprint": "00c6aede5bde2426", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}]}]}