Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

together2329/brian_hw

https://github.com/together2329/brian_hw · scanned 2026-06-16 00:42 UTC (2 months, 1 week ago)

924 raw signals (0 security + 924 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 910 actionable findings from 1 signal source. 14 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 58.6/100 with 100.0% coverage. It contains 35041 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 924 findings — concentrated in quality (729), security (99), api (55). Risk profile is high: 6 critical, 62 high, 233 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

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

critical System graph security Secrets conf 1.00 Possible secret in common_ai_agent/scripts/e2e_perforce_ui_flow.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
common_ai_agent/scripts/e2e_perforce_ui_flow.py:28
critical System graph security Secrets conf 1.00 Possible secret in common_ai_agent/scripts/repro_perforce_pending.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
common_ai_agent/scripts/repro_perforce_pending.py:25
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def next_event` — common_ai_agent/core/atlas_multiuser.py:1977
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
common_ai_agent/core/atlas_multiuser.py:1977 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/auth/ // status (common_ai_agent/frontend/atlas/__tests__/login-render-smoke.test.tsx:29)
`common_ai_agent/frontend/atlas/__tests__/login-render-smoke.test.tsx:29` calls `GET /api/auth/ // status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/ / status` If this points at an external API, prefix it …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/ip/list${sid} (common_ai_agent/frontend/atlas/perforce-sync.tsx:480)
`common_ai_agent/frontend/atlas/perforce-sync.tsx:480` calls `GET /api/ip/list${sid}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/ip/list/<p>` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/auth/guest (common_ai_agent/frontend/atlas/lobby.tsx:123)
`common_ai_agent/frontend/atlas/lobby.tsx:123` calls `POST /api/auth/guest` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/guest` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/auth/guest (common_ai_agent/frontend/atlas/lobby.tsx:75)
`common_ai_agent/frontend/atlas/lobby.tsx:75` calls `POST /api/auth/guest` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/guest` If this points at an external API, prefix it with `https://` so the matcher skips…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/control/${type} (common_ai_agent/frontend/atlas/app.tsx:899)
`common_ai_agent/frontend/atlas/app.tsx:899` calls `POST /api/control/${type}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/control/<p>` If this points at an external API, prefix it with `https://` so the matcher …
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `api_admin_delete_ip_pointer` without auth dependency — common_ai_agent/src/atlas_admin.py:326
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:326 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `api_admin_delete_session` without auth dependency — common_ai_agent/src/atlas_admin.py:357
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:357 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `api_admin_delete_user_pointer` without auth dependency — common_ai_agent/src/atlas_admin.py:336
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:336 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `api_admin_permissions_revoke` without auth dependency — common_ai_agent/src/atlas_admin.py:490
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:490 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `api_delete_session` without auth dependency — common_ai_agent/src/atlas_api_sessions.py:1679
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_sessions.py:1679 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `api_file_delete` without auth dependency — common_ai_agent/src/atlas_api_files.py:335
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_files.py:335 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `api_update_session` without auth dependency — common_ai_agent/src/atlas_api_sessions.py:1653
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_sessions.py:1653 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_activate_session` without auth dependency — common_ai_agent/src/atlas_api_sessions.py:1702
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_sessions.py:1702 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_admin_feedback_resolve` without auth dependency — common_ai_agent/src/atlas_admin.py:573
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:573 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_admin_permissions_grant` without auth dependency — common_ai_agent/src/atlas_admin.py:460
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_admin.py:460 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_chat_room_send` without auth dependency — common_ai_agent/src/atlas_api_chat.py:154
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_chat.py:154 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_create_session` without auth dependency — common_ai_agent/src/atlas_api_sessions.py:1618
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_sessions.py:1618 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_git_commit` without auth dependency — common_ai_agent/src/atlas_api_git.py:397
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:397 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_git_commit` without auth dependency — common_ai_agent/src/atlas_api_git.py:398
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:398 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_git_push` without auth dependency — common_ai_agent/src/atlas_api_git.py:438
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:438 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_git_push` without auth dependency — common_ai_agent/src/atlas_api_git.py:439
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:439 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_add` without auth dependency — common_ai_agent/src/atlas_api_git.py:572
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:572 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_change_delete` without auth dependency — common_ai_agent/src/atlas_api_git.py:728
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:728 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_edit` without auth dependency — common_ai_agent/src/atlas_api_git.py:630
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:630 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_revert` without auth dependency — common_ai_agent/src/atlas_api_git.py:601
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:601 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_sync` without auth dependency — common_ai_agent/src/atlas_api_git.py:493
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:493 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_sync` without auth dependency — common_ai_agent/src/atlas_api_git.py:494
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:494 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_scm_ui_prefs_set` without auth dependency — common_ai_agent/src/atlas_api_git.py:693
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_git.py:693 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_session_activate` without auth dependency — common_ai_agent/src/atlas_api_sessions.py:239
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_sessions.py:239 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_ssot_qa_answer` without auth dependency — common_ai_agent/src/atlas_api_ssot.py:259
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_ssot.py:259 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_vcd_rc_save` without auth dependency — common_ai_agent/src/atlas_api_vcd.py:310
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_vcd.py:310 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_vcm_emit` without auth dependency — common_ai_agent/src/atlas_api_files.py:291
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/atlas_api_files.py:291 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_email_code` without auth dependency — common_ai_agent/core/atlas_auth.py:708
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:708 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_login` without auth dependency — common_ai_agent/core/atlas_auth.py:826
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:826 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_logout` without auth dependency — common_ai_agent/core/atlas_auth.py:979
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:979 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_recover_id` without auth dependency — common_ai_agent/core/atlas_auth.py:853
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:853 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_recover_password` without auth dependency — common_ai_agent/core/atlas_auth.py:886
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:886 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_register` without auth dependency — common_ai_agent/core/atlas_auth.py:782
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:782 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `auth_reset_password` without auth dependency — common_ai_agent/core/atlas_auth.py:940
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/atlas_auth.py:940 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_run` without auth dependency — common_ai_agent/core/agent_server.py:2231
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/agent_server.py:2231 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_task` without auth dependency — common_ai_agent/core/agent_server.py:2280
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/core/agent_server.py:2280 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `submit` without auth dependency — common_ai_agent/src/web_ui.py:233
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
common_ai_agent/src/web_ui.py:233 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/.cursor/workflow/fl-model-gen/scripts/check_fl_contract.py:97
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/.cursor/workflow/fl-model-gen/scripts/check_fl_contract.py:97 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/.cursor/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:116
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/.cursor/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:116 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/apb_add_demo/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/apb_add_demo/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/atlas_flow_gpio_demo/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/atlas_flow_gpio_demo/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/debounce_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/debounce_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/edge_det_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/edge_det_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/fifo_sync_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/fifo_sync_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/gray_code_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/gray_code_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/mctp_assembler_scratch/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/mctp_assembler_scratch/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/mctp_assembler_v3/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/mctp_assembler_v3/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/mctp_assembler_v3/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:109
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/mctp_assembler_v3/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:109 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/parity_gen_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/parity_gen_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/pwm_gen_cx1/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/pwm_gen_cx1/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/ssot_screenshot_smoke_20260524_083011/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/ssot_screenshot_smoke_20260524_083011/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/uart_tx/model/functional_model.py:791
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/uart_tx/model/functional_model.py:791 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/workflow/fl-model-gen/scripts/check_fl_contract.py:97
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/workflow/fl-model-gen/scripts/check_fl_contract.py:97 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in common_ai_agent/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:125
Found a known-risky pattern (eval_used). Review and replace if possible.
common_ai_agent/workflow/tb-gen/scripts/emit_goal_scoreboard_cocotb.py:125 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in common_ai_agent/.cursor/workflow/fl-model-gen/scripts/check_fl_contract.py:327
Found a known-risky pattern (exec_used). Review and replace if possible.
common_ai_agent/.cursor/workflow/fl-model-gen/scripts/check_fl_contract.py:327 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in common_ai_agent/workflow/fl-model-gen/scripts/check_fl_contract.py:359
Found a known-risky pattern (exec_used). Review and replace if possible.
common_ai_agent/workflow/fl-model-gen/scripts/check_fl_contract.py:359 Exec used
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/__tests__/guide-render-smoke.test.tsx:119
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/guide.tsx:195
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/preview-pane.tsx:214
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/sim-debug-panels.tsx:1110
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/soc-architect-shared.tsx:88
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/soc-architect-tree.tsx:130
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/workspace-feed-cards.tsx:173
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/workspace-markdown-chips.tsx:578
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/workspace-ssot-fsm.tsx:132
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — common_ai_agent/frontend/atlas/workspace-ssot-panels.tsx:440
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/__tests__/lobby-render-smoke.test.tsx:14
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/__tests__/login-render-smoke.test.tsx:29
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/admin.bundle.js:86
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/admin.tsx:153
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/agent-status-panel.tsx:275
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/app-auth-hook.tsx:73
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/app-session-hook.tsx:177
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/data-loaders.tsx:242
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/data.tsx:461
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/git-tab.tsx:125
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/perforce-sync.tsx:516
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/pipe-width.tsx:146
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/pipeline-helpers.tsx:496
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/pipeline-rail.tsx:938
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/sim-debug.tsx:972
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/soc-architect-chat.tsx:307
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/soc-architect-shared.tsx:51
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/ssot-doc-feedback-api.ts:29
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/static-shim.js:3
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/workspace-async-resource.tsx:6
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/workspace-git-panel.tsx:64
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/workspace-root-data-hook.tsx:521
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/workspace-root.tsx:686
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — common_ai_agent/frontend/atlas/workspace-tool-theme.tsx:342
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.codex/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.codex/hooks.json VerificationCodex instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.codex/mcp.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.codex/mcp.json VerificationMcp config
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/agents/req-gen.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/agents/req-gen.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/commands/demo-sim.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/commands/demo-sim.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/commands/rtl-to-signoff-plan.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/commands/rtl-to-signoff-plan.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/commands/rtl-to-signoff-run.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/commands/rtl-to-signoff-run.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/commands/run-smoke.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/commands/run-smoke.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/hooks.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/lint/scripts/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/lint/scripts/hooks.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/prompts/format.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/prompts/format.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/prompts/identity.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/prompts/identity.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/prompts/task.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/prompts/task.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/rtl-gen/commands/find-mas.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/rtl-gen/commands/find-mas.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/rtl-gen/commands/ssot-rtl.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/rtl-gen/commands/ssot-rtl.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/rtl-gen/commands/syn-check.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/rtl-gen/commands/syn-check.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/rtl-gen/rules/rtl-coding-rules.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/rtl-gen/rules/rtl-coding-rules.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/rtl-gen/scripts/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/rtl-gen/scripts/hooks.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/commands/compile.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/commands/compile.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/commands/report.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/commands/report.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/commands/sim.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/commands/sim.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/commands/wave.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/commands/wave.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/rules/sim-debug.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/rules/sim-debug.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim/scripts/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim/scripts/hooks.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim_debug/commands/sig.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim_debug/commands/sig.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim_debug/commands/sim-debug.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim_debug/commands/sim-debug.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/sim_debug/commands/wave.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/sim_debug/commands/wave.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/find-mas.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/find-mas.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/sim.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/sim.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-cocotb.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-cocotb.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-uvm.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-uvm.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-verilog.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb-verilog.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/commands/ssot-tb.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/tb-gen/scripts/hooks.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/tb-gen/scripts/hooks.json VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/wiki/ip_knowledge/pnr.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/wiki/ip_knowledge/pnr.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/wiki/ip_knowledge/sta-post.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/wiki/ip_knowledge/sta-post.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.cursor/workflow/wiki/ip_knowledge/sta.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.cursor/workflow/wiki/ip_knowledge/sta.md VerificationCursor rule
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/.mcp.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/.mcp.json VerificationMcp config
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/skills/git/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/skills/git/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/skills/large-file-analyst/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/skills/large-file-analyst/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: common_ai_agent/skills/nvme-expert/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
common_ai_agent/skills/nvme-expert/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license, ci, lockfile. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci, lockfile. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/guide.tsx:195
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/guide.tsx:195 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/index.vite.html:171
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/index.vite.html:171 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/preview-pane.tsx:214
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/preview-pane.tsx:214 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/preview.html:127
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/preview.html:127 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/sim-debug-panels.tsx:1110
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/sim-debug-panels.tsx:1110 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/soc-architect-tree.tsx:130
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/soc-architect-tree.tsx:130 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/workspace-feed-cards.tsx:173
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-feed-cards.tsx:173 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/workspace-markdown-chips.tsx:578
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-markdown-chips.tsx:578 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/workspace-ssot-fsm.tsx:132
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-ssot-fsm.tsx:132 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in common_ai_agent/frontend/atlas/workspace-ssot-panels.tsx:440
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-ssot-panels.tsx:440 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/frontend/atlas/workspace-markdown-chips.tsx:334
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-markdown-chips.tsx:334 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/architecture-diagram.html:284
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/architecture-diagram.html:284 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/ca53-trm.html:806
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/ca53-trm.html:806 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/chat-feel-demo.html:49
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/chat-feel-demo.html:49 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/fsm-diagram.html:167
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/fsm-diagram.html:167 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/ssot-explorer.html:556
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/ssot-explorer.html:556 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/timer-datasheet.html:619
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/timer-datasheet.html:619 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/timing-compare.html:129
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/timing-compare.html:129 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in common_ai_agent/interactive_ui/timing-diagram.html:106
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
common_ai_agent/interactive_ui/timing-diagram.html:106 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/app-auth-hook.tsx:93
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/app-auth-hook.tsx:93 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/app-session-hook.tsx:213
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/app-session-hook.tsx:213 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/app.tsx:292
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/app.tsx:292 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/data-loaders.tsx:144
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/data-loaders.tsx:144 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/data.tsx:159
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/data.tsx:159 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/pipeline-helpers.tsx:426
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/pipeline-helpers.tsx:426 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/workspace-root-data-hook.tsx:1211
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-root-data-hook.tsx:1211 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in common_ai_agent/frontend/atlas/workspace-root-session-hook.tsx:306
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
common_ai_agent/frontend/atlas/workspace-root-session-hook.tsx:306 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in common_ai_agent/core/tools.py:1299
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
common_ai_agent/core/tools.py:1299 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in common_ai_agent/core/tools_cmux.py:97
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
common_ai_agent/core/tools_cmux.py:97 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in common_ai_agent/core/tools_tmux.py:78
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
common_ai_agent/core/tools_tmux.py:78 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in common_ai_agent/src/orchestrator/tools.py:874
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
common_ai_agent/src/orchestrator/tools.py:874 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in common_ai_agent/interactive_ui/ca53-trm.html:474
Found a known-risky pattern (weak_hash). Review and replace if possible.
common_ai_agent/interactive_ui/ca53-trm.html:474 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.codex/scripts/oag_cli.py:431
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.codex/scripts/oag_eval.py:89
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.codex/scripts/smoke_test.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/coverage/scripts/coverage_build.py:82
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/coverage/scripts/coverage_merge.py:64
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/coverage/scripts/coverage_report.py:35
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/coverage/scripts/coverage_vcd_merge.py:85
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/coverage/scripts/coverage_vcd_toggle.py:120
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/lint/scripts/auto_lint.py:47
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/lint/scripts/dut_lint_report.py:357
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/lint/scripts/lint_all.py:55
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/lint/scripts/lint_file.py:34
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/lint/scripts/run_full_lint.py:160
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/req-gen/scripts/stage_gate.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/build_gate.py:125
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/disk_diff.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/find-mas.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/lint.py:44
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/post_write.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/rtl_compile_report.py:152
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/rtl-gen/scripts/syn_check.py:35
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/check_sim_pass.py:64
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/compile.py:38
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/post_write.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/sim.py:55
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/starter_preview_sim.py:432
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/wave_info.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim/scripts/write_report.py:29
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim_debug/scripts/mutation_guard.py:96
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/sim_debug/scripts/sig_search.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/check_pyuvm_structure.py:157
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/check_sim_pass.py:21
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/check_tb_sim_evidence.py:266
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/coverage.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/disk_diff.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/emit_axi_lite_memory_cocotb.py:704
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/gen_tc.py:81
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/post_write.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/.cursor/workflow/tb-gen/scripts/sim.py:187
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/core/tools.py:912
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/ip_examples/quad_spi_ctrl/sim/run_sim.py:37
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/lib/textual_ui.py:878
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/contract-reflection/scripts/run_contract_check.py:83
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/lint/scripts/dut_lint_report.py:357
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/rtl-gen/scripts/rtl_compile_report.py:152
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/sim/scripts/starter_preview_sim.py:432
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/sim_debug/scripts/mutation_guard.py:96
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/mctp_assembler_v3/workflow/tb-gen/scripts/emit_axi_lite_memory_cocotb.py:704
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/real_llm_counter_demo/verify/static_signoff_checks.py:33
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/build_andes_rtl_db_wiki.py:1040
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/e2e_perforce_ui_flow.py:61
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/ip_dev_memory.py:86
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/orch_campaign_truth.py:333
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/repro_perforce_pending.py:47
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/timer_headless_e2e.py:145
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/scripts/timer_vcm_demo.py:116
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/src/atlas_api_coverage_report.py:120
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/src/atlas_slash_handlers.py:568
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/src/claude_cli_backend.py:233
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/src/main.py:3229
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/contract-reflection/scripts/run_contract_check.py:94
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/coverage/scripts/coverage_build.py:82
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/coverage/scripts/coverage_merge.py:64
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/coverage/scripts/coverage_report.py:35
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/coverage/scripts/coverage_vcd_merge.py:85
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/coverage/scripts/coverage_vcd_toggle.py:120
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/_dft_common.py:132
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/auto_dft.py:99
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/parse_chains.py:114
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/run_fault_atpg.py:82
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/run_openroad_dft.py:42
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/dft/scripts/write_report.py:113
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/ip-contract/scripts/run_derive_ip_contract.py:45
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/lint/scripts/auto_lint.py:47
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/lint/scripts/dut_lint_report.py:357
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/lint/scripts/lint_all.py:55
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/lint/scripts/lint_file.py:34
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/lint/scripts/run_full_lint.py:160
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/pnr/scripts/_pnr_common.py:168
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/pnr/scripts/auto_pnr.py:36
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/req-gen/scripts/stage_gate.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/build_gate.py:125
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/disk_diff.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/find-mas.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/lint.py:44
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/post_write.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/rtl_compile_report.py:152
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/rtl-gen/scripts/syn_check.py:35
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/signoff/scripts/run_ip_signoff.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/check_sim_pass.py:64
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/compile.py:38
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/post_write.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/sim.py:55
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/starter_preview_sim.py:432
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/wave_info.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim/scripts/write_report.py:29
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim_debug/scripts/mutation_guard.py:96
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sim_debug/scripts/sig_search.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/ssot-gen/scripts/disk_diff.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/ssot-gen/scripts/new_ip_emit_chain.py:170
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sta-post/scripts/auto_sta_post.py:26
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sta-post/scripts/run_sta_post.py:50
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sta/scripts/auto_sta.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/sta/scripts/run_opensta.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/syn/scripts/run_openroad.py:191
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/syn/scripts/run_sta.py:124
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/syn/scripts/run_synth.py:184
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/syn/scripts/run_yosys.py:69
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/check_pyuvm_structure.py:157
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/check_sim_pass.py:21
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/check_tb_sim_evidence.py:266
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/coverage.py:30
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/disk_diff.py:54
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/emit_axi_lite_memory_cocotb.py:704
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/gen_tc.py:81
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/post_write.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — common_ai_agent/workflow/tb-gen/scripts/sim.py:187
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 414 placeholder/mock markers across 139 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Integrity conf 1.00 572 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ACTION_REMINDER`, `ACTION_REMINDER_TEXT`, `ACTIVE_IP`, `ACTIVE_PROJECT`, `ACTIVE_WORKSPACE`, `ACTIVE_WORKSPACE_DESC`, `AGENT_MODE_OVERRIDE`, `AGENT_SERVER_API_KEY` + 564 more. Add them (with a placeholder/comment) to .env.example so onboarding doe…
config drift
low System graph quality Maintenance conf 1.00 957 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 3449 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 14 places
Functions with the same first-5-line body hash: simple_pwm/model/cycle_model.py:construct, common_ai_agent/ip_examples/pl330realverify/model/cycle_model.py:construct, common_ai_agent/ip_examples/clkdiv/model/cycle_model.py:construct, common_ai_agent/ip_examples/dma_scratch_ui_live_20260519a/model/c…
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 15 places
Functions with the same first-5-line body hash: simple_pwm/model/cycle_model.py:tick, common_ai_agent/ip_examples/pl330realverify/model/cycle_model.py:tick, common_ai_agent/ip_examples/clkdiv/model/cycle_model.py:tick, common_ai_agent/ip_examples/dma_scratch_ui_live_20260519a/model/cycle_model.py:t…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 16 places
Functions with the same first-5-line body hash: simple_pwm/model/cycle_model.py:coverage, common_ai_agent/real_llm_counter_demo/model/cycle_model.py:coverage, common_ai_agent/ip_examples/pl330realverify/model/cycle_model.py:coverage, common_ai_agent/ip_examples/clkdiv/model/cycle_model.py:coverage …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 21 places
Functions with the same first-5-line body hash: simple_pwm/model/cycle_model.py:reset, common_ai_agent/edge_det_cx1/model/cycle_model.py:reset, common_ai_agent/gray_code_cx1/model/cycle_model.py:reset, common_ai_agent/mctp_assembler_scratch/model/cycle_model.py:reset This is *the* AI-coder failure…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 24 places
Functions with the same first-5-line body hash: common_ai_agent/uart_tx/model/functional_model.py:step, common_ai_agent/edge_det_cx1/model/functional_model.py:step, common_ai_agent/gray_code_cx1/model/functional_model.py:step, common_ai_agent/mctp_assembler_scratch/model/functional_model.py:step T…
6 occurrences
repo-level (6 hits)
duplicatesduplication

Showing first 300 of 589. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/0c1e8ac3-d21e-4ee2-9ee0-9bac57c1ffa8/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/0c1e8ac3-d21e-4ee2-9ee0-9bac57c1ffa8/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.