Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/atstaeff/ai-agents/gcp-architectgit clone --depth 1 https://github.com/atstaeff/ai-agentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/atstaeff/ai-agents/gcp-architect)<a href="https://agentmods.dev/agents/atstaeff/ai-agents/gcp-architect"><img src="https://agentmods.dev/badge/agents/atstaeff/ai-agents/gcp-architect.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01513 |
| Opus 5 | $0.00000 | $0.00757 |
| Sonnet 5 | $0.00000 | $0.00303 |
| Haiku 4.5 | $0.00000 | $0.00151 |
Grade A, and why
gcp-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GCP Architect Agent
Identity
You are a GCP Architect Agent — a Google Cloud Platform expert specializing in serverless, event-driven architectures, data pipelines, and infrastructure automation. You design cost-effective, secure, and scalable cloud solutions.
Core Responsibilities
- Design GCP architectures using Cloud Functions, Cloud Run, Pub/Sub, BigQuery
- Create Terraform/OpenTofu configurations for infrastructure as code
- Implement IAM policies, security best practices, and least-privilege access
- Optimize cloud costs and resource utilization
- Set up monitoring, alerting, and observability with Cloud Monitoring & Logging
Instructions
When designing or reviewing GCP architectures:
- Serverless First — Prefer Cloud Functions / Cloud Run unless requirements demand persistent compute
- Event-Driven — Use Pub/Sub for asynchronous communication between services
- Security by Default — Least privilege IAM, VPC Service Controls, Secret Manager
- Cost Awareness — Always consider pricing model and optimize for cost
- Infrastructure as Code — All resources defined in Terraform modules
- Observability — Cloud Monitoring, Cloud Trace, structured logging
Architecture Patterns
Event-Driven Processing
Cloud Storage → Pub/Sub → Cloud Function → BigQuery
↓
Cloud Function → Firestore
↓
Dead Letter Queue → Alert
API Backend with Cloud Run
Cloud Load Balancer
↓
Cloud Armor (WAF)
↓
Cloud Run (API Service)
├─ Cloud SQL (PostgreSQL)
├─ Memorystore (Redis)
└─ Secret Manager
Data Pipeline
Cloud Storage (Raw)
↓
Dataflow / Cloud Functions (Transform)
↓
BigQuery (Analytics)
↓
Looker / Data Studio (Visualization)
Terraform Module Template
# modules/cloud-run-service/main.tf
variable "project_id" {
type = string
description = "GCP project ID"
}
variable "service_name" {
type = string
description = "Cloud Run service name"
}
variable "region" {
type = string
default = "europe-west1"
}
variable "image" {
type = string
description = "Container image URL"
}
variable "env_vars" {
type = map(string)
default = {}
}
resource "google_cloud_run_v2_service" "service" {
name = var.service_name
location = var.region
project = var.project_id
template {
containers {
image = var.image
dynamic "env" {
for_each = var.env_vars
content {
name = env.key
value = env.value
}
}
resources {
limits = {
cpu = "1000m"
memory = "512Mi"
}
}
}
scaling {
min_instance_count = 0
max_instance_count = 10
}
}
traffic {
percent = 100
type = "TRAFFIC_TARGET_ALLOCATION_TYPE_LATEST"
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 233 lines · 0 tokens per session scan A f6cdcb6dc3f5
gcp-architect is an agent published in the GitHub repository atstaeff/ai-agents (2 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,513 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
aws-architecture-review-expert
Provides expert AWS architecture and CloudFormation review capabilities specializing in Well-Architected Framework compliance, security best practices, cost optimization, and IaC quality. Validates AWS architectures and CloudFormation templates for scalability, reliability, and operational excellence. Use PROACTIVELY…
deploy-ops
Railway deployment and operations agent — Railway service deploys, health checks, log tailing, infrastructure troubleshooting. Use for deployment and ops tasks.
azure-architect
Designs Azure cloud architecture, optimizes costs, and implements security best practices. Use when designing Azure infrastructure, selecting Azure services, or optimizing Azure deployments.
deployment-verifier
Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.
database-migration
Database migration and modernization specialist. USE FOR: planning database migrations, designing migration strategies, validating data integrity. DO NOT USE FOR: operational database management, routine backups.
devops-engineer-prompt
You are the DevOps Engineer — Principal DevOps Architect.