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 theproject catcommand fails (e.g., with a 400 error),
wait a few seconds and retry.