looker-open-source/looker-skills

setting-up-looker-project

>- Looker Developer Onboarding: Step 5. Creates a new Looker project and configures Git. Only execute this after Step 4 (BigQuery Connection using `connecting-looker-to-bigquery`).

First seen Jul 7, 2026

Installation

$ npx skills add looker-open-source/looker-skills --skill setting-up-looker-project

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from looker-open-source/looker-skills · top by installs.

npx skills add looker-open-source/looker-skills

Browse all from looker-open-source/looker-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 26
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Versionv1
LicenseApache-2.0
More metadata
publisher
google
version
v1

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,217 B
  • docs SUMMARY.md 210 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 63 installs

SKILL.md

Setting Up Looker Project

Creates a new Looker project and configures it with a local bare Git repository.

Prerequisites

  • Looker CLI must be installed and authenticated (see installing-looker-cli

and authenticating-looker-cli skills).

Instructions

1. Switch to the Development Workspace

Switch to the 'dev' workspace (required for creating or modifying project configurations). It is recommended to chain this with project operations to guarantee dev workspace persistence:

looker-cli session update dev

2. Create the Project

Write the project name payload to /tmp/project_create.json:

{
  "name": "{project_id}"
}

Create the Looker project using the project import command (chained with session update dev):

looker-cli session update dev && looker-cli project import /tmp/project_create.json

[!NOTE] Use a unique, URL-safe name for {project_id} (e.g.,
mynewproject).

3. Configure Local Bare Git Repository

Write the Git configuration payload to /tmp/project_git.json:

{
  "git_service_name": "bare"
}

Configure the project to use a local bare Git repository:

looker-cli session update dev && looker-cli project update {project_id} /tmp/project_git.json

[!NOTE] This sets up a local Git repository on the Looker server, which is
ideal for quick onboarding without needing external Git hosting.

4. Verify Project Setup

Retrieve the project details to verify that Git was correctly configured:

looker-cli project cat {project_id}

Ensure the output indicates that usesgit is true and gitremoteurl is not null (it will look like ../../baremodels/{project_id}.git).

[!NOTE] There might be a slight propagation delay on the Looker server after
updating Git. If the project cat command fails (e.g., with a 400 error),
wait a few seconds and retry.