Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 1 addition & 45 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,49 +9,5 @@
"homepage": "https://cloud.google.com/looker",
"license": "Apache-2.0",
"repository": "https://github.com/gemini-cli-extensions/looker",
"skills": "./skills/",
"userConfig": {
"looker_base_url": {
"title": "Base URL",
"description": "URL of the Looker instance",
"type": "string",
"sensitive": false
},
"looker_client_id": {
"title": "Client ID",
"description": "Client ID of the Looker API",
"type": "string",
"sensitive": false
},
"looker_client_secret": {
"title": "Client Secret",
"description": "Client Secret of the Looker API",
"type": "string",
"sensitive": false
},
"looker_verify_ssl": {
"title": "Verify SSL",
"description": "(Optional) Boolean to verify SSL certificates",
"type": "string",
"sensitive": false
},
"looker_show_hidden_models": {
"title": "Show Hidden Models",
"description": "(Optional) Boolean to show hidden models",
"type": "string",
"sensitive": false
},
"looker_show_hidden_explores": {
"title": "Show Hidden Explores",
"description": "(Optional) Boolean to show hidden explores",
"type": "string",
"sensitive": false
},
"looker_show_hidden_fields": {
"title": "Show Hidden Fields",
"description": "(Optional) Boolean to show hidden fields",
"type": "string",
"sensitive": false
}
}
"skills": "./skills/"
}
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
https://github.com/gemini-cli-extensions/looker/compare/
https://www.npmjs.com/package/skills
https://agent-plugins.org/compatible-clients
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ This repository provides a set of agent skills to interact with [Looker](https:/
- [Antigravity](#antigravity)
- [Claude Code](#claude-code)
- [Codex](#codex)
- [Installing using open agent skills tool](#installing-using-open-agent-skills-tool)
- [Installing via a compatible Agent Plugins client](#installing-via-a-compatible-agent-plugins-client)
- [Usage Examples](#usage-examples)
- [Supported Skills](#supported-skills)
- [Troubleshooting](#troubleshooting)
Expand Down Expand Up @@ -200,6 +202,19 @@ For detailed info check out the [Skills npm package](https://www.npmjs.com/packa
**2. Set env vars:**
Set your environment vars as described in the [configuration section](#configuration).

## Installing via a compatible Agent Plugins client

This repository is a valid [Agent Plugins](https://github.com/agentplugins/agent-plugins-spec) (v1) plugin. Any [Agent Plugins–compatible client](https://agent-plugins.org/compatible-clients) can install it directly using its own built-in plugin command — no extra tooling required — by pointing at this repository:

```
https://github.com/gemini-cli-extensions/looker
```

Beyond harnesses covered by the native install above, compatible clients include VS Code, Cursor, GitHub Copilot, and Kiro. See your agent's documentation for its exact install command.

**Set env vars:**
Set your environment vars as described in the [configuration section](#configuration).

<!-- {x-release-please-end} -->

## Usage Examples
Expand Down
19 changes: 19 additions & 0 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "looker",
"version": "0.3.8",
"description": "Connect to Looker and interact with your data using LookML.",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/looker",
"repository": "https://github.com/gemini-cli-extensions/looker",
"license": "Apache-2.0",
"keywords": [
"looker",
"lookml",
"bi",
"data-analytics"
]
}
5 changes: 5 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "plugin.json",
"jsonpath": "$.version"
}
]
}
Expand Down
Loading