Skip to content

Commit 0abbdee

Browse files
committed
small fix
1 parent 6557b3a commit 0abbdee

2 files changed

Lines changed: 34 additions & 5 deletions

File tree

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Before you begin, ensure you have the following:
1010
1. **Gemini CLI:** Install the Gemini CLI version v0.6.0 or above. Installation
1111
instructions can be found on the official Gemini CLI documentation. You can
1212
verify your version by running `gemini --version`.
13-
2. **BigQuery Access** For testing data plane tools, you will need access to an active BigQuery dataset.
13+
2. **BigQuery Access** For testing data plane skills, you will need access to an active BigQuery dataset.
1414

1515
## Developing the Extension
1616

README.md

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ Before you begin, ensure you have the following:
3333

3434
## Getting Started
3535

36-
### Installation
36+
### Gemini CLI
3737

38-
To install the extension, use the command:
38+
To install the extension for Gemini CLI, use the command:
3939

4040
```bash
4141
gemini extensions install https://github.com/gemini-cli-extensions/bigquery-data-analytics
4242
```
4343

44-
### Configuration
44+
#### Configuration
4545

4646
You will be prompted to configure the following settings during installation. These settings are saved in an `.env` file within the extension's directory.
4747

@@ -62,7 +62,6 @@ To view or update your configuration:
6262
* Terminal: `gemini extensions config bigquery-data-analytics [setting name] [--scope <scope>]`
6363
* `setting name`: (Optional) The single setting to configure.
6464
* `scope`: (Optional) The scope of the setting in (`user` or `workspace`). Defaults to `user`.
65-
* Currently, you must restart the Gemini CLI for changes to take effect. We recommend using `gemini --resume` to resume your session.
6665

6766
Alternatively, you can manually set these environment variables before starting the Gemini CLI:
6867

@@ -75,6 +74,36 @@ export BIGQUERY_MAX_QUERY_RESULT_ROWS="50" # Optional
7574
export BIGQUERY_IMPERSONATE_SERVICE_ACCOUNT="" # Optional
7675
```
7776

77+
### Claude Code
78+
79+
To use these skills with [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude-code):
80+
81+
1. Navigate to your project directory.
82+
2. Add the plugin:
83+
```bash
84+
claude mcp add bigquery-data-analytics https://github.com/gemini-cli-extensions/bigquery-data-analytics
85+
```
86+
3. Claude will prompt you for the required configuration values.
87+
88+
### Codex
89+
90+
To use these skills with [Codex](https://github.com/google-gemini/codex):
91+
92+
1. Open the Codex interface.
93+
2. Navigate to the **Extensions** or **Plugins** section.
94+
3. Search for `bigquery-data-analytics` or provide the repository URL: `https://github.com/gemini-cli-extensions/bigquery-data-analytics`.
95+
4. Follow the on-screen instructions to install and configure.
96+
97+
### Antigravity
98+
99+
To use these skills with [Antigravity](https://github.com/google-gemini/antigravity):
100+
101+
1. Install the skills using the Antigravity CLI:
102+
```bash
103+
antigravity skills install https://github.com/gemini-cli-extensions/bigquery-data-analytics
104+
```
105+
2. Configure the environment variables as prompted or in your `.env` file.
106+
78107
> [!NOTE]
79108
> * Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
80109
> * See [Troubleshooting](#troubleshooting) for debugging your configuration.

0 commit comments

Comments
 (0)