lookml-refinements

Originally fromlkrdev/lookml_skills
Installation
SKILL.md

Instructions

1. Includes Mechanism

include makes Open LookML objects (views, explores, dashboards) available in the current file.

  • Wildcards (*): Matches any string.

    • /views/*.view: All views in the absolute /views directory.
    • *.view: All views in the current directory.
    • /**/*.view: (Recursive) All views in the current directory and any subdirectory.
    • //project-name/views/*.view: Remote project import (Requires project manifest).
  • Best Practice: Be specific to avoid namespace collisions and performance bloat.

    • BAD: include: "/**/*.view" (Imports everything, everywhere. Slow and risky).
    • GOOD: include: "/views/users.view" (Explicit).
    • GOOD: include: "/views/finance/*.view" (Scoped to a domain).

2. Refinements (Layering)

Installs
104
GitHub Stars
28
First Seen
Jun 9, 2026
lookml-refinements — looker-open-source/looker-skills