@intentsolutionsio/jeremy-gcp-starter-examples 2.1.0 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/agents/gcp-starter-kit-expert.md +31 -3
- package/package.json +1 -1
- package/skills/gcp-examples-expert/SKILL.md +13 -6
- package/skills/gcp-examples-expert/references/best-practices-applied.md +6 -1
- package/skills/gcp-examples-expert/references/code-example-categories.md +13 -1
- package/skills/gcp-examples-expert/references/example-interactions.md +11 -1
- package/skills/gcp-examples-expert/references/workflow.md +5 -1
package/README.md
CHANGED
|
@@ -24,9 +24,11 @@ This plugin provides instant access to production-ready code examples from 6 off
|
|
|
24
24
|
## Components
|
|
25
25
|
|
|
26
26
|
### Agent
|
|
27
|
+
|
|
27
28
|
- **gcp-starter-kit-expert**: Aggregates code examples from official Google Cloud repos
|
|
28
29
|
|
|
29
30
|
### Skills (Auto-Activating)
|
|
31
|
+
|
|
30
32
|
- **gcp-examples-expert**: Triggers on "show adk example", "genkit starter template", "vertex ai code sample"
|
|
31
33
|
- **Tool Permissions**: Read, Write, Edit, Grep, Glob, Bash
|
|
32
34
|
- **Version**: 1.0.0 (2026 schema compliant)
|
|
@@ -62,6 +64,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
62
64
|
- IAM least privilege patterns
|
|
63
65
|
|
|
64
66
|
**Example Request**:
|
|
67
|
+
|
|
65
68
|
```
|
|
66
69
|
"Show me how to create an ADK agent with Code Execution and Memory Bank"
|
|
67
70
|
```
|
|
@@ -78,6 +81,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
78
81
|
- Error tracking and distributed tracing
|
|
79
82
|
|
|
80
83
|
**Example Request**:
|
|
84
|
+
|
|
81
85
|
```
|
|
82
86
|
"Give me the Agent Starter Pack production template"
|
|
83
87
|
```
|
|
@@ -93,6 +97,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
93
97
|
- Node.js, Python, and Go examples
|
|
94
98
|
|
|
95
99
|
**Example Request**:
|
|
100
|
+
|
|
96
101
|
```
|
|
97
102
|
"I need a Genkit RAG flow template with vector search"
|
|
98
103
|
```
|
|
@@ -109,6 +114,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
109
114
|
- A/B testing and traffic splitting
|
|
110
115
|
|
|
111
116
|
**Example Request**:
|
|
117
|
+
|
|
112
118
|
```
|
|
113
119
|
"Show me how to fine-tune Gemini on custom data"
|
|
114
120
|
```
|
|
@@ -125,6 +131,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
125
131
|
- Token counting and cost optimization
|
|
126
132
|
|
|
127
133
|
**Example Request**:
|
|
134
|
+
|
|
128
135
|
```
|
|
129
136
|
"How do I analyze video content with Gemini multimodal?"
|
|
130
137
|
```
|
|
@@ -141,6 +148,7 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
141
148
|
- Retry logic with exponential backoff
|
|
142
149
|
|
|
143
150
|
**Example Request**:
|
|
151
|
+
|
|
144
152
|
```
|
|
145
153
|
"I want to build a multi-agent system with AgentSmithy"
|
|
146
154
|
```
|
|
@@ -148,38 +156,47 @@ The skill auto-activates and provides production-ready code examples.
|
|
|
148
156
|
## Use Cases
|
|
149
157
|
|
|
150
158
|
### Quick Prototyping
|
|
159
|
+
|
|
151
160
|
Get production-ready code to start building immediately without searching through documentation.
|
|
152
161
|
|
|
153
162
|
### Learning Best Practices
|
|
163
|
+
|
|
154
164
|
See how Google Cloud engineers implement security, monitoring, and scalability in official examples.
|
|
155
165
|
|
|
156
166
|
### Production Templates
|
|
167
|
+
|
|
157
168
|
Use battle-tested patterns from Agent Starter Pack for production deployments.
|
|
158
169
|
|
|
159
170
|
### Framework Comparison
|
|
171
|
+
|
|
160
172
|
Compare ADK, Genkit, and Vertex AI implementations to choose the right framework.
|
|
161
173
|
|
|
162
174
|
### Infrastructure as Code
|
|
175
|
+
|
|
163
176
|
Get Terraform templates for deploying agents and infrastructure.
|
|
164
177
|
|
|
165
178
|
## Integration with Other Plugins
|
|
166
179
|
|
|
167
180
|
### jeremy-genkit-pro
|
|
181
|
+
|
|
168
182
|
- Provides Genkit code examples
|
|
169
183
|
- Complements Genkit flow architect agent
|
|
170
184
|
- Shares production best practices
|
|
171
185
|
|
|
172
186
|
### jeremy-adk-orchestrator
|
|
187
|
+
|
|
173
188
|
- Provides ADK sample code
|
|
174
189
|
- Shows A2A protocol implementation
|
|
175
190
|
- Demonstrates multi-agent patterns
|
|
176
191
|
|
|
177
192
|
### jeremy-vertex-validator
|
|
193
|
+
|
|
178
194
|
- Provides code that passes production validation
|
|
179
195
|
- Follows security and performance best practices
|
|
180
196
|
- Includes monitoring from the start
|
|
181
197
|
|
|
182
198
|
### jeremy-*-terraform plugins
|
|
199
|
+
|
|
183
200
|
- Provides infrastructure code examples
|
|
184
201
|
- Shows Terraform module patterns
|
|
185
202
|
- Demonstrates resource configuration
|
|
@@ -228,6 +245,7 @@ Plugin provides:
|
|
|
228
245
|
## Best Practices Included
|
|
229
246
|
|
|
230
247
|
### Security
|
|
248
|
+
|
|
231
249
|
- IAM least privilege service accounts
|
|
232
250
|
- VPC Service Controls for enterprise isolation
|
|
233
251
|
- Model Armor for prompt injection protection
|
|
@@ -235,6 +253,7 @@ Plugin provides:
|
|
|
235
253
|
- No hardcoded credentials (Secret Manager)
|
|
236
254
|
|
|
237
255
|
### Performance
|
|
256
|
+
|
|
238
257
|
- Auto-scaling (min/max instances)
|
|
239
258
|
- Appropriate machine types and accelerators
|
|
240
259
|
- Caching strategies
|
|
@@ -242,6 +261,7 @@ Plugin provides:
|
|
|
242
261
|
- Token optimization
|
|
243
262
|
|
|
244
263
|
### Observability
|
|
264
|
+
|
|
245
265
|
- Cloud Monitoring dashboards
|
|
246
266
|
- Alerting policies
|
|
247
267
|
- Structured logging
|
|
@@ -249,6 +269,7 @@ Plugin provides:
|
|
|
249
269
|
- Error tracking
|
|
250
270
|
|
|
251
271
|
### Reliability
|
|
272
|
+
|
|
252
273
|
- Multi-region deployment
|
|
253
274
|
- Circuit breaker patterns
|
|
254
275
|
- Retry logic with exponential backoff
|
|
@@ -256,6 +277,7 @@ Plugin provides:
|
|
|
256
277
|
- Graceful degradation
|
|
257
278
|
|
|
258
279
|
### Cost Optimization
|
|
280
|
+
|
|
259
281
|
- Gemini 2.5 Flash for simple tasks
|
|
260
282
|
- Gemini 2.5 Pro for complex reasoning
|
|
261
283
|
- Batch predictions for bulk processing
|
|
@@ -1,9 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gcp-starter-kit-expert
|
|
3
|
-
description:
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
description: Expert in Google Cloud starter kits, ADK samples, Genkit templates, Agent...
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
6
15
|
model: sonnet
|
|
16
|
+
color: orange
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- ai-ml
|
|
21
|
+
- gcp
|
|
22
|
+
- starter
|
|
23
|
+
- kit
|
|
24
|
+
disallowedTools: []
|
|
25
|
+
skills: []
|
|
26
|
+
background: false
|
|
27
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
28
|
+
# effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
|
|
29
|
+
# maxTurns: 50 # cap the agentic loop (omit = engine default)
|
|
30
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
31
|
+
# isolation: worktree # run in an isolated git worktree
|
|
32
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
33
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
34
|
---
|
|
8
35
|
# Google Cloud Starter Kit Expert
|
|
9
36
|
|
|
@@ -648,6 +675,7 @@ def create_multi_agent_system(project_id: str):
|
|
|
648
675
|
## When to Use This Agent
|
|
649
676
|
|
|
650
677
|
Activate this agent when developers need:
|
|
678
|
+
|
|
651
679
|
- ADK agent implementation examples
|
|
652
680
|
- Agent Starter Pack production templates
|
|
653
681
|
- Genkit flow patterns (RAG, multi-step, tool calling)
|
package/package.json
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: gcp-examples-expert
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Generate production-ready Google Cloud code examples from official repositories
|
|
4
|
+
including ADK samples, Genkit templates, Vertex AI notebooks, and Gemini patterns.
|
|
5
|
+
Use when asked to "show ADK example" or "provide GCP starter kit". Trigger with
|
|
6
|
+
relevant phrases based on skill purpose.
|
|
7
|
+
|
|
8
|
+
'
|
|
5
9
|
allowed-tools: Read, Write, Edit, Grep, Glob, Bash(cmd:*)
|
|
6
10
|
version: 2.1.0
|
|
7
11
|
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
8
12
|
license: MIT
|
|
9
13
|
effort: medium
|
|
10
|
-
argument-hint:
|
|
11
|
-
|
|
12
|
-
|
|
14
|
+
argument-hint: '[framework or use-case]'
|
|
15
|
+
tags:
|
|
16
|
+
- ai
|
|
17
|
+
- gcp
|
|
18
|
+
- gcp-examples
|
|
19
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
13
20
|
---
|
|
14
21
|
# GCP Examples Expert
|
|
15
22
|
|
|
@@ -78,4 +85,4 @@ See `${CLAUDE_SKILL_DIR}/references/example-interactions.md` for detailed intera
|
|
|
78
85
|
- [genkit-ai/genkit](https://github.com/genkit-ai/genkit) -- RAG flows, tool calling, evaluation
|
|
79
86
|
- [GoogleCloudPlatform/vertex-ai-samples](https://github.com/GoogleCloudPlatform/vertex-ai-samples) -- model training, tuning, deployment
|
|
80
87
|
- [GoogleCloudPlatform/generative-ai](https://github.com/GoogleCloudPlatform/generative-ai) -- Gemini multimodal, function calling, grounding
|
|
81
|
-
- [GoogleCloudPlatform/agentsmithy](https://github.com/GoogleCloudPlatform/agentsmithy) -- multi-agent orchestration
|
|
88
|
+
- [GoogleCloudPlatform/agentsmithy](https://github.com/GoogleCloudPlatform/agentsmithy) -- multi-agent orchestration
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
## Best Practices Applied
|
|
4
4
|
|
|
5
5
|
### Security
|
|
6
|
+
|
|
6
7
|
✅ IAM least privilege service accounts
|
|
7
8
|
✅ VPC Service Controls for enterprise isolation
|
|
8
9
|
✅ Model Armor for prompt injection protection
|
|
@@ -10,6 +11,7 @@
|
|
|
10
11
|
✅ No hardcoded credentials (use Secret Manager)
|
|
11
12
|
|
|
12
13
|
### Performance
|
|
14
|
+
|
|
13
15
|
✅ Auto-scaling configuration (min/max instances)
|
|
14
16
|
✅ Appropriate machine types and accelerators
|
|
15
17
|
✅ Caching strategies for repeated queries
|
|
@@ -17,6 +19,7 @@
|
|
|
17
19
|
✅ Token optimization for cost efficiency
|
|
18
20
|
|
|
19
21
|
### Observability
|
|
22
|
+
|
|
20
23
|
✅ Cloud Monitoring dashboards
|
|
21
24
|
✅ Alerting policies for errors and latency
|
|
22
25
|
✅ Structured logging with severity levels
|
|
@@ -24,6 +27,7 @@
|
|
|
24
27
|
✅ Error tracking with Cloud Error Reporting
|
|
25
28
|
|
|
26
29
|
### Reliability
|
|
30
|
+
|
|
27
31
|
✅ Multi-region deployment for high availability
|
|
28
32
|
✅ Circuit breaker patterns for fault tolerance
|
|
29
33
|
✅ Retry logic with exponential backoff
|
|
@@ -31,8 +35,9 @@
|
|
|
31
35
|
✅ Graceful degradation strategies
|
|
32
36
|
|
|
33
37
|
### Cost Optimization
|
|
38
|
+
|
|
34
39
|
✅ Use Gemini 2.5 Flash for simple tasks (cheaper)
|
|
35
40
|
✅ Gemini 2.5 Pro for complex reasoning (higher quality)
|
|
36
41
|
✅ Batch predictions for bulk processing
|
|
37
42
|
✅ Preemptible instances for non-critical workloads
|
|
38
|
-
✅ Token counting to estimate costs
|
|
43
|
+
✅ Token counting to estimate costs
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
**Source**: google/adk-samples
|
|
8
8
|
|
|
9
9
|
**Examples Provided**:
|
|
10
|
+
|
|
10
11
|
- Basic agent creation with Code Execution Sandbox
|
|
11
12
|
- Memory Bank configuration for stateful agents
|
|
12
13
|
- A2A protocol implementation for inter-agent communication
|
|
@@ -15,6 +16,7 @@
|
|
|
15
16
|
- IAM least privilege patterns
|
|
16
17
|
|
|
17
18
|
**Sample Pattern**:
|
|
19
|
+
|
|
18
20
|
```python
|
|
19
21
|
from google.cloud.aiplatform import agent_builder
|
|
20
22
|
|
|
@@ -38,6 +40,7 @@ def create_adk_agent(project_id: str, location: str):
|
|
|
38
40
|
**Source**: GoogleCloudPlatform/agent-starter-pack
|
|
39
41
|
|
|
40
42
|
**Examples Provided**:
|
|
43
|
+
|
|
41
44
|
- Production agent with monitoring and observability
|
|
42
45
|
- Auto-scaling configuration
|
|
43
46
|
- Security best practices (Model Armor, VPC-SC)
|
|
@@ -46,6 +49,7 @@ def create_adk_agent(project_id: str, location: str):
|
|
|
46
49
|
- Error tracking setup
|
|
47
50
|
|
|
48
51
|
**Sample Pattern**:
|
|
52
|
+
|
|
49
53
|
```python
|
|
50
54
|
def production_agent_with_observability(project_id: str):
|
|
51
55
|
agent = aiplatform.Agent.create(
|
|
@@ -66,6 +70,7 @@ def production_agent_with_observability(project_id: str):
|
|
|
66
70
|
**Source**: genkit-ai/genkit
|
|
67
71
|
|
|
68
72
|
**Examples Provided**:
|
|
73
|
+
|
|
69
74
|
- RAG flows with vector search
|
|
70
75
|
- Multi-step workflows
|
|
71
76
|
- Tool calling integration
|
|
@@ -74,6 +79,7 @@ def production_agent_with_observability(project_id: str):
|
|
|
74
79
|
- Deployment patterns (Cloud Run, Functions)
|
|
75
80
|
|
|
76
81
|
**Sample Pattern**:
|
|
82
|
+
|
|
77
83
|
```typescript
|
|
78
84
|
import { genkit, z } from 'genkit';
|
|
79
85
|
import { googleAI, gemini15ProLatest } from '@genkit-ai/googleai';
|
|
@@ -92,6 +98,7 @@ const ragFlow = ai.defineFlow({
|
|
|
92
98
|
**Source**: GoogleCloudPlatform/vertex-ai-samples
|
|
93
99
|
|
|
94
100
|
**Examples Provided**:
|
|
101
|
+
|
|
95
102
|
- Custom model training with Gemini
|
|
96
103
|
- Batch prediction jobs
|
|
97
104
|
- Hyperparameter tuning
|
|
@@ -100,6 +107,7 @@ const ragFlow = ai.defineFlow({
|
|
|
100
107
|
- A/B testing patterns
|
|
101
108
|
|
|
102
109
|
**Sample Pattern**:
|
|
110
|
+
|
|
103
111
|
```python
|
|
104
112
|
def fine_tune_gemini_model(project_id: str, training_data_uri: str):
|
|
105
113
|
job = aiplatform.CustomTrainingJob(
|
|
@@ -117,6 +125,7 @@ def fine_tune_gemini_model(project_id: str, training_data_uri: str):
|
|
|
117
125
|
**Source**: GoogleCloudPlatform/generative-ai
|
|
118
126
|
|
|
119
127
|
**Examples Provided**:
|
|
128
|
+
|
|
120
129
|
- Gemini multimodal analysis (text, images, video)
|
|
121
130
|
- Function calling with live APIs
|
|
122
131
|
- Structured output generation
|
|
@@ -125,6 +134,7 @@ def fine_tune_gemini_model(project_id: str, training_data_uri: str):
|
|
|
125
134
|
- Token counting and cost optimization
|
|
126
135
|
|
|
127
136
|
**Sample Pattern**:
|
|
137
|
+
|
|
128
138
|
```python
|
|
129
139
|
from vertexai.generative_models import GenerativeModel, Part
|
|
130
140
|
|
|
@@ -140,6 +150,7 @@ def analyze_multimodal_content(video_uri: str, question: str):
|
|
|
140
150
|
**Source**: GoogleCloudPlatform/agentsmithy
|
|
141
151
|
|
|
142
152
|
**Examples Provided**:
|
|
153
|
+
|
|
143
154
|
- Multi-agent orchestration
|
|
144
155
|
- Supervisory agent patterns
|
|
145
156
|
- Agent-to-agent communication
|
|
@@ -148,6 +159,7 @@ def analyze_multimodal_content(video_uri: str, question: str):
|
|
|
148
159
|
- Error handling and retry logic
|
|
149
160
|
|
|
150
161
|
**Sample Pattern**:
|
|
162
|
+
|
|
151
163
|
```python
|
|
152
164
|
from agentsmithy import Agent, Orchestrator, Task
|
|
153
165
|
|
|
@@ -157,4 +169,4 @@ def create_multi_agent_system(project_id: str):
|
|
|
157
169
|
strategy="sequential"
|
|
158
170
|
)
|
|
159
171
|
# Full implementation from agentsmithy
|
|
160
|
-
```
|
|
172
|
+
```
|
|
@@ -3,9 +3,11 @@
|
|
|
3
3
|
## Example Interactions
|
|
4
4
|
|
|
5
5
|
### Example 1: ADK Agent Creation
|
|
6
|
+
|
|
6
7
|
**User**: "Show me how to create an ADK agent with Code Execution"
|
|
7
8
|
|
|
8
9
|
**Skill Activates**:
|
|
10
|
+
|
|
9
11
|
- Provides code example from google/adk-samples
|
|
10
12
|
- Includes Code Execution Sandbox configuration
|
|
11
13
|
- Shows 14-day state persistence setup
|
|
@@ -13,9 +15,11 @@
|
|
|
13
15
|
- Links to official ADK documentation
|
|
14
16
|
|
|
15
17
|
### Example 2: Genkit RAG Flow
|
|
18
|
+
|
|
16
19
|
**User**: "I need a Genkit starter template for RAG"
|
|
17
20
|
|
|
18
21
|
**Skill Activates**:
|
|
22
|
+
|
|
19
23
|
- Provides RAG flow code from genkit-ai/genkit
|
|
20
24
|
- Shows vector search integration
|
|
21
25
|
- Demonstrates embedding generation
|
|
@@ -23,9 +27,11 @@
|
|
|
23
27
|
- Provides deployment configuration
|
|
24
28
|
|
|
25
29
|
### Example 3: Production Agent Template
|
|
30
|
+
|
|
26
31
|
**User**: "What's the best way to deploy a production agent?"
|
|
27
32
|
|
|
28
33
|
**Skill Activates**:
|
|
34
|
+
|
|
29
35
|
- Provides Agent Starter Pack template
|
|
30
36
|
- Shows auto-scaling configuration
|
|
31
37
|
- Includes monitoring dashboard setup
|
|
@@ -33,9 +39,11 @@
|
|
|
33
39
|
- Provides Terraform deployment code
|
|
34
40
|
|
|
35
41
|
### Example 4: Gemini Multimodal
|
|
42
|
+
|
|
36
43
|
**User**: "How do I analyze video with Gemini?"
|
|
37
44
|
|
|
38
45
|
**Skill Activates**:
|
|
46
|
+
|
|
39
47
|
- Provides multimodal code from generative-ai repo
|
|
40
48
|
- Shows video part creation
|
|
41
49
|
- Demonstrates prompt engineering
|
|
@@ -43,11 +51,13 @@
|
|
|
43
51
|
- Provides cost optimization tips
|
|
44
52
|
|
|
45
53
|
### Example 5: Multi-Agent System
|
|
54
|
+
|
|
46
55
|
**User**: "I want to build a multi-agent system"
|
|
47
56
|
|
|
48
57
|
**Skill Activates**:
|
|
58
|
+
|
|
49
59
|
- Provides AgentSmithy orchestration code
|
|
50
60
|
- Shows supervisory agent pattern
|
|
51
61
|
- Demonstrates A2A protocol usage
|
|
52
62
|
- Includes workflow coordination
|
|
53
|
-
- Provides testing strategies
|
|
63
|
+
- Provides testing strategies
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
## Workflow
|
|
4
4
|
|
|
5
5
|
### Phase 1: Identify Use Case
|
|
6
|
+
|
|
6
7
|
```
|
|
7
8
|
1. Listen for trigger phrases in user request
|
|
8
9
|
2. Determine which repository has relevant examples
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
```
|
|
12
13
|
|
|
13
14
|
### Phase 2: Provide Code Example
|
|
15
|
+
|
|
14
16
|
```
|
|
15
17
|
1. Fetch relevant code snippet from knowledge base
|
|
16
18
|
2. Adapt to user's specific requirements
|
|
@@ -20,6 +22,7 @@
|
|
|
20
22
|
```
|
|
21
23
|
|
|
22
24
|
### Phase 3: Explain Best Practices
|
|
25
|
+
|
|
23
26
|
```
|
|
24
27
|
1. Highlight security considerations (IAM, VPC-SC, Model Armor)
|
|
25
28
|
2. Show monitoring and observability setup
|
|
@@ -29,10 +32,11 @@
|
|
|
29
32
|
```
|
|
30
33
|
|
|
31
34
|
### Phase 4: Deployment Guidance
|
|
35
|
+
|
|
32
36
|
```
|
|
33
37
|
1. Provide Terraform/IaC templates
|
|
34
38
|
2. Show Cloud Build CI/CD configuration
|
|
35
39
|
3. Include testing strategies
|
|
36
40
|
4. Document environment variables
|
|
37
41
|
5. Link to official documentation
|
|
38
|
-
```
|
|
42
|
+
```
|