Agent Monitoring Demo App
Description
MLFlow 3.0 Agent Monitoring + Databricks Apps + FastAPI
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Databricks Apps + AI Agents Template
A complete template for building and deploying AI agents with **Databricks Apps**. This repo demonstrates best practices for agent development with **MLflow 3.0 monitoring**, **traced function observability**, and a modern chat interface.
🎯 **Perfect for getting started with:**
- Databricks Agent development with production monitoring
- MLflow 3.0 tracing and experiment tracking
- Databricks Apps deployment with a beautiful UI
- Modern development workflow with hot reload and automated scripts
✨ **What makes this template special:**
- Ready-to-deploy agent with chat interface in under 5 minutes
- Professional dev setup with automated scripts for development and deployment
- Production-ready observability with MLflow tracing and monitoring
- Optimized dependencies - lean production builds with conflict-free package management
- Claude memory ready - includes CLAUDE.md for AI-assisted development with full project context
The Agent being served:
**databricks_assistant.py** is a LangChain tool-calling agent that can explore and query your Databricks Unity Catalog structure. The agent includes the following tools:
- list_catalogs: Lists all available catalogs in the workspace
- list_schemas: Lists all schemas in a specific catalog
- list_tables: Lists all tables in a specific schema
- list_volumes: Lists all volumes in a specific schema
@mlflow.trace(span_type='LLM')
def databricks_agent(messages):
"""A LangChain agent that can explore Databricks catalogs and answer questions."""
# Initialize ChatDatabricks LLM
llm = ChatDatabricks(
endpoint='databricks-claude-sonnet-4',
max_tokens=1000,
temperature=0.1,
)
# Create catalog exploration tools
tools = create_catalog_tools() # list_catalogs, list_schema
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11