AI SummaryThis booster helps developers quickly check the health status of both their local development server and deployed Databricks app through simple shell commands. It's useful for developers working with Databricks apps who need rapid status verification during development and deployment workflows.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Check App Status" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (7 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/status.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/debug.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/debug.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/deploy.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/deploy.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/dev.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/dev.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/fix.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/fix.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/open-app.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/open-app.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/setup-mcp.md "https://raw.githubusercontent.com/PulkitXChadha/awesome-databricks-mcp/main/.claude/commands/setup-mcp.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Check health status of development and deployed app
Check App Status
I'll check the status of your local development server and deployed Databricks app.
Local Development Server Status
Check if the development server is running: `bash
Check if development servers are running
ps aux | grep -E "(watch\.sh|uvicorn|vite)" | grep -v grep
Check PID file
if [ -f /tmp/databricks-app-watch.pid ]; then echo "Dev server PID: $(cat /tmp/databricks-app-watch.pid)" else echo "Dev server not running" fi `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster