skills(databricks-app-apx): defer to AppKit for unspecified full-stack requests#162
Open
jamesbroadhead wants to merge 1 commit into
Open
skills(databricks-app-apx): defer to AppKit for unspecified full-stack requests#162jamesbroadhead wants to merge 1 commit into
jamesbroadhead wants to merge 1 commit into
Conversation
2 tasks
…pecified full-stack requests AppKit (TypeScript + React) is the default framework recommendation for Databricks Apps; APX (FastAPI + React) is reserved for customers who must stay in a Python stack. The skill previously fired on "Databricks app" / "Databricks application" and on full-stack-app-without-specifying-framework, which are exactly the cases that should defer to AppKit. The "Do NOT invoke if Node.js" exclusion also explicitly cut off AppKit's stack. Changes: - Tighten the frontmatter description so the skill auto-selector sees the APX-only scope. - Add an explicit "Default framework is AppKit, not APX" callout pointing at databricks-apps. - Replace trigger conditions: fire only on explicit APX / FastAPI / Python-embedded full-stack requests. Generic "Databricks app" defers to databricks-apps. - Replace exclusion list: enumerate the frameworks that should NOT route here (AppKit, TypeScript, React-without-FastAPI, etc.). This PR was prepared by Claude.
c0b923a to
55de55a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates the
databricks-app-apxskill's trigger conditions so it only fires when the user explicitly asks for APX / FastAPI / Python-embedded full-stack. Generic "Databricks app" requests defer to AppKit (databricks-apps) instead.Why
AppKit (TypeScript + React) is the default framework recommendation for Databricks Apps; APX is the Python-embedded alternative for customers who must stay in a Python stack. The previous skill fired on:
These are exactly the cases that should default to AppKit. The exclusion
"Do NOT invoke if Node.js"also explicitly cut off AppKit's stack.Changes
descriptionso the auto-selector sees the APX-only scope (relevant for Codex / OpenCode style providers that match on description).databricks-apps.Out of scope
A sibling PR bundles the
databricks-apps(AppKit) skill itself so the defer-target actually exists in this repo.Test plan
databricks-appsfor "build a Databricks app" anddatabricks-app-apxonly when "APX" / "FastAPI" is in the prompt.This pull request and its description were written by Claude.