[appkit plugin] Add @databricks/appkit-agent package#384
Open
hubertzub-db wants to merge 1 commit intodatabricks:mainfrom
Open
[appkit plugin] Add @databricks/appkit-agent package#384hubertzub-db wants to merge 1 commit intodatabricks:mainfrom
hubertzub-db wants to merge 1 commit intodatabricks:mainfrom
Conversation
This was referenced Mar 19, 2026
smurching
reviewed
Mar 20, 2026
Collaborator
There was a problem hiding this comment.
Looks pretty good (mostly just a copy-over of the code from databricks/appkit#166), but should we also include tests here/those seem missing in this PR?
bc6e379 to
3cb6507
Compare
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Author
@smurching agree, let's bring over tests in this PR. Initially I wanted to bring them over in latter parts but there's no guarantee we'll get there soon - so it sounds good to colocate them here. |
3cb6507 to
d4f6651
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.
🥞 Stacked PR
Summary
Extracts the agent plugin from the AppKit monorepo into a standalone, publishable package at
integrations/appkit-agent.This package provides:
AgentInterface— a contract for writing custom agent implementations that speak the OpenAI Responses API format (streaming + non-streaming).StandardAgent— a ready-to-use LangGraph-based ReAct agent with function tools and Databricks-hosted tool integration (Genie, Vector Search, MCP servers).Key decisions:
@databricks/appkitis a peer dependency — the plugin integrates via AppKit's publicPlugin/toPlugin/PluginManifestAPI@databricks/langchainjs,@langchain/core,@langchain/langgraph,@langchain/mcp-adapters) are optional peer dependencies — only needed when usingStandardAgent, not needed for customagentInstanceimplementationscreateLoggerreplaced with a local minimal console logger to avoid coupling to AppKit internalsappkit-agent.yml) and release workflow (release-appkit-agent.yml)