databricks-genai-agent-engineering

databricks-genai-agent-engineering is a skill for Claude Code from VincentChuWaiChow/vanguard-frontier-agentic. It costs 86 tokens per session (3,126 once invoked), scanned A, original, Apache-2.0.

A review guide for building generative-AI agents on Databricks. An agent is software that uses a language model and tools to complete tasks; the guide covers retrieval, context, tool permissions, model providers, and gateway policies.

In plain words
What is it for?
It helps review Mosaic AI Agent Framework designs, ResponsesAgent compatibility, AI Search indexes, retrieval and context assembly, MCP tool boundaries, external model providers, and Unity AI Gateway settings.
Why use it?
It helps prevent agents from receiving the wrong data, too much context, unsafe tool access, unsupported models, or unsuitable rate and cost controls.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the vanguard-frontier-agentic plugin — 193 skills shipped together

Good fit It helps review Mosaic AI Agent Framework designs, ResponsesAgent compatibility, AI Search indexes, retrieval and context assembly, MCP tool boundaries, external model providers, and Unity AI Gateway settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering
Install

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.

Any agent
npx skills add VincentChuWaiChow/vanguard-frontier-agentic --skill databricks-genai-agent-engineering
Clone the repo
git clone --depth 1 https://github.com/VincentChuWaiChow/vanguard-frontier-agentic

Made for: Claude Code.

Or install vanguard-frontier-agentic, the plugin that ships this one along with the rest of its 193 skills.

Wrote 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.

agentmods badge for databricks-genai-agent-engineering

README.md
[![agentmods](https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering/github.svg)](https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering)
Your own site
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for databricks-genai-agent-engineering

Your own site · 80×15
<a href="https://agentmods.dev/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering"><img src="https://agentmods.dev/badge/skills/vincentchuwaichow/vanguard-frontier-agentic/databricks-genai-agent-engineering.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,126 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 70
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium Excessive Agency · line 104
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.03126
Opus 5 $0.00043 $0.01563
Sonnet 5 $0.00017 $0.00625
Haiku 4.5 $0.00009 $0.00313

Measured 7d ago against content hash c6000bbfcc78, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

databricks-genai-agent-engineering 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 7d 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.

skills/databricks/databricks-genai-agent-engineering/SKILL.md · 134 lines

How it starts

The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.

databricks-genai-agent-engineering

Purpose

This skill decides whether an agent architecture is correctly engineered on Databricks: agents are wrapped in ResponsesAgent for compatibility, retrieval indexes are correctly configured for the query patterns, context is grounded and budgeted, tools are properly scoped via Unity Catalog governance, MCP servers have clear governance categories, model providers are supported, and gateway policies align with business requirements. Sound design avoids index-sync mismatches, context starvation, tool-privilege leaks, and unsupported model providers.

When to use

  • A user is designing an agent that retrieves from Databricks AI Search and needs confirmation on index variant and sync mode.
  • A user is building context-grounding logic and needs to confirm chunking, budget, and assembly strategy.
  • A user is integrating external tools via MCP and needs to confirm the server category and governance scope.
  • A user is selecting an external model provider and needs to confirm it is supported on Databricks.
  • A user is configuring Unity AI Gateway for rate limiting, cost control, or policy enforcement and needs to validate the design.

When NOT to use

  • No retrieval index or tool list is stated — ask for the specific index and tool strategy before reviewing.
  • The question is whether the agent's answer is correct — route to databricks-genai-evaluation-observability-agent.
  • The question is about tracing and instrumentation — route to databricks-genai-evaluation-observability-agent.
  • The question is about access control on the source data — route to databricks-unity-catalog-governance-agent.
  • The question is about model lifecycle and serving endpoints — route to databricks-mlops-agent.
  • The question is about cost from external model spend — route to databricks-finops-cost-agent.

Scope

  • Mosaic AI Agent Framework authoring patterns and ResponsesAgent interface wrapping for playground and deployment compatibility.
  • Databricks AI Search index configuration: variant choice (Delta Sync Databricks-managed, Delta Sync self-managed, Direct Vector Access, full-text BETA), sync mode (continuous, triggered, manual), and query API.
  • Context engineering: chunking and grounding strategy, context budget in tokens, and assembly logic.
  • Tool inventory and governance: Unity Catalog functions, MCP server categories (managed, external, custom), and privilege scoping.
  • External model provider selection and validation against Databricks support matrix.
  • Unity AI Gateway policy: rate limiting, traffic splitting, fallbacks, budget management, content policies, and logging.

Read the full file on GitHub · 134 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 7d ago First seen · 134 lines · 86 tokens per session scan A c6000bbfcc78

Subscribe to this mod's changes

databricks-genai-agent-engineering is a skill published in the GitHub repository VincentChuWaiChow/vanguard-frontier-agentic (22 stars, last pushed 2d ago), licensed Apache-2.0. It adds 86 tokens to every session and 3,126 once invoked, about $0.0004 per session on Opus 5. 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-09-04.

Related

Other skills, from other repositories

ai-science-vision-rag

ColPali-style Vision RAG: embed rendered PDF pages, retrieve via ColBERT MaxSim, feed top-k pages to Qwen2-VL, no OCR. Use for PDF/document QA over figures and tables, multimodal retrieval, or Recall@k/MRR eval.

Pavel-Kravchenko/Bioinformatics · 65 tokens

document-rag

Retrieve PDF/image pages with ColPali late-interaction embeddings and answer questions via Qwen2-VL/LLaVA. Use when doing document RAG, PDF QA, or retrieval over scanned papers/reports.

Pavel-Kravchenko/Bioinformatics · 47 tokens

azure-search-documents-py

Azure AI Search SDK for Python. Use for vector search, hybrid search, semantic ranking, indexing, and skillsets. Triggers: "azure-search-documents", "SearchClient", "SearchIndexClient", "vector search", "hybrid search", "semantic search".

microsoft/skills · 61 tokens

azure-ai-contentunderstanding-py

Azure AI Content Understanding SDK for Python. Use for multimodal content extraction from documents, images, audio, and video. Triggers: "azure-ai-contentunderstanding", "ContentUnderstandingClient", "multimodal analysis", "document extraction", "video analysis", "audio transcription".

microsoft/skills · 64 tokens

azure-search-documents-ts

Build search applications using Azure AI Search SDK for JavaScript (@azure/search-documents). Use when creating/managing indexes, implementing vector/hybrid search, semantic ranking, or building agentic retrieval with knowledge bases.

microsoft/skills · 48 tokens

azure-aigateway

Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend…

microsoft/skills · 90 tokens