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
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-agent-kit-starter-pack",
"version": "0.2.0",
"version": "0.4.0",
"description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.",
"author": {
"name": "Google LLC",
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-agent-kit-starter-pack",
"version": "0.2.0",
"version": "0.4.0",
"description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.",
"skills": "./skills/",
"interface": {
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.0"
".": "0.4.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.0](https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack/compare/0.2.0...0.4.0) (2026-06-11)


### Miscellaneous Chores

* force release 0.4.0 ([#93](https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack/issues/93)) ([23aab90](https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack/commit/23aab90cf7a198e8481dce1475020e14014a7ebe))

## [0.2.0](https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack/compare/0.1.4...0.2.0) (2026-05-15)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ agy plugin install https://github.com/gemini-cli-extensions/data-agent-kit-start

Install the extension directly from GitHub:
```bash
gemini extensions install https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack --ref 0.2.0
gemini extensions install https://github.com/gemini-cli-extensions/data-agent-kit-starter-pack --ref 0.4.0
```
</details>

Expand All @@ -83,12 +83,12 @@ Run the `claude` command to start the agent, then follow these steps:

**macOS / Linux:**
```bash
CODEX_TAG="0.2.0"; curl -sSL https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$CODEX_TAG/codex-install.sh | bash -s -- $CODEX_TAG
CODEX_TAG="0.4.0"; curl -sSL https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$CODEX_TAG/codex-install.sh | bash -s -- $CODEX_TAG
```

**Windows:**
```powershell
$env:CODEX_TAG="0.2.0"; irm "https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$env:CODEX_TAG/codex-install.ps1" | iex
$env:CODEX_TAG="0.4.0"; irm "https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$env:CODEX_TAG/codex-install.ps1" | iex
```

2. **Install the plugin in Codex:**
Expand Down Expand Up @@ -139,14 +139,14 @@ Edit the configuration file:
<summary><b>Claude Code</b></summary>

Edit the configuration file:
`~/.claude/plugins/cache/data-agent-kit-starter-pack-marketplace/data-agent-kit-starter-pack/0.2.0/.claude-mcp.json`
`~/.claude/plugins/cache/data-agent-kit-starter-pack-marketplace/data-agent-kit-starter-pack/0.4.0/.claude-mcp.json`
</details>

<details>
<summary><b>Codex</b></summary>

1. Edit the configuration file:
`~/.codex/plugins/cache/personal/data-agent-kit-starter-pack/0.2.0/.mcp.json`
`~/.codex/plugins/cache/personal/data-agent-kit-starter-pack/0.4.0/.mcp.json`

2. Restart Codex.
</details>
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-agent-kit-starter-pack",
"version": "0.2.0",
"version": "0.4.0",
"description": "This plugin provides a specialized suite of skills for data engineers and database practitioners working on Google Cloud. It acts as an expert assistant, allowing you to use natural language prompts in your preferred coding agent to architect complex data pipelines, transform data with dbt, write Spark and BigQuery SQL notebooks, and orchestrate end-to-end workflows across GCP's data ecosystem.",
"mcpServers": {
"notebook": {
Expand Down
2 changes: 1 addition & 1 deletion mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/standalone-notebook-mcp",
"version": "0.2.0",
"version": "0.4.0",
"type": "module",
"description": "Standalone MCP server for notebook manipulation",
"main": "server.ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-agent-kit-starter-pack",
"version": "0.2.0",
"version": "0.4.0",
"description": "Developer toolkit for Data Cloud and AI integrations",
"bin": {
"notebook-tools": "mcp/dist/index.js"
Expand Down
Loading