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.

synaptent/aragora

https://github.com/synaptent/aragora · scanned 2026-06-16 00:34 UTC (2 months, 2 weeks ago)

2853 raw signals (93 security + 2760 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 2344 actionable findings from 2 signal sources. 713 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 55.3/100 with 100.0% coverage. It contains 2048 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 2760 findings — concentrated in quality (1814), cicd (404), frontend (401). Risk profile is high: 12 critical, 54 high, 439 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 1878 of 2344 actionable findings. 3057 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 Security checks cicd CI/CD security conf 0.86 28 occurrences Foundry mined claimed resolved with failing ci: synaptent/aragora
Graph query export: Claimed resolved with failing CI Query id: claimed_resolved_with_failing_ci Query type: motif_query Intent: Hard negatives where CI/failure evidence contradicts a resolution claim. Motif: claimed_resolved_with_failing_ci Training usage: hard_negative Graph gold label: contradict…
28 occurrences
repo-level (28 hits)
CI/CD securityCI/CD
critical Security checks quality Practices conf 0.82 3 occurrences Foundry mined mock as real or placeholder: synaptent/aragora
Graph query export: Mock, sample, placeholder, or self-attested behavior treated as real Query id: mock_as_real_or_placeholder Query type: motif_query Intent: Hard negatives for fake completeness and missing real data paths. Motif: mock_as_real_or_placeholder Training usage: hard_negative Graph gol…
3 occurrences
repo-level (3 hits)
critical Security checks security auth conf 0.78 9 occurrences Foundry mined security auth guardrail gaps: synaptent/aragora
Graph query export: Security/auth changes without enough guardrails Query id: security_auth_guardrail_gaps Query type: motif_query Intent: Assumption-check security/auth examples requiring stronger tests or CI. Motif: security_auth_without_guardrails Training usage: assumption_check Graph gold labe…
9 occurrences
repo-level (9 hits)
critical System graph security Secrets conf 1.00 Possible secret in aragora/gateway/openclaw/credentials/enums.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/gateway/openclaw/credentials/enums.py:22
critical System graph security Secrets conf 1.00 Possible secret in aragora/gateway/security/output_filter.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/gateway/security/output_filter.py:43
critical System graph security Secrets conf 1.00 Possible secret in aragora/rbac/models.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/rbac/models.py:286
critical System graph security Secrets conf 1.00 Possible secret in aragora/security/aws_key_rotation.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/security/aws_key_rotation.py:88
critical System graph security Secrets conf 1.00 Possible secret in aragora/security/README.md
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/security/README.md:131
critical System graph security Secrets conf 1.00 Possible secret in aragora/server/handlers/openclaw/models.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
aragora/server/handlers/openclaw/models.py:50
critical System graph security Secrets conf 1.00 Possible secret in deploy/kubernetes/secrets.yaml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
deploy/kubernetes/secrets.yaml:36
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in sdk/python/aragora_sdk/namespaces/auth.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 37, 783
sdk/python/aragora_sdk/namespaces/auth.py:37, 783 (2 hits)
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in sdk/typescript/src/namespaces/auth.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 153, 160
sdk/typescript/src/namespaces/auth.ts:153, 160 (2 hits)
high Security checks quality Practices conf 0.84 23 occurrences Foundry mined bad chains: synaptent/aragora
Comment chain pattern product: bad_chains Repo: synaptent/aragora Thread: synaptent/aragora#9 Outcome: not_resolved_or_not_observed Thread label: thread_has_human_issue_without_fix_context Source graph label: source_backed_multi_signal_graph Reasons: source_graph_has_real_artifacts, source_graph_ha…
23 occurrences
repo-level (23 hits)
high Security checks quality Quality conf 0.76 Foundry mined schema ui api mismatch: synaptent/aragora
Graph query export: Schema, UI, and API mismatch Query id: schema_ui_api_mismatch Query type: motif_query Intent: Assumption-check examples for data-path consistency across layers. Motif: schema_ui_api_mismatch Training usage: assumption_check Graph gold label: supported_by_verification_signal Repo…
high Security checks quality Testing conf 0.78 75 occurrences Foundry mined test ci gap after feedback: synaptent/aragora
Graph query export: Feedback exposes missing tests or CI Query id: test_ci_gap_after_feedback Query type: motif_query Intent: Hard negatives for feedback/fix chains without adequate guardrails. Motif: test_ci_gap_after_feedback Training usage: hard_negative Graph gold label: assumption_check Repo: …
75 occurrences
repo-level (75 hits)
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def _get_json` — aragora/connectors/memory/claude_mem.py:117
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` 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 asy…
aragora/connectors/memory/claude_mem.py:117 Sync io in asyncPerformance
high System graph security auth conf 1.00 FastAPI POST `batch_export_receipts` without auth dependency — aragora/server/fastapi/routes/receipts.py:1066
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/receipts.py:1066 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `batch_verify_receipts` without auth dependency — aragora/server/fastapi/routes/receipts.py:973
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/receipts.py:973 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `bulk_action` without auth dependency — aragora/server/fastapi/routes/inbox.py:219
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/inbox.py:219 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_task` without auth dependency — aragora/server/fastapi/routes/tasks.py:244
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:244 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `check_compliance` without auth dependency — aragora/server/fastapi/routes/compliance.py:1009
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/compliance.py:1009 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `claim_task` without auth dependency — aragora/server/fastapi/routes/tasks.py:162
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:162 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `complete_task` without auth dependency — aragora/server/fastapi/routes/tasks.py:187
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:187 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `fail_task` without auth dependency — aragora/server/fastapi/routes/tasks.py:215
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:215 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `quick_action` without auth dependency — aragora/server/fastapi/routes/inbox.py:170
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/inbox.py:170 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reprioritize` without auth dependency — aragora/server/fastapi/routes/inbox.py:302
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/inbox.py:302 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_swarm_preflight` without auth dependency — aragora/server/fastapi/routes/swarm_status.py:296
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/swarm_status.py:296 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `search_knowledge_post` without auth dependency — aragora/server/fastapi/routes/knowledge.py:384
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/knowledge.py:384 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `structured_query` without auth dependency — aragora/server/fastapi/routes/knowledge.py:692
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/knowledge.py:692 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `submit_deliberation` without auth dependency — aragora/server/fastapi/routes/tasks.py:529
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:529 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `submit_task` without auth dependency — aragora/server/fastapi/routes/tasks.py:129
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/tasks.py:129 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `verify_receipt_post` without auth dependency — aragora/server/fastapi/routes/receipts.py:1413
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/receipts.py:1413 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `verify_receipt_signature` without auth dependency — aragora/server/fastapi/routes/receipts.py:1378
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
aragora/server/fastapi/routes/receipts.py:1378 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/agents/code_reviewer.py:149
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/agents/code_reviewer.py:149 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/analysis/codebase/sast/rules.py:140
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/analysis/codebase/sast/rules.py:140 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/audit/audit_types/ai_systems.py:247
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/audit/audit_types/ai_systems.py:247 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/audit/security_scanner.py:427
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/audit/security_scanner.py:427 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/compat/openclaw/skill_scanner.py:117
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/compat/openclaw/skill_scanner.py:117 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/nomic/code_reviewer.py:90
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/nomic/code_reviewer.py:90 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/nomic/gates.py:48
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/nomic/gates.py:48 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/nomic/hardened_orchestrator.py:1397
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/nomic/hardened_orchestrator.py:1397 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/nomic/pattern_fixer.py:32
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/nomic/pattern_fixer.py:32 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/nomic/phases/implement.py:225
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/nomic/phases/implement.py:225 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/skills/builtin/code_execution.py:317
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/skills/builtin/code_execution.py:317 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/skills/README.md:166
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/skills/README.md:166 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in aragora/verification/proofs.py:129
Found a known-risky pattern (eval_used). Review and replace if possible.
aragora/verification/proofs.py:129 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in ide/vscode-aragora/src/providers/DiagnosticsProvider.ts:301
Found a known-risky pattern (eval_used). Review and replace if possible.
ide/vscode-aragora/src/providers/DiagnosticsProvider.ts:301 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in scripts/aft_seeded_train_eval.py:348
Found a known-risky pattern (eval_used). Review and replace if possible.
scripts/aft_seeded_train_eval.py:348 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/agents/code_reviewer.py:150
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/agents/code_reviewer.py:150 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/analysis/codebase/bug_detector.py:907
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/analysis/codebase/bug_detector.py:907 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/analysis/codebase/sast/rules.py:393
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/analysis/codebase/sast/rules.py:393 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/audit/audit_types/ai_systems.py:255
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/audit/audit_types/ai_systems.py:255 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/audit/security_scanner.py:437
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/audit/security_scanner.py:437 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/nomic/code_reviewer.py:96
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/nomic/code_reviewer.py:96 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/nomic/gates.py:49
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/nomic/gates.py:49 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/nomic/hardened_orchestrator.py:1398
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/nomic/hardened_orchestrator.py:1398 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/nomic/phases/implement.py:226
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/nomic/phases/implement.py:226 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/rlm/repl.py:638
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/rlm/repl.py:638 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/skills/builtin/code_execution.py:318
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/skills/builtin/code_execution.py:318 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in aragora/verification/proofs.py:128
Found a known-risky pattern (exec_used). Review and replace if possible.
aragora/verification/proofs.py:128 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in docs/plans/dogfood_timeout_gate_report_2026-02-28_timeout1800_quality.json:45
Found a known-risky pattern (exec_used). Review and replace if possible.
docs/plans/dogfood_timeout_gate_report_2026-02-28_timeout1800_quality.json:45 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in docs/plans/dogfood_timeout_gate_report_2026-02-28_timeout360.json:29
Found a known-risky pattern (exec_used). Review and replace if possible.
docs/plans/dogfood_timeout_gate_report_2026-02-28_timeout360.json:29 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in scripts/audit_openapi_docs.py:168
Found a known-risky pattern (exec_used). Review and replace if possible.
scripts/audit_openapi_docs.py:168 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in scripts/generate_openapi.py:61
Found a known-risky pattern (exec_used). Review and replace if possible.
scripts/generate_openapi.py:61 Exec used
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in aragora/control_plane/blockchain_identity.py:373
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
aragora/control_plane/blockchain_identity.py:373 Tls verify false
medium Security checks quality Practices conf 0.62 61 occurrences Foundry mined assumption checks: synaptent/aragora
Comment chain pattern product: assumption_checks Repo: synaptent/aragora Thread: synaptent/aragora#8513 Outcome: ambiguous_needs_more_evidence Thread label: thread_has_human_issue_and_fix_context Source graph label: source_backed_multi_signal_graph Reasons: source_graph_has_real_artifacts, source_g…
61 occurrences
repo-level (61 hits)
medium Security checks quality maintenance conf 0.70 77 occurrences Foundry mined blueprint gap alignment: synaptent/aragora
Graph query export: Human feedback aligned with blueprint or architecture gaps Query id: blueprint_gap_alignment Query type: motif_query Intent: Curriculum-gap examples connecting issue threads to helicopter-view gaps. Motif: blueprint_gap_alignment Training usage: curriculum_gap Graph gold label: …
77 occurrences
repo-level (77 hits)
medium Security checks quality Practices conf 0.70 20 occurrences Foundry mined unresolved feedback: synaptent/aragora
Graph query export: Human feedback without linked fix evidence Query id: unresolved_feedback Query type: motif_query Intent: Negative/unresolved examples that should not be hallucinated into fixes. Motif: unlinked_feedback_needs_evidence Training usage: negative_or_unresolved Graph gold label: assu…
20 occurrences
repo-level (20 hits)
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — aragora/live/__tests__/JobMonitor.test.tsx:449
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 — aragora/live/src/app/layout.tsx:101
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 — aragora/live/src/components/control-plane/FineTuning/JobMonitor.tsx:106
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 — aragora/live/src/components/control-plane/FineTuning/ModelSelector.tsx:269
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 — aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceManager.tsx:274
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 — aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceSettings.tsx:142
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 — aragora/live/src/components/inbox/EmailDetailModal.tsx:362
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 — aragora/live/src/components/onboarding/steps/UseCaseStep.tsx:98
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 — aragora/live/src/components/PublicGallery.tsx:726
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 — aragora/live/src/components/visualization/MermaidRenderer.tsx:156
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 — aragora/live/browser-extension/background.js:189
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 — aragora/live/browser-extension/popup.js:207
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 — aragora/live/e2e/production/auth-flow-debug.prod.spec.ts:208
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 — aragora/live/functions/api/[[catchall]].ts:38
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 — aragora/live/scripts/generate-sdk.ts:258
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 — aragora/live/src/__tests__/hooks/useFetch.test.ts:54
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 — aragora/live/src/api/generated/client.ts:131
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 — aragora/live/src/app/(app)/ab-testing/page.tsx:63
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 — aragora/live/src/app/(app)/actions/page.tsx:53
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 — aragora/live/src/app/(app)/admin/billing/page.tsx:143
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 — aragora/live/src/app/(app)/admin/federation/page.tsx:161
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 — aragora/live/src/app/(app)/admin/forensic/page.tsx:99
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 — aragora/live/src/app/(app)/admin/memory/page.tsx:87
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 — aragora/live/src/app/(app)/admin/organizations/page.tsx:334
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 — aragora/live/src/app/(app)/admin/page.tsx:217
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 — aragora/live/src/app/(app)/admin/queue/page.tsx:111
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 — aragora/live/src/app/(app)/admin/security/page.tsx:140
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 — aragora/live/src/app/(app)/admin/usage/page.tsx:119
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 — aragora/live/src/app/(app)/admin/users/page.tsx:256
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 — aragora/live/src/app/(app)/admin/verticals/page.tsx:276
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 — aragora/live/src/app/(app)/agent/[[...name]]/AgentProfileWrapper.tsx:58
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 — aragora/live/src/app/(app)/audit/new/page.tsx:105
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 — aragora/live/src/app/(app)/audit/templates/page.tsx:59
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 — aragora/live/src/app/(app)/audit/view/AuditSessionDetail.tsx:237
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 — aragora/live/src/app/(app)/beliefs/page.tsx:204
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 — aragora/live/src/app/(app)/billing/page.tsx:48
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 — aragora/live/src/app/(app)/codebase-audit/page.tsx:160
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 — aragora/live/src/app/(app)/connectors/page.tsx:781
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 — aragora/live/src/app/(app)/debates/[id]/DebateDetailClient.tsx:185
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 — aragora/live/src/app/(app)/developer/page.tsx:256
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 — aragora/live/src/app/(app)/documents/page.tsx:79
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 — aragora/live/src/app/(app)/goals/page.tsx:41
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 — aragora/live/src/app/(app)/HomePage.tsx:202
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 — aragora/live/src/app/(app)/ideas/page.tsx:41
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 — aragora/live/src/app/(app)/inbox/page.tsx:198
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 — aragora/live/src/app/(app)/intelligence/page.tsx:100
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 — aragora/live/src/app/(app)/knowledge/learning/page.tsx:100
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 — aragora/live/src/app/(app)/mission-control/page.tsx:450
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 — aragora/live/src/app/(app)/observability/page.tsx:184
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 — aragora/live/src/app/(app)/onboarding/page.tsx:143
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 — aragora/live/src/app/(app)/orchestration/page.tsx:53
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 — aragora/live/src/app/(app)/organization/members/page.tsx:50
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 — aragora/live/src/app/(app)/pipeline/page.tsx:382
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 — aragora/live/src/app/(app)/prompt-engine/page.tsx:308
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 — aragora/live/src/app/(app)/queue/page.tsx:79
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 — aragora/live/src/app/(app)/reasoning/page.tsx:132
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 — aragora/live/src/app/(app)/receipts/page.tsx:1174
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 — aragora/live/src/app/(app)/speech/page.tsx:207
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 — aragora/live/src/app/(app)/training/explorer/page.tsx:97
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 — aragora/live/src/app/(app)/workflows/page.tsx:167
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 — aragora/live/src/app/(standalone)/status/page.tsx:176
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 — aragora/live/src/components/accounting/QBODashboard.tsx:87
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 — aragora/live/src/components/action-canvas/useActionCanvas.ts:121
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 — aragora/live/src/components/admin/AuditLogViewer.tsx:93
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 — aragora/live/src/components/admin/PersonaEditor.tsx:126
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 — aragora/live/src/components/AgentComparePanel.tsx:62
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 — aragora/live/src/components/AgentNetworkPanel.tsx:249
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 — aragora/live/src/components/AnalyticsPanel.tsx:71
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 — aragora/live/src/components/BeliefNetworkGraph.tsx:95
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 — aragora/live/src/components/BreakpointsPanel.tsx:37
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 — aragora/live/src/components/CapabilityProbePanel.tsx:102
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 — aragora/live/src/components/CitationsPanel.tsx:85
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 — aragora/live/src/components/codebase/MetricsDashboard.tsx:277
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 — aragora/live/src/components/codebase/SecurityDashboard.tsx:374
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 — aragora/live/src/components/codebase/SecurityScanWizard.tsx:105
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 — aragora/live/src/components/ContraryViewsPanel.tsx:35
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 — aragora/live/src/components/control-plane/KnowledgeExplorer/ContradictionsTab.tsx:31
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 — aragora/live/src/components/control-plane/SystemHealthDashboard/SystemHealthDashboard.tsx:67
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 — aragora/live/src/components/costs/BudgetForecast.tsx:91
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 — aragora/live/src/components/costs/EfficiencyMetrics.tsx:48
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 — aragora/live/src/components/costs/OptimizationRecommendations.tsx:112
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 — aragora/live/src/components/CruxPanel.tsx:91
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 — aragora/live/src/components/debate-viewer/LiveDebateView.tsx:95
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 — aragora/live/src/components/DebateExportModal.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 — aragora/live/src/components/DebateInput.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 — aragora/live/src/components/DebateListPanel.tsx:44
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 — aragora/live/src/components/DocumentUpload.tsx:97
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 — aragora/live/src/components/FolderUploadDialog.tsx:308
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 — aragora/live/src/components/GauntletDashboard.tsx:47
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 — aragora/live/src/components/GauntletPanel.tsx:61
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 — aragora/live/src/components/goal-canvas/useGoalCanvas.ts:208
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 — aragora/live/src/components/idea-canvas/useIdeaCanvas.ts:206
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 — aragora/live/src/components/inbox/EmailDetailModal.tsx:106
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 — aragora/live/src/components/inbox/FollowUpPanel.tsx:67
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 — aragora/live/src/components/inbox/InboxStatsCards.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 — aragora/live/src/components/inbox/PriorityInboxList.tsx:123
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 — aragora/live/src/components/inbox/SharedInboxView.tsx:138
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 — aragora/live/src/components/inbox/SnoozePanel.tsx:80
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 — aragora/live/src/components/LeaderboardPanel.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 — aragora/live/src/components/MediaUpload.tsx:101
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 — aragora/live/src/components/memory/CrossDebateLearning.tsx:43
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 — aragora/live/src/components/observability/PlatformHealthWidget.tsx:113
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 — aragora/live/src/components/onboarding/FirstDebateStep.tsx:186
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 — aragora/live/src/components/OperationalModesPanel.tsx:56
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 — aragora/live/src/components/orchestration-canvas/useOrchCanvas.ts:124
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 — aragora/live/src/components/PhaseProgress.tsx:37
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 — aragora/live/src/components/playground/ApiPlayground.tsx:159
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 — aragora/live/src/components/playground/RequestBuilder.tsx:98
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 — aragora/live/src/components/provenance/ProvenanceGraph.tsx:122
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 — aragora/live/src/components/QualityDashboard.tsx:96
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 — aragora/live/src/components/receipts/DeliveryHistory.tsx:112
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 — aragora/live/src/components/receipts/DeliveryModal.tsx:162
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 — aragora/live/src/components/RedTeamAnalysisPanel.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 — aragora/live/src/components/RiskWarningsPanel.tsx:66
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 — aragora/live/src/components/RouteGuard.tsx:95
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 — aragora/live/src/components/settings-panel/AccountTab.tsx:60
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 — aragora/live/src/components/settings-panel/NotificationsTab.tsx:249
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 — aragora/live/src/components/shared/PanelTemplate.tsx:245
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 — aragora/live/src/components/TemplateMarketplace.tsx:100
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 — aragora/live/src/components/TournamentPanel.tsx:48
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 — aragora/live/src/components/TrendingTopicsPanel.tsx:43
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 — aragora/live/src/components/upload/UnifiedMediaUploader.tsx:321
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 — aragora/live/src/components/VerticalSelector.tsx:243
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 — aragora/live/src/components/workflow-builder/TemplateBrowser.tsx:41
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 — aragora/live/src/hooks/useAsyncData.ts:18
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 — aragora/live/src/hooks/useDedup.ts:79
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 — aragora/live/src/hooks/useFeatures.ts:81
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 — aragora/live/src/hooks/useFineTuning.ts:223
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 — aragora/live/src/hooks/useKnowledgeFlow.ts:53
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 — aragora/live/src/hooks/useMissionControl.ts:577
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 — aragora/live/src/hooks/useNomicStream.ts:373
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 — aragora/live/src/hooks/usePipelineCanvas.ts:489
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 — aragora/live/src/hooks/usePolicies.ts:233
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 — aragora/live/src/hooks/usePruning.ts:83
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 — aragora/live/src/hooks/usePulseScheduler.ts:163
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 — aragora/live/src/hooks/useQueueMonitoring.ts:141
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 — aragora/live/src/hooks/useReviewQueue.ts:136
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 — aragora/live/src/hooks/useSelfImproveDetails.ts:76
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 — aragora/live/src/hooks/useUnifiedMemory.ts:63
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 — aragora/live/src/hooks/useWorkspaces.ts:144
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 — aragora/live/src/lib/aragora-client.ts:589
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 — aragora/live/src/lib/aragora-client/apis/training.ts:174
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 — aragora/live/src/lib/retry.ts: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 — aragora/live/src/store/marketplaceStore.ts:259
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 — aragora/live/src/store/moderationStore.ts:142
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 — aragora/live/src/store/sandboxStore.ts:149
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 — aragora/live/src/store/streamingStore.ts:258
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 — aragora/live/src/utils/retry.ts:96
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 — ide/vscode-aragora/src/extension.ts:112
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 — ide/vscode-aragora/src/services/ControlPlaneService.ts:209
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 — ide/vscode-aragora/src/test/providers.test.ts:103
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 — sdk/typescript/src/client.ts:6966
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: .claude/settings.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.
.claude/settings.json VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: aragora/compat/openclaw/skills/pr-reviewer/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.
aragora/compat/openclaw/skills/pr-reviewer/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs-site/docs/core-concepts/agents.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.
docs-site/docs/core-concepts/agents.md VerificationAgents md
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/debate/AGENTS.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.
docs/debate/AGENTS.md VerificationAgents md
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 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 api Analyzer error conf 1.00 Analyzer timeout: api.routes
analyzer exceeded 60.0s wall-clock (thread mode — daemon abandoned). Bump REPOBILITY_ANALYZER_TIMEOUT_S if expected.
Timeout
medium System graph data Analyzer error conf 1.00 Analyzer timeout: data.databases
analyzer exceeded 60.0s wall-clock (thread mode — daemon abandoned). Bump REPOBILITY_ANALYZER_TIMEOUT_S if expected.
Timeout
medium System graph software Analyzer error conf 1.00 Analyzer timeout: software.tree
analyzer exceeded 60.0s wall-clock (thread mode — daemon abandoned). Bump REPOBILITY_ANALYZER_TIMEOUT_S if expected.
Timeout
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 frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — aragora/live/src/components/action-canvas/useActionCanvas.ts:101
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — aragora/live/src/components/goal-canvas/useGoalCanvas.ts:161
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — aragora/live/src/components/idea-canvas/useIdeaCanvas.ts:160
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — aragora/live/src/components/orchestration-canvas/useOrchCanvas.ts:104
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — aragora/live/src/components/unified-dag/__tests__/ExecutionDAGNode.test.tsx:11
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph hardware Security conf 1.00 Dockerfile runs as root: deploy/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 86 occurrences GitHub Action is tag-pinned rather than SHA-pinned
benchmark-action/github-action-benchmark@v1 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 70 locations
.github/workflows/docker.yml:65, 69, 77, 90, 107, 118, 165, 169, +9 more (17 hits)
.github/workflows/build.yml:56, 60, 68, 81, 93, 108, 168, 184, +3 more (11 hits)
.github/workflows/deploy-multi-region.yml:80, 88, 132, 142, 194, 204, 255, 265, +1 more (9 hits)
.github/workflows/deploy-canary.yml:98, 210, 305, 354, 485, 583 (6 hits)
.github/workflows/sbom.yml:78, 148, 187, 212, 262 (5 hits)
.github/workflows/deploy-frontend.yml:285, 288, 296, 305 (4 hits)
.github/workflows/integration.yml:147, 298, 369, 439 (4 hits)
.github/workflows/security.yml:56, 62, 65, 426 (4 hits)
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 24 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
12 files, 12 locations
.github/workflows/benchmark-truth-publication.yml
.github/workflows/benchmark.yml
.github/workflows/build.yml
.github/workflows/dependabot-uv-lock.yml
.github/workflows/deploy-canary.yml
.github/workflows/deploy-docs.yml
.github/workflows/deploy-ec2.yml
.github/workflows/deploy-frontend.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in aragora/server/fastapi/routes/api_explorer.py:158
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
aragora/server/fastapi/routes/api_explorer.py:158 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/agents/code_reviewer.py:172
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/agents/code_reviewer.py:172 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/audit/audit_types/software.py:183
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/audit/audit_types/software.py:183 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/audit/security_scanner.py:474
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/audit/security_scanner.py:474 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/compliance/framework.py:546
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/compliance/framework.py:546 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/knowledge/mound/verticals/software.py:97
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/knowledge/mound/verticals/software.py:97 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/app/layout.tsx:101
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/app/layout.tsx:101 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/control-plane/FineTuning/JobMonitor.tsx:106
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/control-plane/FineTuning/JobMonitor.tsx:106 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/control-plane/FineTuning/ModelSelector.tsx:269
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/control-plane/FineTuning/ModelSelector.tsx:269 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceManager.tsx:274
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceManager.tsx:274 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceSettings.tsx:142
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/control-plane/WorkspaceManager/WorkspaceSettings.tsx:142 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/inbox/EmailDetailModal.tsx:362
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/inbox/EmailDetailModal.tsx:362 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/onboarding/steps/UseCaseStep.tsx:98
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/onboarding/steps/UseCaseStep.tsx:98 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/PublicGallery.tsx:726
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/PublicGallery.tsx:726 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in aragora/live/src/components/visualization/MermaidRenderer.tsx:156
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
aragora/live/src/components/visualization/MermaidRenderer.tsx:156 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in docs/status/settlement-packets/2026-05-17-open-queue-settlement-ui.html:680
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
docs/status/settlement-packets/2026-05-17-open-queue-settlement-ui.html:680 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in docs/viewer.html:795
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
docs/viewer.html:795 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in ide/vscode-aragora/src/panels/DebateViewerPanel.ts:504
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
ide/vscode-aragora/src/panels/DebateViewerPanel.ts:504 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in aragora/live/src/lib/crash-reporter.ts:61
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
aragora/live/src/lib/crash-reporter.ts:61 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in aragora/live/next.config.js:13
Found a known-risky pattern (node_child_process). Review and replace if possible.
aragora/live/next.config.js:13 Node child process
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/analysis/codebase/sast/rules.py:136
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/analysis/codebase/sast/rules.py:136 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/audit/audit_types/software.py:146
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/audit/audit_types/software.py:146 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/audit/security_scanner.py:409
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/audit/security_scanner.py:409 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/knowledge/mound/verticals/software.py:88
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/knowledge/mound/verticals/software.py:88 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/nomic/code_reviewer.py:102
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/nomic/code_reviewer.py:102 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/nomic/pattern_fixer.py:36
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/nomic/pattern_fixer.py:36 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in aragora/nomic/phases/design.py:364
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
aragora/nomic/phases/design.py:364 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/analysis/codebase/sast/rules.py:142
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/analysis/codebase/sast/rules.py:142 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/analysis/codebase/sbom_generator.py:56
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/analysis/codebase/sbom_generator.py:56 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/audit/audit_types/software.py:194
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/audit/audit_types/software.py:194 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/audit/presets/code_security.yaml:55
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/audit/presets/code_security.yaml:55 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/audit/security_scanner.py:591
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/audit/security_scanner.py:591 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/connectors/advertising/twitter_ads.py:363
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/connectors/advertising/twitter_ads.py:363 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/connectors/twitter_poster.py:239
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/connectors/twitter_poster.py:239 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/knowledge/mound/verticals/software.py:124
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/knowledge/mound/verticals/software.py:124 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/live/src/components/codebase/SecurityScanWizard.tsx:252
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/live/src/components/codebase/SecurityScanWizard.tsx:252 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/security/README.md:468
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/security/README.md:468 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/server/handlers/threat_intel.py:323
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/server/handlers/threat_intel.py:323 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in aragora/server/openapi/endpoints/threat_intel.py:166
Found a known-risky pattern (weak_hash). Review and replace if possible.
aragora/server/openapi/endpoints/threat_intel.py:166 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — aragora/autonomous/loop_enhancement.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 — aragora/cli/api_keys.py:428
`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 — aragora/cli/commands/build.py:648
`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 — aragora/cli/commands/coordinate.py:263
`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 — aragora/cli/commands/deploy.py:358
`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 — aragora/cli/commands/swarm.py:526
`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 — aragora/cli/commands/tasks.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 — aragora/cli/commands/worktree.py:398
`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 — aragora/cli/gt.py:634
`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 — aragora/coordination/reconciler.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 — aragora/coordination/worktree_manager.py:103
`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 — aragora/fabric/hooks.py:531
`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 — aragora/nomic/branch_coordinator.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 — aragora/nomic/dev_coordination/core.py:169
`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 — aragora/nomic/dev_receipts.py:1943
`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 — aragora/nomic/dev_salvage.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 — aragora/nomic/phases/commit.py:169
`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 — aragora/nomic/scope_guard.py:171
`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 — aragora/nomic/worktree_auditor.py:134
`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 — aragora/nomic/worktree_manager.py:130
`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 — aragora/pipeline/external_repo.py:166
`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 — aragora/server/handlers/nomic.py:823
`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 — aragora/skills/builtin/code_execution.py:249
`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 — aragora/swarm/boss_loop.py:3431
`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

Showing first 300 of 1878. 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/9887efad-bbcd-46cd-8a2a-2657f76cd81c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/9887efad-bbcd-46cd-8a2a-2657f76cd81c/

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.