{"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": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "security.txt gives researchers and customers a safe disclosure channel. Public web apps and APIs should publish it under /.well-known/security.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "GHSA-gc5v-m9x4-r6x2", "name": "requests: GHSA-gc5v-m9x4-r6x2", "shortDescription": {"text": "requests: GHSA-gc5v-m9x4-r6x2"}, "fullDescription": {"text": "Requests has Insecure Temp File Reuse in its extract_zipped_paths() utility function"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-9wx4-h78v-vm56", "name": "requests: GHSA-9wx4-h78v-vm56", "shortDescription": {"text": "requests: GHSA-9wx4-h78v-vm56"}, "fullDescription": {"text": "Requests `Session` object does not verify requests after making first request with verify=False"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-9hjg-9r4m-mvj7", "name": "requests: GHSA-9hjg-9r4m-mvj7", "shortDescription": {"text": "requests: GHSA-9hjg-9r4m-mvj7"}, "fullDescription": {"text": "Requests vulnerable to .netrc credentials leak via malicious URLs"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-mf9w-mj56-hr94", "name": "python-dotenv: GHSA-mf9w-mj56-hr94", "shortDescription": {"text": "python-dotenv: GHSA-mf9w-mj56-hr94"}, "fullDescription": {"text": "python-dotenv: Symlink following in set_key allows arbitrary file overwrite via cross-device rename fallback"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "SEC005", "name": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.", "shortDescription": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "fullDescription": {"text": "Use subprocess with shell=False and a list of args. Never eval user input."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "SEC001", "name": "[SEC001] Hardcoded Password: Hardcoded password found in source code.", "shortDescription": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "fullDescription": {"text": "Use environment variables or a secrets manager."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "cwe": "", "owasp": ""}}, {"id": "SEC045", "name": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a latera", "shortDescription": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use obj"}, "fullDescription": {"text": "For literal data structures: use ast.literal_eval(text) \u2014 only parses literals, raises on code.\nFor formula evaluation: use asteval or simpleeval (purpose-built sandboxes with allow-lists).\nFor Odoo: use odoo.tools.safe_eval(expr, locals_dict, mode='exec').\nIf you genuinely need to execute admin-stored code: require explicit super-admin permission AND log every execution with a stack trace."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC136", "name": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns ", "shortDescription": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, retur"}, "fullDescription": {"text": "Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `process_merge` has cognitive complexity 20 (SonarSource scale). Cognitive", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `process_merge` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 20."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "AGT012", "name": "Agent control bridge may listen on a network interface without visible auth", "shortDescription": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "fullDescription": {"text": "Agent, MCP, sidecar, and command bridge servers often start as local helpers. Binding them to 0.0.0.0 or a default all-interface listener without an authorization guard can expose tool execution or session data to the LAN."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-NPM", "name": "npm package `@types/react-dom` is 1 major version(s) behind (^18.2.0 -> 19.2.3)", "shortDescription": {"text": "npm package `@types/react-dom` is 1 major version(s) behind (^18.2.0 -> 19.2.3)"}, "fullDescription": {"text": "`@types/react-dom` is pinned/resolved at ^18.2.0 but the latest stable release on the npm registry is 19.2.3 (1 major version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise."}, "properties": {"scanner": "repobility-dependency-currency", "category": "dependency", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED111", "name": "Bare except continues silently", "shortDescription": {"text": "Bare except continues silently"}, "fullDescription": {"text": "Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AIC004", "name": "Suspicious implementation file appears unreferenced", "shortDescription": {"text": "Suspicious implementation file appears unreferenced"}, "fullDescription": {"text": "A file created as a fixed/new/final/copy variant is not referenced by imports or path-like strings in the rest of the repository. This is a strong sign that an agent produced code beside the active application path."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "AIC002", "name": "Source file name looks like an AI patch artifact", "shortDescription": {"text": "Source file name looks like an AI patch artifact"}, "fullDescription": {"text": "Files named as final, fixed, copy, new, or backup are often temporary patch artifacts. They may be legitimate, but they deserve review before becoming production surface area."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED067", "name": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever.", "shortDescription": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-400 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC078", "name": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsiv", "shortDescription": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a re"}, "fullDescription": {"text": "Add `timeout=10` (or appropriate value) to every requests call."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data.", "shortDescription": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout.", "shortDescription": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED055", "name": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of ", "shortDescription": {"text": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of npm ci."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1357 / A06:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 1 more): Same pattern found in 1 additi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED062", "name": "[MINED062] Python Dataclass No Fields (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED062] Python Dataclass No Fields (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED004] Weak Crypto (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 2 more): Same pattern found in 2 addit", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC103", "name": "[SEC103] LDAP injection \u2014 non-constant search filter (and 7 more): Same pattern found in 7 additional files. Review if n", "shortDescription": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "fullDescription": {"text": "Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders)."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function (and 31 more): Same pattern found in 31 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 31 more): Same pattern found in 31 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED006", "name": "[MINED006] Overcatch Baseexception (and 23 more): Same pattern found in 23 additional files. Review if needed.", "shortDescription": {"text": "[MINED006] Overcatch Baseexception (and 23 more): Same pattern found in 23 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-705 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 29 more): Same pattern found in 29 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 29 more): Same pattern found in 29 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "PYSEC-2023-74", "name": "requests: PYSEC-2023-74", "shortDescription": {"text": "requests: PYSEC-2023-74"}, "fullDescription": {"text": "Requests is a HTTP library. Since Requests 2.3.0, Requests has been leaking Proxy-Authorization headers to destination servers when redirected to an HTTPS endpoint. This is a product of how we use `rebuild_proxies` to reattach the `Proxy-Authorization` header to requests. For HTTP connections sent through the tunnel, the proxy will identify the header in the request itself and remove it prior to forwarding to the destination server. However when sent over HTTPS, the `Proxy-Authorization` header must be sent in the CONNECT request as the proxy has no visibility into the tunneled request. This results in Requests forwarding proxy credentials to the destination server unintentionally, allowing a malicious actor to potentially exfiltrate sensitive information. This issue has been patched in version 2.31.0.\n\n"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that int", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTM"}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC013", "name": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows ", "shortDescription": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "fullDescription": {"text": "Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "MINED034", "name": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.", "shortDescription": {"text": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-78 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED012", "name": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code.", "shortDescription": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED021", "name": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape.", "shortDescription": {"text": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "Action `anthropics/claude-code-action` pinned to mutable ref `@v1`", "shortDescription": {"text": "Action `anthropics/claude-code-action` pinned to mutable ref `@v1`"}, "fullDescription": {"text": "`uses: anthropics/claude-code-action@v1` 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 + lock with Dependabot or renovate."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "Phantom test coverage: test_whitespace_scope_entry", "shortDescription": {"text": "Phantom test coverage: test_whitespace_scope_entry"}, "fullDescription": {"text": "Test function `test_whitespace_scope_entry` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "`self._get_jobs_by_trigger` used but never assigned in __init__", "shortDescription": {"text": "`self._get_jobs_by_trigger` used but never assigned in __init__"}, "fullDescription": {"text": "Method `_cron_loop` of class `Scheduler` reads `self._get_jobs_by_trigger`, 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."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "generic-api-key", "name": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", "shortDescription": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "curl-auth-header", "name": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed r", "shortDescription": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "curl-auth-user", "name": "Discovered a potential basic authorization token provided in a curl command, which could compromise the curl accessed re", "shortDescription": {"text": "Discovered a potential basic authorization token provided in a curl command, which could compromise the curl accessed resource."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "MINED132", "name": "Reverse shell idiom: nc -e /bin/sh (Netcat reverse shell)", "shortDescription": {"text": "Reverse shell idiom: nc -e /bin/sh (Netcat reverse shell)"}, "fullDescription": {"text": "File contains a known reverse-shell pattern (nc -e /bin/sh (Netcat reverse shell)). These are almost never legitimate in production code \u2014 they're a hallmark of malicious payloads, post-exploit scripts, or CTF write-ups that accidentally got committed. Verify the file's provenance + history."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "Missing import: `gc` used but not imported", "shortDescription": {"text": "Missing import: `gc` used but not imported"}, "fullDescription": {"text": "The file uses `gc.something(...)` but never imports `gc`. This raises NameError at runtime the first time the line executes."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1279"}, "properties": {"repository": "notque/vexjoy-agent", "repoUrl": "https://github.com/notque/vexjoy-agent", "branch": "main"}, "results": [{"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 129814, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-gc5v-m9x4-r6x2", "level": "warning", "message": {"text": "requests: GHSA-gc5v-m9x4-r6x2"}, "properties": {"repobilityId": 129813, "scanner": "osv-scanner", "fingerprint": "df69fc105f839b8858988bd945af94347c2e8a5ab6be2c5dec785fcd4d2fc827", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-25645"], "package": "requests", "rule_id": "GHSA-gc5v-m9x4-r6x2", "scanner": "osv-scanner", "correlation_key": "vuln|requests|CVE-2026-25645|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-9wx4-h78v-vm56", "level": "warning", "message": {"text": "requests: GHSA-9wx4-h78v-vm56"}, "properties": {"repobilityId": 129812, "scanner": "osv-scanner", "fingerprint": "16335ea6537f2b6c71811f552212ec9408c35d43ff73d772da0d19be29d73991", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2024-35195"], "package": "requests", "rule_id": "GHSA-9wx4-h78v-vm56", "scanner": "osv-scanner", "correlation_key": "vuln|requests|CVE-2024-35195|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-9hjg-9r4m-mvj7", "level": "warning", "message": {"text": "requests: GHSA-9hjg-9r4m-mvj7"}, "properties": {"repobilityId": 129811, "scanner": "osv-scanner", "fingerprint": "034eedde606d9526f151c4b574252cb5c7f7efabba940fadb09dc2a0d1598395", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2024-47081"], "package": "requests", "rule_id": "GHSA-9hjg-9r4m-mvj7", "scanner": "osv-scanner", "correlation_key": "vuln|requests|CVE-2024-47081|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-mf9w-mj56-hr94", "level": "warning", "message": {"text": "python-dotenv: GHSA-mf9w-mj56-hr94"}, "properties": {"repobilityId": 129809, "scanner": "osv-scanner", "fingerprint": "030c6ea3936499659ed910925462b9058f7115cecd98afed139ec104f4c2978a", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-28684"], "package": "python-dotenv", "rule_id": "GHSA-mf9w-mj56-hr94", "scanner": "osv-scanner", "correlation_key": "vuln|python-dotenv|CVE-2026-28684|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC005", "level": "warning", "message": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "properties": {"repobilityId": 129797, "scanner": "repobility-threat-engine", "fingerprint": "aa12c2bf93cb4572164d5d128bd17657f5b0e05f82c8b167c487a1d8a65ea897", "category": "injection", "severity": "medium", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "shell=True detected \u2014 verify command source is not user-controllable", "evidence": {"match": "subprocess.run(\n            args.command,\n            shell=True", "reason": "shell=True detected \u2014 verify command source is not user-controllable", "rule_id": "SEC005", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|token|177|sec005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-pipeline/scripts/with_server.py"}, "region": {"startLine": 177}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 129788, "scanner": "repobility-threat-engine", "fingerprint": "12684fea2cf84fa5691ce042abcded60cd090aafda2d5c97e85512f26aac1bc6", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (1.5 bits) \u2014 may be placeholder or common string", "evidence": {"match": "password='<redacted>, '", "reason": "Low entropy value (1.5 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|token|2|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/toolkit-evolution-cron.sh"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 129778, "scanner": "repobility-threat-engine", "fingerprint": "295b314a5e45beb19e84bfe237db798c7bc31fe1275fcec5fd4c34e29e508e78", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|47|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/conformance-harness.mjs"}, "region": {"startLine": 47}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 129768, "scanner": "repobility-threat-engine", "fingerprint": "e4124904ddc2a0a5a3480fb7043a1fda7dcf257a1f85e7cee994af43d6720d00", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def build_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|scripts/record-misroute.py|29|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/record-misroute.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 129767, "scanner": "repobility-threat-engine", "fingerprint": "d72b496268efaed30999246ad3365878d17a78c007e5bc060c86b75f5883363e", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def generate_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|50|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/user-correction-capture.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 129766, "scanner": "repobility-threat-engine", "fingerprint": "bab623147488656aae975c030c3ef95ad6d40e06f70c817b48a6112af63d5033", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def build_routing_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|108|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/routing-decision-recorder.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 129756, "scanner": "repobility-threat-engine", "fingerprint": "abdfc32ae973ab2b27e69fb3db554e916510b18e66e3d2b7042f0748299e4f3e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n        block = _META_BLOCK.search(source)\n        if not block:\n            return None", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|abdfc32ae973ab2b27e69fb3db554e916510b18e66e3d2b7042f0748299e4f3e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/workflow-registry.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 129755, "scanner": "repobility-threat-engine", "fingerprint": "c658f77f8d51336a3b7082d9a73f0dd36032e5dd3a0cc57af38b3fbe34233ca5", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n        text = fpath.read_text(encoding=\"utf-8\", errors=\"replace\")\n    except Exception:", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c658f77f8d51336a3b7082d9a73f0dd36032e5dd3a0cc57af38b3fbe34233ca5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/scan-supply-chain.py"}, "region": {"startLine": 180}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 129754, "scanner": "repobility-threat-engine", "fingerprint": "ff9eec291d71aadf21c1fec407d88f962b6b1b4f6ddbcabb77f76e339aed1aa4", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n        spec = importlib.util.spec_from_file_location(\"security_review_scan\", scanner)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ff9eec291d71aadf21c1fec407d88f962b6b1b4f6ddbcabb77f76e339aed1aa4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttool-security-scan.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 129748, "scanner": "repobility-threat-engine", "fingerprint": "6ca25bd28057c44526f001b0bc8023359ee056dcf96830774b7d580138ed7278", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n            pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6ca25bd28057c44526f001b0bc8023359ee056dcf96830774b7d580138ed7278"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/ci-merge-gate.py"}, "region": {"startLine": 136}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 129747, "scanner": "repobility-threat-engine", "fingerprint": "efff8f0507904c7c7fe4f4b03ef2259631124dc546c1dc1f192c654bc963d72d", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|efff8f0507904c7c7fe4f4b03ef2259631124dc546c1dc1f192c654bc963d72d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/afk-mode.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 129746, "scanner": "repobility-threat-engine", "fingerprint": "c97be7e8e0435b93d310a4368c1c94966b1d1d09cdff04de27707df44aca4ef7", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c97be7e8e0435b93d310a4368c1c94966b1d1d09cdff04de27707df44aca4ef7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `process_merge` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: continue=3, else=2, except=1, for=2, if=5, nested_bonus=7."}, "properties": {"repobilityId": 129731, "scanner": "repobility-threat-engine", "fingerprint": "947c04502233529a5c035243e036fb70374f96430d2166b89a387b00cc014722", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 20 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "process_merge", "breakdown": {"if": 5, "for": 2, "else": 2, "except": 1, "continue": 3, "nested_bonus": 7}, "complexity": 20, "correlation_key": "fp|947c04502233529a5c035243e036fb70374f96430d2166b89a387b00cc014722"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 204}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 129729, "scanner": "repobility-agent-runtime", "fingerprint": "f0c871afa52d4a609b966940a40bde23e741edeb2375c6893f32a573f7f0e02e", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|f0c871afa52d4a609b966940a40bde23e741edeb2375c6893f32a573f7f0e02e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-deny-list.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 129728, "scanner": "repobility-agent-runtime", "fingerprint": "7dafcf8c2ef1015c81759c97be569cd1b951f7b67bf35ac56dda88c7574831d7", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|7dafcf8c2ef1015c81759c97be569cd1b951f7b67bf35ac56dda88c7574831d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/agent-scheduler.py"}, "region": {"startLine": 420}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 129727, "scanner": "repobility-agent-runtime", "fingerprint": "9abca22278c2a2c449f31ee43295d7b13a53ae8f3a052fe20c0fc1907553ae67", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|9abca22278c2a2c449f31ee43295d7b13a53ae8f3a052fe20c0fc1907553ae67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-unified-gate.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 129726, "scanner": "repobility-agent-runtime", "fingerprint": "b12abd6641b9786299ddd0095b5a38dcb310a16d83277c720653dc36e81c3905", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|b12abd6641b9786299ddd0095b5a38dcb310a16d83277c720653dc36e81c3905"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agents/python-general-engineer/references/python-modern-features.md"}, "region": {"startLine": 182}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `@types/react-dom` is 1 major version(s) behind (^18.2.0 -> 19.2.3)"}, "properties": {"repobilityId": 129725, "scanner": "repobility-dependency-currency", "fingerprint": "7b18a0338c84b44a8d01cc09dd5416739269ac0e1ad428f30bbfb8a2a3cb0761", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@types/react-dom", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "19.2.3", "correlation_key": "fp|7b18a0338c84b44a8d01cc09dd5416739269ac0e1ad428f30bbfb8a2a3cb0761", "current_version": "^18.2.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `@rsbuild/plugin-react` is 2 major version(s) behind (^0.7.0 -> 2.0.1)"}, "properties": {"repobilityId": 129724, "scanner": "repobility-dependency-currency", "fingerprint": "39fa0d35fae915fa7d15974690085e4e221c4af3b6cf10834f97ca011a073272", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@rsbuild/plugin-react", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.0.1", "correlation_key": "fp|39fa0d35fae915fa7d15974690085e4e221c4af3b6cf10834f97ca011a073272", "current_version": "^0.7.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "warning", "message": {"text": "npm package `@rsbuild/core` is 2 major version(s) behind (^0.7.0 -> 2.0.11)"}, "properties": {"repobilityId": 129723, "scanner": "repobility-dependency-currency", "fingerprint": "b8231046f1b37f5cac1a3b870a3485543a795299511f9b56ce23c6642b6733f5", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@rsbuild/core", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "2.0.11", "correlation_key": "fp|b8231046f1b37f5cac1a3b870a3485543a795299511f9b56ce23c6642b6733f5", "current_version": "^0.7.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129627, "scanner": "repobility-ast-engine", "fingerprint": "729c14629030e5905a5a81d06f12bf3ca0c58015b2f870c8db16cc26dfd7ccab", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|729c14629030e5905a5a81d06f12bf3ca0c58015b2f870c8db16cc26dfd7ccab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/subagent-completion-guard.py"}, "region": {"startLine": 533}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129626, "scanner": "repobility-ast-engine", "fingerprint": "14c2241220f0fb9952776bb18bb5952e9687829dc4f605407d19c6f0588ec4a0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|14c2241220f0fb9952776bb18bb5952e9687829dc4f605407d19c6f0588ec4a0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/completion-evidence-check.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129625, "scanner": "repobility-ast-engine", "fingerprint": "df8f14bc056d37d85afaf9647f339bc822fb1e2542e79f6b03e41b1f380a5ed7", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|df8f14bc056d37d85afaf9647f339bc822fb1e2542e79f6b03e41b1f380a5ed7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttool-lint-hint.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129624, "scanner": "repobility-ast-engine", "fingerprint": "0941293f3eaf36d8607a1abdea6c3d1e83851a56063203fe12dbf0d1bc7d9906", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0941293f3eaf36d8607a1abdea6c3d1e83851a56063203fe12dbf0d1bc7d9906"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttool-lint-hint.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129623, "scanner": "repobility-ast-engine", "fingerprint": "5345bd26d38241d8a15ee9ad15a1b52e3b3fc36843af4e38f9c88c35181973d8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5345bd26d38241d8a15ee9ad15a1b52e3b3fc36843af4e38f9c88c35181973d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttool-lint-hint.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129622, "scanner": "repobility-ast-engine", "fingerprint": "1077e9f23b55cfbe860471e0408c7984ec5c2bd188667f6a334ed451153b9830", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1077e9f23b55cfbe860471e0408c7984ec5c2bd188667f6a334ed451153b9830"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/task-completed-learner.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129621, "scanner": "repobility-ast-engine", "fingerprint": "2aafb9c9055ecc7c60a720822c52f7a2d11dbe56a5f4160503da5ca491004101", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2aafb9c9055ecc7c60a720822c52f7a2d11dbe56a5f4160503da5ca491004101"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/user-correction-capture.py"}, "region": {"startLine": 106}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129620, "scanner": "repobility-ast-engine", "fingerprint": "5914640673caf29b9e030556173d50f4f2ecec09b3d015715d39333937535192", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5914640673caf29b9e030556173d50f4f2ecec09b3d015715d39333937535192"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/retro-knowledge-injector.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129619, "scanner": "repobility-ast-engine", "fingerprint": "e6c7ef613571ba677c625a17581a5376ca67f0375319114befe3cd426777a1b8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e6c7ef613571ba677c625a17581a5376ca67f0375319114befe3cd426777a1b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-subagent-warmstart.py"}, "region": {"startLine": 284}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129618, "scanner": "repobility-ast-engine", "fingerprint": "b1ed7b55b7b172d7d4a06afca83c0b20dd8e20ee821328596154d83ec890ed8a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b1ed7b55b7b172d7d4a06afca83c0b20dd8e20ee821328596154d83ec890ed8a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-subagent-warmstart.py"}, "region": {"startLine": 276}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129617, "scanner": "repobility-ast-engine", "fingerprint": "e3ab41a9a26873955aea5ea685b624cdfb537af26175b59ed24df0a6e8d5d44e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e3ab41a9a26873955aea5ea685b624cdfb537af26175b59ed24df0a6e8d5d44e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttooluse-sync-skill-index.py"}, "region": {"startLine": 98}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129616, "scanner": "repobility-ast-engine", "fingerprint": "a6b84312f6a307e78e95e6a7bfcf74c34475ede29c4ab5e7ba38bee1ad166880", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a6b84312f6a307e78e95e6a7bfcf74c34475ede29c4ab5e7ba38bee1ad166880"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/routing-outcome-recorder.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129615, "scanner": "repobility-ast-engine", "fingerprint": "e58b69d8bf288973e59252c8c0d6865e5aa6039a2c88c3d335eeb1d8818d6303", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e58b69d8bf288973e59252c8c0d6865e5aa6039a2c88c3d335eeb1d8818d6303"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-synthesis-gate.py"}, "region": {"startLine": 254}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129614, "scanner": "repobility-ast-engine", "fingerprint": "f59faaa2a752d78bc7976bdc3f3b22f2c7b26d5708d8ae574c55f1ed300c5ec9", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f59faaa2a752d78bc7976bdc3f3b22f2c7b26d5708d8ae574c55f1ed300c5ec9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/rules-distill-trigger.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129613, "scanner": "repobility-ast-engine", "fingerprint": "3cc7fab24f1b476d28363ba3e8c8bc9e5773783bc37d3e33033354a0360a76e0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3cc7fab24f1b476d28363ba3e8c8bc9e5773783bc37d3e33033354a0360a76e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-voice-publish-gate.py"}, "region": {"startLine": 159}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129612, "scanner": "repobility-ast-engine", "fingerprint": "26c871dcb7cb7e14566af6ec467ed3241bb68dd047d03d47df97d20031eb4489", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|26c871dcb7cb7e14566af6ec467ed3241bb68dd047d03d47df97d20031eb4489"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/fish-shell-detector.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129611, "scanner": "repobility-ast-engine", "fingerprint": "c59bc1a09eed1463553d9b2d0f41042e165dee9c5a9d005ac721bdb8cede6cd4", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c59bc1a09eed1463553d9b2d0f41042e165dee9c5a9d005ac721bdb8cede6cd4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/cross-repo-agents.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129610, "scanner": "repobility-ast-engine", "fingerprint": "8a4d4da41ed47486c4238d562d933d2cfd62ec25fffdc572f64bc8c27acb96fb", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8a4d4da41ed47486c4238d562d933d2cfd62ec25fffdc572f64bc8c27acb96fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/cross-repo-agents.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129609, "scanner": "repobility-ast-engine", "fingerprint": "4fb0944b499ee33e3b90aeb73328bf1a7315316989b2923b6cfa933258d612b2", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4fb0944b499ee33e3b90aeb73328bf1a7315316989b2923b6cfa933258d612b2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/agent-grade-on-change.py"}, "region": {"startLine": 146}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129608, "scanner": "repobility-ast-engine", "fingerprint": "8d41a2c52f6497301e98fa347f587d250ba104701991f64dfce5a022cb7a731b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8d41a2c52f6497301e98fa347f587d250ba104701991f64dfce5a022cb7a731b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/reference-loading-gate.py"}, "region": {"startLine": 265}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129607, "scanner": "repobility-ast-engine", "fingerprint": "b53b8313a33f871bb2ef2aa9c5890842180085e2279cc970311b383585120b6d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b53b8313a33f871bb2ef2aa9c5890842180085e2279cc970311b383585120b6d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/rules-distill-injector.py"}, "region": {"startLine": 147}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129606, "scanner": "repobility-ast-engine", "fingerprint": "f71857f5e68d796860eec8a050426cc3c6858d9268bc3a9effac53e6a4ef7ac2", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f71857f5e68d796860eec8a050426cc3c6858d9268bc3a9effac53e6a4ef7ac2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/rules-distill-injector.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129605, "scanner": "repobility-ast-engine", "fingerprint": "77114d480b9bed1a3c2d8df5eb043d71e506b03cd13c5e10c7f72ed3a624560b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|77114d480b9bed1a3c2d8df5eb043d71e506b03cd13c5e10c7f72ed3a624560b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/review-capture.py"}, "region": {"startLine": 179}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129604, "scanner": "repobility-ast-engine", "fingerprint": "3c3a92cf7bc6ec051148d3099d9c0f01f4f57391c42babd8391e8cd3c5d103e8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3c3a92cf7bc6ec051148d3099d9c0f01f4f57391c42babd8391e8cd3c5d103e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-config-protection.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 129603, "scanner": "repobility-ast-engine", "fingerprint": "0b0bc0442d79723377b4c8cf87e13e859001c2ab4acae6a0325f8ebde0b720ab", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0b0bc0442d79723377b4c8cf87e13e859001c2ab4acae6a0325f8ebde0b720ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/reference-loading-enforcer.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "AIC004", "level": "warning", "message": {"text": "Suspicious implementation file appears unreferenced"}, "properties": {"repobilityId": 129590, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5f41eb2d7dca0b9180e49bb2746c086c3343c1eeb39b2e156a16f7261d84235b", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Patch-style source file has no detected inbound reference from other repository files.", "evidence": {"suffix": "backup", "rule_id": "AIC004", "scanner": "repobility-ai-code-hygiene", "references": ["https://knip.dev/", "https://github.com/jendrikseipp/vulture"], "correlation_key": "fp|5f41eb2d7dca0b9180e49bb2746c086c3343c1eeb39b2e156a16f7261d84235b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-file-backup.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `extract_implementation_steps` has cognitive complexity 13 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: break=1, continue=1, for=1, if=4, nested_bonus=6."}, "properties": {"repobilityId": 129732, "scanner": "repobility-threat-engine", "fingerprint": "4edb7868d5f11abd0754b01cdd54c6b06b41353fa14382ea27825afcd2b470bb", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 13 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "extract_implementation_steps", "breakdown": {"if": 4, "for": 1, "break": 1, "continue": 1, "nested_bonus": 6}, "complexity": 13, "correlation_key": "fp|4edb7868d5f11abd0754b01cdd54c6b06b41353fa14382ea27825afcd2b470bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 110}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 14 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: else=1, except=2, if=9, nested_bonus=2."}, "properties": {"repobilityId": 129730, "scanner": "repobility-threat-engine", "fingerprint": "6dbf342b5517961da60820afed28a6acbde31a79027ce5100923014c6198cd69", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 14 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 9, "else": 1, "except": 2, "nested_bonus": 2}, "complexity": 14, "correlation_key": "fp|6dbf342b5517961da60820afed28a6acbde31a79027ce5100923014c6198cd69"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-enforcement.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@perses-dev/plugin-system` is minor version(s) behind (^0.48.0 -> 0.54.0-beta.3)"}, "properties": {"repobilityId": 129722, "scanner": "repobility-dependency-currency", "fingerprint": "5a3cfb12c3b307287f31344196ceb382de5fade1f7bf900f6987b4102c602dbf", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@perses-dev/plugin-system", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "0.54.0-beta.3", "correlation_key": "fp|5a3cfb12c3b307287f31344196ceb382de5fade1f7bf900f6987b4102c602dbf", "current_version": "^0.48.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@perses-dev/core` is minor version(s) behind (^0.48.0 -> 0.54.0-beta.1)"}, "properties": {"repobilityId": 129721, "scanner": "repobility-dependency-currency", "fingerprint": "bd3438593d5dc3c049ac9bd1a9c8d14fe82d878b089e877da9008ad80b271c59", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@perses-dev/core", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "0.54.0-beta.1", "correlation_key": "fp|bd3438593d5dc3c049ac9bd1a9c8d14fe82d878b089e877da9008ad80b271c59", "current_version": "^0.48.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129602, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f3b77cfc355d90be71933e5e35c877bf3ed3d1893565e5f018c6a5b3d63c4e15", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "scripts/sanitize-learning-db.py", "duplicate_line": 56, "correlation_key": "fp|f3b77cfc355d90be71933e5e35c877bf3ed3d1893565e5f018c6a5b3d63c4e15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/scan-supply-chain.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129601, "scanner": "repobility-ai-code-hygiene", "fingerprint": "047e97e71b94b0f077f4cb580a3db8ddea3c29ad1b978c681744437009c899af", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "scripts/fix-skill-paths.py", "duplicate_line": 10, "correlation_key": "fp|047e97e71b94b0f077f4cb580a3db8ddea3c29ad1b978c681744437009c899af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/migrate-skills-to-folders.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129600, "scanner": "repobility-ai-code-hygiene", "fingerprint": "611c15f778c3a855e1c666594ff475eb91fb21e561d1fe5b2450c40c763b5b6e", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "scripts/generate-pipeline-catalog.py", "duplicate_line": 38, "correlation_key": "fp|611c15f778c3a855e1c666594ff475eb91fb21e561d1fe5b2450c40c763b5b6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-skill-index.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129599, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ca060331435a37fc9df0291860fdef7a2df61a3aab8e641031cdc1c9047e26e6", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "scripts/generate-codex-hooks-json.py", "duplicate_line": 21, "correlation_key": "fp|ca060331435a37fc9df0291860fdef7a2df61a3aab8e641031cdc1c9047e26e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-gemini-settings-hooks.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129598, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dfe1e2d40113bfc9c2536809842426ea7caaa6ac05105950ab19fd95b47180a9", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/fish-shell-detector.py", "duplicate_line": 11, "correlation_key": "fp|dfe1e2d40113bfc9c2536809842426ea7caaa6ac05105950ab19fd95b47180a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/zsh-shell-detector.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129597, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e6f7e26b5a7459f39f470c0669a568fe1fd80aa4a512dbbbd24872842572be11", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/pipeline-phase-gate.py", "duplicate_line": 224, "correlation_key": "fp|e6f7e26b5a7459f39f470c0669a568fe1fd80aa4a512dbbbd24872842572be11"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/voice-pipeline-tracker.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129596, "scanner": "repobility-ai-code-hygiene", "fingerprint": "de06635f4d21e7655b09dec70b43c38f69035dbbbe559e9eecc5351e08abb851", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/lib/routing_outcome_state.py", "duplicate_line": 48, "correlation_key": "fp|de06635f4d21e7655b09dec70b43c38f69035dbbbe559e9eecc5351e08abb851"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/suggest-compact.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129595, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b33e251465ca8a1bad50586a164e41b0881cd187e59091a8a0dcdd99390d831d", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/posttool-security-scan.py", "duplicate_line": 48, "correlation_key": "fp|b33e251465ca8a1bad50586a164e41b0881cd187e59091a8a0dcdd99390d831d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/security-review-hook.py"}, "region": {"startLine": 176}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129594, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5fc5ecc93e2b92b24f12c5677339140474237368924610d6d8b8a67cfb5bb83c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/pretool-adr-creation-gate.py", "duplicate_line": 169, "correlation_key": "fp|5fc5ecc93e2b92b24f12c5677339140474237368924610d6d8b8a67cfb5bb83c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-plan-gate.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129593, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6b18e11b98c6d915746ec43fe97d64447bce45ded47c235ed7863637ed3cdb61", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/posttool-skill-frontmatter-check.py", "duplicate_line": 16, "correlation_key": "fp|6b18e11b98c6d915746ec43fe97d64447bce45ded47c235ed7863637ed3cdb61"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttooluse-sync-skill-index.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129592, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8e3d1e668102ec4ece55c6722b0bb56c13e2f1554f09ecc634df3d13e4613fef", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/lib/routing_outcome_state.py", "duplicate_line": 48, "correlation_key": "fp|8e3d1e668102ec4ece55c6722b0bb56c13e2f1554f09ecc634df3d13e4613fef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/posttool-auto-test.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 129591, "scanner": "repobility-ai-code-hygiene", "fingerprint": "40dda92449d661fa4ca5e9581b3dd89d55146117770363f70b0925f3042608b3", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "hooks/creation-request-enforcer-userprompt.py", "duplicate_line": 7, "correlation_key": "fp|40dda92449d661fa4ca5e9581b3dd89d55146117770363f70b0925f3042608b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/instruction-reminder.py"}, "region": {"startLine": 6}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 129589, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8aae7ff1fde97f51288a1fb5273f587638c277c4cd74ee1e6571f4d77f6188dc", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "backup", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|8aae7ff1fde97f51288a1fb5273f587638c277c4cd74ee1e6571f4d77f6188dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-file-backup.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 129796, "scanner": "repobility-threat-engine", "fingerprint": "d573f33abee2fa09ef92771e476d473219c87fb8390c3ba4ffd324f19e5757cf", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d573f33abee2fa09ef92771e476d473219c87fb8390c3ba4ffd324f19e5757cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-asset-generator/scripts/optimize-glb.mjs"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 129795, "scanner": "repobility-threat-engine", "fingerprint": "2c27865ea82cb659580466e6ed5ce1342d1fd521be06c36c7807d091cc98d234", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2c27865ea82cb659580466e6ed5ce1342d1fd521be06c36c7807d091cc98d234"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-asset-generator/scripts/meshy-generate.mjs"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 129794, "scanner": "repobility-threat-engine", "fingerprint": "76a686b4aa0e6ec5fe6a514613c7a5367e3069f2d0610e4150d52fa35df5ff40", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|76a686b4aa0e6ec5fe6a514613c7a5367e3069f2d0610e4150d52fa35df5ff40"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/content/publish/scripts/wordpress-media-upload.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "SEC078", "level": "none", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 129793, "scanner": "repobility-threat-engine", "fingerprint": "a0e95ebf9bf91b34a9be19d6c9b5a92146dc82555760ed97f79b4f8df8ead45c", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'timeout\\s*=' detected on same line", "evidence": {"match": "requests.post(", "reason": "Safe pattern 'timeout\\s*=' detected on same line", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|a0e95ebf9bf91b34a9be19d6c9b5a92146dc82555760ed97f79b4f8df8ead45c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/content/publish/scripts/wordpress-media-upload.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 129792, "scanner": "repobility-threat-engine", "fingerprint": "7a562a370c4b302ffbb143d06ea93b90307aff4a12ac88c49dac7ae91f13799d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|7a562a370c4b302ffbb143d06ea93b90307aff4a12ac88c49dac7ae91f13799d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-pipeline/scripts/with_server.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 129791, "scanner": "repobility-threat-engine", "fingerprint": "6e1b51341a6383e09b42c2c77b9c1830b515eae1418e702691f920944a1bfd30", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6e1b51341a6383e09b42c2c77b9c1830b515eae1418e702691f920944a1bfd30"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/validate-doc-links.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 129790, "scanner": "repobility-threat-engine", "fingerprint": "c50ca866a2ce7fe758fcb11f0429e0c4b43ecff45d54eef16d4539ff685efde7", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c50ca866a2ce7fe758fcb11f0429e0c4b43ecff45d54eef16d4539ff685efde7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/process/pr-workflow/scripts/validate.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 129789, "scanner": "repobility-threat-engine", "fingerprint": "2c3a35f265516bca987f4aa36550115d9bca85aab10bdd6bab46ab4fecc79f8e", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2c3a35f265516bca987f4aa36550115d9bca85aab10bdd6bab46ab4fecc79f8e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/trim-agent-descriptions.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 129787, "scanner": "repobility-threat-engine", "fingerprint": "b6edddaddab6b62ff63a87b52b7d7b3bab2a5af6b4d7361c1238d18c2c6e3162", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|b6edddaddab6b62ff63a87b52b7d7b3bab2a5af6b4d7361c1238d18c2c6e3162"}}}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 129786, "scanner": "repobility-threat-engine", "fingerprint": "13284c12f763c2f42ed6ab0cbdb57e0bee8ef194fb1de867edb9d6f2c16ee6ec", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.error('Error: MESHY_API_KEY not found in env or ~/.env')", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|4|console.error error: meshy_api_key not found in env or /.env"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-asset-generator/scripts/meshy-generate.mjs"}, "region": {"startLine": 50}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 129785, "scanner": "repobility-threat-engine", "fingerprint": "cb3a790504c7b3e2205283a16ec10ac95dba5eaf71b9d26cab16cddbe67214cc", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "print(f\"  Estimated token savings: ~{total_saved * 4} tokens per conversation\")", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|19|print f estimated token savings: total_saved 4 tokens per conversation"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/trim-agent-descriptions.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "MINED055", "level": "none", "message": {"text": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of npm ci."}, "properties": {"repobilityId": 129783, "scanner": "repobility-threat-engine", "fingerprint": "606eacbbc5a1f5cd9a8422f111bef21c1100c1a8625bee6c11abb07d4b87ac78", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "npm-install-no-lockfile", "owasp": "A06:2021", "cwe_ids": ["CWE-1357"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348030+00:00", "triaged_in_corpus": 12, "observations_count": 317602, "ai_coder_pattern_id": 42}, "scanner": "repobility-threat-engine", "correlation_key": "fp|606eacbbc5a1f5cd9a8422f111bef21c1100c1a8625bee6c11abb07d4b87ac78"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/setup-quality-gate.sh"}, "region": {"startLine": 48}}}]}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 129777, "scanner": "repobility-threat-engine", "fingerprint": "8f4ed64e85e23651a781f801f20cbe7cf192b517efa4818df0dde258906a2c2b", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|8f4ed64e85e23651a781f801f20cbe7cf192b517efa4818df0dde258906a2c2b"}}}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 129773, "scanner": "repobility-threat-engine", "fingerprint": "fae806c2ee90fa304d3a37e2a631a59e1c95dc447dbe00b9024d66fc54d3ca88", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|fae806c2ee90fa304d3a37e2a631a59e1c95dc447dbe00b9024d66fc54d3ca88", "aggregated_count": 1}}}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 129772, "scanner": "repobility-threat-engine", "fingerprint": "5bec432d87747e8143ab4ff415136c2f6623f95dfe4509c05895a545b79ea37c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5bec432d87747e8143ab4ff415136c2f6623f95dfe4509c05895a545b79ea37c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/html-artifact/scripts/detect-shape.py"}, "region": {"startLine": 188}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 129771, "scanner": "repobility-threat-engine", "fingerprint": "417c168fa22412e0fba96c0b5478b8878fe8ff9dabb3caf8705281e85c863594", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|417c168fa22412e0fba96c0b5478b8878fe8ff9dabb3caf8705281e85c863594"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/research-stats-checkpoint.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 129770, "scanner": "repobility-threat-engine", "fingerprint": "5f7d6250265a969f58055e76fc373d5f963ca06c7713f0fea9a54526d419f6a2", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5f7d6250265a969f58055e76fc373d5f963ca06c7713f0fea9a54526d419f6a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/check-skill-verdicts.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 129769, "scanner": "repobility-threat-engine", "fingerprint": "4c82f835a0d63199c66330581970359c0a03aff0cb19c57b581f30f748d6bc6e", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4c82f835a0d63199c66330581970359c0a03aff0cb19c57b581f30f748d6bc6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "plugins/custom-panel/src/PanelComponent.tsx"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED004", "level": "none", "message": {"text": "[MINED004] Weak Crypto (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 129765, "scanner": "repobility-threat-engine", "fingerprint": "a51fc5b757daa107ff993d54388f809af87b26cac35292629b20c635c24267fc", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|a51fc5b757daa107ff993d54388f809af87b26cac35292629b20c635c24267fc", "aggregated_count": 1}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 129761, "scanner": "repobility-threat-engine", "fingerprint": "2cd220107759c389357ea1e0b2a749255d62455820f15b6cc9e05e77d2c17c58", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|2cd220107759c389357ea1e0b2a749255d62455820f15b6cc9e05e77d2c17c58"}}}, {"ruleId": "SEC136", "level": "none", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 129757, "scanner": "repobility-threat-engine", "fingerprint": "8e478e56b730255b619eaaf214c2ac68864bd09b58591d59c20fe11bd4508abd", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|8e478e56b730255b619eaaf214c2ac68864bd09b58591d59c20fe11bd4508abd"}}}, {"ruleId": "SEC103", "level": "none", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 129753, "scanner": "repobility-threat-engine", "fingerprint": "52c45417ead1187ceb462b2716d77fe8f9140dc019baf8f41096a11ceae5ee1f", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|52c45417ead1187ceb462b2716d77fe8f9140dc019baf8f41096a11ceae5ee1f"}}}, {"ruleId": "ERR001", "level": "none", "message": {"text": "[ERR001] Silent Exception Swallowing (and 8 more): Same pattern found in 8 additional files. Review if needed."}, "properties": {"repobilityId": 129749, "scanner": "repobility-threat-engine", "fingerprint": "d519e5d6197711acc45a6df1657a71c2872715d9e6af4ce1a278f7572298871f", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 8 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 8 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d519e5d6197711acc45a6df1657a71c2872715d9e6af4ce1a278f7572298871f"}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 31 more): Same pattern found in 31 additional files. Review if needed."}, "properties": {"repobilityId": 129745, "scanner": "repobility-threat-engine", "fingerprint": "91ddd366c7948498787f567a0b9bb45da826ce37ca89f31d96211078a24902d3", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 31 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|91ddd366c7948498787f567a0b9bb45da826ce37ca89f31d96211078a24902d3", "aggregated_count": 31}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 129744, "scanner": "repobility-threat-engine", "fingerprint": "aad7547c877db2ff9e676df8c5066d1431fb1bb151903ef2c724a6c35aab3598", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|aad7547c877db2ff9e676df8c5066d1431fb1bb151903ef2c724a6c35aab3598"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/agent-grade-on-change.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 129743, "scanner": "repobility-threat-engine", "fingerprint": "53a0a202441f226934e4da1891782b4a79c73655ae6196101984e40499318872", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|53a0a202441f226934e4da1891782b4a79c73655ae6196101984e40499318872"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/afk-mode.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 129742, "scanner": "repobility-threat-engine", "fingerprint": "9c955eda8d4ba36a6d99ab9d2fba3469b0e488a986d3228d3ae8b28a7db1844e", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|9c955eda8d4ba36a6d99ab9d2fba3469b0e488a986d3228d3ae8b28a7db1844e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED006", "level": "none", "message": {"text": "[MINED006] Overcatch Baseexception (and 23 more): Same pattern found in 23 additional files. Review if needed."}, "properties": {"repobilityId": 129741, "scanner": "repobility-threat-engine", "fingerprint": "64430ebb600d5e1bf56e0a785a229f62512a98f534ae175e3fd3f531706505a4", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 23 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|64430ebb600d5e1bf56e0a785a229f62512a98f534ae175e3fd3f531706505a4", "aggregated_count": 23}}}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 29 more): Same pattern found in 29 additional files. Review if needed."}, "properties": {"repobilityId": 129737, "scanner": "repobility-threat-engine", "fingerprint": "a472bda2879274398e9bc99fd68fe01e3068fbe9434b6b4abb84a21639ac6539", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 29 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|a472bda2879274398e9bc99fd68fe01e3068fbe9434b6b4abb84a21639ac6539", "aggregated_count": 29}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 232 more): Same pattern found in 232 additional files. Review if needed."}, "properties": {"repobilityId": 129733, "scanner": "repobility-threat-engine", "fingerprint": "a38bf98d2a487fafc540ee053d709b6319031bc0be1913541f40afd894364daa", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 232 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 9, "else": 1, "except": 2, "nested_bonus": 2}, "aggregated": true, "complexity": 14, "correlation_key": "fp|a38bf98d2a487fafc540ee053d709b6319031bc0be1913541f40afd894364daa", "aggregated_count": 232}}}, {"ruleId": "PYSEC-2023-74", "level": "error", "message": {"text": "requests: PYSEC-2023-74"}, "properties": {"repobilityId": 129810, "scanner": "osv-scanner", "fingerprint": "a81c4a7cab5d835d73b2ff3eb70dee4bb9f73fd08f2067107fdc34acdd0332d6", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "", "aliases": ["CVE-2023-32681", "GHSA-j8r2-6x86-q33q"], "package": "requests", "rule_id": "PYSEC-2023-74", "scanner": "osv-scanner", "correlation_key": "vuln|requests|CVE-2023-32681|requirements.txt", "duplicate_count": 1, "duplicate_rule_ids": ["GHSA-j8r2-6x86-q33q", "PYSEC-2023-74"], "duplicate_scanners": ["osv-scanner"], "duplicate_fingerprints": ["a4d38873f5575298016caa3ef94e03ad4826ced628c4c7053d2059aa98186e76", "a81c4a7cab5d835d73b2ff3eb70dee4bb9f73fd08f2067107fdc34acdd0332d6"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 129802, "scanner": "repobility-threat-engine", "fingerprint": "666b8558055cdc958ab3018f66b94596ff1fff8cbc415ddb467b17eeb40d77f0", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((s) => `- Skill(\"${s}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|666b8558055cdc958ab3018f66b94596ff1fff8cbc415ddb467b17eeb40d77f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/workflow/references/workflow-helpers.js"}, "region": {"startLine": 27}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 129801, "scanner": "repobility-threat-engine", "fingerprint": "d721de069a5d05542515c3482ce4450f7bc8193568d20871e209e2ea8a84a8e8", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(args.input", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|270|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/routing-table-updater/scripts/generate_routes.py"}, "region": {"startLine": 270}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 129800, "scanner": "repobility-threat-engine", "fingerprint": "1627074ea1a2742c3106d05011d07534cd0f33ee5cf67e1e4d707a951df8fc56", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(args.input", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|267|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/routing-table-updater/scripts/extract_metadata.py"}, "region": {"startLine": 267}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 129799, "scanner": "repobility-threat-engine", "fingerprint": "8d3f584161a3c55d17a8da9d274d4750e38e712eda40c84b184eb6820a952471", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(input", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|199|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-sprite-pipeline/scripts/deterministic_idle.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "MINED034", "level": "error", "message": {"text": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection."}, "properties": {"repobilityId": 129798, "scanner": "repobility-threat-engine", "fingerprint": "2cd9b70420bf1e9aa7b32ce9c5b16e07afd3672ea9b48d7342e4fc72a9c27642", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-subprocess-shell-true", "owasp": null, "cwe_ids": ["CWE-78"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347977+00:00", "triaged_in_corpus": 15, "observations_count": 3478, "ai_coder_pattern_id": 118}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2cd9b70420bf1e9aa7b32ce9c5b16e07afd3672ea9b48d7342e4fc72a9c27642"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-pipeline/scripts/with_server.py"}, "region": {"startLine": 177}}}]}, {"ruleId": "SEC020", "level": "error", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 129784, "scanner": "repobility-threat-engine", "fingerprint": "da9f772c8d74c0fefd655dc1ac818d59b47a11598084c42217822e81abb4501e", "category": "credential_exposure", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Credential-bearing variable appears to be printed or logged", "evidence": {"match": "print(f\"\u2713 GITHUB_TOKEN is set (length: {len(token)", "reason": "Credential-bearing variable appears to be printed or logged", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.85, "correlation_key": "secret|token|3|print f github_token is set length: len token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/process/pr-workflow/scripts/validate.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 129782, "scanner": "repobility-threat-engine", "fingerprint": "0654c6e85acddab8fba66f179972e9963925a04aafeeb26ff1c1284974b56276", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0654c6e85acddab8fba66f179972e9963925a04aafeeb26ff1c1284974b56276"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-deny-list.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED021", "level": "error", "message": {"text": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "properties": {"repobilityId": 129781, "scanner": "repobility-threat-engine", "fingerprint": "a03fa55bffee4588f9368c6fdde70b385dce833e091cd8e145f17d39d5666570", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "path-traversal-os-join", "owasp": "A01:2021", "cwe_ids": ["CWE-22"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347947+00:00", "triaged_in_corpus": 15, "observations_count": 45678, "ai_coder_pattern_id": 31}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a03fa55bffee4588f9368c6fdde70b385dce833e091cd8e145f17d39d5666570"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-gemini-settings-hooks.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "MINED021", "level": "error", "message": {"text": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "properties": {"repobilityId": 129780, "scanner": "repobility-threat-engine", "fingerprint": "a3dc1c930445c7e88ba88f600aff0ce4e47b7aeabcb938f334ebc1914f685216", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "path-traversal-os-join", "owasp": "A01:2021", "cwe_ids": ["CWE-22"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347947+00:00", "triaged_in_corpus": 15, "observations_count": 45678, "ai_coder_pattern_id": 31}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a3dc1c930445c7e88ba88f600aff0ce4e47b7aeabcb938f334ebc1914f685216"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-codex-hooks-json.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 129779, "scanner": "repobility-threat-engine", "fingerprint": "f1184095969975d0f52a19947a25fa0c53881e301e1873a00b6d638a008859c0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(prompt", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f1184095969975d0f52a19947a25fa0c53881e301e1873a00b6d638a008859c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/conformance-harness.mjs"}, "region": {"startLine": 47}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 129776, "scanner": "repobility-threat-engine", "fingerprint": "e5aef55cc2fd4ee8dbc9909c5a3bc012affe35912abac4bb13bb12bed9b8e62c", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.post(api_url", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e5aef55cc2fd4ee8dbc9909c5a3bc012affe35912abac4bb13bb12bed9b8e62c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/content/publish/scripts/wordpress-media-upload.py"}, "region": {"startLine": 138}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 129775, "scanner": "repobility-threat-engine", "fingerprint": "ca9c42f4596537316cca2593c029fdbccaa427686d520dcb81e4c01d8c58407f", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ca9c42f4596537316cca2593c029fdbccaa427686d520dcb81e4c01d8c58407f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/conformance-harness.mjs"}, "region": {"startLine": 173}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 129774, "scanner": "repobility-threat-engine", "fingerprint": "3ff012b7323feec905c5f543078264ba2e4f70a35804fb7286a4e766c887e6f3", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3ff012b7323feec905c5f543078264ba2e4f70a35804fb7286a4e766c887e6f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/classify-repo.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 129764, "scanner": "repobility-threat-engine", "fingerprint": "3afb9d65fd211e258c6e62e1d731e53bd720a0f8f7017b85c24672765e5ce1ed", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3afb9d65fd211e258c6e62e1d731e53bd720a0f8f7017b85c24672765e5ce1ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/routing-decision-recorder.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 129763, "scanner": "repobility-threat-engine", "fingerprint": "dbc9e12105b32b7601ec79b11830bd67fdac081d2ac7c5707b230cfccf11bccc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|dbc9e12105b32b7601ec79b11830bd67fdac081d2ac7c5707b230cfccf11bccc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/review-capture.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 129762, "scanner": "repobility-threat-engine", "fingerprint": "011362b7889a13f48717d31d2a3303060f7f3b3aeed718656518e2a0a65dee99", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|011362b7889a13f48717d31d2a3303060f7f3b3aeed718656518e2a0a65dee99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/prompt-capture.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 129760, "scanner": "repobility-threat-engine", "fingerprint": "4fa067495bc1c3fc4445d58e62384ab2cc2384cf22b8f8b74bdec1e8ea0f0ce6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "diff_img.save(diff_path)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|4fa067495bc1c3fc4445d58e62384ab2cc2384cf22b8f8b74bdec1e8ea0f0ce6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-pipeline/scripts/imgdiff.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 129759, "scanner": "repobility-threat-engine", "fingerprint": "de24ee6c58b68359cad26c8e25f863c1e70b73d0dfcc62dfbbe8ddcef12f09bd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "img.save(image_path, \"PNG\")", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|de24ee6c58b68359cad26c8e25f863c1e70b73d0dfcc62dfbbe8ddcef12f09bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-asset-generator/scripts/fal_queue_image_run.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 129758, "scanner": "repobility-threat-engine", "fingerprint": "c68c261ba5cbd07266663333c83bc17003d3ad48c215810429be16dd8e7e5d9e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "tags.update(keywords)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c68c261ba5cbd07266663333c83bc17003d3ad48c215810429be16dd8e7e5d9e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-learning-injector.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 129752, "scanner": "repobility-threat-engine", "fingerprint": "de6b6f0e2949ff6c4000f7351e517893ddf39302bb722056be52f1fdbbf5b6f8", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(r'\\bgit\\s+-C\\s+(?:\"([^\"]+)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|56|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-branch-safety.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 129751, "scanner": "repobility-threat-engine", "fingerprint": "8b85ff4bd21e83a855ce3c606fb57161c40138f544d938e48dfb5459592a8968", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(\n                    r'\\[remote\\s+\"origin\"\\]\\s*\\n(?:\\s+\\w+\\s*=.*\\n)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|199|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/operator-context-detector.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 129750, "scanner": "repobility-threat-engine", "fingerprint": "651ea4f8d02039f281ec27d045386c3be8895638eb391353f97bc9712da8a0df", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(r\"^#\\s+(.+)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|hooks/cross-repo-agents.py|44|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/cross-repo-agents.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED006", "level": "error", "message": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"repobilityId": 129740, "scanner": "repobility-threat-engine", "fingerprint": "37a92a5990b852a6ed76046624547ee7c94b5c2e89a1da5d0146b169c67ef87e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "correlation_key": "fp|37a92a5990b852a6ed76046624547ee7c94b5c2e89a1da5d0146b169c67ef87e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/creation-protocol-enforcer.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "MINED006", "level": "error", "message": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"repobilityId": 129739, "scanner": "repobility-threat-engine", "fingerprint": "f7dfb6d76e4f6d378adc770cde764443bffb6f57d9fab54efc846c64cae8c105", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f7dfb6d76e4f6d378adc770cde764443bffb6f57d9fab54efc846c64cae8c105"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/ci-merge-gate.py"}, "region": {"startLine": 180}}}]}, {"ruleId": "MINED006", "level": "error", "message": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"repobilityId": 129738, "scanner": "repobility-threat-engine", "fingerprint": "b71a14722bbe543a432b1b9a6d8962f8384d89950c2a5ce7023f1a8b7bd77388", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b71a14722bbe543a432b1b9a6d8962f8384d89950c2a5ce7023f1a8b7bd77388"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 129736, "scanner": "repobility-threat-engine", "fingerprint": "26c164a1ace3994d8669ee90d6d77489c691304b450f150c3682a634998a2f34", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|26c164a1ace3994d8669ee90d6d77489c691304b450f150c3682a634998a2f34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/agent-grade-on-change.py"}, "region": {"startLine": 86}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 129735, "scanner": "repobility-threat-engine", "fingerprint": "1b4c0ae47931bdc9d03308caa224994beea3efc81d9640653ebb7c7a67b7a8ec", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1b4c0ae47931bdc9d03308caa224994beea3efc81d9640653ebb7c7a67b7a8ec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/afk-mode.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 129734, "scanner": "repobility-threat-engine", "fingerprint": "87c91795a136dfb9052806541293b6bd264014b8504a63eac9ffe6feb3948bbf", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|87c91795a136dfb9052806541293b6bd264014b8504a63eac9ffe6feb3948bbf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/adr-lifecycle-on-merge.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `anthropics/claude-code-action` pinned to mutable ref `@v1`"}, "properties": {"repobilityId": 129716, "scanner": "repobility-supply-chain", "fingerprint": "4b6ee0aae6da4a53e262db45ab5605fa522c8e1899a5f365d90ee13d83d9fa25", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4b6ee0aae6da4a53e262db45ab5605fa522c8e1899a5f365d90ee13d83d9fa25"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude.yml"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129715, "scanner": "repobility-supply-chain", "fingerprint": "227012a306a92c0897250beb505cbcbb76a5e11a7b8f4d99a17f4d50b13438c3", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|227012a306a92c0897250beb505cbcbb76a5e11a7b8f4d99a17f4d50b13438c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129714, "scanner": "repobility-supply-chain", "fingerprint": "78b0a75cd0a751873560c784efa40434bf61b29ac44973325823fe0472622a4e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|78b0a75cd0a751873560c784efa40434bf61b29ac44973325823fe0472622a4e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 154}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129713, "scanner": "repobility-supply-chain", "fingerprint": "f8591d68d28941900dddfac670a891affec3810423e3e74f7cfc4e7e9968c8fd", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f8591d68d28941900dddfac670a891affec3810423e3e74f7cfc4e7e9968c8fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 151}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129712, "scanner": "repobility-supply-chain", "fingerprint": "8bd8a5488e5ada691afe8896571be4d331972b99d8cb2240ec772f829db8b799", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|8bd8a5488e5ada691afe8896571be4d331972b99d8cb2240ec772f829db8b799"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 132}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129711, "scanner": "repobility-supply-chain", "fingerprint": "809ab8eb19b407c1f4df77f887c50c8f691cd1b8bfd27a2f03c9215921c54202", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|809ab8eb19b407c1f4df77f887c50c8f691cd1b8bfd27a2f03c9215921c54202"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129710, "scanner": "repobility-supply-chain", "fingerprint": "3d757bf8f90af8ccf5c3a5fec32f8e19ce1f0095153af347a79fd32c162489a8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3d757bf8f90af8ccf5c3a5fec32f8e19ce1f0095153af347a79fd32c162489a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 115}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129709, "scanner": "repobility-supply-chain", "fingerprint": "2b5e9c3dfa6614dc06f9e47e01b0744605cfa858393ed9d9db5804d351061383", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|2b5e9c3dfa6614dc06f9e47e01b0744605cfa858393ed9d9db5804d351061383"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129708, "scanner": "repobility-supply-chain", "fingerprint": "2009e7cec8f6f901343eb0feeccc8fb5a939ba528cedaaab5663c03a48c5af3f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|2009e7cec8f6f901343eb0feeccc8fb5a939ba528cedaaab5663c03a48c5af3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 89}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129707, "scanner": "repobility-supply-chain", "fingerprint": "ab9c008f8ec394321f7805a76f38f05064b03cb7d5ac3a59a3290c9f3aefc7ae", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ab9c008f8ec394321f7805a76f38f05064b03cb7d5ac3a59a3290c9f3aefc7ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 88}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129706, "scanner": "repobility-supply-chain", "fingerprint": "11df4a08d4f860b1118eaf8de0eb06cd365fae278252463d5a3baf897e262e2c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|11df4a08d4f860b1118eaf8de0eb06cd365fae278252463d5a3baf897e262e2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129705, "scanner": "repobility-supply-chain", "fingerprint": "b9f1c520e4bc41e9c72dee26b5c98c03d85697e68ef3b945434d9b797d02ed1d", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b9f1c520e4bc41e9c72dee26b5c98c03d85697e68ef3b945434d9b797d02ed1d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129704, "scanner": "repobility-supply-chain", "fingerprint": "57f073ee8dab08e9250ec57f0f01573e33b9c66780a472b3688c9e1f0ba8bef8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|57f073ee8dab08e9250ec57f0f01573e33b9c66780a472b3688c9e1f0ba8bef8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 66}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129703, "scanner": "repobility-supply-chain", "fingerprint": "5d980f31cb6540031445f8611162b1d52f9d6f5f186a9c40504bc754def9abb5", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5d980f31cb6540031445f8611162b1d52f9d6f5f186a9c40504bc754def9abb5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 65}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129702, "scanner": "repobility-supply-chain", "fingerprint": "9edbc513e87b18f16524a533aecf3a75f016861264518a1fc3a8e12da4963900", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9edbc513e87b18f16524a533aecf3a75f016861264518a1fc3a8e12da4963900"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129701, "scanner": "repobility-supply-chain", "fingerprint": "d04c0bbdcda00f6f9905dde05adb6786017b6b913513db7820aff84b30d80465", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d04c0bbdcda00f6f9905dde05adb6786017b6b913513db7820aff84b30d80465"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129700, "scanner": "repobility-supply-chain", "fingerprint": "fa6d4367062e4eefbbe30ba95ee24ce645cb397cc36719e900f2a423e8fe9b01", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fa6d4367062e4eefbbe30ba95ee24ce645cb397cc36719e900f2a423e8fe9b01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129699, "scanner": "repobility-supply-chain", "fingerprint": "14f087bd6e0c6157124a90ef52a085731b8973b185aa42ea414a8710e97d7797", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|14f087bd6e0c6157124a90ef52a085731b8973b185aa42ea414a8710e97d7797"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129698, "scanner": "repobility-supply-chain", "fingerprint": "0796c3d28db35409d9b0e3ae79a8502d4ce2d10005c08031be0a9a8c703db8fc", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0796c3d28db35409d9b0e3ae79a8502d4ce2d10005c08031be0a9a8c703db8fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 129697, "scanner": "repobility-supply-chain", "fingerprint": "dce44c59e0352bc01f722631fad586c44211a7c2d5a8b0caff2a1cc76a33b284", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dce44c59e0352bc01f722631fad586c44211a7c2d5a8b0caff2a1cc76a33b284"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_whitespace_scope_entry"}, "properties": {"repobilityId": 129683, "scanner": "repobility-ast-engine", "fingerprint": "aef3ffcf714853561ec76dec2e34ac927413bf3f24ec37377413a5d6efcead2c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|aef3ffcf714853561ec76dec2e34ac927413bf3f24ec37377413a5d6efcead2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 421}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_non_dict_item"}, "properties": {"repobilityId": 129682, "scanner": "repobility-ast-engine", "fingerprint": "24d2072340056580d61a68c68ba795dd1df4142917471d03bffe2016a814c687", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|24d2072340056580d61a68c68ba795dd1df4142917471d03bffe2016a814c687"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 416}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_invalid_readonly_type"}, "properties": {"repobilityId": 129681, "scanner": "repobility-ast-engine", "fingerprint": "1714de39ce95067c0748945bb690ff7206a3494d9eb78bf3c489532fb58a853c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1714de39ce95067c0748945bb690ff7206a3494d9eb78bf3c489532fb58a853c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 310}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_scope"}, "properties": {"repobilityId": 129680, "scanner": "repobility-ast-engine", "fingerprint": "3474fc194df0e9a1987ca8392730204e21fad0bac56432ceefbab8f6ce6fea70", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3474fc194df0e9a1987ca8392730204e21fad0bac56432ceefbab8f6ce6fea70"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 306}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_duplicate_id"}, "properties": {"repobilityId": 129679, "scanner": "repobility-ast-engine", "fingerprint": "2406949b7111709ef67c3991f73d89ddb807fd7327b0a23e5f39ab96573eabf3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2406949b7111709ef67c3991f73d89ddb807fd7327b0a23e5f39ab96573eabf3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 302}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_id"}, "properties": {"repobilityId": 129678, "scanner": "repobility-ast-engine", "fingerprint": "4dd029064503d1bca096008918d087f6f20574c17c3e7aea850be52d8144f7d0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4dd029064503d1bca096008918d087f6f20574c17c3e7aea850be52d8144f7d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 298}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_empty_array"}, "properties": {"repobilityId": 129677, "scanner": "repobility-ast-engine", "fingerprint": "fe61beb5ea95c760a8f807bf6a0e201c3b27dc63850e5dbf9325c7e3ffbd8384", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fe61beb5ea95c760a8f807bf6a0e201c3b27dc63850e5dbf9325c7e3ffbd8384"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 294}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_not_array"}, "properties": {"repobilityId": 129676, "scanner": "repobility-ast-engine", "fingerprint": "ca9fb705b589816c0769205d56dd05fe96313f14509e18473545093cc5331b07", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ca9fb705b589816c0769205d56dd05fe96313f14509e18473545093cc5331b07"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 290}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_invalid_json"}, "properties": {"repobilityId": 129675, "scanner": "repobility-ast-engine", "fingerprint": "aba6adadd080771cac587b5f49d753c0f285f37c431cd309b9aedee67f13dd92", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|aba6adadd080771cac587b5f49d753c0f285f37c431cd309b9aedee67f13dd92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_check_scope_overlap.py"}, "region": {"startLine": 286}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_non_component_file"}, "properties": {"repobilityId": 129674, "scanner": "repobility-ast-engine", "fingerprint": "8c62b108aaf033d52642ba9fd460cdf3b160fdd3995e6d724f94e56a07806eff", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8c62b108aaf033d52642ba9fd460cdf3b160fdd3995e6d724f94e56a07806eff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_score_component.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_no_arguments"}, "properties": {"repobilityId": 129673, "scanner": "repobility-ast-engine", "fingerprint": "43899de605931be0fd5f42b6884c06d753eb93e4038e319445200293be399e38", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|43899de605931be0fd5f42b6884c06d753eb93e4038e319445200293be399e38"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_score_component.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_file"}, "properties": {"repobilityId": 129672, "scanner": "repobility-ast-engine", "fingerprint": "7d08614b189d0fbbc4d68cb8663f59881abae3d252760aa2e71461cca158322f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7d08614b189d0fbbc4d68cb8663f59881abae3d252760aa2e71461cca158322f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_score_component.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_baseline_file_exits_0"}, "properties": {"repobilityId": 129671, "scanner": "repobility-ast-engine", "fingerprint": "c67b1ff9268fac6cd0744739a959290758b38fd5f72af8ab1eb49f149da4c53b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c67b1ff9268fac6cd0744739a959290758b38fd5f72af8ab1eb49f149da4c53b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 434}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_skill_in_baseline_exits_0"}, "properties": {"repobilityId": 129670, "scanner": "repobility-ast-engine", "fingerprint": "8aa439fd97b42cfd39ac160a114040d431b95731b1786f2ac4a28e7560206ba1", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8aa439fd97b42cfd39ac160a114040d431b95731b1786f2ac4a28e7560206ba1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 429}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_custom_threshold_absorbs_large_drop"}, "properties": {"repobilityId": 129669, "scanner": "repobility-ast-engine", "fingerprint": "193a14ea6bf5631677859f0edd9c3b9bcb7f9ea1ad5d57c157d8f342a64f595a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|193a14ea6bf5631677859f0edd9c3b9bcb7f9ea1ad5d57c157d8f342a64f595a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 412}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_small_drop_within_threshold_exits_0"}, "properties": {"repobilityId": 129668, "scanner": "repobility-ast-engine", "fingerprint": "83fa1579cdcca69b4900414e390dd6095aaa345ce5e41fd89ff1e6944a32319c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|83fa1579cdcca69b4900414e390dd6095aaa345ce5e41fd89ff1e6944a32319c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 394}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_regression_exits_1"}, "properties": {"repobilityId": 129667, "scanner": "repobility-ast-engine", "fingerprint": "8f9fdb695eaed0d604038134e7b05bc03880680cc11f187c2ef65449e5a9c50d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8f9fdb695eaed0d604038134e7b05bc03880680cc11f187c2ef65449e5a9c50d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_no_regression_exits_0"}, "properties": {"repobilityId": 129666, "scanner": "repobility-ast-engine", "fingerprint": "3e900a65b2ac78a1c4e2342855240825b4665542d8d05386a86e5cd59a7edcde", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3e900a65b2ac78a1c4e2342855240825b4665542d8d05386a86e5cd59a7edcde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 384}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_missing_input_exits_2"}, "properties": {"repobilityId": 129665, "scanner": "repobility-ast-engine", "fingerprint": "a5358254861326a2c266a1de5373c60481f6b0d1a616c8d8e73ddb182ecb6b3f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a5358254861326a2c266a1de5373c60481f6b0d1a616c8d8e73ddb182ecb6b3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_passk_eval.py"}, "region": {"startLine": 340}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_empty_db_no_crash"}, "properties": {"repobilityId": 129664, "scanner": "repobility-ast-engine", "fingerprint": "cea911ed923561060f315f39cea1193678f919e33d584995704d750012ff1e64", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|cea911ed923561060f315f39cea1193678f919e33d584995704d750012ff1e64"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_learning_source_filter.py"}, "region": {"startLine": 255}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_skill_file_approaching_limit_warning"}, "properties": {"repobilityId": 129663, "scanner": "repobility-ast-engine", "fingerprint": "9c0bc7938d45a2390f4ae382fff06acaee5a218507ada22c38b05b3c83a5efb3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9c0bc7938d45a2390f4ae382fff06acaee5a218507ada22c38b05b3c83a5efb3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_reference_loading.py"}, "region": {"startLine": 838}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_no_negative_framing_in_headings"}, "properties": {"repobilityId": 129662, "scanner": "repobility-ast-engine", "fingerprint": "043ea32efe933f570c893ba03d7695fe4aadeddd2b7ba3ce0b81b0fb2340e6eb", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|043ea32efe933f570c893ba03d7695fe4aadeddd2b7ba3ce0b81b0fb2340e6eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_reference_loading.py"}, "region": {"startLine": 553}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_file_approaching_limit_warning"}, "properties": {"repobilityId": 129661, "scanner": "repobility-ast-engine", "fingerprint": "f6b5fbcdbedb72a71f509653ad8f484bbe2605c73e8892cfcc17fa7ef47ca7e6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f6b5fbcdbedb72a71f509653ad8f484bbe2605c73e8892cfcc17fa7ef47ca7e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_reference_loading.py"}, "region": {"startLine": 514}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_valid_json"}, "properties": {"repobilityId": 129660, "scanner": "repobility-ast-engine", "fingerprint": "0a32fc2f771a647019a11f061758ea3d51f8e14daea385ff8ad76d1b7fcfa8e5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0a32fc2f771a647019a11f061758ea3d51f8e14daea385ff8ad76d1b7fcfa8e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_adr_decision_coverage.py"}, "region": {"startLine": 381}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_install_sh_handles_missing_allowlist_gracefully"}, "properties": {"repobilityId": 129659, "scanner": "repobility-ast-engine", "fingerprint": "77cc47ba958ea0d0c04477001bb0cb9a3214dbeb78134d2c537df8bf1be8d3ed", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|77cc47ba958ea0d0c04477001bb0cb9a3214dbeb78134d2c537df8bf1be8d3ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_codex_hooks_install.py"}, "region": {"startLine": 294}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_jobs_by_trigger` used but never assigned in __init__"}, "properties": {"repobilityId": 129656, "scanner": "repobility-ast-engine", "fingerprint": "2fe3ec88094459e5944d43a9b3238e1f26804663cca61194f87a9a123513a74f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2fe3ec88094459e5944d43a9b3238e1f26804663cca61194f87a9a123513a74f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/agent-scheduler.py"}, "region": {"startLine": 470}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._field_matches` used but never assigned in __init__"}, "properties": {"repobilityId": 129655, "scanner": "repobility-ast-engine", "fingerprint": "b2888d9fac5ce51d7c196c69d9b12414b8965d2e922a5234a0fc5b987b93d999", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b2888d9fac5ce51d7c196c69d9b12414b8965d2e922a5234a0fc5b987b93d999"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/agent-scheduler.py"}, "region": {"startLine": 438}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.daily_budget` used but never assigned in __init__"}, "properties": {"repobilityId": 129654, "scanner": "repobility-ast-engine", "fingerprint": "d38bc4d683615bcd0d526cc47f6bcbc9e4b180b1c906d7fc90026d2210c6fb76", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d38bc4d683615bcd0d526cc47f6bcbc9e4b180b1c906d7fc90026d2210c6fb76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/agent-scheduler.py"}, "region": {"startLine": 318}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.daily_budget` used but never assigned in __init__"}, "properties": {"repobilityId": 129653, "scanner": "repobility-ast-engine", "fingerprint": "b8e5d122273b8f08297052b242917e348aa876d4c98bae9b03fa5ef8198ca7fe", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b8e5d122273b8f08297052b242917e348aa876d4c98bae9b03fa5ef8198ca7fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/agent-scheduler.py"}, "region": {"startLine": 317}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.pct` used but never assigned in __init__"}, "properties": {"repobilityId": 129651, "scanner": "repobility-ast-engine", "fingerprint": "96a0d6d63dbbcdcf68f09ccf62bcf16195d47b79233217d5cf294bb9e2f84fc2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|96a0d6d63dbbcdcf68f09ccf62bcf16195d47b79233217d5cf294bb9e2f84fc2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/score-component.py"}, "region": {"startLine": 98}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.total` used but never assigned in __init__"}, "properties": {"repobilityId": 129650, "scanner": "repobility-ast-engine", "fingerprint": "04a9181d95a58f94db6224a8b0c9b080a4ec65cbf42efc3b5ce47031fb32bdaa", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|04a9181d95a58f94db6224a8b0c9b080a4ec65cbf42efc3b5ce47031fb32bdaa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/score-component.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.max_total` used but never assigned in __init__"}, "properties": {"repobilityId": 129649, "scanner": "repobility-ast-engine", "fingerprint": "4b665caadf8cb41b0ec96d635e4cfa8b9c7a839c4fa64467f67ce3c81c4b6a8d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4b665caadf8cb41b0ec96d635e4cfa8b9c7a839c4fa64467f67ce3c81c4b6a8d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/score-component.py"}, "region": {"startLine": 93}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.per_agent` used but never assigned in __init__"}, "properties": {"repobilityId": 129648, "scanner": "repobility-ast-engine", "fingerprint": "8ce18559d2c3a22cea059db3eefbde6ac117bf5c0fcea5193c4ea271101061f9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8ce18559d2c3a22cea059db3eefbde6ac117bf5c0fcea5193c4ea271101061f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/research-stats-checkpoint.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.total` used but never assigned in __init__"}, "properties": {"repobilityId": 129647, "scanner": "repobility-ast-engine", "fingerprint": "160b8e62c1f08b09e02513fadfcfb570ef2c7b73cc39c789e70bfecab1fd45b4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|160b8e62c1f08b09e02513fadfcfb570ef2c7b73cc39c789e70bfecab1fd45b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/research-stats-checkpoint.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.primary_count` used but never assigned in __init__"}, "properties": {"repobilityId": 129646, "scanner": "repobility-ast-engine", "fingerprint": "b3db62c91f5b5d6c544d891a5afc8008f8784697c0fd8cd4a7ac39339b47ef2f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b3db62c91f5b5d6c544d891a5afc8008f8784697c0fd8cd4a7ac39339b47ef2f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/research-stats-checkpoint.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.total` used but never assigned in __init__"}, "properties": {"repobilityId": 129645, "scanner": "repobility-ast-engine", "fingerprint": "6662ad8ae73ea1da6d45f0e84686f898d1719e64aca4f04bba55541b6aa5c03b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6662ad8ae73ea1da6d45f0e84686f898d1719e64aca4f04bba55541b6aa5c03b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/research-stats-checkpoint.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.total_time` used but never assigned in __init__"}, "properties": {"repobilityId": 129644, "scanner": "repobility-ast-engine", "fingerprint": "203c17cfd0331422df7d4d98753114949d76bde13a0a38d19b7d8723281d459a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|203c17cfd0331422df7d4d98753114949d76bde13a0a38d19b7d8723281d459a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.num_joints` used but never assigned in __init__"}, "properties": {"repobilityId": 129643, "scanner": "repobility-ast-engine", "fingerprint": "ecd3363bfecb3b8065c2fd64fdea66c4f2b231cec57244d71e83f5d11be62dc0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ecd3363bfecb3b8065c2fd64fdea66c4f2b231cec57244d71e83f5d11be62dc0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.num_frames` used but never assigned in __init__"}, "properties": {"repobilityId": 129642, "scanner": "repobility-ast-engine", "fingerprint": "e48d85651a2974ab5ec21c372138d71c5d1e6686e0fca9736a06e1bb35daaf31", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e48d85651a2974ab5ec21c372138d71c5d1e6686e0fca9736a06e1bb35daaf31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 119}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.bone_positions` used but never assigned in __init__"}, "properties": {"repobilityId": 129641, "scanner": "repobility-ast-engine", "fingerprint": "63fbc2091e837c64800e9741c61c8d60a8912145f3e35c7b264b43b9fa9d19fd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|63fbc2091e837c64800e9741c61c8d60a8912145f3e35c7b264b43b9fa9d19fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.bone_positions` used but never assigned in __init__"}, "properties": {"repobilityId": 129640, "scanner": "repobility-ast-engine", "fingerprint": "31adc150ff144c5d5f9cce8024c0a4c7e12a2aea94ac8f5307c5d6c7c34a0871", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|31adc150ff144c5d5f9cce8024c0a4c7e12a2aea94ac8f5307c5d6c7c34a0871"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.delta_time` used but never assigned in __init__"}, "properties": {"repobilityId": 129639, "scanner": "repobility-ast-engine", "fingerprint": "c387f5f724647a3c1f389414c82c91990d1e9d4f145a32e429220c3e050568e2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c387f5f724647a3c1f389414c82c91990d1e9d4f145a32e429220c3e050568e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.num_joints` used but never assigned in __init__"}, "properties": {"repobilityId": 129638, "scanner": "repobility-ast-engine", "fingerprint": "594b8d8265c37888a722ba5b56eea982ee54a1cfbb46065d2f0edf107d827eab", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|594b8d8265c37888a722ba5b56eea982ee54a1cfbb46065d2f0edf107d827eab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.num_frames` used but never assigned in __init__"}, "properties": {"repobilityId": 129637, "scanner": "repobility-ast-engine", "fingerprint": "379ed35f93bde44ec0892b3d0e186ad5dec4f5a47a0b44b9a45017341fbe9a35", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|379ed35f93bde44ec0892b3d0e186ad5dec4f5a47a0b44b9a45017341fbe9a35"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 80}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.index` used but never assigned in __init__"}, "properties": {"repobilityId": 129636, "scanner": "repobility-ast-engine", "fingerprint": "2b16f83b02ba742aa5bab634282728f83a11eba34ee3cee04f09c1f37101be96", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2b16f83b02ba742aa5bab634282728f83a11eba34ee3cee04f09c1f37101be96"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/motion-pipeline.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.public_functions` used but never assigned in __init__"}, "properties": {"repobilityId": 129635, "scanner": "repobility-ast-engine", "fingerprint": "bfc67c8686573648dd07f43da2f4e2b1a3282e0d3871a8ea3a021b58e9b7cd71", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bfc67c8686573648dd07f43da2f4e2b1a3282e0d3871a8ea3a021b58e9b7cd71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/python-doc-verifier.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.full_text` used but never assigned in __init__"}, "properties": {"repobilityId": 129634, "scanner": "repobility-ast-engine", "fingerprint": "b1b424384f47e7540a8751cd86462fd0aef76a46ef8f4a72f1625742549947b5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b1b424384f47e7540a8751cd86462fd0aef76a46ef8f4a72f1625742549947b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/video-transcript.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.full_text` used but never assigned in __init__"}, "properties": {"repobilityId": 129633, "scanner": "repobility-ast-engine", "fingerprint": "e7e179a8801902c6b8ffaf760baa49cc2f0a99b22c3c2707d19f0eb9e951876a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e7e179a8801902c6b8ffaf760baa49cc2f0a99b22c3c2707d19f0eb9e951876a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/video-transcript.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.pr_or_issue_number` used but never assigned in __init__"}, "properties": {"repobilityId": 129630, "scanner": "repobility-ast-engine", "fingerprint": "4a1ad2775ccaca3a97651d586dc3bb9811b2a2413c1b1e75e2f6072131bc9e2d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4a1ad2775ccaca3a97651d586dc3bb9811b2a2413c1b1e75e2f6072131bc9e2d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/github-notification-triage.py"}, "region": {"startLine": 111}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.total_extractable_lines` used but never assigned in __init__"}, "properties": {"repobilityId": 129629, "scanner": "repobility-ast-engine", "fingerprint": "f996d918fab499bf0b3338ebb63503573cd44adf9f2468b612d0fc6e66793e8d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f996d918fab499bf0b3338ebb63503573cd44adf9f2468b612d0fc6e66793e8d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/detect-decomposition-targets.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 129808, "scanner": "gitleaks", "fingerprint": "186aaf0f30c9111511d6e7d4e0b5817ffffd2bdb122df3c332b029ed40af84df", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "api_key = \"<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|42|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/skill-creator/references/error-catalog.md"}, "region": {"startLine": 424}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 129807, "scanner": "gitleaks", "fingerprint": "54469faa364b9658bfb2d8af2c887275e8742097966fbd9c42ec059dfbf74e56", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key=\"REDACTED\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|6|key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_learning_source_filter.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "curl-auth-header", "level": "error", "message": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "properties": {"repobilityId": 129806, "scanner": "gitleaks", "fingerprint": "58798410126a311affe3e12b6a2dfa1d029b307e7f2a52d82af1a935667a1e7f", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "curl -X POST https://api.example.com/v1/users \\\n  -H \"Authorization: Bearer <redacted>\"", "rule_id": "curl-auth-header", "scanner": "gitleaks", "detector": "curl-auth-header", "correlation_key": "secret|token|10|curl -x post token -h authorization: bearer redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agents/technical-documentation-engineer/references/api-doc-verification-failures.md"}, "region": {"startLine": 102}}}]}, {"ruleId": "curl-auth-header", "level": "error", "message": {"text": "Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource."}, "properties": {"repobilityId": 129805, "scanner": "gitleaks", "fingerprint": "57fafc046412645cbafd286b3a72ea4fbb2aea6c117a3a12609adf95b7d772b6", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "curl -X POST https://api.example.com/api/v1/resource \\\n  -H \"Authorization: Bearer <redacted>\"", "rule_id": "curl-auth-header", "scanner": "gitleaks", "detector": "curl-auth-header", "correlation_key": "secret|token|2|curl -x post token -h authorization: bearer redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agents/technical-documentation-engineer/references/documentation-templates.md"}, "region": {"startLine": 25}}}]}, {"ruleId": "curl-auth-user", "level": "error", "message": {"text": "Discovered a potential basic authorization token provided in a curl command, which could compromise the curl accessed resource."}, "properties": {"repobilityId": 129804, "scanner": "gitleaks", "fingerprint": "711161b9ccde079666510f1de24af271f0b6ed0f912c7012734e45324b50aa89", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "curl -u REDACTED", "rule_id": "curl-auth-user", "scanner": "gitleaks", "detector": "curl-auth-user", "correlation_key": "secret|token|22|curl -u redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agents/rabbitmq-messaging-engineer/references/performance.md"}, "region": {"startLine": 225}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 129803, "scanner": "gitleaks", "fingerprint": "0dab6605a8e4004cef0bea83b9d6ed4bc9ba29edbb6c388feecbef7a73ca1bd2", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "apiKey = '<redacted>'", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|9|apikey redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "agents/php-general-engineer/references/php-security-testing.md"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED132", "level": "error", "message": {"text": "Reverse shell idiom: nc -e /bin/sh (Netcat reverse shell)"}, "properties": {"repobilityId": 129720, "scanner": "repobility-supply-chain", "fingerprint": "9c9ca03813dd9c422a6560ad8f184b71ae410da78b5ce1b4ecdb29ab2b12870a", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "reverse-shell-idiom", "owasp": null, "cwe_ids": ["CWE-78", "CWE-506"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9c9ca03813dd9c422a6560ad8f184b71ae410da78b5ce1b4ecdb29ab2b12870a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/tests/test_pretool_unified_gate.py"}, "region": {"startLine": 1963}}}]}, {"ruleId": "MINED132", "level": "error", "message": {"text": "Reverse shell idiom: bash interactive shell to /dev/tcp"}, "properties": {"repobilityId": 129719, "scanner": "repobility-supply-chain", "fingerprint": "f492df3c9abf494480a5d300692d11802088efaffdaf597cebd38a132bad6f42", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "reverse-shell-idiom", "owasp": null, "cwe_ids": ["CWE-78", "CWE-506"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f492df3c9abf494480a5d300692d11802088efaffdaf597cebd38a132bad6f42"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/tests/test_pretool_unified_gate.py"}, "region": {"startLine": 2665}}}]}, {"ruleId": "MINED132", "level": "error", "message": {"text": "Reverse shell idiom: bash interactive shell to /dev/tcp"}, "properties": {"repobilityId": 129718, "scanner": "repobility-supply-chain", "fingerprint": "fa1bba3ab765d90c1ddcae36d561543b22ed7c2c281e50cc2a1adfcd9563063e", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "reverse-shell-idiom", "owasp": null, "cwe_ids": ["CWE-78", "CWE-506"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fa1bba3ab765d90c1ddcae36d561543b22ed7c2c281e50cc2a1adfcd9563063e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/tests/test_pretool_unified_gate.py"}, "region": {"startLine": 2637}}}]}, {"ruleId": "MINED132", "level": "error", "message": {"text": "Reverse shell idiom: bash interactive shell to /dev/tcp"}, "properties": {"repobilityId": 129717, "scanner": "repobility-supply-chain", "fingerprint": "fa4dd332f61d032437907213946c5fe7d3ecc6596c1f4163aaa8f39356ff7717", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "reverse-shell-idiom", "owasp": null, "cwe_ids": ["CWE-78", "CWE-506"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fa4dd332f61d032437907213946c5fe7d3ecc6596c1f4163aaa8f39356ff7717"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/tests/test_pretool_unified_gate.py"}, "region": {"startLine": 1960}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `gc` used but not imported"}, "properties": {"repobilityId": 129696, "scanner": "repobility-ast-engine", "fingerprint": "5054eef94404e1d44a4a67dcc3b4db7c6fe88a989d5dc4430e130203b33fa9a1", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5054eef94404e1d44a4a67dcc3b4db7c6fe88a989d5dc4430e130203b33fa9a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-sprite-pipeline/scripts/sprite_generate.py"}, "region": {"startLine": 355}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `queue` used but not imported"}, "properties": {"repobilityId": 129695, "scanner": "repobility-ast-engine", "fingerprint": "779d753cb5d38179fc190e40566f1b6fd115601ea64ee7d28447a0d3793a8e69", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|779d753cb5d38179fc190e40566f1b6fd115601ea64ee7d28447a0d3793a8e69"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-sprite-pipeline/scripts/sprite_bg.py"}, "region": {"startLine": 190}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `queue` used but not imported"}, "properties": {"repobilityId": 129694, "scanner": "repobility-ast-engine", "fingerprint": "2d1ccf3c128a01fa4f5c3aa41ea0e149edecb003c66e91471f7210f5a3d0b569", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2d1ccf3c128a01fa4f5c3aa41ea0e149edecb003c66e91471f7210f5a3d0b569"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/game/game-sprite-pipeline/scripts/sprite_slicing.py"}, "region": {"startLine": 623}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129693, "scanner": "repobility-ast-engine", "fingerprint": "14ffb29d45e99cff8ddad57760c874fdea8b43dc25f92afeb8e932ef6a82e43f", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|14ffb29d45e99cff8ddad57760c874fdea8b43dc25f92afeb8e932ef6a82e43f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/content/publish/scripts/wordpress-edit-post.py"}, "region": {"startLine": 214}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129692, "scanner": "repobility-ast-engine", "fingerprint": "f387b06ab2607e55b3aac82b02f92ef440fec02808f0b309aebb1fdd44cfcf98", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f387b06ab2607e55b3aac82b02f92ef440fec02808f0b309aebb1fdd44cfcf98"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/content/publish/scripts/wordpress-upload.py"}, "region": {"startLine": 759}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `re` used but not imported"}, "properties": {"repobilityId": 129691, "scanner": "repobility-ast-engine", "fingerprint": "ca7a55ff1a204515d1c25ef160972e8d67768131aa8f1c11e227d2ce122296ea", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ca7a55ff1a204515d1c25ef160972e8d67768131aa8f1c11e227d2ce122296ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/routing-table-updater/scripts/update_routing.py"}, "region": {"startLine": 221}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129690, "scanner": "repobility-ast-engine", "fingerprint": "34f0d8ff3814db8bf78fd24d1b91f3b5c7a34553f3cc20a226e6e71c6987e353", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|34f0d8ff3814db8bf78fd24d1b91f3b5c7a34553f3cc20a226e6e71c6987e353"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/html-artifact/scripts/tests/test_css_slop_emission.py"}, "region": {"startLine": 162}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129689, "scanner": "repobility-ast-engine", "fingerprint": "bb0c1d7cc9cd9a803b9391b41006c6ada08081708b68d1918d5c9d441288a831", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|bb0c1d7cc9cd9a803b9391b41006c6ada08081708b68d1918d5c9d441288a831"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/html-artifact/scripts/tests/test_assemble_template.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129688, "scanner": "repobility-ast-engine", "fingerprint": "28d3f14546fef3e98241ae7e0be8344b303626b3ad0db51afdc2774f172970c7", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|28d3f14546fef3e98241ae7e0be8344b303626b3ad0db51afdc2774f172970c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/html-artifact/scripts/to-pdf.py"}, "region": {"startLine": 210}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129687, "scanner": "repobility-ast-engine", "fingerprint": "9fb701a3f3620fc9c2195d0feddf3b5104bd42d682ada6d670c8ade664a092c7", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9fb701a3f3620fc9c2195d0feddf3b5104bd42d682ada6d670c8ade664a092c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/html-artifact/scripts/assemble-template.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `queue` used but not imported"}, "properties": {"repobilityId": 129686, "scanner": "repobility-ast-engine", "fingerprint": "a6159c4764d3f13822134f373cde474e8ce05ec95a35c638200e195143be2daf", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a6159c4764d3f13822134f373cde474e8ce05ec95a35c638200e195143be2daf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/meta/skill-composer/scripts/build_dag.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129685, "scanner": "repobility-ast-engine", "fingerprint": "da8a5493022be7374b33be52acf37833299d25c472d5f700a7e373dad702a26a", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|da8a5493022be7374b33be52acf37833299d25c472d5f700a7e373dad702a26a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/frontend/distinctive-frontend-design/scripts/validate_design.py"}, "region": {"startLine": 157}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `html` used but not imported"}, "properties": {"repobilityId": 129684, "scanner": "repobility-ast-engine", "fingerprint": "d83b19595bd0b2d2fbccb8fd23a906a59c7073b38824460d644a15795f06880c", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d83b19595bd0b2d2fbccb8fd23a906a59c7073b38824460d644a15795f06880c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/skill_eval/eval-viewer/generate_review.py"}, "region": {"startLine": 368}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129658, "scanner": "repobility-ast-engine", "fingerprint": "be4f4239ebeae927556786c8315586186e0aa59eab6e204b903a71efae25d3b0", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|be4f4239ebeae927556786c8315586186e0aa59eab6e204b903a71efae25d3b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/tests/test_codex_hooks_allowlist.py"}, "region": {"startLine": 262}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129657, "scanner": "repobility-ast-engine", "fingerprint": "234ac2ca9ae024059c7ddb1a967cc634c9cdc42bca8fd753fc72ae58643c6c7d", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|234ac2ca9ae024059c7ddb1a967cc634c9cdc42bca8fd753fc72ae58643c6c7d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/validate-index-integrity.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129652, "scanner": "repobility-ast-engine", "fingerprint": "dd07b85d1efb6fa130bc1607a35996cc0fe5fc0ef937676ca6051672862c9dac", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|dd07b85d1efb6fa130bc1607a35996cc0fe5fc0ef937676ca6051672862c9dac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-skill-index.py"}, "region": {"startLine": 398}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129632, "scanner": "repobility-ast-engine", "fingerprint": "f36e8271c0ee22bc887af200d2c09cdfbc3c0b3f8db6159a56b070161ccabd86", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f36e8271c0ee22bc887af200d2c09cdfbc3c0b3f8db6159a56b070161ccabd86"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/plan-manager.py"}, "region": {"startLine": 586}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129631, "scanner": "repobility-ast-engine", "fingerprint": "58061e420ccbce07f189fc98d02596d95ca0cc703863a8faece0086e55d89167", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|58061e420ccbce07f189fc98d02596d95ca0cc703863a8faece0086e55d89167"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/generate-pipeline-catalog.py"}, "region": {"startLine": 272}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `warnings` used but not imported"}, "properties": {"repobilityId": 129628, "scanner": "repobility-ast-engine", "fingerprint": "ad0909581e64e781cf399390136ea81b83609de26037ee7a31d3a26e5351b68c", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ad0909581e64e781cf399390136ea81b83609de26037ee7a31d3a26e5351b68c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "hooks/pretool-prompt-injection-scanner.py"}, "region": {"startLine": 77}}}]}]}]}