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.

twells89/sigma-migration-skills

https://github.com/twells89/sigma-migration-skills · scanned 2026-06-16 00:44 UTC (2 months, 1 week ago)

120 raw signals (0 security + 120 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 95 actionable findings from 1 signal source. 25 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 68.3/100 with 77.8% coverage. It contains 1642 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 120 findings — concentrated in quality (82), software (25), security (11). Risk profile is high: 0 critical, 2 high, 43 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 71 of 95 actionable findings. 120 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.

high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: plugins/tableau-to-sigma/skills/tableau-vds-to-cdw/SKILL.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
plugins/tableau-to-sigma/skills/tableau-vds-to-cdw/SKILL.md:486 SecretsSkill file
high System graph security security conf 1.00 Insecure pattern 'eval_used' in plugins/looker-to-sigma/skills/looker-to-sigma/scripts/migrate-looker.py:322
Found a known-risky pattern (eval_used). Review and replace if possible.
plugins/looker-to-sigma/skills/looker-to-sigma/scripts/migrate-looker.py:322 Eval used
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/pick-destination.mjs: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 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 'node_child_process' in plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/apply-layout.mjs:28
Found a known-risky pattern (node_child_process). Review and replace if possible.
plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/apply-layout.mjs:28 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/migrate-cognos.mjs:55
Found a known-risky pattern (node_child_process). Review and replace if possible.
plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/migrate-cognos.mjs:55 Node child process
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/build-workbook-from-pbir.rb:395
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/build-workbook-from-pbir.rb:395 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/enhance-scan.rb:309
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/enhance-scan.rb:309 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/lib/sigma_functions.rb:49
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/lib/sigma_functions.rb:49 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/migrate-powerbi.rb:593
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/migrate-powerbi.rb:593 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/lib/sigma_functions.rb:47
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/lib/sigma_functions.rb:47 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/enhance-scan.rb:309
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/enhance-scan.rb:309 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/lib/sigma_functions.rb:49
Found a known-risky pattern (weak_hash). Review and replace if possible.
plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/lib/sigma_functions.rb:49 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/looker-to-sigma/skills/looker-to-sigma/scripts/migrate-looker.py:127
`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 — plugins/looker-to-sigma/skills/looker-to-sigma/scripts/pick_destination.py:46
`urllib.request.urlopen(...)` 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 — plugins/looker-to-sigma/skills/looker-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/scripts/pick_destination.py:46
`urllib.request.urlopen(...)` 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 — plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-assessment/scripts/fabric-inventory.py:83
`requests.post(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/build-bookmark-workbooks.py:77
`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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/export-pbi-pages.py:53
`requests.post(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/fabric-auth-check.py:38
`requests.get(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/pbi-freshness.py:122
`requests.get(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/pbi_exec.py:28
`requests.post(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/pbi_fabric.py:128
`requests.post(...)` 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 — plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/sigma-export-png.py:30
`requests.post(...)` 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 — plugins/qlik-to-sigma/skills/qlik-assessment/scripts/qlik-inventory.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 — plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/batch-migrate.py:83
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/qlik-discover.py:106
`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 — plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/qlik-screenshot.py:48
`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 — plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/build-bookmark-workbooks.py:77
`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 — plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/quicksight-discover.py:133
`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 — plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/build-bookmark-workbooks.py:77
`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 — plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/extract-custom-views.py:33
`urllib.request.urlopen(...)` 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 — plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/sigma-export-png.py:34
`requests.post(...)` 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 — plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/compare.py:30
`urllib.request.urlopen(...)` 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 — plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/migrate-thoughtspot.py:76
`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 — plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/migrate.py:82
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/pick_destination.py:46
`urllib.request.urlopen(...)` 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 — plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_screenshot.py:63
`urllib.request.urlopen(...)` 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 Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 71 placeholder/mock markers across 43 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
2 test file(s) for 116 source file(s) (ratio 0.02). 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 722 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 5 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/learned-rules.py:home_dir, plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/learned-rules.py:home_dir This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — se…
5 occurrences
repo-level (5 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/learned-rules.py:load, plugins/looker-to-sigma/skills/looker-to-sigma/scripts/learned-rules.py:load, plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/learned-rules.py:load, plugins/pow…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 9 occurrences Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/escalate-gap.py:have, plugins/looker-to-sigma/skills/looker-to-sigma/scripts/escalate-gap.py:have, plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/escalate-gap.py:have, pl…
9 occurrences
repo-level (9 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `client_state_v2` in plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_common.py:221
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 software Dead code conf 1.00 Possibly dead Python function: collect_liveboards
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/migrate.py:188
low System graph software Dead code conf 1.00 Possibly dead Python function: create_attributes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/fixtures/build_schema.py:121
low System graph software Dead code conf 1.00 Possibly dead Python function: create_facts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/fixtures/build_schema.py:156
low System graph software Dead code conf 1.00 Possibly dead Python function: create_metrics
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/fixtures/build_schema.py:172
low System graph software Dead code conf 1.00 Possibly dead Python function: create_relationships
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/fixtures/build_schema.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: dm_ref
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/scripts/convert.py:834
low System graph software Dead code conf 1.00 Possibly dead Python function: import_tml
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_lib.py:177
low System graph software Dead code conf 1.00 Possibly dead Python function: import_tml
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-assessment/scripts/ts_lib.py:53
low System graph software Dead code conf 1.00 7 occurrences Possibly dead Python function: list_attributes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
7 files, 7 locations
plugins/cognos-to-sigma/skills/cognos-to-sigma/scripts/apply_sigma_rls.py:103
plugins/looker-to-sigma/skills/looker-to-sigma/scripts/apply_sigma_rls.py:103
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/apply_sigma_rls.py:103
plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/apply_sigma_rls.py:103
plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/apply_sigma_rls.py:103
plugins/tableau-to-sigma/skills/tableau-to-sigma/scripts/apply_sigma_rls.py:103
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/apply_sigma_rls.py:103
low System graph software Dead code conf 1.00 3 occurrences Possibly dead Python function: one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
3 files, 3 locations
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/pbi_fabric.py:250
plugins/quicksight-to-sigma/skills/quicksight-to-sigma/scripts/quicksight-discover.py:430
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_lib.py:153
low System graph software Dead code conf 1.00 Possibly dead Python function: parity_fetch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/looker-to-sigma/skills/looker-to-sigma/scripts/migrate-looker.py:808
low System graph software Dead code conf 1.00 Possibly dead Python function: patch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/scripts/mstr.py:106
low System graph software Dead code conf 1.00 Possibly dead Python function: probe
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/powerbi-to-sigma/skills/powerbi-to-sigma/scripts/pbi-freshness.py:163
low System graph software Dead code conf 1.00 Possibly dead Python function: set_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/qlik-to-sigma/skills/qlik-to-sigma/scripts/build-sigma-workbook.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: summarize_liveboard
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_discover.py:17
low System graph software Dead code conf 1.00 Possibly dead Python function: summarize_model
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_discover.py:34
low System graph software Dead code conf 1.00 Possibly dead Python function: ts_viz
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
plugins/thoughtspot-to-sigma/skills/thoughtspot-to-sigma/scripts/ts_common.py:109
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 — plugins/cognos-to-sigma/skills/cognos-to-sigma/converter/test.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 quality Complexity conf 1.00 Very large file: plugins/looker-to-sigma/skills/looker-to-sigma/scripts/build_workbook.py (1093 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: plugins/microstrategy-to-sigma/skills/microstrategy-to-sigma/scripts/convert.py (1164 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/c66f7484-7096-48ed-8a39-74fff63a2148/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/c66f7484-7096-48ed-8a39-74fff63a2148/

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.