Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/twells89/sigma-migration-skillsnpx agentmods add skills/twells89/sigma-migration-skills/looker-to-sigmaWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/twells89/sigma-migration-skills/looker-to-sigma)<a href="https://agentmods.dev/skills/twells89/sigma-migration-skills/looker-to-sigma"><img src="https://agentmods.dev/badge/skills/twells89/sigma-migration-skills/looker-to-sigma/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/twells89/sigma-migration-skills/looker-to-sigma"><img src="https://agentmods.dev/badge/skills/twells89/sigma-migration-skills/looker-to-sigma.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Tool Misuse · line 878 Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
- medium Rogue Agent · line 810 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00146 | $0.21553 |
| Opus 5 | $0.00073 | $0.10776 |
| Sonnet 5 | $0.00029 | $0.04311 |
| Haiku 4.5 | $0.00015 | $0.02155 |
Grade A, and why
looker-to-sigma scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
> `curl`-POST to `/v2/workbooks` / lay out empty "placeholder" pages** — that How it starts
The opening of the file, as written. The whole thing — 1,047 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Looker → Sigma Conversion
Windows / first run — run the environment doctor before anything else:
bash scripts/doctor.sh(macOS/Linux/Git Bash) orpowershell -ExecutionPolicy Bypass -File scripts\doctor.ps1(Windows). It checks Ruby/Python/Node/bash and flags the Python "Store stub" + CRLF with exact fixes. Details:refs/environment.md.
Preflight the workbook spec before POST (mandatory)
Before POSTing any workbook spec, run ruby scripts/lib/preflight_lint.rb <spec.json> — it exits 1 with a precise message on the two migration-killer bugs: a table with aggregate columns + dimensions but no groupings (renders raw detail rows), and a malformed control (missing id/controlId/controlType or nesting value fields under a value object instead of flat, a non-double-nested source, or a list control wired to neither source nor filters — a filters-only list control is valid). Fix every violation first — never POST past it, and never conclude a feature is "unsupported" from an Invalid kind error (it means the inner fields are wrong). Verified shapes: sigma-workbooks controls.md / tables.md.
Phase 0a — Choose where to build (ask first when no destination given)
Don't silently land the migrated data model + workbook in an auto-picked folder.
If the user didn't supply a destination (no --folder <id> and no SIGMA_FOLDER_ID), ASK before building:
python3 scripts/pick_destination.py list→{ workspaces, folders (editable, with parentName), myDocuments }- Let the user pick ONE: a workspace (its
idlands content in the workspace root), an existing folder, My Documents (when non-null — null for service tokens), or create a new folder:python3 scripts/pick_destination.py create --name "<name>" [--parent <workspace-or-folder-id>] - Pass the chosen id as
--folder <id>.folderIdaccepts a workspace id or a folder id.
If a destination is already supplied, honor it silently — don't ask.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- converter/lookml.mjs 109 KB runs code
- converter/PROVENANCE.json 1.6 KB
- fixtures/readiness-chain-extends/readiness.model.lkml 200 B
- fixtures/readiness-chain-extends/readiness.view.lkml 727 B
- fixtures/skilltest-course-performance/course_performance.dashboard.lookml 2.1 KB
- fixtures/skilltest-course-performance/course_performance.model.lkml 362 B
- fixtures/skilltest-course-performance/oracle_expected.json 1.2 KB
- fixtures/skilltest-course-performance/views/enrollment_metrics.view.lkml 3.6 KB
- fixtures/skilltest-course-performance/views/period_bridge.view.lkml 757 B
- fixtures/skilltest-course-performance/warehouse_rows.json 1.7 KB
- fixtures/skilltest-derived/demo.model.lkml 230 B
- fixtures/skilltest-derived/views/perf_base.view.lkml 480 B
- fixtures/skilltest-derived/views/perf_incremental.view.lkml 556 B
- fixtures/skilltest-derived/views/perf_nested.view.lkml 529 B
- fixtures/skilltest-derived/views/perf_pdt.view.lkml 388 B
- fixtures/skilltest-derived/views/perf_plain.view.lkml 258 B
- fixtures/skilltest-looks/demo_thelook.model.lkml 4.7 KB
- fixtures/skilltest-looks/look_bar.contract.json 1.3 KB
- fixtures/skilltest-looks/look_custom_measure.contract.json 1.5 KB
- fixtures/skilltest-looks/look_dims_only.contract.json 1.1 KB
- fixtures/skilltest-looks/look_grouped_table.contract.json 1.9 KB
- fixtures/skilltest-looks/look_measure_only.contract.json 1.6 KB
- fixtures/skilltest-looks/look_pivot_table.contract.json 1.4 KB
- fixtures/skilltest-looks/views/customer_dim.view.lkml 1.4 KB
- fixtures/skilltest-looks/views/date_dim.view.lkml 1023 B
- fixtures/skilltest-looks/views/order_fact.view.lkml 6.7 KB
- fixtures/skilltest-looks/views/product_dim.view.lkml 872 B
- fixtures/skilltest-looks/views/promo_dim.view.lkml 1.7 KB
- fixtures/skilltest-looks/views/store_dim.view.lkml 776 B
- fixtures/skilltest-orders-dynamic/skilltest_orders.dashboard.lookml 3.2 KB
- fixtures/skilltest-orders-dynamic/skilltest_orders.model.lkml 254 B
- fixtures/skilltest-orders-dynamic/views/customer_dim.view.lkml 571 B
- fixtures/skilltest-orders-dynamic/views/order_fact.view.lkml 2.4 KB
- fixtures/skilltest-orders/skilltest_orders.dashboard.lookml 2.9 KB
- fixtures/skilltest-orders/skilltest_orders.model.lkml 254 B
- fixtures/skilltest-orders/views/customer_dim.view.lkml 571 B
- fixtures/skilltest-orders/views/order_fact.view.lkml 1.1 KB
- QUICKSTART.md 9.1 KB
- refs/app-recommendation-signals.md 3.1 KB
- refs/catalogs/aggregation.json 3.5 KB
- refs/catalogs/control.json 1.9 KB
- refs/catalogs/number-format.json 4.9 KB
- refs/catalogs/viz-kind.json 4.0 KB
- refs/catalogs/workbook-feature.json 6.8 KB
- refs/control-parity.md 9.9 KB
- refs/dashboard-contract.md 6.4 KB
- refs/environment.md 5.7 KB
- refs/layered-lookml.md 7.7 KB
- refs/layout-visual-qa.md 19 KB
- refs/looker-coverage.md 16 KB
- refs/looker-dashboard-layout.md 27 KB
- refs/lookml-warning-catalog.json 2.4 KB
- refs/migration-report-format.md 5.9 KB
- refs/modeling-hazards.md 4.0 KB
- refs/modeling-strategy.md 6.7 KB
- refs/open-items.md 3.7 KB
- refs/operating-contract.md 2.8 KB
- refs/phase-e-enhance.md 12 KB
- refs/source-anchors.md 12 KB
- refs/visual-similarity.md 5.0 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago Changed · -1 lines 70c44f2af972
- 13d ago First seen · 1,048 lines · 146 tokens per session scan A 092ee6bd482e
looker-to-sigma is a skill published in the GitHub repository twells89/sigma-migration-skills (16 stars, last pushed yesterday), licensed MIT. It adds 146 tokens to every session and 21,553 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…