VE

vertex-engine-inspector

Audits Vertex AI Agent Engine configurations including sandbox and memory settings to provide production-readiness scores.

Install

mkdir -p .claude/skills/vertex-engine-inspector && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/9443" && unzip -o skill.zip -d .claude/skills/vertex-engine-inspector && rm skill.zip

Installs to .claude/skills/vertex-engine-inspector

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Inspect and validate Vertex AI Agent Engine deployments including Code
70 charsno explicit “when” trigger
Advanced

Key capabilities

  • Validate runtime configuration and scaling policies
  • Audit Code Execution Sandbox and Memory Bank settings
  • Test A2A protocol compliance for endpoints
  • Assess security posture including IAM and VPC-SC
  • Generate production readiness scores

How it works

The inspector retrieves agent metadata via the Python SDK and probes endpoints to evaluate configuration, security, and performance against predefined production criteria.

Inputs & outputs

You give it
Project ID and Agent Engine ID
You get back
YAML inspection report with readiness scores

When to use vertex-engine-inspector

  • Inspect agent engine configuration
  • Check agent engine security posture
  • Audit A2A protocol compliance
  • Evaluate reasoning engine status

About this skill

Vertex Engine Inspector

Overview

Inspect and validate Vertex AI Agent Engine deployments across seven categories: runtime configuration, Code Execution Sandbox, Memory Bank, A2A protocol compliance, security posture, performance metrics, and monitoring observability. This skill generates weighted production-readiness scores (0-100%) with actionable recommendations for each deployment.

Prerequisites

  • google-cloud-aiplatform[agent_engines]>=1.120.0 Python SDK installed
  • gcloud CLI authenticated (for IAM and monitoring queries — not for Agent Engine CRUD)
  • IAM roles: roles/aiplatform.user and roles/monitoring.viewer granted on the target project
  • Access to the target Google Cloud project hosting the Agent Engine deployment
  • curl for A2A protocol endpoint testing (AgentCard, Task API, Status API)
  • Cloud Monitoring API enabled for performance metrics retrieval
  • Familiarity with Vertex AI Agent Engine concepts: Code Execution Sandbox, Memory Bank, Model Armor

Important: There is no gcloud CLI surface for Agent Engine (no gcloud ai agents, gcloud ai reasoning-engines, or gcloud alpha ai agent-engines commands exist). All Agent Engine operations use the Python SDK via vertexai.Client() or vertexai.preview.reasoning_engines.

Instructions

  1. Connect to the Agent Engine deployment by retrieving agent metadata via the Python SDK (client.agent_engines.get(name=...))
  2. Parse the runtime configuration: model selection (Gemini 2.5 Pro/Flash), tools enabled, VPC settings, and scaling policies
  3. Validate Code Execution Sandbox settings: confirm state TTL is 7-14 days, sandbox type is SECURE_ISOLATED, and IAM permissions are scoped to required GCP services only
  4. Check Memory Bank configuration: verify enabled status, retention policy (min 100 memories), Firestore encryption, indexing enabled, and auto-cleanup active
  5. Test A2A protocol compliance by probing /.well-known/agent-card, POST /v1/tasks:send, and GET /v1/tasks/<task-id> endpoints for correct responses
  6. Audit security posture: validate IAM least-privilege roles, VPC Service Controls perimeter, Model Armor activation, encryption at rest and in transit, and absence of hardcoded credentials
  7. Query Cloud Monitoring for performance metrics: request count, error rate (target < 5%), latency percentiles (p50/p95/p99), token usage, and cost estimates over the last 24 hours
  8. Assess monitoring and observability: confirm Cloud Monitoring dashboards, alerting policies, structured logging, OpenTelemetry tracing, and Cloud Error Reporting are configured
  9. Calculate weighted scores across all categories and determine overall production readiness status
  10. Generate a prioritized list of recommendations with estimated score improvement per remediation

See ${CLAUDE_SKILL_DIR}/references/inspection-workflow.md for the phased inspection process and ${CLAUDE_SKILL_DIR}/references/inspection-categories.md for detailed check criteria.

Output

  • Inspection report in YAML format with per-category scores and overall readiness percentage
  • Runtime configuration summary: model, tools, VPC, scaling settings
  • A2A protocol compliance matrix: pass/fail for AgentCard, Task API, Status API
  • Security posture score with breakdown: IAM, VPC-SC, Model Armor, encryption, secrets
  • Performance metrics dashboard: error rate, latency percentiles, token usage, daily cost estimate
  • Prioritized recommendations with estimated score improvement per item

See ${CLAUDE_SKILL_DIR}/references/example-inspection-report.md for a complete sample report.

Error Handling

ErrorCauseSolution
Agent metadata not accessibleInsufficient IAM permissions or incorrect agent IDVerify roles/aiplatform.user granted; confirm agent ID with client.agent_engines.list() via Python SDK
A2A AgentCard endpoint 404Agent not configured for A2A protocol or endpoint path incorrectCheck agent configuration for A2A enablement; verify /.well-known/agent-card path
Cloud Monitoring metrics emptyMonitoring API not enabled or no recent trafficRun gcloud services enable monitoring.googleapis.com; generate test traffic first
VPC-SC perimeter blocking accessInspector running outside VPC Service Controls perimeterAdd inspector service account to access level; use VPC-SC bridge or access policy
Code Execution TTL out of rangeState TTL set below 1 day or above 14 daysAdjust TTL to 7-14 days for production; values above 14 days are rejected by Agent Engine

See ${CLAUDE_SKILL_DIR}/references/errors.md for additional error scenarios.

Examples

Scenario 1: Pre-Production Readiness Check -- Inspect a newly deployed ADK agent before production launch. Run all 28 checklist items across security, performance, monitoring, compliance, and reliability. Target: overall score above 85% before approving production traffic.

Scenario 2: Security Audit After IAM Change -- Re-inspect security posture after modifying service account roles. Validate that least-privilege is maintained (target: IAM score 95%+), VPC-SC perimeter is intact, and Model Armor remains active.

Scenario 3: Performance Degradation Investigation -- Inspect an agent showing elevated error rates. Query 24-hour performance metrics, identify latency spikes at p95/p99, check auto-scaling behavior, and correlate with token usage patterns to isolate the root cause.

Resources

  • Vertex AI Agent Engine Documentation -- deployment and configuration
  • A2A Protocol Specification -- AgentCard, Task API, protocol compliance
  • Cloud Monitoring API -- metrics queries and dashboard configuration
  • VPC Service Controls -- perimeter setup and access policies
  • Model Armor -- prompt injection protection configuration

When not to use it

  • When auditing non-Vertex AI Agent Engine deployments
  • When the required IAM roles are unavailable

Prerequisites

google-cloud-aiplatform[agent_engines]>=1.120.0 Python SDKgcloud CLI authenticatedroles/aiplatform.user and roles/monitoring.viewer IAM roles

Limitations

  • No gcloud CLI surface exists for Agent Engine operations
  • Code Execution TTL values above 14 days are rejected

How it compares

It automates a multi-category audit process that would otherwise require manual verification of IAM, VPC settings, and A2A protocol compliance.

Compared to similar skills

vertex-engine-inspector side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
vertex-engine-inspector (this skill)024dReviewAdvanced
sentry-data-handling024dCautionAdvanced
openrouter-audit-logging124dCautionIntermediate
klingai-audit-logging124dReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

sentry-data-handling

jeremylongshore

Manage sensitive data properly in Sentry. Use when configuring PII scrubbing, data retention, GDPR compliance, or data security settings. Trigger with phrases like "sentry pii", "sentry gdpr", "sentry data privacy", "scrub sensitive data sentry".

04

openrouter-audit-logging

jeremylongshore

Implement audit logging for OpenRouter compliance. Use when meeting regulatory requirements or security audits. Trigger with phrases like 'openrouter audit', 'openrouter compliance log', 'openrouter security log', 'audit trail'.

12

klingai-audit-logging

jeremylongshore

Implement comprehensive audit logging for Kling AI operations. Use when tracking API usage, compliance requirements, or security audits. Trigger with phrases like 'klingai audit', 'kling ai logging', 'klingai compliance log', 'video generation audit trail'.

10

hunting-for-cobalt-strike-beacons

mukul975

Detect Cobalt Strike beacon network activity using default TLS certificate

00

equilateral-agents

Equilateral-AI

22 production-ready AI agents with database-driven orchestration for security reviews, code quality analysis, deployment validation, infrastructure checks, and compliance. Auto-activates for security concerns, deployment tasks, code reviews, quality checks, and compliance questions. Includes upgrade paths to enterprise features (GDPR, HIPAA, multi-account AWS, ML-based optimization).

564

django-verification

affaan-m

Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.

521

Search skills

Search the agent skills registry