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.

scott0229/scott-agent

https://github.com/scott0229/scott-agent · scanned 2026-06-16 00:04 UTC (2 months, 3 weeks ago)

317 raw signals (14 security + 303 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v1 · 304 actionable findings from 2 signal sources. 60 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 60.3/100 with 100.0% coverage. It contains 2166 nodes across 17 cross-layer flows, written primarily in mixed languages. Engine surfaced 303 findings — concentrated in security (139), quality (82), frontend (76). Risk profile is high: 7 critical, 0 high, 166 medium. Recommended next step: open the security layer findings first — that's where the highest-impact wins live.

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

critical System graph security Secrets conf 1.00 Possible secret in scott-agent-trader/src/main/ai/advisor.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
scott-agent-trader/src/main/ai/advisor.ts:9
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in scott-agent-trader/src/main/index.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
lines 414, 878
scott-agent-trader/src/main/index.ts:414, 878 (2 hits)
critical System graph security Secrets conf 1.00 Possible secret in scott-agent-trader/src/main/rates.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
scott-agent-trader/src/main/rates.ts:6
critical System graph security Secrets conf 1.00 Possible secret in src/lib/fred.ts
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
src/lib/fred.ts:10
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in wrangler.toml
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
lines 58, 98
wrangler.toml:58, 98 (2 hits)
high Security checks quality Practices conf 0.84 17 occurrences Foundry mined bad chains: scott0229/scott-agent
Comment chain pattern product: bad_chains Repo: scott0229/scott-agent Thread: scott0229/scott-agent#5 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_…
17 occurrences
repo-level (17 hits)
high Security checks quality Quality conf 0.76 Foundry mined schema ui api mismatch: scott0229/scott-agent
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: assumption_check Repo: scott0229/scot…
high Security checks quality Testing conf 0.78 5 occurrences Foundry mined test ci gap after feedback: scott0229/scott-agent
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: …
5 occurrences
repo-level (5 hits)
medium Security checks quality Practices conf 0.62 10 occurrences Foundry mined assumption checks: scott0229/scott-agent
Comment chain pattern product: assumption_checks Repo: scott0229/scott-agent Thread: scott0229/scott-agent#9 Outcome: claimed_resolved_unverified Thread label: thread_has_human_issue_and_fix_context Source graph label: source_backed_multi_signal_graph Reasons: source_graph_has_real_artifacts, sourc…
10 occurrences
repo-level (10 hits)
medium Security checks quality maintenance conf 0.70 9 occurrences Foundry mined blueprint gap alignment: scott0229/scott-agent
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: …
9 occurrences
repo-level (9 hits)
medium Security checks quality Practices conf 0.70 19 occurrences Foundry mined unresolved feedback: scott0229/scott-agent
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: need…
19 occurrences
repo-level (19 hits)
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — src/app/blog/[id]/page.tsx:96
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 — src/app/layout.tsx:28
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 — scott-agent-trader/src/main/ai/advisor.ts:77
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 — scott-agent-trader/src/main/index.ts:127
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 — scott-agent-trader/src/renderer/src/App.tsx:265
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 — src/app/admin/reports/page.tsx:133
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 — src/app/admin/users/page.tsx:697
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 — src/app/api/market-data/backfill/route.ts:181
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 — src/app/api/market-data/fill-gaps/route.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 — src/app/api/test-alpha-vantage/route.ts: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 — src/app/api/users/send-report/route.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 — src/app/net-equity/[userId]/benchmark/[symbol]/page.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 — src/app/net-equity/[userId]/page.tsx:127
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 — src/app/net-equity/page.tsx:120
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 — src/app/options/[userId]/page.tsx:114
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 — src/app/stocks/page.tsx: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 — src/app/trade-groups/page.tsx:178
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 — src/components/AdminUserDialog.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 — src/components/BatchSetGroupDialog.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 — src/components/DepositsDialog.tsx: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 — src/components/EditInitialCostDialog.tsx: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 — src/components/EditNetEquityDialog.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 — src/components/EditOptionDialog.tsx: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 — src/components/GroupOverviewDialog.tsx:120
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 — src/components/NewNetEquityDialog.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 — src/components/NewOptionDialog.tsx:152
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 — src/components/UserProfileMenu.tsx:182
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 — src/components/UserStockTradesDialog.tsx: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 — src/lib/fred.ts:29
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — test-delete-api.js:36
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 instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in src/app/blog/[id]/page.tsx:96
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
src/app/blog/[id]/page.tsx:96 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in src/app/layout.tsx:28
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
src/app/layout.tsx:28 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in src/components/TradingViewWidget.tsx:24
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
src/components/TradingViewWidget.tsx:24 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in fix_admin_pwd.js:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
fix_admin_pwd.js:2 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scott-agent-trader/src/main/ib/gateway.ts:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
scott-agent-trader/src/main/ib/gateway.ts:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-4-sell-call-overdefensive.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-4-sell-call-overdefensive.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-5-same-day-double-roll.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-5-same-day-double-roll.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-iv-video.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-iv-video.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-options-101.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-options-101.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-put-strike.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-put-strike.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-seller-avoid-loss.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-seller-avoid-loss.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/insert-blog-seller-loss-lessons.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/insert-blog-seller-loss-lessons.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-keep-strike.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-keep-strike.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-merge-fear-para.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-merge-fear-para.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-merge-paras.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-merge-paras.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-tags-sell-put.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-tags-sell-put.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-title-v2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-title-v2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-title-v3.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-title-v3.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-1-title-v4.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-1-title-v4.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-2dte-sellput.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-2dte-sellput.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-abcd-to-1234.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-abcd-to-1234.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-active-choice.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-active-choice.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-analysis-rewrite.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-analysis-rewrite.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-analyze.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-analyze.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-buffer-chart.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-buffer-chart.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-buffer-spread.mjs:6
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-buffer-spread.mjs:6 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-bullet-fmt.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-bullet-fmt.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-callout-tighten.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-callout-tighten.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-center-label.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-center-label.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-center-label2.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-center-label2.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-chart.mjs:6
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-chart.mjs:6 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-comma-to-period.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-comma-to-period.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-commit-line.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-commit-line.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-consolidate.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-consolidate.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-credit-zh.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-credit-zh.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-emoji-merge.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-emoji-merge.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-figcaption.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-figcaption.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-h3-sellput.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-h3-sellput.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-intro.mjs:6
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-intro.mjs:6 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-intro2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-intro2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-intro3.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-intro3.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-merge-cols.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-merge-cols.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-merge-cols2.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-merge-cols2.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-merge-p.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-merge-p.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-net-collect.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-net-collect.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-net-credit-note.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-net-credit-note.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-reduce-bold.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-reduce-bold.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-remove-bottomline.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-remove-bottomline.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-remove-h3.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-remove-h3.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-risk-profile-simple.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-risk-profile-simple.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-risk-profile.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-risk-profile.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-risk-reward.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-risk-reward.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-roll-bullets.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-roll-bullets.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-roll-to-zhanqi.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-roll-to-zhanqi.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row1.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row1.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row1b.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row1b.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row2b.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row2b.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row3-callout.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row3-callout.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row3-space.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row3-space.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row3b.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row3b.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row3c.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row3c.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-row4b.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-row4b.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-rows-continuous.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-rows-continuous.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-summary-rewrite.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-summary-rewrite.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-summary-zh.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-summary-zh.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-table-dark-mode.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-table-dark-mode.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-title-v2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-title-v2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-3-title.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-3-title.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-92-strike-left.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-92-strike-left.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-add-time.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-add-time.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-called-away-phrase.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-called-away-phrase.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-callout-darkmode.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-callout-darkmode.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-chart-10day.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-chart-10day.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-cost-account.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-cost-account.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-cost-add-profit.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-cost-add-profit.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-cost-basis.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-cost-basis.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-critique-plain.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-critique-plain.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-defense-rewrite.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-defense-rewrite.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-equal-margin.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-equal-margin.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-h3-maybe.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-h3-maybe.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-highlight-sentence.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-highlight-sentence.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-hindsight-phrase.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-hindsight-phrase.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-intro.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-intro.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-itm.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-itm.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-layer2-rewrite.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-layer2-rewrite.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-loss-color.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-loss-color.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-margin-24.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-margin-24.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-may22-apostrophe.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-may22-apostrophe.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-net-debit.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-net-debit.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-opp-cost-zh.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-opp-cost-zh.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-pay-138-revise.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-pay-138-revise.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-pay-extreme.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-pay-extreme.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-pay-to-roll-2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-pay-to-roll-2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-pay-to-roll.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-pay-to-roll.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-pp-to-percent.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-pp-to-percent.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-rebuttal-2-zh.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-rebuttal-2-zh.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-rebuttal-quote.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-rebuttal-quote.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-reduce-bold.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-reduce-bold.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-8305.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-8305.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-8938.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-8938.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-background.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-background.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-quant.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-quant.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-reddot.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-reddot.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-remove-zero-cost.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-remove-zero-cost.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-right-padding.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-right-padding.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-roll-purpose-v2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-roll-purpose-v2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-roll-purpose.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-roll-purpose.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-roll-strike.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-roll-strike.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-short-dte-explain.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-short-dte-explain.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-soften-defend.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-soften-defend.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-strike-change.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-strike-change.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-strike-cushion-plain.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-strike-cushion-plain.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-strike-font.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-strike-font.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-strike-label-left.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-strike-label-left.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-summary-rewrite.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-summary-rewrite.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-time-price.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-time-price.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-time-style.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-time-style.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-title-v2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-title-v2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-title-v3.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-title-v3.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-title-v4.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-title-v4.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-title.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-title.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-trader-line.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-trader-line.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-4-yaxis-right.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-4-yaxis-right.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-5-chart-taller.mjs:6
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-5-chart-taller.mjs:6 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-5-roll-boxes.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-5-roll-boxes.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-5-strike-label-left.mjs:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-5-strike-label-left.mjs:5 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-5-title-v2.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-5-title-v2.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-iv-video.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-iv-video.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-put-strike.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-put-strike.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-tags-merge-sell.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-tags-merge-sell.mjs:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/update-blog-titles-renumber.mjs:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/update-blog-titles-renumber.mjs:3 Node child process
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 102 placeholder/mock markers across 48 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
16 test file(s) for 387 source file(s) (ratio 0.04). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 750 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph cicd CI/CD security conf 1.00 4 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 4 locations
.github/workflows/deploy-production.yml:16, 19 (2 hits)
.github/workflows/deploy-staging.yml:16, 19 (2 hits)
CI/CD securitySupply chainGithub actions
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/AddGroupDialog.tsx:358
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/AiAdvisorDialog.tsx:214
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/BackfillProgressDialog.tsx:106
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/CloseGroupDialog.tsx:496
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/CloseOptionDialog.tsx:289
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/ClosePositionDialog.tsx:199
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/OptionOrderDialog.tsx:220
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/PriceSyncDialog.tsx:171
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/RollOptionDialog.tsx:560
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/SettingsPanel.tsx:264
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/TradeGroupDialog.tsx:212
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/TransferStockDialog.tsx:416
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — scott-agent-trader/src/renderer/src/components/UploadProgressDialog.tsx:98
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `summaryOld` in src/lib/daily-trades-text.ts:327
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
scott-agent-trader/package.json CI/CD securitySupply chainNpm
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — check-db.ts:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — check_feb11_records.ts:13
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — check_price.js:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — check_price.ts:18
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — debug_db.ts:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — debug_december.js:27
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — debug_parser.ts:50
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — fix_admin_pwd.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — hash-admin.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — hash-password.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — refactor.js:46
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — refactor_trade_groups.js:50
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ai/advisor.ts:69
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/aliasCache.ts:48
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/accounts.ts:237
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/connection.ts:72
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/gateway.ts:165
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/historical.ts:81
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/options.ts:226
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/orders.ts:125
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/ib/quotes.ts:117
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/index.ts:120
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/main/rates.ts:27
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/renderer/src/components/AccountOverview.tsx:788
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/renderer/src/components/OptionOrderForm.tsx:116
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/src/renderer/src/hooks/useAccountStore.ts:409
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-electron.js:3
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-frozen.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-ib-rate.js:31
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-ib-rate2.js:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-option-data.js:19
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-option-focused.js:9
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/test-option-sim.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scott-agent-trader/tmp-test-api.js:4
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scripts/debug_deposits.js:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/auth/me/route.ts:10
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/deposits/import/route.ts:68
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/deposits/route.ts:93
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/market-data/backfill/route.ts:33
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/market-data/clear-cache/route.ts:47
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/market-data/fill-gaps/route.ts:72
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/net-equity/import-ib/route.ts:599
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/options/route.ts:263
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/scheduled/auto-update/route.ts:14
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/test-alpha-vantage/route.ts:39
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/api/users/route.ts:28
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/net-equity/[userId]/page.tsx:165
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/options/[userId]/page.tsx:136
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/app/options/page.tsx:110
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/components/Navbar.tsx:31
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/components/NetEquityChart.tsx:27
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/components/UserProfileMenu.tsx:75
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/lib/market-data.ts:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/lib/response-cache.ts:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/scheduled.ts:8
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — temp_add_btn.js:23
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — test-alpha-vantage.js:20
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — test-delete-api.js:11
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — test-full-output.js:55
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Complexity conf 1.00 Very large file: scott-agent-trader/src/main/index.ts (1417 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: scott-agent-trader/src/renderer/src/components/AccountOverview.tsx (5007 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/admin/users/page.tsx (2657 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/api/net-equity/import-ib/route.ts (1082 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/api/users/import/route.ts (916 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/api/users/route.ts (989 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/daily-trades/page.tsx (1306 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/app/options/[userId]/page.tsx (970 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
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/1833502e-8ccf-4496-9581-b7feaa88d05d/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/1833502e-8ccf-4496-9581-b7feaa88d05d/

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.