Skip to content

Commit 7603d08

Browse files
authored
feat: add gemini cli guidance (#224)
1 parent 638aba0 commit 7603d08

File tree

7 files changed

+1457
-300
lines changed

7 files changed

+1457
-300
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ It accelerates development by providing a holistic, production-ready solution, a
2121

2222
| ⚡️ Launch | 🧪 Experiment | ✅ Deploy | 🛠️ Customize |
2323
|---|---|---|---|
24-
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live API). | [Vertex AI evaluation](https://cloud.google.com/vertex-ai/generative-ai/docs/models/evaluation-overview) and an interactive playground. | Production-ready infra with [monitoring, observability](https://googlecloudplatform.github.io/agent-starter-pack/guide/observability), and [CI/CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) on [Cloud Run](https://cloud.google.com/run) or [Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview). | Extend and customize templates according to your needs. |
24+
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live API). | [Vertex AI evaluation](https://cloud.google.com/vertex-ai/generative-ai/docs/models/evaluation-overview) and an interactive playground. | Production-ready infra with [monitoring, observability](https://googlecloudplatform.github.io/agent-starter-pack/guide/observability), and [CI/CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) on [Cloud Run](https://cloud.google.com/run) or [Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview). | Extend and customize templates according to your needs. 🆕 Now integrating with [Gemini CLI](https://github.com/google-gemini/gemini-cli) |
2525

2626
---
2727

@@ -78,7 +78,7 @@ Looking to explore more ADK examples? Check out the [ADK Samples Repository](htt
7878
The `agent-starter-pack` offers two key features to accelerate and simplify the development of your agent:
7979
- **🔄 [CI/CD Automation (Experimental)](https://googlecloudplatform.github.io/agent-starter-pack/cli/setup_cicd)** - One command to set up a complete GitHub + Cloud Build pipeline for all environments
8080
- **📥 [Data Pipeline for RAG with Terraform/CI-CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/data-ingestion)** - Seamlessly integrate a data pipeline to process embeddings for RAG into your agent system. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview).
81-
81+
* **🤖 Gemini CLI Integration** - Use the [Gemini CLI](https://github.com/google-gemini/gemini-cli) and the included `GEMINI.md` context file to ask questions about your template, agent architecture, and the path to production. Get instant guidance and code examples directly in your terminal.
8282

8383
## High-Level Architecture
8484

docs/guide/development-guide.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Development Guide
32

43
This guide walks you through the entire lifecycle of creating, developing, deploying, and monitoring your agent project.
@@ -39,12 +38,18 @@ cd my-awesome-agent
3938

4039
Inside, you'll find a complete project structure:
4140
41+
::: tip Leveraging AI Tools (like Gemini CLI)
42+
The starter pack includes a `GEMINI.md` file with guidance formatted for AI interaction. Tools like the [Gemini CLI](https://github.com/google-gemini/gemini-cli) can leverage this file when used within your project directory, providing context for questions about your template.
43+
:::
44+
4245
* `app/`: Backend agent code (prompts, tools, business logic).
4346
* `deployment/`: Terraform infrastructure code.
4447
* `tests/`: Unit and integration tests.
4548
* `notebooks/`: Jupyter notebooks for prototyping and evaluation.
4649
* `frontend/`: (If applicable) Web UI for interacting with your agent.
4750
* `README.md`: **Project-specific instructions for your chosen template.**
51+
* `GEMINI.md`: Use this file with AI tools (like [Gemini CLI](https://github.com/google-gemini/gemini-cli)) to ask questions about the template, ADK concepts, or project structure.
52+
4853
4954
Your development loop will look like this:
5055

0 commit comments

Comments
 (0)